pax_global_header00006660000000000000000000000064140044020570014506gustar00rootroot0000000000000052 comment=48de44447ad93e78480f8a8c0424506e342e054f locust-1.4.3/000077500000000000000000000000001400440205700130245ustar00rootroot00000000000000locust-1.4.3/.coveragerc000066400000000000000000000004541400440205700151500ustar00rootroot00000000000000[run] branch = True source = locust [report] exclude_lines = pragma: no cover def __repr__ if self\.debug raise AssertionError raise NotImplementedError if 0: if __name__ == .__main__.: ignore_errors = True omit = docs/* examples/* locust/test/* setup.py locust-1.4.3/.dockerignore000066400000000000000000000001211400440205700154720ustar00rootroot00000000000000locust.egg-info/** locustio.egg-info/** dist/ build/ .coverage .tox/ docs/ .git/ locust-1.4.3/.git-blame-ignore-revs000066400000000000000000000001061400440205700171210ustar00rootroot00000000000000# Migrate code style to Black 7c0fcc213d3988f6e7c6ffef63b24afe00e5fbd9locust-1.4.3/.gitattributes000066400000000000000000000007261400440205700157240ustar00rootroot00000000000000# Set default behaviour, in case users don't have core.autocrlf set. * text=auto # Explicitly declare text files we want to always be normalized and converted # to native line endings on checkout. *.c text *.h text *.py text *.js text *.rst text *.css text *.html text # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary *.gif binary locust-1.4.3/.github/000077500000000000000000000000001400440205700143645ustar00rootroot00000000000000locust-1.4.3/.github/CONTRIBUTING.md000066400000000000000000000007331400440205700166200ustar00rootroot00000000000000## Release Process * Install github_changelog_generator (https://github.com/github-changelog-generator/github-changelog-generator/) if not installed * Run github_changelog_generator to update `CHANGELOG.md` - `make changelog` * Update `locust/__init__.py` with new version number: `__version__ = "VERSION"` * Make git tag * Push git tag * Update Automated Builds configuration in Docker Hub so that the newly created git tag is built as the "latest" docker tag locust-1.4.3/.github/ISSUE_TEMPLATE/000077500000000000000000000000001400440205700165475ustar00rootroot00000000000000locust-1.4.3/.github/ISSUE_TEMPLATE/bug_report.md000066400000000000000000000022771400440205700212510ustar00rootroot00000000000000--- name: Bug report about: Report an error title: '' labels: bug assignees: '' --- ### Describe the bug ### Expected behavior ### Actual behavior ### Steps to reproduce ### Environment - OS: - Python version: - Locust version: - Locust command line that you ran: - Locust file contents (anonymized if necessary):locust-1.4.3/.github/ISSUE_TEMPLATE/config.yml000066400000000000000000000004401400440205700205350ustar00rootroot00000000000000blank_issues_enabled: false contact_links: - name: FAQ url: https://github.com/locustio/locust/wiki/FAQ about: Check the FAQ in the wiki - name: Question url: https://stackoverflow.com/questions/tagged/locust about: Ask questions and look for answers on StackOverflow locust-1.4.3/.github/ISSUE_TEMPLATE/feature_request.md000066400000000000000000000016231400440205700222760ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for Locust title: '' labels: feature request assignees: '' --- ### Is your feature request related to a problem? Please describe. ### Describe the solution you'd like ### Describe alternatives you've considered ### Additional context locust-1.4.3/.github/workflows/000077500000000000000000000000001400440205700164215ustar00rootroot00000000000000locust-1.4.3/.github/workflows/tests.yml000066400000000000000000000050301400440205700203040ustar00rootroot00000000000000name: Tests on: [push, pull_request] jobs: tests: name: ${{ matrix.name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: include: #- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39} #- {name: Windows, python: '3.9', os: windows-latest, tox: py39} #- {name: Mac, python: '3.9', os: macos-latest, tox: py39} - {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39} - {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38} - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} - {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36} steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - name: Update pip run: | pip install -U wheel pip install -U setuptools python -m pip install -U pip - name: Get pip cache dir id: pip-cache run: echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip uses: actions/cache@v2 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }} - name: set full Python version in PY env var # See https://pre-commit.com/#github-actions-example run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - run: pip install tox codecov - run: tox -e ${{ matrix.tox }} verify_docker_build: name: Verify Docker image build needs: tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: docker/build-push-action@v2 with: context: ./ file: ./Dockerfile push: false tags: locustio/locust:latest release: name: Release to PyPI needs: verify_docker_build if: startsWith(github.event.ref, 'refs/tags') runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel - name: Build run: | python setup.py sdist bdist_wheel - name: Publish to PyPI (Test) uses: pypa/gh-action-pypi-publish@master with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} locust-1.4.3/.gitignore000066400000000000000000000004131400440205700150120ustar00rootroot00000000000000*.pyc locust.wpr locust.egg-info/** locustio.egg-info/** docs/_build/** docs/cli-help-output.txt docs/config-options.rst mock.*.egg dist/** .idea/** *.iml *.ipr .vagrant build/ .coverage .tox/ docs/env-options.rst .editorconfig __pycache__ .pytest_cache .sass-cache/ locust-1.4.3/.readthedocs.yml000066400000000000000000000002651400440205700161150ustar00rootroot00000000000000version: 2 sphinx: configuration: docs/conf.py # formats: # - pdf python: version: 3.7 install: - method: pip path: . - requirements: docs/requirements.txt locust-1.4.3/.vscode/000077500000000000000000000000001400440205700143655ustar00rootroot00000000000000locust-1.4.3/.vscode/launch.json000066400000000000000000000007531400440205700165370ustar00rootroot00000000000000{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", "gevent": true } ] }locust-1.4.3/.vscode/settings.json000066400000000000000000000016311400440205700171210ustar00rootroot00000000000000{ "editor.formatOnSave": true, "python.formatting.provider": "black", "files.exclude": { ".pytest_cache/**/*": true, "**/*.pyc": true, "**/locust.wpr": true, "locust.egg-info/**": true, "locustio.egg-info/**": true, "docs/_build/**": true, "docs/cli-help-output.txt": true, "docs/config-options.rst": true, "**/mock.*.egg": true, "dist/**": true, ".idea/**": true, "**/*.iml": true, "**/*.ipr": true, "**/.vagrant": true, "**/build/": true, "**/.coverage": true, "**/.tox/": true, "docs/env-options.rst": true, "**/.editorconfig": true, "**/__pycache__": true }, "restructuredtext.confPath": "${workspaceFolder}/docs", "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.enabled": true, }locust-1.4.3/CHANGELOG.md000066400000000000000000004424651400440205700146540ustar00rootroot00000000000000# Changelog ## [1.4.3](https://github.com/locustio/locust/tree/1.4.3) (2021-01-28) [Full Changelog](https://github.com/locustio/locust/compare/1.4.2...1.4.3) **Merged pull requests:** - fix stats values for chart tooltips [\#1691](https://github.com/locustio/locust/pull/1691) ([aek](https://github.com/aek)) ## [1.4.2](https://github.com/locustio/locust/tree/1.4.2) (2021-01-26) [Full Changelog](https://github.com/locustio/locust/compare/1.4.1...1.4.2) **Fixed bugs:** - Report charts plot data points after the test has ended [\#1677](https://github.com/locustio/locust/issues/1677) - SetConsoleMode throws an error when locust is run from Jenkins Powershell [\#1654](https://github.com/locustio/locust/issues/1654) - locust should exit when a load shape returns None in headless mode [\#1653](https://github.com/locustio/locust/issues/1653) - test\_stop is fired twice when Locust is running in –master/worker mode [\#1638](https://github.com/locustio/locust/issues/1638) **Closed issues:** - currently locust is supporting for stas, failures, stas history in csv format while running without web [\#1673](https://github.com/locustio/locust/issues/1673) - /swarm web endpoint should not require user\_count and spawn\_rate when shape\_class is used [\#1670](https://github.com/locustio/locust/issues/1670) - Show legends on charts [\#1651](https://github.com/locustio/locust/issues/1651) **Merged pull requests:** - Verify docker build & create PyPI releases through Github Actions when tags are pushed [\#1687](https://github.com/locustio/locust/pull/1687) ([heyman](https://github.com/heyman)) - Use Github Actions for CI [\#1686](https://github.com/locustio/locust/pull/1686) ([heyman](https://github.com/heyman)) - Shutdown workers when using LoadTestShape and headless mode [\#1683](https://github.com/locustio/locust/pull/1683) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Stats charts data persistance [\#1681](https://github.com/locustio/locust/pull/1681) ([aek](https://github.com/aek)) - Fix issues with render\_template [\#1680](https://github.com/locustio/locust/pull/1680) ([aek](https://github.com/aek)) - Improve stats data sharing from python to js [\#1679](https://github.com/locustio/locust/pull/1679) ([aek](https://github.com/aek)) - Feature chart sync [\#1678](https://github.com/locustio/locust/pull/1678) ([aek](https://github.com/aek)) - Feature stats exceptions csv [\#1674](https://github.com/locustio/locust/pull/1674) ([aek](https://github.com/aek)) - /swarm adjusted for tests with shape class [\#1671](https://github.com/locustio/locust/pull/1671) ([stanislawskwark](https://github.com/stanislawskwark)) - Fix a typo [\#1665](https://github.com/locustio/locust/pull/1665) ([atktng](https://github.com/atktng)) - Feature chart tooltip custom values - show user count [\#1658](https://github.com/locustio/locust/pull/1658) ([aek](https://github.com/aek)) - Check if running from a tty on windows [\#1657](https://github.com/locustio/locust/pull/1657) ([DennisKrone](https://github.com/DennisKrone)) - Bump Echarts version to show charts legends [\#1655](https://github.com/locustio/locust/pull/1655) ([aek](https://github.com/aek)) - Add example that manually adds stats entries [\#1645](https://github.com/locustio/locust/pull/1645) ([heyman](https://github.com/heyman)) - Use SASS for CSS styling + UI improvements [\#1644](https://github.com/locustio/locust/pull/1644) ([heyman](https://github.com/heyman)) - Fix bug causing test\_stop event to be fired twice in master node [\#1641](https://github.com/locustio/locust/pull/1641) ([heyman](https://github.com/heyman)) - Added --html option to save HTML report [\#1637](https://github.com/locustio/locust/pull/1637) ([rloomans](https://github.com/rloomans)) ## [1.4.1](https://github.com/locustio/locust/tree/1.4.1) (2020-11-16) [Full Changelog](https://github.com/locustio/locust/compare/1.4.0...1.4.1) **Fixed bugs:** - Locust docker version 1.4.0 using 100% CPU on idle [\#1629](https://github.com/locustio/locust/issues/1629) **Merged pull requests:** - Fix 100% cpu usage when running in docker/non-tty terminal [\#1631](https://github.com/locustio/locust/pull/1631) ([DennisKrone](https://github.com/DennisKrone)) ## [1.4.0](https://github.com/locustio/locust/tree/1.4.0) (2020-11-13) [Full Changelog](https://github.com/locustio/locust/compare/1.3.2...1.4.0) **Closed issues:** - Control user count from terminal [\#1600](https://github.com/locustio/locust/issues/1600) - Introduce sensible default settings for run time [\#1598](https://github.com/locustio/locust/issues/1598) - Make wait\_time default to zero \(vote up/down for this ticket please :\) [\#1308](https://github.com/locustio/locust/issues/1308) **Merged pull requests:** - Improve logging about users spawned/stopped [\#1628](https://github.com/locustio/locust/pull/1628) ([cyberw](https://github.com/cyberw)) - Make zero wait time the default [\#1626](https://github.com/locustio/locust/pull/1626) ([cyberw](https://github.com/cyberw)) - Make infinite run time the default when running headless [\#1625](https://github.com/locustio/locust/pull/1625) ([cyberw](https://github.com/cyberw)) - issue-1571 : Added a logging line when workers connect [\#1617](https://github.com/locustio/locust/pull/1617) ([zdannar](https://github.com/zdannar)) - Add key commands for increasing and stopping users [\#1612](https://github.com/locustio/locust/pull/1612) ([DennisKrone](https://github.com/DennisKrone)) ## [1.3.2](https://github.com/locustio/locust/tree/1.3.2) (2020-11-03) [Full Changelog](https://github.com/locustio/locust/compare/1.3.1...1.3.2) **Merged pull requests:** - Run builds for python 3.9 [\#1607](https://github.com/locustio/locust/pull/1607) ([cyberw](https://github.com/cyberw)) - Add note and link to k8s Helm chart [\#1606](https://github.com/locustio/locust/pull/1606) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Replace '\<' and '\>' for swarm 'host' field. Fix for XSS attack. [\#1603](https://github.com/locustio/locust/pull/1603) ([lhupfeldt](https://github.com/lhupfeldt)) ## [1.3.1](https://github.com/locustio/locust/tree/1.3.1) (2020-10-15) [Full Changelog](https://github.com/locustio/locust/compare/1.3.0...1.3.1) ## [1.3.0](https://github.com/locustio/locust/tree/1.3.0) (2020-10-12) [Full Changelog](https://github.com/locustio/locust/compare/1.2.3...1.3.0) **Fixed bugs:** - After starting and then stopping a load test, master is updating state in a loop [\#1577](https://github.com/locustio/locust/issues/1577) - Misleading log message in distributed mode [\#1572](https://github.com/locustio/locust/issues/1572) - LoadTestShape.get\_run\_time is not relative to start of test [\#1557](https://github.com/locustio/locust/issues/1557) - On Stop causes the task to continue [\#1552](https://github.com/locustio/locust/issues/1552) **Closed issues:** - Remove step load feature now that LoadTestShape is possible? [\#1575](https://github.com/locustio/locust/issues/1575) - Add ability to easily extend Locust web UI [\#1530](https://github.com/locustio/locust/issues/1530) - Type hinting for common functions [\#1260](https://github.com/locustio/locust/issues/1260) **Merged pull requests:** - Start web\_ui later to avoid race adding UI routes [\#1585](https://github.com/locustio/locust/pull/1585) ([solowalker27](https://github.com/solowalker27)) - Remove step load feature [\#1584](https://github.com/locustio/locust/pull/1584) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Add more type hints [\#1582](https://github.com/locustio/locust/pull/1582) ([cyberw](https://github.com/cyberw)) - Run time relative to start when using LoadTestShape [\#1581](https://github.com/locustio/locust/pull/1581) ([DennisKrone](https://github.com/DennisKrone)) - Don't log state change if it's the same [\#1580](https://github.com/locustio/locust/pull/1580) ([max-rocket-internet](https://github.com/max-rocket-internet)) - SequentialTaskSet improvements [\#1579](https://github.com/locustio/locust/pull/1579) ([cyberw](https://github.com/cyberw)) - Fixed documentation for tags to link properly. [\#1578](https://github.com/locustio/locust/pull/1578) ([Trouv](https://github.com/Trouv)) - More easily extend web UI [\#1574](https://github.com/locustio/locust/pull/1574) ([solowalker27](https://github.com/solowalker27)) - Only warn about open file limit when not running as master [\#1573](https://github.com/locustio/locust/pull/1573) ([parberge](https://github.com/parberge)) - Adding more debug logging for runners.py [\#1570](https://github.com/locustio/locust/pull/1570) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Add friendlier message about expected limit [\#1566](https://github.com/locustio/locust/pull/1566) ([parberge](https://github.com/parberge)) - Update documentation for schedule\_task parameters in TaskSet \(task.py\) [\#1565](https://github.com/locustio/locust/pull/1565) ([kmels](https://github.com/kmels)) - Added comment for clarity [\#1561](https://github.com/locustio/locust/pull/1561) ([raiyankamal](https://github.com/raiyankamal)) - Refactor and fix delayed user stopping in combination with on\_stop [\#1560](https://github.com/locustio/locust/pull/1560) ([cyberw](https://github.com/cyberw)) - Remove legacy code that was only needed for py2 [\#1559](https://github.com/locustio/locust/pull/1559) ([cyberw](https://github.com/cyberw)) - Clean up code and tighten flake8 linting [\#1558](https://github.com/locustio/locust/pull/1558) ([cyberw](https://github.com/cyberw)) ## [1.2.3](https://github.com/locustio/locust/tree/1.2.3) (2020-08-28) [Full Changelog](https://github.com/locustio/locust/compare/1.2.2...1.2.3) **Fixed bugs:** - Unable to install packages using pip [\#1548](https://github.com/locustio/locust/issues/1548) - Cant start: Werkzeug: TypeError: code\(\) takes at least 14 arguments \(13 given\) [\#1545](https://github.com/locustio/locust/issues/1545) - use\_as\_lib.py example getting stuck when running [\#1542](https://github.com/locustio/locust/issues/1542) - Locust stuck in "Shape worker starting" when restarting a test from the webUI [\#1540](https://github.com/locustio/locust/issues/1540) **Closed issues:** - Let's fix code to be PEP8 compliant? [\#1489](https://github.com/locustio/locust/issues/1489) **Merged pull requests:** - Various linting fixes [\#1549](https://github.com/locustio/locust/pull/1549) ([cyberw](https://github.com/cyberw)) - Reformat code using black. Also add black --check to build. [\#1547](https://github.com/locustio/locust/pull/1547) ([cyberw](https://github.com/cyberw)) - fix use\_as\_lib example [\#1543](https://github.com/locustio/locust/pull/1543) ([taojy123](https://github.com/taojy123)) - Fix stopping and restarting of LoadTestShape test [\#1541](https://github.com/locustio/locust/pull/1541) ([max-rocket-internet](https://github.com/max-rocket-internet)) ## [1.2.2](https://github.com/locustio/locust/tree/1.2.2) (2020-08-22) [Full Changelog](https://github.com/locustio/locust/compare/1.2.1...1.2.2) **Merged pull requests:** - Fix load shape worker in headless. [\#1539](https://github.com/locustio/locust/pull/1539) ([cyberw](https://github.com/cyberw)) - Add test case for stats\_history [\#1538](https://github.com/locustio/locust/pull/1538) ([taojy123](https://github.com/taojy123)) - Update README.md to have full links to images [\#1536](https://github.com/locustio/locust/pull/1536) ([max-rocket-internet](https://github.com/max-rocket-internet)) ## [1.2.1](https://github.com/locustio/locust/tree/1.2.1) (2020-08-20) [Full Changelog](https://github.com/locustio/locust/compare/1.2...1.2.1) **Fixed bugs:** - ValueError: StatsEntry.use\_response\_times\_cache must be set to True [\#1531](https://github.com/locustio/locust/issues/1531) **Merged pull requests:** - fix \#1531 \(ValueError: StatsEntry.use\_response\_times\_cache must be set to True\) [\#1534](https://github.com/locustio/locust/pull/1534) ([cyberw](https://github.com/cyberw)) - Add missing parameter to render\_template to grey out UI fields [\#1533](https://github.com/locustio/locust/pull/1533) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Update repo README with new wording, locust example, screenshots [\#1532](https://github.com/locustio/locust/pull/1532) ([max-rocket-internet](https://github.com/max-rocket-internet)) ## [1.2](https://github.com/locustio/locust/tree/1.2) (2020-08-19) [Full Changelog](https://github.com/locustio/locust/compare/1.1.1...1.2) **Fixed bugs:** - Excessive precision of metrics in losust csv stats [\#1501](https://github.com/locustio/locust/issues/1501) - WorkerRunner spawns heartbeat before setting worker\_state [\#1500](https://github.com/locustio/locust/issues/1500) - Negative min\_response\_time shown in stats [\#1487](https://github.com/locustio/locust/issues/1487) - Unhandled exception: ConnectionResetError, Connection reset by peer \(FastHttpUser\) [\#1472](https://github.com/locustio/locust/issues/1472) **Closed issues:** - Change the position of dividers in command line report [\#1514](https://github.com/locustio/locust/issues/1514) - Allow negative hatch rate for ramping down [\#1488](https://github.com/locustio/locust/issues/1488) - Missing URL to download full csv history [\#1468](https://github.com/locustio/locust/issues/1468) - Support for completely custom load pattern / shape [\#1432](https://github.com/locustio/locust/issues/1432) - rename "hatch rate" to "spawn rate" [\#1405](https://github.com/locustio/locust/issues/1405) **Merged pull requests:** - Doc review changes [\#1528](https://github.com/locustio/locust/pull/1528) ([phil-davis](https://github.com/phil-davis)) - Major rework of documentation & many small fixes [\#1527](https://github.com/locustio/locust/pull/1527) ([cyberw](https://github.com/cyberw)) - Make hatch-rate parameter deprecated instead of killing it right away. [\#1526](https://github.com/locustio/locust/pull/1526) ([cyberw](https://github.com/cyberw)) - Move dividers \(pipe characters\) in stats command line output. Also shrink percentiles output and remove 99.999 percentile by default Fixes \#1514 [\#1525](https://github.com/locustio/locust/pull/1525) ([cyberw](https://github.com/cyberw)) - Grey out UI input fields when LoadTestShape is in use [\#1524](https://github.com/locustio/locust/pull/1524) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Rename hatch rate to spawn rate. Fixes \#1405 [\#1523](https://github.com/locustio/locust/pull/1523) ([cyberw](https://github.com/cyberw)) - Keep csv files open [\#1522](https://github.com/locustio/locust/pull/1522) ([lhupfeldt](https://github.com/lhupfeldt)) - Fix issue with non str, non Exception type failure messages [\#1517](https://github.com/locustio/locust/pull/1517) ([cyberw](https://github.com/cyberw)) - Add Feature: Download Report File [\#1516](https://github.com/locustio/locust/pull/1516) ([taojy123](https://github.com/taojy123)) - Fix typos [\#1512](https://github.com/locustio/locust/pull/1512) ([phil-davis](https://github.com/phil-davis)) - Fix typo of failure\_percentage in test\_stats.py [\#1511](https://github.com/locustio/locust/pull/1511) ([phil-davis](https://github.com/phil-davis)) - Fix old HttpLocust reference in docs [\#1508](https://github.com/locustio/locust/pull/1508) ([phil-davis](https://github.com/phil-davis)) - Adding ability to generate any custom load shape with LoadTestShape class [\#1505](https://github.com/locustio/locust/pull/1505) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Download full history - see issue 1468 [\#1504](https://github.com/locustio/locust/pull/1504) ([lhupfeldt](https://github.com/lhupfeldt)) - Fix csv stats precision [\#1503](https://github.com/locustio/locust/pull/1503) ([vstepanov-lohika-tix](https://github.com/vstepanov-lohika-tix)) - Allow ramping down of users [\#1502](https://github.com/locustio/locust/pull/1502) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Add 2 things to .gitignore [\#1498](https://github.com/locustio/locust/pull/1498) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Print valid URL when --web-host is not specified [\#1496](https://github.com/locustio/locust/pull/1496) ([dmitrytokarev](https://github.com/dmitrytokarev)) - Replace time.time\(\) with time.monotonic\(\) [\#1492](https://github.com/locustio/locust/pull/1492) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Remove "Loadgen" from CPU warning log messages [\#1491](https://github.com/locustio/locust/pull/1491) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Fix small typo in docker docs [\#1490](https://github.com/locustio/locust/pull/1490) ([max-rocket-internet](https://github.com/max-rocket-internet)) - fade into the running screen before getting a response from the server [\#1479](https://github.com/locustio/locust/pull/1479) ([camilojimenez](https://github.com/camilojimenez)) - Refactoring stats to handle custom percentiles [\#1477](https://github.com/locustio/locust/pull/1477) ([vstepanov-lohika-tix](https://github.com/vstepanov-lohika-tix)) - Handle connection reset error in fast http client [\#1475](https://github.com/locustio/locust/pull/1475) ([mkarlovich](https://github.com/mkarlovich)) ## [1.1.1](https://github.com/locustio/locust/tree/1.1.1) (2020-07-07) [Full Changelog](https://github.com/locustio/locust/compare/1.1...1.1.1) **Fixed bugs:** - --run-time flag is not respected if there is an exception in a test\_stop listener [\#1461](https://github.com/locustio/locust/issues/1461) - Unhandled exception: stream ended at an unexpected time [\#1457](https://github.com/locustio/locust/issues/1457) - Unhandled `UnicodeDecodeError` exception if response with status 400 and request contains binary payload \(for FastHttpUser\) [\#1447](https://github.com/locustio/locust/issues/1447) **Closed issues:** - FastHttpUser: Show error codes on 'Failures' page for 'BadStatusCode' exception [\#1460](https://github.com/locustio/locust/issues/1460) **Merged pull requests:** - Improve logging when locust master port is busy. [\#1471](https://github.com/locustio/locust/pull/1471) ([cyberw](https://github.com/cyberw)) - Handle http parse exceptions [\#1464](https://github.com/locustio/locust/pull/1464) ([magupov](https://github.com/magupov)) - Gracefully handle exceptions in event listeners [\#1462](https://github.com/locustio/locust/pull/1462) ([camilojimenez](https://github.com/camilojimenez)) ## [1.1](https://github.com/locustio/locust/tree/1.1) (2020-06-28) [Full Changelog](https://github.com/locustio/locust/compare/1.0.3...1.1) **Fixed bugs:** - Charts are twice as high as they need to [\#1440](https://github.com/locustio/locust/issues/1440) - Master-host IP is not overrided by environment variable. [\#1424](https://github.com/locustio/locust/issues/1424) - Two test\_stop events triggered when --run-time expires [\#1421](https://github.com/locustio/locust/issues/1421) - Locust Installation error on Ubuntu 16.04 and Debian Stretch [\#1418](https://github.com/locustio/locust/issues/1418) - locust doesn't escape the double quotes in the csv output [\#1417](https://github.com/locustio/locust/issues/1417) - on\_master\_stop\_hatching is not triggered on master when hatching terminates [\#1295](https://github.com/locustio/locust/issues/1295) - Installing 0.12.1 requires "pipenv lock --pre" [\#1116](https://github.com/locustio/locust/issues/1116) **Closed issues:** - Ability to run test\_start on workers. [\#1408](https://github.com/locustio/locust/issues/1408) - Ability to Stop Locust Client from within the test script [\#1192](https://github.com/locustio/locust/issues/1192) **Merged pull requests:** - Fixes a typo [\#1454](https://github.com/locustio/locust/pull/1454) ([Waples](https://github.com/Waples)) - minor typos in docs [\#1453](https://github.com/locustio/locust/pull/1453) ([howardosborne](https://github.com/howardosborne)) - fixed up environment.parsed\_options [\#1450](https://github.com/locustio/locust/pull/1450) ([pentop](https://github.com/pentop)) - Allow Users to stop the runner by calling self.environment.runner.quit\(\) \(without deadlocking sometimes\) [\#1448](https://github.com/locustio/locust/pull/1448) ([cyberw](https://github.com/cyberw)) - Cut to only 5% free space on the top of the graphs [\#1443](https://github.com/locustio/locust/pull/1443) ([benallard](https://github.com/benallard)) - Base Locust Docker image on non-alpine python image [\#1435](https://github.com/locustio/locust/pull/1435) ([heyman](https://github.com/heyman)) - Quickstart documentation clarification. [\#1434](https://github.com/locustio/locust/pull/1434) ([JamesB41](https://github.com/JamesB41)) - Use csv module to generate csv data [\#1428](https://github.com/locustio/locust/pull/1428) ([ajt89](https://github.com/ajt89)) - Add simple documentation with use case for init event [\#1415](https://github.com/locustio/locust/pull/1415) ([Zooce](https://github.com/Zooce)) - Simplify documentation of catch\_response & add example of response time validation. [\#1414](https://github.com/locustio/locust/pull/1414) ([cyberw](https://github.com/cyberw)) ## [1.0.3](https://github.com/locustio/locust/tree/1.0.3) (2020-06-05) [Full Changelog](https://github.com/locustio/locust/compare/1.0.2...1.0.3) **Fixed bugs:** - Search is broken on readthedocs [\#1391](https://github.com/locustio/locust/issues/1391) **Closed issues:** - Custom Request/sec exit code [\#587](https://github.com/locustio/locust/issues/587) **Merged pull requests:** - Remove Bad Apostrophe [\#1411](https://github.com/locustio/locust/pull/1411) ([curtisgibby](https://github.com/curtisgibby)) - update \_\_init\_\_ file [\#1409](https://github.com/locustio/locust/pull/1409) ([manifiko](https://github.com/manifiko)) - Rename 3 remaining instances of slave to worker [\#1400](https://github.com/locustio/locust/pull/1400) ([ibrahima](https://github.com/ibrahima)) - The format for providing host can be confusing at times [\#1398](https://github.com/locustio/locust/pull/1398) ([jo19in1](https://github.com/jo19in1)) - Ability to control the Locust process' exit code [\#1396](https://github.com/locustio/locust/pull/1396) ([heyman](https://github.com/heyman)) ## [1.0.2](https://github.com/locustio/locust/tree/1.0.2) (2020-05-25) [Full Changelog](https://github.com/locustio/locust/compare/1.0.1...1.0.2) **Fixed bugs:** - Update flask version [\#1394](https://github.com/locustio/locust/issues/1394) - Got "unknown user exception" when use --step-load and --step-clients [\#1385](https://github.com/locustio/locust/issues/1385) - SequentialTaskSet is broken when using local class members \(headless mode\) [\#1379](https://github.com/locustio/locust/issues/1379) - FastHttpLocust + SNI [\#1369](https://github.com/locustio/locust/issues/1369) **Closed issues:** - We should check limits \(ulimit\) and warn if they are too low [\#1368](https://github.com/locustio/locust/issues/1368) - Run locust as a job but still have access to the API. [\#1305](https://github.com/locustio/locust/issues/1305) - error: argument --master-port: invalid int value bug [\#1226](https://github.com/locustio/locust/issues/1226) **Merged pull requests:** - Update flask requirement. Fixes \#1394 [\#1395](https://github.com/locustio/locust/pull/1395) ([cyberw](https://github.com/cyberw)) - Bump geventhttpclient and switch back to use its original repo + fix windows issue with resource module [\#1388](https://github.com/locustio/locust/pull/1388) ([cyberw](https://github.com/cyberw)) - Rework quickstart documentation and update some documentation for 1.0 [\#1384](https://github.com/locustio/locust/pull/1384) ([cyberw](https://github.com/cyberw)) - Make TaskSet .user and .parent read only properties, avoids / fixes \#1379 [\#1380](https://github.com/locustio/locust/pull/1380) ([cyberw](https://github.com/cyberw)) - Fixed typo [\#1378](https://github.com/locustio/locust/pull/1378) ([rahulrai-in](https://github.com/rahulrai-in)) - Try to increase open files limit and warn if it is still too low afterwards [\#1375](https://github.com/locustio/locust/pull/1375) ([cyberw](https://github.com/cyberw)) ## [1.0.1](https://github.com/locustio/locust/tree/1.0.1) (2020-05-16) [Full Changelog](https://github.com/locustio/locust/compare/1.0...1.0.1) **Merged pull requests:** - Add metadata for the locust PyPI package that marks the locustio package as obsolete [\#1377](https://github.com/locustio/locust/pull/1377) ([heyman](https://github.com/heyman)) ## [1.0](https://github.com/locustio/locust/tree/1.0) (2020-05-16) [Full Changelog](https://github.com/locustio/locust/compare/1.0b2...1.0) **Fixed bugs:** - FastHttpUser doesn't use the SNI TLS extension [\#1360](https://github.com/locustio/locust/issues/1360) - DEBUG output in docker is not working [\#1337](https://github.com/locustio/locust/issues/1337) - Can't run Locust distributed with --csv-full-history [\#1315](https://github.com/locustio/locust/issues/1315) - \[Nested TaskSet\] Child TaskSet's on\_stop method is not called when GreenletExit [\#1206](https://github.com/locustio/locust/issues/1206) **Closed issues:** - Add @only decorator to TaskSets [\#1275](https://github.com/locustio/locust/issues/1275) - resp.failure\(\) shouldnt immediately log a failed request, just mark it a such [\#1335](https://github.com/locustio/locust/issues/1335) - Change CSV column names [\#1317](https://github.com/locustio/locust/issues/1317) - Remove @seq\_task and instead add a SequentialTaskSet class [\#1286](https://github.com/locustio/locust/issues/1286) - Change how logging is handled [\#1285](https://github.com/locustio/locust/issues/1285) - Remove the Locust.setup and Locust.teardown hooks in favour of adding test\_start and test\_stop events [\#1284](https://github.com/locustio/locust/issues/1284) - Rename Locust to User/LocustUser [\#1283](https://github.com/locustio/locust/issues/1283) - Clean up among the command line arguments [\#1282](https://github.com/locustio/locust/issues/1282) - Docker image should not require TARGET\_URL [\#1247](https://github.com/locustio/locust/issues/1247) - Duplicate/confusing entry in pypi [\#817](https://github.com/locustio/locust/issues/817) - How to run test programatically [\#222](https://github.com/locustio/locust/issues/222) - Alternative terminology for "slave" [\#220](https://github.com/locustio/locust/issues/220) **Merged pull requests:** - Remove task arguments [\#1370](https://github.com/locustio/locust/pull/1370) ([heyman](https://github.com/heyman)) - Add task marking for running more specific tests [\#1358](https://github.com/locustio/locust/pull/1358) ([Trouv](https://github.com/Trouv)) - Add User count to CSV history stats [\#1316](https://github.com/locustio/locust/pull/1316) ([heyman](https://github.com/heyman)) - Rename locust to user [\#1314](https://github.com/locustio/locust/pull/1314) ([anuj-ssharma](https://github.com/anuj-ssharma)) ## [1.0b2](https://github.com/locustio/locust/tree/1.0b2) (2020-05-01) [Full Changelog](https://github.com/locustio/locust/compare/1.0b1...1.0b2) **Closed issues:** - Add --config parameter [\#1334](https://github.com/locustio/locust/issues/1334) - clean up core.py & \_\_init\_\_.py [\#1328](https://github.com/locustio/locust/issues/1328) **Merged pull requests:** - Split core.py into two files in separate python package [\#1361](https://github.com/locustio/locust/pull/1361) ([heyman](https://github.com/heyman)) - --config command line argument [\#1359](https://github.com/locustio/locust/pull/1359) ([MattFisher](https://github.com/MattFisher)) ## [1.0b1](https://github.com/locustio/locust/tree/1.0b1) (2020-04-29) [Full Changelog](https://github.com/locustio/locust/compare/0.14.6...1.0b1) **Fixed bugs:** - Docker image: worker mode not starting correctly [\#1322](https://github.com/locustio/locust/issues/1322) - Exception throws on attempt to report request results to master [\#1293](https://github.com/locustio/locust/issues/1293) - Can't access web interface [\#1288](https://github.com/locustio/locust/issues/1288) - Web page is confused when I shutdown the only slave [\#1279](https://github.com/locustio/locust/issues/1279) - \[Documentation\] Bleeding Edge link is broken [\#1278](https://github.com/locustio/locust/issues/1278) - Locust Web Dashboard Charts, Slaves sections not working after certain time [\#1276](https://github.com/locustio/locust/issues/1276) - Connection pool is full, discarding connection | 'Connection aborted.', RemoteDisconnected\('Remote end closed connection without response [\#1263](https://github.com/locustio/locust/issues/1263) **Closed issues:** - Retrieving response time on Master while execution is going on through custom code in no-web mode [\#1351](https://github.com/locustio/locust/issues/1351) - "Order of events" clarification [\#1349](https://github.com/locustio/locust/issues/1349) - More information in csv reports [\#1292](https://github.com/locustio/locust/issues/1292) - Rename and restructure Locust/TaskSet [\#1264](https://github.com/locustio/locust/issues/1264) - Add `allow\_redirects` option to FastHttpSession.request [\#1238](https://github.com/locustio/locust/issues/1238) - Retrieve failures.csv in --no-web mode [\#1237](https://github.com/locustio/locust/issues/1237) - command line arguments for clients and spawn rate should populate ui in the same way as url [\#1186](https://github.com/locustio/locust/issues/1186) **Merged pull requests:** - Environment variable configuration changes [\#1355](https://github.com/locustio/locust/pull/1355) ([heyman](https://github.com/heyman)) - Add CLI params for TLS cert and key - serves over HTTPS [\#1354](https://github.com/locustio/locust/pull/1354) ([mattdodge](https://github.com/mattdodge)) - Add allow\_redirects parameter to FastHttpLocust.client.request\(\). Fixes \#1238 [\#1344](https://github.com/locustio/locust/pull/1344) ([cyberw](https://github.com/cyberw)) - Give better error message when kubernetes env vars collide with locust's [\#1343](https://github.com/locustio/locust/pull/1343) ([cyberw](https://github.com/cyberw)) - Fix web options [\#1340](https://github.com/locustio/locust/pull/1340) ([Trouv](https://github.com/Trouv)) - Populate UI fields with -c, -r, --step-clients, and --step-time options [\#1339](https://github.com/locustio/locust/pull/1339) ([Trouv](https://github.com/Trouv)) - Remove docker\_start.sh and set locust as entrypoint for official Docker image [\#1338](https://github.com/locustio/locust/pull/1338) ([heyman](https://github.com/heyman)) - Allow multiple calls to response.failure\(\) or response.success\(\) within the same with block [\#1336](https://github.com/locustio/locust/pull/1336) ([heyman](https://github.com/heyman)) - Removed double consideration of same timestamp [\#1332](https://github.com/locustio/locust/pull/1332) ([Oribow](https://github.com/Oribow)) - Make all LocustRunners aware of their target\_user\_count, not just MasterLocustRunner [\#1331](https://github.com/locustio/locust/pull/1331) ([cyberw](https://github.com/cyberw)) - Import wait functions from locust instead of locust.wait\_time [\#1330](https://github.com/locustio/locust/pull/1330) ([cyberw](https://github.com/cyberw)) - Stop exposing exceptions on locust module, remove old wait api \(step 1 of fixing \#1328\) [\#1329](https://github.com/locustio/locust/pull/1329) ([cyberw](https://github.com/cyberw)) - Add Runners, WebUI and Environment to the public API [\#1327](https://github.com/locustio/locust/pull/1327) ([heyman](https://github.com/heyman)) - Update main.py about gevent.signal\(\) [\#1326](https://github.com/locustio/locust/pull/1326) ([test-bai-cpu](https://github.com/test-bai-cpu)) - Improve how we do logging [\#1325](https://github.com/locustio/locust/pull/1325) ([heyman](https://github.com/heyman)) - Worker quitting then stopping via web UI bug fix [\#1324](https://github.com/locustio/locust/pull/1324) ([Trouv](https://github.com/Trouv)) - Fixed some spelling/grammar on docstrings in core.py [\#1323](https://github.com/locustio/locust/pull/1323) ([Trouv](https://github.com/Trouv)) - Add basic auth for webui [\#1313](https://github.com/locustio/locust/pull/1313) ([anuj-ssharma](https://github.com/anuj-ssharma)) - Group related command line options together [\#1311](https://github.com/locustio/locust/pull/1311) ([heyman](https://github.com/heyman)) - Replace TaskSequence and @seq\_task with SequentialTaskSet [\#1310](https://github.com/locustio/locust/pull/1310) ([heyman](https://github.com/heyman)) - Replace locust setup teardown with events [\#1309](https://github.com/locustio/locust/pull/1309) ([heyman](https://github.com/heyman)) - Decouple Runner and Locust code by introducing Locust.start and Locust.stop methods [\#1306](https://github.com/locustio/locust/pull/1306) ([heyman](https://github.com/heyman)) - Allow tasks to be declared directly under Locust classes [\#1304](https://github.com/locustio/locust/pull/1304) ([heyman](https://github.com/heyman)) - ensure the connection between master and slave in heartbeat [\#1280](https://github.com/locustio/locust/pull/1280) ([delulu](https://github.com/delulu)) ## [0.14.6](https://github.com/locustio/locust/tree/0.14.6) (2020-02-25) [Full Changelog](https://github.com/locustio/locust/compare/0.14.5...0.14.6) **Closed issues:** - Fix simple typo: betwen -\> between [\#1268](https://github.com/locustio/locust/issues/1268) **Merged pull requests:** - Fix simple typo: betwen -\> between [\#1269](https://github.com/locustio/locust/pull/1269) ([timgates42](https://github.com/timgates42)) ## [0.14.5](https://github.com/locustio/locust/tree/0.14.5) (2020-02-25) [Full Changelog](https://github.com/locustio/locust/compare/0.14.4...0.14.5) **Fixed bugs:** - Code blocks in docs not rendered [\#1258](https://github.com/locustio/locust/issues/1258) - Unable to install on windows [\#1254](https://github.com/locustio/locust/issues/1254) **Closed issues:** - Remove support for Python 2.7 & 3.5 [\#1120](https://github.com/locustio/locust/issues/1120) **Merged pull requests:** - add json\(\) method to FastHttpLocust \(to match regular HttpLocust\) [\#1259](https://github.com/locustio/locust/pull/1259) ([cyberw](https://github.com/cyberw)) - docs: remove the description of port 5558 [\#1255](https://github.com/locustio/locust/pull/1255) ([orisano](https://github.com/orisano)) - Remove six and other 2.7 compatibility code [\#1253](https://github.com/locustio/locust/pull/1253) ([cyberw](https://github.com/cyberw)) ## [0.14.4](https://github.com/locustio/locust/tree/0.14.4) (2020-02-03) [Full Changelog](https://github.com/locustio/locust/compare/0.14.3...0.14.4) **Fixed bugs:** - FastHttpLocust times out when HttpLocust does not [\#1246](https://github.com/locustio/locust/issues/1246) ## [0.14.3](https://github.com/locustio/locust/tree/0.14.3) (2020-02-03) [Full Changelog](https://github.com/locustio/locust/compare/0.14.2...0.14.3) ## [0.14.2](https://github.com/locustio/locust/tree/0.14.2) (2020-02-03) [Full Changelog](https://github.com/locustio/locust/compare/0.14.1...0.14.2) ## [0.14.1](https://github.com/locustio/locust/tree/0.14.1) (2020-02-03) [Full Changelog](https://github.com/locustio/locust/compare/0.14.0...0.14.1) ## [0.14.0](https://github.com/locustio/locust/tree/0.14.0) (2020-02-03) [Full Changelog](https://github.com/locustio/locust/compare/0.13.5...0.14.0) **Fixed bugs:** - FastHttpLocust gives error when using valid url. [\#1222](https://github.com/locustio/locust/issues/1222) - Error generating request statistics CSV in master–slave mode [\#1191](https://github.com/locustio/locust/issues/1191) - Stats are reset when re-balancing users across slave nodes [\#1168](https://github.com/locustio/locust/issues/1168) - Slave count stuck at 3 instead of decreasing to 1 due to "missing" [\#1158](https://github.com/locustio/locust/issues/1158) **Closed issues:** - scale clients up and down during a run [\#1185](https://github.com/locustio/locust/issues/1185) - Locust should warn if CPU usage is too high [\#1161](https://github.com/locustio/locust/issues/1161) - Support Step Load Pattern \(up & down\) [\#1001](https://github.com/locustio/locust/issues/1001) - Provide a way to specify locust counts and hatch rate per locust class [\#683](https://github.com/locustio/locust/issues/683) **Merged pull requests:** - Save failures.csv in --no-web mode [\#1245](https://github.com/locustio/locust/pull/1245) ([ajt89](https://github.com/ajt89)) - Drop support for pre 3.6 Python versions \(give error during installation\) [\#1243](https://github.com/locustio/locust/pull/1243) ([cyberw](https://github.com/cyberw)) - Warn if CPU usage is too high \(\>90%\) \#1161 [\#1236](https://github.com/locustio/locust/pull/1236) ([cyberw](https://github.com/cyberw)) - Update docs for running locust in Step Load Mode [\#1235](https://github.com/locustio/locust/pull/1235) ([delulu](https://github.com/delulu)) - allow 1 percent codecov degradation before failing build \(because it is flaky\) [\#1230](https://github.com/locustio/locust/pull/1230) ([cyberw](https://github.com/cyberw)) - Disable codecov patch analysis, because it fails all the time [\#1229](https://github.com/locustio/locust/pull/1229) ([cyberw](https://github.com/cyberw)) - Relax host checking for FastHttpLocust to be more in line with HttpLocust. Fixes \#1222 [\#1227](https://github.com/locustio/locust/pull/1227) ([cyberw](https://github.com/cyberw)) - Add "Running Locust with Docker" to the TOC [\#1221](https://github.com/locustio/locust/pull/1221) ([TBBle](https://github.com/TBBle)) - Fix link formatting for the Helm chart [\#1219](https://github.com/locustio/locust/pull/1219) ([TBBle](https://github.com/TBBle)) - fix: change typo UserBehavior to UserBehaviour [\#1218](https://github.com/locustio/locust/pull/1218) ([aasmpro](https://github.com/aasmpro)) - Fix 'd rop-in' typo to 'drop-in' [\#1215](https://github.com/locustio/locust/pull/1215) ([jenglamlow](https://github.com/jenglamlow)) - Update running-locust-distributed.rst [\#1212](https://github.com/locustio/locust/pull/1212) ([Neamar](https://github.com/Neamar)) - Warn if spawn rate is too high. Adresses bug \#1174 for example. [\#1211](https://github.com/locustio/locust/pull/1211) ([cyberw](https://github.com/cyberw)) - Allow users to override encoding when decoding requests \(maybe using chardet, as was the default before\) [\#1204](https://github.com/locustio/locust/pull/1204) ([cyberw](https://github.com/cyberw)) - Allow min\_wait and max\_wait times of 0 [\#1199](https://github.com/locustio/locust/pull/1199) ([Aresius423](https://github.com/Aresius423)) ## [0.13.5](https://github.com/locustio/locust/tree/0.13.5) (2019-12-17) [Full Changelog](https://github.com/locustio/locust/compare/0.13.4...0.13.5) **Fixed bugs:** - Fix percentiles printed in \_stats.csv file [\#1198](https://github.com/locustio/locust/issues/1198) - set default Accept-Encoding to "gzip, deflate" in FastHttpLocust to match HttpLocust behaviour [\#1195](https://github.com/locustio/locust/issues/1195) - FastHttpLocust is very slow at returning the response text [\#1193](https://github.com/locustio/locust/issues/1193) **Merged pull requests:** - Use `response\_time\_percentile` for \\_stats.csv file instead of `current\_response\_time\_percentile` [\#1197](https://github.com/locustio/locust/pull/1197) ([mehta-ankit](https://github.com/mehta-ankit)) - Send Accept-Encoding: gzip, deflate as default in FastHttpLocust. [\#1196](https://github.com/locustio/locust/pull/1196) ([cyberw](https://github.com/cyberw)) - Get encoding from content-type header instead of autodetecting using chardet \(which is slow\) [\#1194](https://github.com/locustio/locust/pull/1194) ([cyberw](https://github.com/cyberw)) ## [0.13.4](https://github.com/locustio/locust/tree/0.13.4) (2019-12-16) [Full Changelog](https://github.com/locustio/locust/compare/0.13.3...0.13.4) ## [0.13.3](https://github.com/locustio/locust/tree/0.13.3) (2019-12-13) [Full Changelog](https://github.com/locustio/locust/compare/0.13.2...0.13.3) **Fixed bugs:** - Time response graph is not working on master/slave configuration [\#1182](https://github.com/locustio/locust/issues/1182) - Unable to properly connect multiple slaves, master [\#1176](https://github.com/locustio/locust/issues/1176) - Zero exit code on exception [\#1172](https://github.com/locustio/locust/issues/1172) - `--stop-timeout` is not respected when changing number of running Users in distributed mode [\#1162](https://github.com/locustio/locust/issues/1162) **Closed issues:** - "Percentage of the requests.." table has missing column headers [\#1180](https://github.com/locustio/locust/issues/1180) - Set locust parameters via env vars & config file [\#1166](https://github.com/locustio/locust/issues/1166) **Merged pull requests:** - Use ConfigArgParse instead of argparse, to support getting parameters from config file and/or env vars. [\#1167](https://github.com/locustio/locust/pull/1167) ([cyberw](https://github.com/cyberw)) - Add toolbox control for for downloading chart as png [\#1165](https://github.com/locustio/locust/pull/1165) ([skivis](https://github.com/skivis)) - Allow locust to get SIGTERM\(aka Ctrl+C\) messages. [\#1159](https://github.com/locustio/locust/pull/1159) ([turgayozgur](https://github.com/turgayozgur)) - Stats: New argument "--csv-full-history" appends stats entries every interval in a new "\_stats\_history.csv" File [\#1146](https://github.com/locustio/locust/pull/1146) ([mehta-ankit](https://github.com/mehta-ankit)) - Support Step Load Pattern [\#1002](https://github.com/locustio/locust/pull/1002) ([delulu](https://github.com/delulu)) ## [0.13.2](https://github.com/locustio/locust/tree/0.13.2) (2019-11-18) [Full Changelog](https://github.com/locustio/locust/compare/0.13.1...0.13.2) **Fixed bugs:** - Response Times graph broken \(drops to 0 after a while\) [\#1157](https://github.com/locustio/locust/issues/1157) - TaskSet min\_wait and max\_wait are ignored [\#891](https://github.com/locustio/locust/issues/891) **Closed issues:** - Add charts for number of failures in the Web UI [\#952](https://github.com/locustio/locust/issues/952) ## [0.13.1](https://github.com/locustio/locust/tree/0.13.1) (2019-11-16) [Full Changelog](https://github.com/locustio/locust/compare/0.13.0...0.13.1) **Fixed bugs:** - Web UI doesn't start on Python 3.8.0 [\#1154](https://github.com/locustio/locust/issues/1154) - When locust exits the current RPS is outputted instead of the total RPS [\#1152](https://github.com/locustio/locust/issues/1152) - Missing headline columns in response time percentile stats printed to console [\#1151](https://github.com/locustio/locust/issues/1151) **Closed issues:** - Be able to install pip packages using the docker image [\#1149](https://github.com/locustio/locust/issues/1149) **Merged pull requests:** - Docker: add home directory for locust user to install pip packages [\#1150](https://github.com/locustio/locust/pull/1150) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Revert "update build\_url function in Locust HttpSession " [\#1148](https://github.com/locustio/locust/pull/1148) ([vstepanov-lohika-tix](https://github.com/vstepanov-lohika-tix)) ## [0.13.0](https://github.com/locustio/locust/tree/0.13.0) (2019-11-14) [Full Changelog](https://github.com/locustio/locust/compare/0.12.2...0.13.0) **Fixed bugs:** - autoscaling slaves resets users [\#1143](https://github.com/locustio/locust/issues/1143) - Repeated secure requests with FastHttpLocust crashes in cookie management [\#1138](https://github.com/locustio/locust/issues/1138) - FastHttpLocust gives ssl error with let's encrypt certs [\#1137](https://github.com/locustio/locust/issues/1137) - stop\_timeout defined in Locust class takes precedence over --run-time option [\#1117](https://github.com/locustio/locust/issues/1117) - Test metrics are not preserved on Stop click in the UI [\#883](https://github.com/locustio/locust/issues/883) - locust stuck in hatching state [\#146](https://github.com/locustio/locust/issues/146) **Closed issues:** - To improve build\_url method in Locust HttpSession [\#1133](https://github.com/locustio/locust/issues/1133) - Duplicate API section in navigation of document [\#1132](https://github.com/locustio/locust/issues/1132) - Locust with custom clients only displays maximum response time [\#1084](https://github.com/locustio/locust/issues/1084) - Stop locusts graceful [\#1062](https://github.com/locustio/locust/issues/1062) - could we report 99.9% percentile in CSV file? [\#1040](https://github.com/locustio/locust/issues/1040) - Provide an official Docker image [\#849](https://github.com/locustio/locust/issues/849) - Number of Users Dependent on Number of slaves ? [\#724](https://github.com/locustio/locust/issues/724) - Allow a fixed RPS rate [\#646](https://github.com/locustio/locust/issues/646) - Unique task id available ? [\#349](https://github.com/locustio/locust/issues/349) - nitpick: "\# requests" should be "\# successful requests"? [\#145](https://github.com/locustio/locust/issues/145) - Display percentiles in the UI instead of just min, max and average [\#140](https://github.com/locustio/locust/issues/140) **Merged pull requests:** - Add response\_length to request\_failure event [\#1144](https://github.com/locustio/locust/pull/1144) ([cyberw](https://github.com/cyberw)) - Add failure per seconds as a series in the chart [\#1140](https://github.com/locustio/locust/pull/1140) ([alercunha](https://github.com/alercunha)) - Fix AttributeError: 'CompatRequest' object has no attribute 'type' in Cookiejar [\#1139](https://github.com/locustio/locust/pull/1139) ([cyberw](https://github.com/cyberw)) - update build\_url function in Locust HttpSession [\#1134](https://github.com/locustio/locust/pull/1134) ([vstepanov-lohika-tix](https://github.com/vstepanov-lohika-tix)) - Fix and add test for when locusts fail to exit at end of iteration during stop timeout. [\#1127](https://github.com/locustio/locust/pull/1127) ([cyberw](https://github.com/cyberw)) - Let's stop calling the package beta! [\#1126](https://github.com/locustio/locust/pull/1126) ([cyberw](https://github.com/cyberw)) - Add p99.9 and p99.99 to request stats distribution csv [\#1125](https://github.com/locustio/locust/pull/1125) ([cyberw](https://github.com/cyberw)) - New API for specifying wait time [\#1118](https://github.com/locustio/locust/pull/1118) ([heyman](https://github.com/heyman)) - Add errors grouping for dynamic endpoint [\#993](https://github.com/locustio/locust/pull/993) ([dduleba](https://github.com/dduleba)) - add 90th %ile to the stats page [\#945](https://github.com/locustio/locust/pull/945) ([myzhan](https://github.com/myzhan)) - Make stdout/stderr wrappers identify themselves as not being a tty [\#929](https://github.com/locustio/locust/pull/929) ([michaelboulton](https://github.com/michaelboulton)) - Specify host in web ui [\#523](https://github.com/locustio/locust/pull/523) ([PayscaleNateW](https://github.com/PayscaleNateW)) - make sure the current working dir is in the sys.path [\#484](https://github.com/locustio/locust/pull/484) ([pwnage101](https://github.com/pwnage101)) ## [0.12.2](https://github.com/locustio/locust/tree/0.12.2) (2019-10-26) [Full Changelog](https://github.com/locustio/locust/compare/0.12.1...0.12.2) **Fixed bugs:** - Strange behavior of "Total Requests per Second" chart [\#889](https://github.com/locustio/locust/issues/889) - Response time graph seems to be an average of all data [\#667](https://github.com/locustio/locust/issues/667) - Totals Clarity in Web Results [\#629](https://github.com/locustio/locust/issues/629) - on\_request\_xxx checks exiting condition against the wrong number [\#399](https://github.com/locustio/locust/issues/399) - \[0.7.3\] Total fails percentage calculated wrong on console [\#384](https://github.com/locustio/locust/issues/384) - URL names in dashboard are not HTML escaped [\#374](https://github.com/locustio/locust/issues/374) - Percentage of fails in Total line is greater than 100% [\#357](https://github.com/locustio/locust/issues/357) - Exceptions tab not working for on\_start method [\#269](https://github.com/locustio/locust/issues/269) - Percentile response time anomalies at 100% [\#254](https://github.com/locustio/locust/issues/254) - log.py's StdErrWrapper swallows fatal stacktraces [\#163](https://github.com/locustio/locust/issues/163) - Slave count doesn't get updated in the UI if no more slaves are alive [\#62](https://github.com/locustio/locust/issues/62) **Closed issues:** - 0.12 released on GitHub but not on PyPI [\#1109](https://github.com/locustio/locust/issues/1109) - Samples with response\_time None crashes stats.py [\#1087](https://github.com/locustio/locust/issues/1087) - Requests Per Second Plot Breaks When There are too Many Unique URLs [\#1059](https://github.com/locustio/locust/issues/1059) - UI 'stop' button does not stop test [\#1047](https://github.com/locustio/locust/issues/1047) - Performance degradation for constant wait time [\#1042](https://github.com/locustio/locust/issues/1042) - Locust decorators [\#1036](https://github.com/locustio/locust/issues/1036) - Failure percentage being reported incorrectly [\#1006](https://github.com/locustio/locust/issues/1006) - Start on\_stop not before on\_start has finished [\#969](https://github.com/locustio/locust/issues/969) - Locust slaves are never become ready and get null responce \(locust 0.9.0\) [\#950](https://github.com/locustio/locust/issues/950) - Possible typo in docs [\#946](https://github.com/locustio/locust/issues/946) - New release to PyPi for gevent 1.3 compatibility [\#793](https://github.com/locustio/locust/issues/793) - Control time window for RPS calculation [\#792](https://github.com/locustio/locust/issues/792) - 500 URL limit [\#786](https://github.com/locustio/locust/issues/786) - Save responses to a file [\#774](https://github.com/locustio/locust/issues/774) - custom client from locust documentation doesn't work at all [\#771](https://github.com/locustio/locust/issues/771) - separate charts for requests per second and average response time [\#688](https://github.com/locustio/locust/issues/688) - schedule\_task and data driven load test methodology [\#633](https://github.com/locustio/locust/issues/633) - stop/interrupt weighting/logic for nested tasks that execute a single task [\#632](https://github.com/locustio/locust/issues/632) - self interrupt for inline nested TaskSets? [\#631](https://github.com/locustio/locust/issues/631) - Add new members to Committers Team in the Locust.io Organization [\#628](https://github.com/locustio/locust/issues/628) - locust's statistic collect N/A records [\#626](https://github.com/locustio/locust/issues/626) - how to make all locust users wait after executing on\_start method ? [\#611](https://github.com/locustio/locust/issues/611) - Adding name argument in the http post call with catch response argument [\#608](https://github.com/locustio/locust/issues/608) - EventHook\(\) fired when locust user has stopped [\#604](https://github.com/locustio/locust/issues/604) - Is there a way to de-register slave with master on a slave node shutdown? [\#603](https://github.com/locustio/locust/issues/603) - Unable to Stop locust from Web interface occasionally [\#602](https://github.com/locustio/locust/issues/602) - no-web performance data saved [\#601](https://github.com/locustio/locust/issues/601) - Can you add or can I create a Pull Request to accept a command line option that would enable ALL events \(http requests\) to be logged to a file/location? [\#576](https://github.com/locustio/locust/issues/576) - Median response times off [\#565](https://github.com/locustio/locust/issues/565) - Dedicated Vuser for each API [\#564](https://github.com/locustio/locust/issues/564) - 'module' object has no attribute 'NSIG' [\#518](https://github.com/locustio/locust/issues/518) - running-locust-distributed missing information on worker model [\#492](https://github.com/locustio/locust/issues/492) - locust executes more number of times than I expected [\#455](https://github.com/locustio/locust/issues/455) - Cannot pass the arguments to the tasks [\#380](https://github.com/locustio/locust/issues/380) - Some uncertain for RPS [\#367](https://github.com/locustio/locust/issues/367) - Support for distributing arbitrary arguments to Locust \[Proposal\] [\#345](https://github.com/locustio/locust/issues/345) - Error running distributed mode on Fedora and CentOS [\#271](https://github.com/locustio/locust/issues/271) - RPS for Total shows the instant RPS [\#262](https://github.com/locustio/locust/issues/262) - grouping requests after redirect [\#251](https://github.com/locustio/locust/issues/251) - Locust can not run distributed with the web interface disabled [\#189](https://github.com/locustio/locust/issues/189) - Documentation on how to best configure a \(linux\) machine to run locust [\#128](https://github.com/locustio/locust/issues/128) - See what request generated a failure [\#103](https://github.com/locustio/locust/issues/103) - Support for plugins [\#34](https://github.com/locustio/locust/issues/34) **Merged pull requests:** - fix self.client call in code examples [\#1123](https://github.com/locustio/locust/pull/1123) ([cyberw](https://github.com/cyberw)) - Escape HTML entities in endpoint names \#374 [\#1119](https://github.com/locustio/locust/pull/1119) ([peterdemin](https://github.com/peterdemin)) - Table layout fix to use available space better [\#1114](https://github.com/locustio/locust/pull/1114) ([heyman](https://github.com/heyman)) - Fix rounding error when spawning users from multiple locust classes [\#1113](https://github.com/locustio/locust/pull/1113) ([heyman](https://github.com/heyman)) - Add \_\_main\_\_.py file [\#1112](https://github.com/locustio/locust/pull/1112) ([jdufresne](https://github.com/jdufresne)) - Remove 'dist: xenial' from Travis configuration [\#1111](https://github.com/locustio/locust/pull/1111) ([jdufresne](https://github.com/jdufresne)) - Add Python 3.8 to the test matrix [\#1110](https://github.com/locustio/locust/pull/1110) ([jdufresne](https://github.com/jdufresne)) - Fix empty bytearray\(b''\) returned when using catch\_response=True [\#1105](https://github.com/locustio/locust/pull/1105) ([skivis](https://github.com/skivis)) - Add an option \(--stop-timeout\) to allow tasks to finish running their iteration before exiting [\#1099](https://github.com/locustio/locust/pull/1099) ([cyberw](https://github.com/cyberw)) - Allow None response time for requests [\#1088](https://github.com/locustio/locust/pull/1088) ([cyberw](https://github.com/cyberw)) - Fixed issue with Total Requests Per Second plot [\#1060](https://github.com/locustio/locust/pull/1060) ([williamlhunter](https://github.com/williamlhunter)) - Tox: Add flake8 tests to find Python syntax errors and undefined names [\#1039](https://github.com/locustio/locust/pull/1039) ([cclauss](https://github.com/cclauss)) - Geventhttpclientmergeconflicts [\#838](https://github.com/locustio/locust/pull/838) ([SpencerPinegar](https://github.com/SpencerPinegar)) - Fix frontend bugs. [\#822](https://github.com/locustio/locust/pull/822) ([omittones](https://github.com/omittones)) - Switch from using optparse to argparse for command line arguments [\#769](https://github.com/locustio/locust/pull/769) ([jdufresne](https://github.com/jdufresne)) - Allow skipping the logging setup [\#738](https://github.com/locustio/locust/pull/738) ([Exide](https://github.com/Exide)) - Added link to an Ansible role as a 3rd party tool. [\#704](https://github.com/locustio/locust/pull/704) ([tinx](https://github.com/tinx)) ## [0.12.1](https://github.com/locustio/locust/tree/0.12.1) (2019-10-18) [Full Changelog](https://github.com/locustio/locust/compare/0.12.0...0.12.1) **Fixed bugs:** - AttributeError: 'module' object has no attribute 'sleep' [\#1023](https://github.com/locustio/locust/issues/1023) **Closed issues:** - Throughput \(RPS\) value is not same in Locust WEBUI and http://localhost:8089/stats/requests/csv for same number of requests [\#1108](https://github.com/locustio/locust/issues/1108) - Disable SSL: CERITIFICATE\_VERIFY\_FAILED [\#1104](https://github.com/locustio/locust/issues/1104) - How do i control diving into nested tasksets? [\#1097](https://github.com/locustio/locust/issues/1097) **Merged pull requests:** - Remove concurrency from coverage [\#1102](https://github.com/locustio/locust/pull/1102) ([mbeacom](https://github.com/mbeacom)) - Adding TCP Keep Alive to guarantee master-slave communication after i… [\#1101](https://github.com/locustio/locust/pull/1101) ([albertowar](https://github.com/albertowar)) - Resolve time import error in exception\_handler [\#1095](https://github.com/locustio/locust/pull/1095) ([ajt89](https://github.com/ajt89)) ## [0.12.0](https://github.com/locustio/locust/tree/0.12.0) (2019-10-01) [Full Changelog](https://github.com/locustio/locust/compare/0.11.1...0.12.0) **Fixed bugs:** - response time has too many decimal places in the web statistics page [\#1081](https://github.com/locustio/locust/issues/1081) - Fail ratio calculation for individual requests is incorrect [\#991](https://github.com/locustio/locust/issues/991) **Closed issues:** - Distributed load test k8s and openshift [\#1100](https://github.com/locustio/locust/issues/1100) - Official docker image does not actually exist [\#1092](https://github.com/locustio/locust/issues/1092) - Connection Refused for http://localhost:8089/stats/requests in Locust non web UI mode [\#1086](https://github.com/locustio/locust/issues/1086) - Sequence does not get past first nested sequence. [\#1080](https://github.com/locustio/locust/issues/1080) - Support for asynchronous requests [\#1079](https://github.com/locustio/locust/issues/1079) - Monitoring of server system information being tested [\#1076](https://github.com/locustio/locust/issues/1076) - Logged stats show incorrect failure percentage [\#1074](https://github.com/locustio/locust/issues/1074) - Identical exceptions are not aggregated and counted together [\#1073](https://github.com/locustio/locust/issues/1073) - --no-web -r 1 -c 10 -t 5s --expect-slaves=1 [\#1071](https://github.com/locustio/locust/issues/1071) - Is it possible to start all tests in locust immediately? [\#1070](https://github.com/locustio/locust/issues/1070) - UI stops updating stats/charts when connection is interupted [\#1068](https://github.com/locustio/locust/issues/1068) - When running distributed, stop the test if certain condition is met [\#1067](https://github.com/locustio/locust/issues/1067) - Is it possible to autoscale slaves? [\#1066](https://github.com/locustio/locust/issues/1066) - docs.locust.io out of date [\#1064](https://github.com/locustio/locust/issues/1064) - unable to load testing of webmethod \(.asmx\) [\#1061](https://github.com/locustio/locust/issues/1061) - Distributed master hangs [\#1058](https://github.com/locustio/locust/issues/1058) - locust swarm can not control the machine over internet [\#1056](https://github.com/locustio/locust/issues/1056) - Total Requests per Second not plotting [\#1055](https://github.com/locustio/locust/issues/1055) - No module named 'HTTPLocust' [\#1054](https://github.com/locustio/locust/issues/1054) - Call wait function in on\_start [\#1053](https://github.com/locustio/locust/issues/1053) - The locust interface does not start [\#1050](https://github.com/locustio/locust/issues/1050) - why drop the "-n "prameter after version 0.8 [\#1048](https://github.com/locustio/locust/issues/1048) - Looking for proxy settings will slow down the default http client [\#1044](https://github.com/locustio/locust/issues/1044) - Does the statistic data use int type? [\#1043](https://github.com/locustio/locust/issues/1043) - simplejson.errors.JSONDecodeError: Expecting value: line 1 column 1 \(char 0\) [\#1041](https://github.com/locustio/locust/issues/1041) - Locust load testing for websites [\#1034](https://github.com/locustio/locust/issues/1034) - Failure Control [\#1033](https://github.com/locustio/locust/issues/1033) - Number of users reduce after running for 1min [\#1031](https://github.com/locustio/locust/issues/1031) - Even with min\_wait and max\_wait == 0, I cannot break 100 requests per second. Why is that? [\#1030](https://github.com/locustio/locust/issues/1030) - some Strongly expectation of Locust as a Senior performance test engineer [\#1029](https://github.com/locustio/locust/issues/1029) - The “FAILURES†show on Web UI is error [\#1028](https://github.com/locustio/locust/issues/1028) - Is there any approach to share a file among hatched users? [\#1022](https://github.com/locustio/locust/issues/1022) - Does the web UI has authentication? [\#1021](https://github.com/locustio/locust/issues/1021) - what dose total number means in distribution csv? [\#1019](https://github.com/locustio/locust/issues/1019) - What does hatch\_rate mean? [\#1018](https://github.com/locustio/locust/issues/1018) - Multi tenancy? [\#1017](https://github.com/locustio/locust/issues/1017) - 500 RPS per client limit? [\#1015](https://github.com/locustio/locust/issues/1015) - locustfile as configmap -\> Could not find any locustfile! Ensure file ends in '.py' [\#1012](https://github.com/locustio/locust/issues/1012) - Add easy way to use FastHttpLocust [\#1011](https://github.com/locustio/locust/issues/1011) - Allow custom options to be passed to locust test [\#1010](https://github.com/locustio/locust/issues/1010) - How to custom the Web UI [\#1009](https://github.com/locustio/locust/issues/1009) - Run results show tasks action ratio may be incomprehensible。 [\#1003](https://github.com/locustio/locust/issues/1003) - Start on stop bugged [\#998](https://github.com/locustio/locust/issues/998) - RPS always lower than User counts [\#997](https://github.com/locustio/locust/issues/997) - springboot restapi HTTPError 500 [\#996](https://github.com/locustio/locust/issues/996) - help: I think my result is False? [\#995](https://github.com/locustio/locust/issues/995) - Website: broken links to ESN and Younited [\#988](https://github.com/locustio/locust/issues/988) - Request: automatic RPS \ max workers [\#986](https://github.com/locustio/locust/issues/986) - Multi-threading Tasks? [\#985](https://github.com/locustio/locust/issues/985) - When time to run \(-t\) timed out, pending requests seems to be aborted, and the \(latest\) responses get lost [\#984](https://github.com/locustio/locust/issues/984) - error: no commands supplied ....!!!!! [\#983](https://github.com/locustio/locust/issues/983) - Unable to stop load from web UI with 0.11.0 [\#981](https://github.com/locustio/locust/issues/981) - Failure events not being recorded [\#979](https://github.com/locustio/locust/issues/979) - RPS will become to 0 in distributed mode [\#971](https://github.com/locustio/locust/issues/971) - Stddev and SEM [\#959](https://github.com/locustio/locust/issues/959) - ERROR: manifest for locustio/locust:latest not found [\#958](https://github.com/locustio/locust/issues/958) - support async tasks? [\#924](https://github.com/locustio/locust/issues/924) - Web UI does not stop slave servers [\#911](https://github.com/locustio/locust/issues/911) - Request template [\#879](https://github.com/locustio/locust/issues/879) - Reset failures and/or exceptions [\#826](https://github.com/locustio/locust/issues/826) - Add support for downloading all failures to a CSV [\#675](https://github.com/locustio/locust/issues/675) - Locust exits with 1 on timeouts / errors [\#560](https://github.com/locustio/locust/issues/560) - Why the "RPS" generated by locust is much fewer than other performance testing tools ? [\#277](https://github.com/locustio/locust/issues/277) **Merged pull requests:** - Improvements for Dockerfile [\#1093](https://github.com/locustio/locust/pull/1093) ([coderanger](https://github.com/coderanger)) - Using docker multi-stage for 50% smaller image [\#1091](https://github.com/locustio/locust/pull/1091) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Min and max response times rounded to nearest int in web view [\#1089](https://github.com/locustio/locust/pull/1089) ([ajt89](https://github.com/ajt89)) - Allow options to be passed to locust in docker, update docs [\#1083](https://github.com/locustio/locust/pull/1083) ([max-rocket-internet](https://github.com/max-rocket-internet)) - Fix error percentage cli output [\#1082](https://github.com/locustio/locust/pull/1082) ([raiyankamal](https://github.com/raiyankamal)) - Use docker\_start.sh in docker image [\#1078](https://github.com/locustio/locust/pull/1078) ([raiyankamal](https://github.com/raiyankamal)) - drop Python 3.4 support [\#1072](https://github.com/locustio/locust/pull/1072) ([cgoldberg](https://github.com/cgoldberg)) - Typo fix [\#1051](https://github.com/locustio/locust/pull/1051) ([natanlao](https://github.com/natanlao)) - stop looking for proxy settings [\#1046](https://github.com/locustio/locust/pull/1046) ([myzhan](https://github.com/myzhan)) - Use print\(\) function in both Python 2 and Python 3 [\#1038](https://github.com/locustio/locust/pull/1038) ([cclauss](https://github.com/cclauss)) - Travis CI: The sudo tag is now depricated in Travis CI [\#1037](https://github.com/locustio/locust/pull/1037) ([cclauss](https://github.com/cclauss)) - Ensure that the last samples get sent by slave and received by master. [\#1025](https://github.com/locustio/locust/pull/1025) ([cyberw](https://github.com/cyberw)) - Fix grammatical error in statistic reporting [\#1024](https://github.com/locustio/locust/pull/1024) ([MaxVanDeursen](https://github.com/MaxVanDeursen)) - FastHttpLocust [\#1014](https://github.com/locustio/locust/pull/1014) ([skivis](https://github.com/skivis)) - Fix for the examples regarding semaphore\_wait.py [\#1008](https://github.com/locustio/locust/pull/1008) ([ryan-WORK](https://github.com/ryan-WORK)) - Reset exceptions and failures when stats are reset [\#1000](https://github.com/locustio/locust/pull/1000) ([ajt89](https://github.com/ajt89)) - Add failures csv download [\#999](https://github.com/locustio/locust/pull/999) ([ajt89](https://github.com/ajt89)) - Correct fail ratio calculation. Fixes \#991. [\#994](https://github.com/locustio/locust/pull/994) ([genericmoniker](https://github.com/genericmoniker)) - Add command line argument to specify exit code on response errors [\#992](https://github.com/locustio/locust/pull/992) ([Stateford](https://github.com/Stateford)) ## [0.11.1](https://github.com/locustio/locust/tree/0.11.1) (2019-03-19) [Full Changelog](https://github.com/locustio/locust/compare/0.11.0...0.11.1) **Closed issues:** - locust master crashes on Python 3.7: AttributeError: 'bytes' object has no attribute 'encode' [\#980](https://github.com/locustio/locust/issues/980) - Locust can not run in distributed mode in v0.10.0 [\#978](https://github.com/locustio/locust/issues/978) **Merged pull requests:** - Add "stopping" state. [\#982](https://github.com/locustio/locust/pull/982) ([solowalker27](https://github.com/solowalker27)) ## [0.11.0](https://github.com/locustio/locust/tree/0.11.0) (2019-03-14) [Full Changelog](https://github.com/locustio/locust/compare/0.10.0...0.11.0) **Merged pull requests:** - add retry in zmqrpc [\#973](https://github.com/locustio/locust/pull/973) ([delulu](https://github.com/delulu)) - fix inconsistency in zmqrpc [\#972](https://github.com/locustio/locust/pull/972) ([delulu](https://github.com/delulu)) ## [0.10.0](https://github.com/locustio/locust/tree/0.10.0) (2019-03-13) [Full Changelog](https://github.com/locustio/locust/compare/0.9.0...0.10.0) **Fixed bugs:** - filenames with several dots fails [\#940](https://github.com/locustio/locust/issues/940) - Percentiles rounding error [\#331](https://github.com/locustio/locust/issues/331) **Closed issues:** - Installed in virtualenv but locust command not found \(macOS Mojave 10.14\) [\#976](https://github.com/locustio/locust/issues/976) - how can I send https request with locust when I already have been authentication.. [\#966](https://github.com/locustio/locust/issues/966) - How to understand -c when I run locust with no-web mode? [\#965](https://github.com/locustio/locust/issues/965) - FunctionNotFound\('random\_uuid is not found.',\) [\#964](https://github.com/locustio/locust/issues/964) - add users 1 time per minute [\#961](https://github.com/locustio/locust/issues/961) - HttpLocust class instance variable not set for all users during setup [\#957](https://github.com/locustio/locust/issues/957) - locust.runners.MasterLocustRunner failed with ExtraData [\#956](https://github.com/locustio/locust/issues/956) - Use pytest tests as locust tasks [\#955](https://github.com/locustio/locust/issues/955) - Time limit reached,but test does not stop,throw GreenletExit exception [\#953](https://github.com/locustio/locust/issues/953) - Bug: Locust master doesn't remove killed slave [\#951](https://github.com/locustio/locust/issues/951) - How to pass multiple request under same @task. Eg: If I need to pass diferrent key for same get, how to do that? Is parameterization exist? [\#948](https://github.com/locustio/locust/issues/948) - multiple user behaviour [\#947](https://github.com/locustio/locust/issues/947) - seq\_task does not work [\#937](https://github.com/locustio/locust/issues/937) - locust no-web mode [\#933](https://github.com/locustio/locust/issues/933) - reqs/sec is much lower than expected [\#931](https://github.com/locustio/locust/issues/931) - --only-summary does not show the summary results [\#922](https://github.com/locustio/locust/issues/922) - locust http request size [\#921](https://github.com/locustio/locust/issues/921) - Retrieving/saving current number of users [\#920](https://github.com/locustio/locust/issues/920) - OpenVAS - ERROR: \('Connection aborted.', BadStatusLine\("''",\)\) [\#918](https://github.com/locustio/locust/issues/918) - git changelog page on v0.9.0 return 404 [\#913](https://github.com/locustio/locust/issues/913) - locust: error: no such option: -n [\#912](https://github.com/locustio/locust/issues/912) - Next version plans [\#907](https://github.com/locustio/locust/issues/907) - Need a way for "Device" Locust class to pass a value to the TaskSet [\#906](https://github.com/locustio/locust/issues/906) - --only-summary does not show the summary results [\#905](https://github.com/locustio/locust/issues/905) - Locust Report Ui Last column is not displaying [\#903](https://github.com/locustio/locust/issues/903) - mogul,help me,when i use “sudo pip install locustioâ€to install, after i use“locust --helpâ€ï¼ŒWhat should I do if I give an error [\#902](https://github.com/locustio/locust/issues/902) - Unable to Get Statistics with --csv or Web Mode when running distributed. [\#901](https://github.com/locustio/locust/issues/901) - Locust slave will not start when attempting to start via Node.js SSH2 connection. [\#900](https://github.com/locustio/locust/issues/900) - Changelog page in github referenced from docs.locust.io returns a 404 [\#898](https://github.com/locustio/locust/issues/898) - slave client\_id collisions in large environments [\#894](https://github.com/locustio/locust/issues/894) - Put a big sign "you must reload this page before any stats are displayed" somewhere on the web interface [\#893](https://github.com/locustio/locust/issues/893) - Wrong statistic of total request count with 0.9.0 [\#892](https://github.com/locustio/locust/issues/892) - Questions: [\#890](https://github.com/locustio/locust/issues/890) - Strange behavior of "Total Requests per Second" chart [\#888](https://github.com/locustio/locust/issues/888) - Locust 0.9.0 slave TypeError: \_\_init\_\_\(\) takes exactly 1 argument \(2 given\) [\#887](https://github.com/locustio/locust/issues/887) - KeyError on weighted tasks [\#886](https://github.com/locustio/locust/issues/886) - How do I view the maximum concurrency in 1 second during runtime? [\#880](https://github.com/locustio/locust/issues/880) - locust command is not found on parrot security, even when it is successfully installed [\#878](https://github.com/locustio/locust/issues/878) - use the FastHttpLocust,how to get cookies ? [\#861](https://github.com/locustio/locust/issues/861) - Immediate crash under python 3.7 [\#852](https://github.com/locustio/locust/issues/852) - Release 0.9.0 and document release steps [\#842](https://github.com/locustio/locust/issues/842) - Extended socket protocol [\#776](https://github.com/locustio/locust/issues/776) - Feature request: on\_quit\(\) [\#248](https://github.com/locustio/locust/issues/248) **Merged pull requests:** - remove references to submitting feature requests [\#975](https://github.com/locustio/locust/pull/975) ([cgoldberg](https://github.com/cgoldberg)) - balance/recover the load distribution when new slave joins [\#970](https://github.com/locustio/locust/pull/970) ([delulu](https://github.com/delulu)) - Ui headings [\#963](https://github.com/locustio/locust/pull/963) ([cgoldberg](https://github.com/cgoldberg)) - better horizontal scrolling [\#962](https://github.com/locustio/locust/pull/962) ([myzhan](https://github.com/myzhan)) - Update change logs & release 0.10.0 [\#960](https://github.com/locustio/locust/pull/960) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Allow loading of a locustfile with multiple dots in filename [\#941](https://github.com/locustio/locust/pull/941) ([raiyankamal](https://github.com/raiyankamal)) - Both succeeded and failed requests are counted in total number of requests [\#939](https://github.com/locustio/locust/pull/939) ([raiyankamal](https://github.com/raiyankamal)) - Support horizontal scrolling for the stats table [\#938](https://github.com/locustio/locust/pull/938) ([mingrammer](https://github.com/mingrammer)) - Remove repeated imports of mock [\#936](https://github.com/locustio/locust/pull/936) ([Jonnymcc](https://github.com/Jonnymcc)) - Speed up task sequence tests [\#935](https://github.com/locustio/locust/pull/935) ([Jonnymcc](https://github.com/Jonnymcc)) - Add heartbeat to detect down slaves [\#927](https://github.com/locustio/locust/pull/927) ([Jonnymcc](https://github.com/Jonnymcc)) - clarifying locust class usage when no classes specified on CLI [\#925](https://github.com/locustio/locust/pull/925) ([smadness](https://github.com/smadness)) - Include LICENSE in the sdist. [\#919](https://github.com/locustio/locust/pull/919) ([benjaminp](https://github.com/benjaminp)) - fix About link [\#914](https://github.com/locustio/locust/pull/914) ([cgoldberg](https://github.com/cgoldberg)) - Fixed \#903 to allow requests/sec UI column to display. [\#908](https://github.com/locustio/locust/pull/908) ([devmonkey22](https://github.com/devmonkey22)) - Update browse\_docs\_sequence\_test [\#904](https://github.com/locustio/locust/pull/904) ([Realsid](https://github.com/Realsid)) - Use uuid4 to generate slave client\_id [\#895](https://github.com/locustio/locust/pull/895) ([mattbailey](https://github.com/mattbailey)) - Python37 [\#885](https://github.com/locustio/locust/pull/885) ([cgoldberg](https://github.com/cgoldberg)) - Official Docker image and documentation V2 [\#882](https://github.com/locustio/locust/pull/882) ([spayeur207](https://github.com/spayeur207)) - Fix links to changelog in changelog [\#877](https://github.com/locustio/locust/pull/877) ([dmand](https://github.com/dmand)) - Fix Sphinx build warnings [\#875](https://github.com/locustio/locust/pull/875) ([jdufresne](https://github.com/jdufresne)) ## [0.9.0](https://github.com/locustio/locust/tree/0.9.0) (2018-09-01) [Full Changelog](https://github.com/locustio/locust/compare/v0.8.1...0.9.0) **Fixed bugs:** - About displays improperly [\#696](https://github.com/locustio/locust/issues/696) - Unclear how to interpret numbers [\#303](https://github.com/locustio/locust/issues/303) **Closed issues:** - a crash bug for master [\#869](https://github.com/locustio/locust/issues/869) - I started 50 users, but i found there are 100 tomcat connections established at that time, why.... [\#866](https://github.com/locustio/locust/issues/866) - Error is raised: AttributeError: 'RequestStats' object has no attribute 'log\_request' [\#865](https://github.com/locustio/locust/issues/865) - Two locust packages in pypi [\#863](https://github.com/locustio/locust/issues/863) - Locust "ConnectionError\(ProtocolError\('Connection aborted.', error\(111, 'Connection refused'\)\),\)" [\#862](https://github.com/locustio/locust/issues/862) - Comparison of performance test results between locust and jmeter [\#859](https://github.com/locustio/locust/issues/859) - Locust fails to execute from Windows 10 [\#854](https://github.com/locustio/locust/issues/854) - Assign Locust Behavior Programmatically -- Code Example [\#847](https://github.com/locustio/locust/issues/847) - Wrong statistic of total request count [\#846](https://github.com/locustio/locust/issues/846) - Locust freezes after a while \(python 3.7\) [\#843](https://github.com/locustio/locust/issues/843) - how to send post reqeusts body type is raw [\#840](https://github.com/locustio/locust/issues/840) - Segmentation Fault \(core dumped\) under python 3.7 [\#839](https://github.com/locustio/locust/issues/839) - Don't rely on obsolete msgpack-python [\#837](https://github.com/locustio/locust/issues/837) - how to install locust 0.8 instead locust 0.8.1 hand [\#834](https://github.com/locustio/locust/issues/834) - does have url to get the response time distribution? [\#833](https://github.com/locustio/locust/issues/833) - stats with all zeros for clients \> 1 [\#832](https://github.com/locustio/locust/issues/832) - setup\(\) should always run after \_\_init\_\_\(\) [\#829](https://github.com/locustio/locust/issues/829) - How locust calculate average response time and R/S for users [\#828](https://github.com/locustio/locust/issues/828) - Please check my contribution. [\#824](https://github.com/locustio/locust/issues/824) - Synthetic monitoring [\#821](https://github.com/locustio/locust/issues/821) - Locust slaves eat all available memory when working with a failing service [\#816](https://github.com/locustio/locust/issues/816) - Using Python's multiprocessing on Master [\#812](https://github.com/locustio/locust/issues/812) - How to perform basic authentication? [\#811](https://github.com/locustio/locust/issues/811) - No module named pkg\_resources [\#810](https://github.com/locustio/locust/issues/810) - Locust does not work because gevent has been updated to 1.3.2 [\#809](https://github.com/locustio/locust/issues/809) - IndexError: Cannot choose from an empty sequence [\#803](https://github.com/locustio/locust/issues/803) - self.locust.drop\_current\_runner\(\) [\#802](https://github.com/locustio/locust/issues/802) - Scraping google search result [\#800](https://github.com/locustio/locust/issues/800) - branch geventhttpclient need a update [\#795](https://github.com/locustio/locust/issues/795) - locust inactivity after reaching 9000 user issue [\#791](https://github.com/locustio/locust/issues/791) - Include LICENSE file in sdist [\#788](https://github.com/locustio/locust/issues/788) - How to have Locust Master dynamically allocate users to slaves [\#787](https://github.com/locustio/locust/issues/787) - slave run in docker didn't work. [\#784](https://github.com/locustio/locust/issues/784) - How to call on\_start before each testcase, like setup in unittest? [\#781](https://github.com/locustio/locust/issues/781) - Locust clusters, but workers never hatch [\#780](https://github.com/locustio/locust/issues/780) - When maximum num=1 this will raise exception "Maximum number of requests reached" [\#778](https://github.com/locustio/locust/issues/778) - 100% number smaller than 99% in Percentage of the requests completed within given times [\#777](https://github.com/locustio/locust/issues/777) - Can't define unique characteristics for each locust [\#775](https://github.com/locustio/locust/issues/775) - invaild Locust\(HttpLocust\) class attribute: host [\#773](https://github.com/locustio/locust/issues/773) - URL requests containing “/\#/†are all seen as “/†then failing when running on Locust.io [\#768](https://github.com/locustio/locust/issues/768) - Docker image and Kubernetes chart out of date at 0.7.5 [\#767](https://github.com/locustio/locust/issues/767) - Wrong tasks weight calculation over several TaskSet's [\#766](https://github.com/locustio/locust/issues/766) - Need multi level rampup pattern [\#765](https://github.com/locustio/locust/issues/765) - Documentation link at https://docs.locust.io doesn't point to current release docs [\#764](https://github.com/locustio/locust/issues/764) - website down [\#763](https://github.com/locustio/locust/issues/763) - TypeError: must be string or buffer, not None [\#754](https://github.com/locustio/locust/issues/754) - Does POST request create a entry in the DB? [\#752](https://github.com/locustio/locust/issues/752) - SSL Error when using Http Request [\#751](https://github.com/locustio/locust/issues/751) - print statements are not appearing on console when -n is 1 [\#750](https://github.com/locustio/locust/issues/750) - Error - Get\_next\_task return random.choice\(self.tasks\) and Random.py choice raise IndexError\('Cannot choose from an empty sequence'\) from None\) [\#748](https://github.com/locustio/locust/issues/748) - Default implementation of on\_request\_success and \_failure lacks \*\*kwargs declaration [\#745](https://github.com/locustio/locust/issues/745) - Question: https://pypi.python.org/pypi/locust/0.8 [\#744](https://github.com/locustio/locust/issues/744) - Not able to record failures in report [\#739](https://github.com/locustio/locust/issues/739) - Tested website unresponsive [\#737](https://github.com/locustio/locust/issues/737) - New Connection in locust [\#736](https://github.com/locustio/locust/issues/736) - Does locust creates a new instance/thread per locust user of httplocust class ? [\#734](https://github.com/locustio/locust/issues/734) - How I share auth cookie with the rest of tasks only for current locust user? [\#733](https://github.com/locustio/locust/issues/733) - how to run the master branch [\#732](https://github.com/locustio/locust/issues/732) - On the same server,jmeter can run 20000rps,but locust only 5000rps [\#727](https://github.com/locustio/locust/issues/727) - Connect slave nodes from remote server to master node on local machine [\#726](https://github.com/locustio/locust/issues/726) - a report plugin.Anyone interested? [\#723](https://github.com/locustio/locust/issues/723) - Severe difference in RPS when adding more than two URLs [\#722](https://github.com/locustio/locust/issues/722) - Start distributed test with multiple slaves with one command. [\#721](https://github.com/locustio/locust/issues/721) - Logo changes [\#716](https://github.com/locustio/locust/issues/716) - Locust does not count RPS if all requests fails [\#715](https://github.com/locustio/locust/issues/715) - Looking for a different flavor of on\_start\(\) behavior [\#714](https://github.com/locustio/locust/issues/714) - Option to Print Failure to Console? [\#711](https://github.com/locustio/locust/issues/711) - Reach to 3k RPS [\#710](https://github.com/locustio/locust/issues/710) - Rename RPS [\#709](https://github.com/locustio/locust/issues/709) - AWS locust sitting idle [\#707](https://github.com/locustio/locust/issues/707) - Couldn't pass 200 request / second [\#705](https://github.com/locustio/locust/issues/705) - Preparing a Linux server for Locust load tests [\#700](https://github.com/locustio/locust/issues/700) - When a slave process crashes and restarts, the master counts and waits for input from both [\#699](https://github.com/locustio/locust/issues/699) - SQL Locust adapter [\#691](https://github.com/locustio/locust/issues/691) - Unusual behavior from graphs [\#690](https://github.com/locustio/locust/issues/690) - Chart is wrong [\#689](https://github.com/locustio/locust/issues/689) - ioerror cannot watch more than 1024 sockets [\#684](https://github.com/locustio/locust/issues/684) - Locust distributed noweb does not honour --num-request option [\#682](https://github.com/locustio/locust/issues/682) - Locust pure python RPC not working in distributed mode \(this makes, message seem confusing\) [\#680](https://github.com/locustio/locust/issues/680) - Limit of 500 requests in /stats/requests end-point [\#679](https://github.com/locustio/locust/issues/679) - No users count send in hatch\_complete [\#678](https://github.com/locustio/locust/issues/678) - --no-reset-stats should be on by default [\#672](https://github.com/locustio/locust/issues/672) - 'Response' object has no attribute 'failure' in python3.5.3 [\#671](https://github.com/locustio/locust/issues/671) - Sometimes the rps is 0 [\#670](https://github.com/locustio/locust/issues/670) - Install breaks on Win7 Py3.3 Locust 0.8.1 [\#668](https://github.com/locustio/locust/issues/668) - Inaccurate response time? [\#663](https://github.com/locustio/locust/issues/663) - all tests results suddenly turned to all 0 [\#662](https://github.com/locustio/locust/issues/662) - How do we control the Clients in Locust? [\#659](https://github.com/locustio/locust/issues/659) - failure to install the latest version locust [\#648](https://github.com/locustio/locust/issues/648) - Always get errors when I run testing. [\#645](https://github.com/locustio/locust/issues/645) - Locust test results [\#639](https://github.com/locustio/locust/issues/639) - memory issue [\#636](https://github.com/locustio/locust/issues/636) - Stderr connection error \( python3.6\), but no failures on UI [\#625](https://github.com/locustio/locust/issues/625) - Ability to disable SSL certificate verify [\#619](https://github.com/locustio/locust/issues/619) - tasks are not shown in locust UI statistics [\#591](https://github.com/locustio/locust/issues/591) - Installation failure on Mac OS 10.12.4 [\#582](https://github.com/locustio/locust/issues/582) - Specify host header and send request against IP [\#581](https://github.com/locustio/locust/issues/581) - Ability to set a specific number of simulated users per Locust class [\#575](https://github.com/locustio/locust/issues/575) - Slave hangs when started before master [\#571](https://github.com/locustio/locust/issues/571) - Is there a way to setup/teardown before running the load tests [\#553](https://github.com/locustio/locust/issues/553) - Never loads? [\#302](https://github.com/locustio/locust/issues/302) - Retrieving stats when running with --no-web [\#290](https://github.com/locustio/locust/issues/290) - In distributed mode, not all stats are collected/displayed in the 'main' UI [\#217](https://github.com/locustio/locust/issues/217) - URL\_PREFIX feature for web UI? [\#149](https://github.com/locustio/locust/issues/149) - \(libev\) select: Invalid argument when trying to go past 1k users [\#121](https://github.com/locustio/locust/issues/121) - Command line option to specify the duration to run [\#71](https://github.com/locustio/locust/issues/71) - Setup/teardown hooks [\#59](https://github.com/locustio/locust/issues/59) - Define wait times by function instead of variable [\#18](https://github.com/locustio/locust/issues/18) **Merged pull requests:** - update Makefile so build also creates a wheel [\#871](https://github.com/locustio/locust/pull/871) ([cgoldberg](https://github.com/cgoldberg)) - Fix deprecation warnings [\#870](https://github.com/locustio/locust/pull/870) ([cgoldberg](https://github.com/cgoldberg)) - Release 0.9.0 [\#867](https://github.com/locustio/locust/pull/867) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Separate release into build and release steps [\#858](https://github.com/locustio/locust/pull/858) ([hoylemd](https://github.com/hoylemd)) - Install instructions [\#857](https://github.com/locustio/locust/pull/857) ([cgoldberg](https://github.com/cgoldberg)) - Specify seconds for the `timeout` parameter [\#856](https://github.com/locustio/locust/pull/856) ([hoylemd](https://github.com/hoylemd)) - bump dev version to 0.9.0.dev0 [\#855](https://github.com/locustio/locust/pull/855) ([cgoldberg](https://github.com/cgoldberg)) - Change name of msgpack dependency. [\#841](https://github.com/locustio/locust/pull/841) ([vamega](https://github.com/vamega)) - response time doesn't need to be cast to int, as this is implicit in … [\#830](https://github.com/locustio/locust/pull/830) ([efology](https://github.com/efology)) - Add tasks sequence support [\#827](https://github.com/locustio/locust/pull/827) ([Ramshell](https://github.com/Ramshell)) - Fix some typos in events.py [\#820](https://github.com/locustio/locust/pull/820) ([felixonmars](https://github.com/felixonmars)) - Update all pypi.python.org URLs to pypi.org [\#818](https://github.com/locustio/locust/pull/818) ([jdufresne](https://github.com/jdufresne)) - Update third-party-tools.rst [\#808](https://github.com/locustio/locust/pull/808) ([anhldbk](https://github.com/anhldbk)) - Remove unused nosetest settings [\#806](https://github.com/locustio/locust/pull/806) ([cgoldberg](https://github.com/cgoldberg)) - Drop Python 3.3 support [\#804](https://github.com/locustio/locust/pull/804) ([ps-george](https://github.com/ps-george)) - docs: Syntax highlight code and commands [\#797](https://github.com/locustio/locust/pull/797) ([joar](https://github.com/joar)) - Added user-defined wait\_function to locust and TaskSet [\#785](https://github.com/locustio/locust/pull/785) ([ps-george](https://github.com/ps-george)) - Remove compatibility workarounds for Python 2.6 [\#770](https://github.com/locustio/locust/pull/770) ([jdufresne](https://github.com/jdufresne)) - Enable pip cache in Travis CI [\#760](https://github.com/locustio/locust/pull/760) ([jdufresne](https://github.com/jdufresne)) - Use https:// URLs where available [\#758](https://github.com/locustio/locust/pull/758) ([jdufresne](https://github.com/jdufresne)) - Distribute package as a universal wheel [\#756](https://github.com/locustio/locust/pull/756) ([jdufresne](https://github.com/jdufresne)) - Docs: update test statistics page with example responses [\#747](https://github.com/locustio/locust/pull/747) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Introduce \*\*kwargs to request\_success/failure parameter list [\#746](https://github.com/locustio/locust/pull/746) ([karol-brejna-i](https://github.com/karol-brejna-i)) - Change Locust website url to https [\#743](https://github.com/locustio/locust/pull/743) ([iassal](https://github.com/iassal)) - Fix typo in docstring [\#729](https://github.com/locustio/locust/pull/729) ([giantryansaul](https://github.com/giantryansaul)) - Changed the spelling of "occurences" on the output text [\#706](https://github.com/locustio/locust/pull/706) ([ethansmith-wf](https://github.com/ethansmith-wf)) - Merge 0.8 branch. [\#701](https://github.com/locustio/locust/pull/701) ([mbeacom](https://github.com/mbeacom)) - added introduction to Locust4j [\#698](https://github.com/locustio/locust/pull/698) ([myzhan](https://github.com/myzhan)) - Resolve improper display of About in Web UI [\#697](https://github.com/locustio/locust/pull/697) ([mbeacom](https://github.com/mbeacom)) - Make UI URL links relative [\#692](https://github.com/locustio/locust/pull/692) ([karol-brejna-i](https://github.com/karol-brejna-i)) - Small python 3 syntax improvement in docs [\#676](https://github.com/locustio/locust/pull/676) ([miki725](https://github.com/miki725)) - \#331: Use rounded\_response\_time for min/max/total response times [\#558](https://github.com/locustio/locust/pull/558) ([jude](https://github.com/jude)) - Refactored stats code and display median as well as 95% percentile response times in web UI's charts [\#549](https://github.com/locustio/locust/pull/549) ([heyman](https://github.com/heyman)) - Added a slaves-tab to show the id, status and number of users running on each slave. [\#305](https://github.com/locustio/locust/pull/305) ([TZer0](https://github.com/TZer0)) - expand and re-order documentation index [\#779](https://github.com/locustio/locust/pull/779) ([cgoldberg](https://github.com/cgoldberg)) - drop unitt2 and use tox in 'make test' target [\#772](https://github.com/locustio/locust/pull/772) ([cgoldberg](https://github.com/cgoldberg)) - Fix bytes/text confusion with response objects [\#762](https://github.com/locustio/locust/pull/762) ([jdufresne](https://github.com/jdufresne)) - Remove unused environment variables form tox configuration [\#761](https://github.com/locustio/locust/pull/761) ([jdufresne](https://github.com/jdufresne)) - Update tox.ini so as to not respecify package dependency pyzmq [\#757](https://github.com/locustio/locust/pull/757) ([jdufresne](https://github.com/jdufresne)) - Remove test dependency unittest2 [\#755](https://github.com/locustio/locust/pull/755) ([jdufresne](https://github.com/jdufresne)) - Adding unit to Response Time chart [\#742](https://github.com/locustio/locust/pull/742) ([albertowar](https://github.com/albertowar)) - Use flask.jsonify for json responses [\#725](https://github.com/locustio/locust/pull/725) ([hyperair](https://github.com/hyperair)) - fix error message on invalid time format [\#717](https://github.com/locustio/locust/pull/717) ([cgoldberg](https://github.com/cgoldberg)) - Add codecov integration [\#687](https://github.com/locustio/locust/pull/687) ([mbeacom](https://github.com/mbeacom)) - Do not reset statistics on hatch complete [\#674](https://github.com/locustio/locust/pull/674) ([hhowe29](https://github.com/hhowe29)) - Adds support for setup, teardown, and on\_stop methods [\#658](https://github.com/locustio/locust/pull/658) ([DeepHorizons](https://github.com/DeepHorizons)) - Remove --num-requests/-n in favor of --run-time/-t [\#656](https://github.com/locustio/locust/pull/656) ([heyman](https://github.com/heyman)) ## [v0.8.1](https://github.com/locustio/locust/tree/v0.8.1) (2017-09-19) [Full Changelog](https://github.com/locustio/locust/compare/v0.8...v0.8.1) **Closed issues:** - Release new Locust version [\#657](https://github.com/locustio/locust/issues/657) - make test is failing on 0.7 tags due to Flask 0.12 [\#637](https://github.com/locustio/locust/issues/637) - num-requests bug [\#512](https://github.com/locustio/locust/issues/512) - Run the tests for the specified time [\#196](https://github.com/locustio/locust/issues/196) - Remove support for plain sockets for master/slave communication [\#14](https://github.com/locustio/locust/issues/14) ## [v0.8](https://github.com/locustio/locust/tree/v0.8) (2017-09-19) [Full Changelog](https://github.com/locustio/locust/compare/v0.8a3...v0.8) **Closed issues:** - Infinite recursion error when testing https sites [\#655](https://github.com/locustio/locust/issues/655) - website SSL [\#644](https://github.com/locustio/locust/issues/644) - Using locust to query Cassandra [\#569](https://github.com/locustio/locust/issues/569) **Merged pull requests:** - find locustfile in the root directory [\#609](https://github.com/locustio/locust/pull/609) ([arthurdarcet](https://github.com/arthurdarcet)) ## [v0.8a3](https://github.com/locustio/locust/tree/v0.8a3) (2017-09-15) [Full Changelog](https://github.com/locustio/locust/compare/v0.8a1...v0.8a3) **Fixed bugs:** - Web UI bug when url is very long [\#555](https://github.com/locustio/locust/issues/555) - gevent.hub.LoopExit exeption, python threading and twisted reactor [\#397](https://github.com/locustio/locust/issues/397) - OpenSSL handshake error [\#396](https://github.com/locustio/locust/issues/396) - sending POST image in client.post\(\) never receives Request.FILES [\#364](https://github.com/locustio/locust/issues/364) - Some of the requets total stats are missing when printing them to console [\#350](https://github.com/locustio/locust/issues/350) - Web UI Freezing [\#309](https://github.com/locustio/locust/issues/309) - Template request name too long [\#263](https://github.com/locustio/locust/issues/263) - Test file can not be named locust.py \(or any other name that is the same as an existing python package\) [\#138](https://github.com/locustio/locust/issues/138) - Prohibits the locustfile from being named 'locust.py' [\#546](https://github.com/locustio/locust/pull/546) ([cgoldberg](https://github.com/cgoldberg)) - Truncate number of errors displayed in the web UI [\#532](https://github.com/locustio/locust/pull/532) ([justiniso](https://github.com/justiniso)) **Closed issues:** - Move Locust to the Erlang BEAM [\#653](https://github.com/locustio/locust/issues/653) - Libev over libevent and gevent suggested wsgi? [\#649](https://github.com/locustio/locust/issues/649) - How to filter certain requests when generating reports? [\#647](https://github.com/locustio/locust/issues/647) - Can't find new charts in v0.8a2 [\#643](https://github.com/locustio/locust/issues/643) - Have anyone tried setting up locust on Azure scale set ? [\#642](https://github.com/locustio/locust/issues/642) - Issue with indendation on a PUT request \(Newbie\) [\#641](https://github.com/locustio/locust/issues/641) - How to know why the server is down ? [\#640](https://github.com/locustio/locust/issues/640) - Locust throwing connection error failures [\#638](https://github.com/locustio/locust/issues/638) - Can't run test via locust command line [\#635](https://github.com/locustio/locust/issues/635) - ImportError if there is a "core" module in project [\#630](https://github.com/locustio/locust/issues/630) - ModuleNotFoundError in Python 3.6 OSX 10.12 [\#627](https://github.com/locustio/locust/issues/627) - the edit has bugs in distributed mode [\#623](https://github.com/locustio/locust/issues/623) - No Locust class found [\#621](https://github.com/locustio/locust/issues/621) - Display website on dashboard [\#620](https://github.com/locustio/locust/issues/620) - Latest 0.8a2 version build doesn't meet changelog [\#618](https://github.com/locustio/locust/issues/618) - locust doesn't record all the requests [\#615](https://github.com/locustio/locust/issues/615) - Question: debugging in pycharm \(or other arbitrary IDE\) [\#613](https://github.com/locustio/locust/issues/613) - Summary shows 0 when request\(num\_request\) completed before all users get hatched [\#610](https://github.com/locustio/locust/issues/610) - Unable to run the locustfile example [\#607](https://github.com/locustio/locust/issues/607) - How many locust-workers can I add to a locust-master? [\#605](https://github.com/locustio/locust/issues/605) - Distributed mode question/concern [\#600](https://github.com/locustio/locust/issues/600) - bump gevent version [\#598](https://github.com/locustio/locust/issues/598) - unlimited users [\#597](https://github.com/locustio/locust/issues/597) - Windows Authentication support? [\#595](https://github.com/locustio/locust/issues/595) - Non-200 i.e. 202 status codes are note logged as successes [\#594](https://github.com/locustio/locust/issues/594) - Running locust tests as a list of scenarios [\#590](https://github.com/locustio/locust/issues/590) - Port locust.io to HTTPS [\#589](https://github.com/locustio/locust/issues/589) - reqs/sec is lower than other tools result [\#586](https://github.com/locustio/locust/issues/586) - Inform users about unsuccessful POST requests [\#585](https://github.com/locustio/locust/issues/585) - HttpSession can't handle HTTP 301 with Location: `https,https://` [\#584](https://github.com/locustio/locust/issues/584) - Not have option --no-reset-stats [\#583](https://github.com/locustio/locust/issues/583) - ModuleNotFoundError: No module named 'cobra.core.model' in python3 [\#580](https://github.com/locustio/locust/issues/580) - Summary result [\#578](https://github.com/locustio/locust/issues/578) - OSX limited to running ~200 users [\#574](https://github.com/locustio/locust/issues/574) - How to create multiple task\_set in http locust class? [\#573](https://github.com/locustio/locust/issues/573) - ImportError: No module named 'core - Python 3.5.0, 3.5.2 [\#572](https://github.com/locustio/locust/issues/572) - Successfully installed but locust command not found on macOS Sierra 10.12 [\#568](https://github.com/locustio/locust/issues/568) - How to stop once a user finishes it's set of Tasks. [\#567](https://github.com/locustio/locust/issues/567) - rendezvous implementation of Locust? [\#563](https://github.com/locustio/locust/issues/563) - Missing not reset stats option. [\#562](https://github.com/locustio/locust/issues/562) - Is there a way to share data among emmulated users? [\#561](https://github.com/locustio/locust/issues/561) - locust run in windows 10 ,error: failed to create process [\#559](https://github.com/locustio/locust/issues/559) - ã€Question】"Address family not supported by protocol" when start the test [\#556](https://github.com/locustio/locust/issues/556) - Where to find the RPS chart? [\#554](https://github.com/locustio/locust/issues/554) - request: bandwidth consumption [\#551](https://github.com/locustio/locust/issues/551) - self.\_sleep\(\) should not be private. [\#550](https://github.com/locustio/locust/issues/550) - MQTT with python over proxy [\#548](https://github.com/locustio/locust/issues/548) - "Connection reset by peer" failure When doing local test with lost \( \>1000\) concurent users [\#545](https://github.com/locustio/locust/issues/545) - How to monitor cpu and memory? [\#544](https://github.com/locustio/locust/issues/544) - Stress test with probobuf format? [\#543](https://github.com/locustio/locust/issues/543) - Setting a CookieJar [\#542](https://github.com/locustio/locust/issues/542) - Bugs in show\_task\_ratio and show\_task\_ratio\_json [\#540](https://github.com/locustio/locust/issues/540) - Incorrect calculation of avg\_response\_time and current\_rps in no\_web mode [\#538](https://github.com/locustio/locust/issues/538) - Release for 0.8.0 [\#533](https://github.com/locustio/locust/issues/533) - No module named 'core' error [\#531](https://github.com/locustio/locust/issues/531) - on\_start function calls for every hatch [\#529](https://github.com/locustio/locust/issues/529) - Add Python 3.6 to build pipeline [\#527](https://github.com/locustio/locust/issues/527) - Python v2 exception on import ipdb - StdOutWrapper has no attribute 'flush' [\#526](https://github.com/locustio/locust/issues/526) - SSL error:self signed certificate [\#524](https://github.com/locustio/locust/issues/524) - How to use locust? [\#522](https://github.com/locustio/locust/issues/522) - Sending multipart/form-data [\#521](https://github.com/locustio/locust/issues/521) - How to display QOS metrics ? [\#520](https://github.com/locustio/locust/issues/520) - Allow importing swagger files [\#519](https://github.com/locustio/locust/issues/519) - stats & counters are reset during test [\#513](https://github.com/locustio/locust/issues/513) - slack channel for locust dev [\#511](https://github.com/locustio/locust/issues/511) - Variance/Standard Dev. or something [\#508](https://github.com/locustio/locust/issues/508) - RPS value drops after a long run [\#507](https://github.com/locustio/locust/issues/507) - raise an error in Python3 [\#506](https://github.com/locustio/locust/issues/506) - Function result does not get saved into variable if function call spans two lines [\#505](https://github.com/locustio/locust/issues/505) - calling taskset and tasks on if else conditions [\#504](https://github.com/locustio/locust/issues/504) - pip install old version [\#502](https://github.com/locustio/locust/issues/502) - Documentation for directory structure and working directory for complex locust projects [\#500](https://github.com/locustio/locust/issues/500) - pydoc.locate breaks after importing locust [\#499](https://github.com/locustio/locust/issues/499) - How to build locust on local machine [\#498](https://github.com/locustio/locust/issues/498) - Secure data transfer between master/slave in different geographical regions [\#491](https://github.com/locustio/locust/issues/491) - Closing old issues and PRs [\#490](https://github.com/locustio/locust/issues/490) - Proposal: apdex in reports [\#489](https://github.com/locustio/locust/issues/489) - Problem with nested dictionary [\#488](https://github.com/locustio/locust/issues/488) - \[question\] how do you quantify your master/slave need [\#486](https://github.com/locustio/locust/issues/486) - user spawn too slow [\#482](https://github.com/locustio/locust/issues/482) - Overly strict dependency on gevent==1.1.1 [\#479](https://github.com/locustio/locust/issues/479) - Unique user id per locust [\#476](https://github.com/locustio/locust/issues/476) - Random Resets and Invalid Stats [\#446](https://github.com/locustio/locust/issues/446) - SSL errors when testing certain HTTPS sites [\#417](https://github.com/locustio/locust/issues/417) - How to get more info from the load test? [\#413](https://github.com/locustio/locust/issues/413) - Export exceptions to CSV didn't work [\#412](https://github.com/locustio/locust/issues/412) - Replaying access pattern [\#411](https://github.com/locustio/locust/issues/411) - Make logging timestamps etc optional [\#405](https://github.com/locustio/locust/issues/405) - The pycurl client [\#393](https://github.com/locustio/locust/issues/393) - Working with long running user flows [\#386](https://github.com/locustio/locust/issues/386) - cookies [\#373](https://github.com/locustio/locust/issues/373) - How to understand the requests in main webui? [\#370](https://github.com/locustio/locust/issues/370) - Test performance of predictionio [\#369](https://github.com/locustio/locust/issues/369) - Reviewing PRs [\#355](https://github.com/locustio/locust/issues/355) - Optional HTTP Request failure step down [\#344](https://github.com/locustio/locust/issues/344) - Unix timestamp in stats/requests [\#332](https://github.com/locustio/locust/issues/332) - Web UI Freezing [\#307](https://github.com/locustio/locust/issues/307) - Inconsistent stats resetting [\#299](https://github.com/locustio/locust/issues/299) - Don't warn about pure Python socket when not using distributed mode [\#276](https://github.com/locustio/locust/issues/276) - Web UI should show what host is being used [\#270](https://github.com/locustio/locust/issues/270) - locust support testing against HTTP/2 servers ? [\#264](https://github.com/locustio/locust/issues/264) - Error to login to webapp in Locust [\#246](https://github.com/locustio/locust/issues/246) - Support for custom time metrics [\#243](https://github.com/locustio/locust/issues/243) - recommended AWS EC2 instance types? [\#242](https://github.com/locustio/locust/issues/242) - how to deploy it in heroku or aws ? [\#241](https://github.com/locustio/locust/issues/241) - How to retrieve host argument for custom client [\#238](https://github.com/locustio/locust/issues/238) - Extra / at start of request paths [\#235](https://github.com/locustio/locust/issues/235) - SSL broken on Python 2.7.9 [\#234](https://github.com/locustio/locust/issues/234) - Parameterizing each Locust on a distributed load test [\#233](https://github.com/locustio/locust/issues/233) - Suggest Python version [\#231](https://github.com/locustio/locust/issues/231) - Be able to define bursty traffic [\#225](https://github.com/locustio/locust/issues/225) - How to serve templates for custom routes ? [\#224](https://github.com/locustio/locust/issues/224) - Changing locustfile.py on master via UI and having master / slave replication [\#209](https://github.com/locustio/locust/issues/209) - Option to prevent stats from being reset when all locusts are hatched [\#205](https://github.com/locustio/locust/issues/205) - PUT requests are shown as GET [\#204](https://github.com/locustio/locust/issues/204) - Cannot simulate one single user [\#178](https://github.com/locustio/locust/issues/178) - Feature request: Stepped hatch rate [\#168](https://github.com/locustio/locust/issues/168) - Having a locust "die" or stop after one task [\#161](https://github.com/locustio/locust/issues/161) - Request: support concurrent and hatch for web-based startups [\#153](https://github.com/locustio/locust/issues/153) - Run individual tasks at the same time [\#151](https://github.com/locustio/locust/issues/151) - Graphical interface to see individual request level graph [\#144](https://github.com/locustio/locust/issues/144) - Configure target host from web interface [\#135](https://github.com/locustio/locust/issues/135) - Fixed seed, non-random chance [\#127](https://github.com/locustio/locust/issues/127) - any objection to making task take a float as opposed to an int? [\#119](https://github.com/locustio/locust/issues/119) - Feature request: "run through" each test once. [\#98](https://github.com/locustio/locust/issues/98) - Add Timer / Timers to Web Interface [\#78](https://github.com/locustio/locust/issues/78) - Recording of rps over time [\#32](https://github.com/locustio/locust/issues/32) - Add date when test started to run [\#30](https://github.com/locustio/locust/issues/30) - Make the table header in the web interface sticky [\#2](https://github.com/locustio/locust/issues/2) **Merged pull requests:** - Bump version to 0.8a3 for another pre-release candidate [\#654](https://github.com/locustio/locust/pull/654) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Standardize utf8 file coding declarations [\#652](https://github.com/locustio/locust/pull/652) ([mbeacom](https://github.com/mbeacom)) - Sort all Python imports [\#651](https://github.com/locustio/locust/pull/651) ([mbeacom](https://github.com/mbeacom)) - Modify gevent wsgi and libev dependencies [\#650](https://github.com/locustio/locust/pull/650) ([mbeacom](https://github.com/mbeacom)) - Add GH issue template and update readme [\#614](https://github.com/locustio/locust/pull/614) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Add ability to write csv stats files [\#612](https://github.com/locustio/locust/pull/612) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Fix spelling error in README.md [\#606](https://github.com/locustio/locust/pull/606) ([fiso](https://github.com/fiso)) - Bump gevent version [\#599](https://github.com/locustio/locust/pull/599) ([ed1d1a8d](https://github.com/ed1d1a8d)) - Fix formatting issue combining double dashes into single dash [\#577](https://github.com/locustio/locust/pull/577) ([swoodford](https://github.com/swoodford)) - Add slack signup link to readme [\#570](https://github.com/locustio/locust/pull/570) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Fix off by 1 error in stats.py resulting in additional request always being off [\#566](https://github.com/locustio/locust/pull/566) ([aldenpeterson-wf](https://github.com/aldenpeterson-wf)) - Add more formatting and class links to quickstart page. [\#557](https://github.com/locustio/locust/pull/557) ([alimony](https://github.com/alimony)) - Remove unused imports [\#552](https://github.com/locustio/locust/pull/552) ([mbeacom](https://github.com/mbeacom)) - Update installation doc with supported py versions [\#547](https://github.com/locustio/locust/pull/547) ([mirskiy](https://github.com/mirskiy)) - Started working on a more modern and \(hopefully\) better looking design [\#541](https://github.com/locustio/locust/pull/541) ([heyman](https://github.com/heyman)) - Styling of charts + only show charts for total stats + clean up & refactoring of charts JS code [\#539](https://github.com/locustio/locust/pull/539) ([heyman](https://github.com/heyman)) - Add units to table [\#537](https://github.com/locustio/locust/pull/537) ([benrudolph](https://github.com/benrudolph)) - Web UI: Free up header space [\#534](https://github.com/locustio/locust/pull/534) ([justiniso](https://github.com/justiniso)) - Python 3.6 [\#528](https://github.com/locustio/locust/pull/528) ([mbeacom](https://github.com/mbeacom)) - seems sane to not support py26 anymore [\#515](https://github.com/locustio/locust/pull/515) ([ticosax](https://github.com/ticosax)) - Added introduction of Boomer [\#510](https://github.com/locustio/locust/pull/510) ([myzhan](https://github.com/myzhan)) - Add charts for RPS and average response time in the WebUI [\#509](https://github.com/locustio/locust/pull/509) ([myzhan](https://github.com/myzhan)) - docs: clarify locust invocation norms [\#501](https://github.com/locustio/locust/pull/501) ([pwnage101](https://github.com/pwnage101)) - Improve the language in writing-a-locustfile.rst [\#470](https://github.com/locustio/locust/pull/470) ([aknuds1](https://github.com/aknuds1)) - Adds host name to the header [\#447](https://github.com/locustio/locust/pull/447) ([thaffenden](https://github.com/thaffenden)) - Allow --no-web together with --master for automation [\#333](https://github.com/locustio/locust/pull/333) ([undera](https://github.com/undera)) ## [v0.8a1](https://github.com/locustio/locust/tree/v0.8a1) (2016-11-24) [Full Changelog](https://github.com/locustio/locust/compare/v0.7.5...v0.8a1) **Closed issues:** - Header not entirely on camel case [\#503](https://github.com/locustio/locust/issues/503) - Locust starts throwing failures when users \> 130 \(OS X\) [\#496](https://github.com/locustio/locust/issues/496) - Multiple Locust swarms override each-others stats [\#493](https://github.com/locustio/locust/issues/493) - loop\(\) got unexpected keyword argument [\#485](https://github.com/locustio/locust/issues/485) - Problems installing on Mac 10.11.6 [\#483](https://github.com/locustio/locust/issues/483) - Cannot decode 502 [\#481](https://github.com/locustio/locust/issues/481) - Locust can not count failure request number in WEB GUI [\#480](https://github.com/locustio/locust/issues/480) - ã€Question】How locust allocate the user number with distributed mode? [\#478](https://github.com/locustio/locust/issues/478) - Python v3 error: 'StdOutWrapper' object has no attribute 'flush' [\#475](https://github.com/locustio/locust/issues/475) - \[Question\] How can I set up a thousand concurrent http server as soon as possible with python? [\#473](https://github.com/locustio/locust/issues/473) - \[Question\] How can I control the speed of sending requests? [\#472](https://github.com/locustio/locust/issues/472) - Get exception during simulating 5000 users on one mechine [\#471](https://github.com/locustio/locust/issues/471) - ã€Question】Can I make request with python requests lib? [\#469](https://github.com/locustio/locust/issues/469) - ã€Question】How can I send https request with locust? [\#468](https://github.com/locustio/locust/issues/468) - 401 Unauthorized Error using HTTPLocust [\#466](https://github.com/locustio/locust/issues/466) - Import issue when the locustfile.py contains importing self-defined class sentence [\#465](https://github.com/locustio/locust/issues/465) - Embedded html resources [\#464](https://github.com/locustio/locust/issues/464) - Could not find any locustfile! Ensure file ends in '.py' [\#463](https://github.com/locustio/locust/issues/463) - Contradiction on supported versions [\#461](https://github.com/locustio/locust/issues/461) - How do I set cookies [\#458](https://github.com/locustio/locust/issues/458) - Preserve Locust Stats? [\#457](https://github.com/locustio/locust/issues/457) - locust RPS too low [\#454](https://github.com/locustio/locust/issues/454) - Python 3.4,run locust error:No module named 'core' [\#453](https://github.com/locustio/locust/issues/453) - Failure grouping in UI [\#452](https://github.com/locustio/locust/issues/452) - TypeError: 'str' object is not callable [\#450](https://github.com/locustio/locust/issues/450) - ERROR/locust.main: No Locust class found! [\#449](https://github.com/locustio/locust/issues/449) - Locust won't run http request and instead just, skips ahead to the next line in the code??? [\#444](https://github.com/locustio/locust/issues/444) - add an ability for click actions such as video play button [\#442](https://github.com/locustio/locust/issues/442) - access to locust frontend from another computer [\#441](https://github.com/locustio/locust/issues/441) - how can i add some methods to test but don't want restart locust [\#440](https://github.com/locustio/locust/issues/440) - selenium web driver giving error 'Fire fox has stopped working' while opening firefox window [\#439](https://github.com/locustio/locust/issues/439) - Location [\#437](https://github.com/locustio/locust/issues/437) - Locust web interface not starting on Windows [\#436](https://github.com/locustio/locust/issues/436) - aborting task in on\_start [\#435](https://github.com/locustio/locust/issues/435) - Can I use locust for live streaming load testing [\#434](https://github.com/locustio/locust/issues/434) - URLs with `\#` in them are not evaluated [\#433](https://github.com/locustio/locust/issues/433) - In light of \#431, is it ok to migrate to pytest? [\#432](https://github.com/locustio/locust/issues/432) - AttributeError: 'NoneType' object has no attribute 'replace' [\#431](https://github.com/locustio/locust/issues/431) - Missing tags for versions above v0.7.2 [\#428](https://github.com/locustio/locust/issues/428) - using interrupt while respecting the min\_time [\#427](https://github.com/locustio/locust/issues/427) - Locust, NTLM, & Requests Sessions [\#426](https://github.com/locustio/locust/issues/426) - Is their any plan to support python 3.x? [\#425](https://github.com/locustio/locust/issues/425) - TypeError: \_\_init\_\_\(\) got an unexpected keyword argument 'server\_hostname' [\#424](https://github.com/locustio/locust/issues/424) - Test failures [\#422](https://github.com/locustio/locust/issues/422) - Automate validation of locust [\#420](https://github.com/locustio/locust/issues/420) - Unable to install on Mac OS X due to errors with greenlet [\#404](https://github.com/locustio/locust/issues/404) - Factor out remote execution engine [\#403](https://github.com/locustio/locust/issues/403) - requests library uses "wheel" file [\#134](https://github.com/locustio/locust/issues/134) **Merged pull requests:** - Match min/max\_weight equal sign style across project [\#497](https://github.com/locustio/locust/pull/497) ([alimony](https://github.com/alimony)) - Use super\(\) for HttpSession init call [\#494](https://github.com/locustio/locust/pull/494) ([detzgk](https://github.com/detzgk)) - Update gevent==1.1.2 [\#462](https://github.com/locustio/locust/pull/462) ([di](https://github.com/di)) - Fix document bug concerning '--host' option. [\#460](https://github.com/locustio/locust/pull/460) ([d6e](https://github.com/d6e)) - Python 3 compatibility with --no-web option [\#456](https://github.com/locustio/locust/pull/456) ([mrsanders](https://github.com/mrsanders)) - Changes to consolidate errors [\#451](https://github.com/locustio/locust/pull/451) ([schuSF](https://github.com/schuSF)) - Typo fix in locust API documentation [\#448](https://github.com/locustio/locust/pull/448) ([frntn](https://github.com/frntn)) - Python 3 compatibility for slave mode. \(Fixes 'locust --slave'\) [\#443](https://github.com/locustio/locust/pull/443) ([mrsanders](https://github.com/mrsanders)) - Python 3 support [\#363](https://github.com/locustio/locust/pull/363) ([pmdarrow](https://github.com/pmdarrow)) ## [v0.7.5](https://github.com/locustio/locust/tree/v0.7.5) (2016-05-31) [Full Changelog](https://github.com/locustio/locust/compare/v0.7.4...v0.7.5) **Closed issues:** - SSO on different site support [\#423](https://github.com/locustio/locust/issues/423) - Mac install locust by pip in error of gevent [\#421](https://github.com/locustio/locust/issues/421) - can someone help me to build a http request content header [\#419](https://github.com/locustio/locust/issues/419) - v0.7.4 [\#407](https://github.com/locustio/locust/issues/407) - Python 3 support [\#279](https://github.com/locustio/locust/issues/279) ## [v0.7.4](https://github.com/locustio/locust/tree/v0.7.4) (2016-05-17) [Full Changelog](https://github.com/locustio/locust/compare/v0.7.3...v0.7.4) **Fixed bugs:** - requests.exceptions.ConnectionError: \('Connection aborted.', ResponseNotReady\('Request-sent',\)\) [\#273](https://github.com/locustio/locust/issues/273) **Closed issues:** - locust not making any request when deployed on docker [\#415](https://github.com/locustio/locust/issues/415) - Simulating multiple independent user web behaviour [\#409](https://github.com/locustio/locust/issues/409) - Webclient authentication [\#406](https://github.com/locustio/locust/issues/406) - Install error on ubuntu 14.04 [\#402](https://github.com/locustio/locust/issues/402) - Python 3 support needed. [\#398](https://github.com/locustio/locust/issues/398) - Quick start example using l for a variable name [\#392](https://github.com/locustio/locust/issues/392) - Could you give me some examples of the schedule tasks? [\#390](https://github.com/locustio/locust/issues/390) - The data between the different locusts [\#389](https://github.com/locustio/locust/issues/389) - Rich report format [\#388](https://github.com/locustio/locust/issues/388) - Pinging and benchmarking utilities [\#387](https://github.com/locustio/locust/issues/387) - Integration with CI and test frameworks [\#385](https://github.com/locustio/locust/issues/385) - Does locust support DB connection? [\#383](https://github.com/locustio/locust/issues/383) - multisession confusion [\#382](https://github.com/locustio/locust/issues/382) - why used the requests module [\#378](https://github.com/locustio/locust/issues/378) - Have you compared the Locust with the Tsung? [\#377](https://github.com/locustio/locust/issues/377) - Web GUI can't handle many unique URLs - Is it possible to aggregate stats entries? [\#375](https://github.com/locustio/locust/issues/375) - Gevent gcc error. Unable to install locust [\#368](https://github.com/locustio/locust/issues/368) - pip install failed mac el capitan [\#366](https://github.com/locustio/locust/issues/366) - Error during installation [\#362](https://github.com/locustio/locust/issues/362) - does not work in python 3.4 virtualenv [\#359](https://github.com/locustio/locust/issues/359) - How do I start a new session [\#356](https://github.com/locustio/locust/issues/356) - Integrating Locust API with python requests [\#353](https://github.com/locustio/locust/issues/353) - ar [\#342](https://github.com/locustio/locust/issues/342) - Unable to install locust on OS X [\#340](https://github.com/locustio/locust/issues/340) - Simulate chunk upload [\#339](https://github.com/locustio/locust/issues/339) - Locust 0.7.3: TypeError trying to run test [\#338](https://github.com/locustio/locust/issues/338) - Unable to install locusio [\#336](https://github.com/locustio/locust/issues/336) - Separate TCP connection for each virtual user [\#334](https://github.com/locustio/locust/issues/334) - url of this command /web/{var} should have one final output in browser [\#327](https://github.com/locustio/locust/issues/327) - Load testing a site whose domain name is not pointed/registered . [\#326](https://github.com/locustio/locust/issues/326) - Load Testing multiple sites on a single VPS. [\#325](https://github.com/locustio/locust/issues/325) - Python3 support [\#324](https://github.com/locustio/locust/issues/324) - Support for websockets? [\#323](https://github.com/locustio/locust/issues/323) - step through locust source [\#322](https://github.com/locustio/locust/issues/322) - rps degradation when using https. [\#320](https://github.com/locustio/locust/issues/320) - Status reports only shown in terminal, not on the Web interface. [\#319](https://github.com/locustio/locust/issues/319) - percentiles in /stats/requests? [\#318](https://github.com/locustio/locust/issues/318) - real-time graphing [\#317](https://github.com/locustio/locust/issues/317) - locust google group [\#316](https://github.com/locustio/locust/issues/316) - unlikely response times [\#315](https://github.com/locustio/locust/issues/315) - rps bottleneck [\#313](https://github.com/locustio/locust/issues/313) - Are requests asynchronous? [\#312](https://github.com/locustio/locust/issues/312) - run each task in sequence [\#311](https://github.com/locustio/locust/issues/311) - ImportError: No module named 'core' [\#310](https://github.com/locustio/locust/issues/310) - ConnectionError\(ProtocolError\('Connection aborted.', BadStatusLine\("''",\)\),\) [\#308](https://github.com/locustio/locust/issues/308) - Support multiple test files [\#304](https://github.com/locustio/locust/issues/304) - Tasks running, no stats collected. [\#301](https://github.com/locustio/locust/issues/301) - OpenSSL errors when testing HTTPS [\#300](https://github.com/locustio/locust/issues/300) - Web UI freezes [\#297](https://github.com/locustio/locust/issues/297) - 250 users on single machine fails [\#296](https://github.com/locustio/locust/issues/296) - slave not connecting to master and no error reported [\#294](https://github.com/locustio/locust/issues/294) - Can't start swarming when in master/slave mode on Ubuntu 14.04 [\#293](https://github.com/locustio/locust/issues/293) - How to interpret RPS on distributed setup? [\#292](https://github.com/locustio/locust/issues/292) - problem with select library [\#274](https://github.com/locustio/locust/issues/274) - Slaves can't connect to Master [\#265](https://github.com/locustio/locust/issues/265) - list supported Python versions in README and setup.py. [\#260](https://github.com/locustio/locust/issues/260) - Getting import requests.packages.urllib3 error in Google App Engine [\#259](https://github.com/locustio/locust/issues/259) - Documentation on retrieving real-time stats [\#230](https://github.com/locustio/locust/issues/230) - Support for scenarios [\#171](https://github.com/locustio/locust/issues/171) - Would love a swarm\_complete event [\#26](https://github.com/locustio/locust/issues/26) **Merged pull requests:** - Release updates for v0.7.4 [\#418](https://github.com/locustio/locust/pull/418) ([justiniso](https://github.com/justiniso)) - bump version of requests module in setup.py [\#401](https://github.com/locustio/locust/pull/401) ([cgoldberg](https://github.com/cgoldberg)) - \[\#62\] Correctly update slave count when drops below 1. [\#381](https://github.com/locustio/locust/pull/381) ([KashifSaadat](https://github.com/KashifSaadat)) - Documentation: Update writing-a-locustfile.rst [\#365](https://github.com/locustio/locust/pull/365) ([Valve](https://github.com/Valve)) - doc fixes [\#361](https://github.com/locustio/locust/pull/361) ([gward](https://github.com/gward)) - Update writing-a-locustfile.rst [\#337](https://github.com/locustio/locust/pull/337) ([reduxionist](https://github.com/reduxionist)) - Lock gevent version [\#335](https://github.com/locustio/locust/pull/335) ([nollbit](https://github.com/nollbit)) - Fix handler argument names. [\#314](https://github.com/locustio/locust/pull/314) ([doctoryes](https://github.com/doctoryes)) - Update writing-a-locustfile.rst [\#306](https://github.com/locustio/locust/pull/306) ([reduxionist](https://github.com/reduxionist)) - Introduce docs for increasing the max number of open files limit [\#298](https://github.com/locustio/locust/pull/298) ([ericandrewlewis](https://github.com/ericandrewlewis)) ## [v0.7.3](https://github.com/locustio/locust/tree/v0.7.3) (2015-05-30) [Full Changelog](https://github.com/locustio/locust/compare/v0.7.2...v0.7.3) **Closed issues:** - Rounding of percentiles \(premature optimization?\) [\#255](https://github.com/locustio/locust/issues/255) - Feature request: initiate a test without entering the browser [\#253](https://github.com/locustio/locust/issues/253) - Environment Variables for Locust playbooks [\#244](https://github.com/locustio/locust/issues/244) - Failures not detected when web server is shutdown [\#240](https://github.com/locustio/locust/issues/240) - client.post is not working for https [\#239](https://github.com/locustio/locust/issues/239) - confused by multiple requests in on\_start [\#236](https://github.com/locustio/locust/issues/236) - Empty stats on get aggregated stats [\#232](https://github.com/locustio/locust/issues/232) - return\_response a valid request argument [\#229](https://github.com/locustio/locust/issues/229) - Allow developer to reduce unique URLs to their paths for reporting purposes [\#228](https://github.com/locustio/locust/issues/228) - Locust never gets past 10 req/s, despite the server being much quicker than that [\#223](https://github.com/locustio/locust/issues/223) - How to send Ajax requestes ? [\#219](https://github.com/locustio/locust/issues/219) - Trigger UI events [\#218](https://github.com/locustio/locust/issues/218) - Clients support gzip / deflate ? [\#215](https://github.com/locustio/locust/issues/215) - nodequery api integration & charting ? [\#214](https://github.com/locustio/locust/issues/214) - Test run time number of requests / rps ? [\#213](https://github.com/locustio/locust/issues/213) - Clients support keepalive connections ? [\#212](https://github.com/locustio/locust/issues/212) - master slave config, master not doing any work ? [\#211](https://github.com/locustio/locust/issues/211) - multiple slaves of different server specs ? [\#210](https://github.com/locustio/locust/issues/210) - multiple url tests ? [\#208](https://github.com/locustio/locust/issues/208) - how to get the recorded data [\#206](https://github.com/locustio/locust/issues/206) - http proxy support [\#203](https://github.com/locustio/locust/issues/203) - error report is not included in `--logfile` nor is it available for download as a csv [\#202](https://github.com/locustio/locust/issues/202) - Stats get corrupted when the number of swarm users reaches the objective [\#201](https://github.com/locustio/locust/issues/201) - API for invoking load [\#191](https://github.com/locustio/locust/issues/191) - Locust slaves slowing dying and then coming back to life? [\#190](https://github.com/locustio/locust/issues/190) - IndexError: list index out of range [\#166](https://github.com/locustio/locust/issues/166) - Post with JSON data [\#157](https://github.com/locustio/locust/issues/157) - Python Crash when running with slaves [\#156](https://github.com/locustio/locust/issues/156) **Merged pull requests:** - Update writing-a-locustfile.rst [\#268](https://github.com/locustio/locust/pull/268) ([cristopherchacon](https://github.com/cristopherchacon)) - changed how request\_meta\["method"\] is set [\#267](https://github.com/locustio/locust/pull/267) ([dantagg](https://github.com/dantagg)) - list supported Python versions [\#261](https://github.com/locustio/locust/pull/261) ([cgoldberg](https://github.com/cgoldberg)) - add host cli arg to quickstart [\#250](https://github.com/locustio/locust/pull/250) ([groovecoder](https://github.com/groovecoder)) - Update what-is-locust.rst [\#247](https://github.com/locustio/locust/pull/247) ([frvi](https://github.com/frvi)) - Fixed typo in the quickstart doc. [\#245](https://github.com/locustio/locust/pull/245) ([hirokiky](https://github.com/hirokiky)) - Fixed link to ESN's Twitter page [\#227](https://github.com/locustio/locust/pull/227) ([gentlecat](https://github.com/gentlecat)) - Fix a missing backtick [\#221](https://github.com/locustio/locust/pull/221) ([chrisramsay](https://github.com/chrisramsay)) - Fix typo in docs [\#216](https://github.com/locustio/locust/pull/216) ([gregeinfrank](https://github.com/gregeinfrank)) - Typos in docs. [\#193](https://github.com/locustio/locust/pull/193) ([jfacorro](https://github.com/jfacorro)) - recieve -\> receive; locsutfile -\> locustfile [\#183](https://github.com/locustio/locust/pull/183) ([stevetjoa](https://github.com/stevetjoa)) ## [v0.7.2](https://github.com/locustio/locust/tree/v0.7.2) (2014-09-25) [Full Changelog](https://github.com/locustio/locust/compare/v0.7.1...v0.7.2) **Closed issues:** - Parallel tasks? [\#198](https://github.com/locustio/locust/issues/198) - Ability to schedule a call [\#197](https://github.com/locustio/locust/issues/197) - Execution order? task lifetime? [\#195](https://github.com/locustio/locust/issues/195) - CPU bound from locust vs CPU bound from the web app? [\#188](https://github.com/locustio/locust/issues/188) - testing single page application [\#187](https://github.com/locustio/locust/issues/187) - failed with AttributeError [\#185](https://github.com/locustio/locust/issues/185) - Problem running tests [\#184](https://github.com/locustio/locust/issues/184) - Web UI doesn't work in Firefox [\#179](https://github.com/locustio/locust/issues/179) - Request name not pertinent in case of redirection [\#174](https://github.com/locustio/locust/issues/174) - Reuse the code [\#173](https://github.com/locustio/locust/issues/173) - RPS droping to 0 at the end of the user ramp-up period [\#172](https://github.com/locustio/locust/issues/172) - Recorder and script generator [\#170](https://github.com/locustio/locust/issues/170) - got AttributeError while using "with client.get\(...\) as response" [\#165](https://github.com/locustio/locust/issues/165) - Request time doesn't include download time. [\#162](https://github.com/locustio/locust/issues/162) - Error for requests version 2.2.1 [\#154](https://github.com/locustio/locust/issues/154) - Request: non-zero exit when running --no-web and errors found [\#152](https://github.com/locustio/locust/issues/152) - Support for tests that use multiple hosts [\#150](https://github.com/locustio/locust/issues/150) - ImportError: No module named packages.urllib3.response [\#148](https://github.com/locustio/locust/issues/148) - Slaves not closing the TCP connections properly [\#137](https://github.com/locustio/locust/issues/137) - Locust support for SNI [\#136](https://github.com/locustio/locust/issues/136) - User numbers going up and down [\#131](https://github.com/locustio/locust/issues/131) - Automatically fork into multiple processes when running in --slave mode [\#12](https://github.com/locustio/locust/issues/12) **Merged pull requests:** - Add start and stop hatching events [\#199](https://github.com/locustio/locust/pull/199) ([skinp](https://github.com/skinp)) - fixed typo: your're -\> you are [\#182](https://github.com/locustio/locust/pull/182) ([stevetjoa](https://github.com/stevetjoa)) - choosed -\> chosen [\#181](https://github.com/locustio/locust/pull/181) ([mrjf](https://github.com/mrjf)) - Include method name in percentile distribution reports [\#176](https://github.com/locustio/locust/pull/176) ([fordhurley](https://github.com/fordhurley)) - Redefine err message for locustfile [\#164](https://github.com/locustio/locust/pull/164) ([illogicalextend](https://github.com/illogicalextend)) - Fixed typos in events.py example [\#159](https://github.com/locustio/locust/pull/159) ([nawaidshamim](https://github.com/nawaidshamim)) - Added: favicon, fixed paths. [\#158](https://github.com/locustio/locust/pull/158) ([dotpot](https://github.com/dotpot)) - Exit 1 when errors are found [\#155](https://github.com/locustio/locust/pull/155) ([jpotter](https://github.com/jpotter)) ## [v0.7.1](https://github.com/locustio/locust/tree/v0.7.1) (2014-04-29) [Full Changelog](https://github.com/locustio/locust/compare/v0.7...v0.7.1) **Closed issues:** - Min response time after reset is always 0 [\#147](https://github.com/locustio/locust/issues/147) - locust shell client does not work in zsh [\#142](https://github.com/locustio/locust/issues/142) - should catch exceptions by default [\#141](https://github.com/locustio/locust/issues/141) - question about putting a delay [\#139](https://github.com/locustio/locust/issues/139) - web ui uses a lot of mem and is quite sluggish at times [\#133](https://github.com/locustio/locust/issues/133) - Add ability to select which Task to run [\#130](https://github.com/locustio/locust/issues/130) - Move the download links to the top and make sticky [\#129](https://github.com/locustio/locust/issues/129) - locust.weight supported, just undocumented? [\#123](https://github.com/locustio/locust/issues/123) - Support for custom clients [\#83](https://github.com/locustio/locust/issues/83) **Merged pull requests:** - Fixed Docs Homebrew Link [\#143](https://github.com/locustio/locust/pull/143) ([saulshanabrook](https://github.com/saulshanabrook)) - Fix typo [\#132](https://github.com/locustio/locust/pull/132) ([rafax](https://github.com/rafax)) - Fix task ratio [\#125](https://github.com/locustio/locust/pull/125) ([sanga](https://github.com/sanga)) ## [v0.7](https://github.com/locustio/locust/tree/v0.7) (2014-01-20) [Full Changelog](https://github.com/locustio/locust/compare/v0.6.2...v0.7) **Fixed bugs:** - gc refcount related crash when loading web UI under Python 2.6.6 [\#49](https://github.com/locustio/locust/issues/49) **Closed issues:** - Different Users [\#126](https://github.com/locustio/locust/issues/126) - doc updates for main class change from Locust to HttpLocust [\#116](https://github.com/locustio/locust/issues/116) - collection of exceptions broken since 4ca0eef5 [\#114](https://github.com/locustio/locust/issues/114) - number locusts must be a multiple of the number of slaves [\#112](https://github.com/locustio/locust/issues/112) - changing port for distributed zeromq mode [\#111](https://github.com/locustio/locust/issues/111) - error when running in master mode [\#110](https://github.com/locustio/locust/issues/110) - python3 compatibility? [\#107](https://github.com/locustio/locust/issues/107) - ramping.py calls RequestStats.sum\_stats\(\) which is no longer a valid call [\#104](https://github.com/locustio/locust/issues/104) - line endings [\#101](https://github.com/locustio/locust/issues/101) - Multiple Hosts, Host Function [\#99](https://github.com/locustio/locust/issues/99) - Sorting does not work on \# requests column [\#97](https://github.com/locustio/locust/issues/97) - Issues with localhost and domain configured in hosts file [\#96](https://github.com/locustio/locust/issues/96) - Allow self.interrupt\(\) inside on\_start [\#95](https://github.com/locustio/locust/issues/95) - hooking locust and graphite together as a plugin [\#94](https://github.com/locustio/locust/issues/94) - Serve static files in web.app.route? [\#93](https://github.com/locustio/locust/issues/93) - Error: Too many files open [\#92](https://github.com/locustio/locust/issues/92) - stats reset after hatch completes [\#91](https://github.com/locustio/locust/issues/91) - locust/test/test\_average.py present but never run [\#85](https://github.com/locustio/locust/issues/85) - Add detailed request failure information to the web UI [\#84](https://github.com/locustio/locust/issues/84) - remove \_send\_request\_safe\_mode [\#82](https://github.com/locustio/locust/issues/82) - Enable different sessions for different users [\#81](https://github.com/locustio/locust/issues/81) - Does locust support ‘CSV Data Set Config‘ feature like jmeter [\#79](https://github.com/locustio/locust/issues/79) - fatal error: 'event.h' file not found while installing in virtualenv on OSX 10.8.3 [\#77](https://github.com/locustio/locust/issues/77) - Testing "Any" system [\#75](https://github.com/locustio/locust/issues/75) - Custom http\_code stats [\#73](https://github.com/locustio/locust/issues/73) - Need Clarification [\#70](https://github.com/locustio/locust/issues/70) - It'd be nice to include the machine that a logging message came from [\#67](https://github.com/locustio/locust/issues/67) - Allowing custom options to passed into tests? [\#65](https://github.com/locustio/locust/issues/65) - requests \>1.0 [\#61](https://github.com/locustio/locust/issues/61) - pyzmq 13.0.0 breaks distribution [\#58](https://github.com/locustio/locust/issues/58) - Locust web interface not starting on Windows [\#57](https://github.com/locustio/locust/issues/57) - Web interface doesn't work [\#56](https://github.com/locustio/locust/issues/56) - Unit tests LocustRunner\(s\) and distributed mode [\#20](https://github.com/locustio/locust/issues/20) - Proclaim Locust HTTP only [\#17](https://github.com/locustio/locust/issues/17) **Merged pull requests:** - fix typo [\#117](https://github.com/locustio/locust/pull/117) ([sanga](https://github.com/sanga)) - fix module and variable name clash \(traceback refers to a mod so it's a ... [\#115](https://github.com/locustio/locust/pull/115) ([sanga](https://github.com/sanga)) - Removes duplicate attribute documentation [\#106](https://github.com/locustio/locust/pull/106) ([djoume](https://github.com/djoume)) - Fixes typo in example code [\#105](https://github.com/locustio/locust/pull/105) ([djoume](https://github.com/djoume)) - fix typo in downloadable CSV [\#100](https://github.com/locustio/locust/pull/100) ([sghill](https://github.com/sghill)) - Documented more 0.7 changes [\#90](https://github.com/locustio/locust/pull/90) ([EnTeQuAk](https://github.com/EnTeQuAk)) - include hostname in log messages [\#89](https://github.com/locustio/locust/pull/89) ([sanga](https://github.com/sanga)) - Cleanups \(deprecated code, unused imports\) [\#88](https://github.com/locustio/locust/pull/88) ([EnTeQuAk](https://github.com/EnTeQuAk)) - Merged gevent/zmq updates, ported to requests \>= 1.2 [\#87](https://github.com/locustio/locust/pull/87) ([EnTeQuAk](https://github.com/EnTeQuAk)) - Added option '--only-summary' for only printing stats at the end. [\#80](https://github.com/locustio/locust/pull/80) ([dougblack](https://github.com/dougblack)) - bump requests dependency to most recent pre 1.0 version \(i.e. most recen... [\#76](https://github.com/locustio/locust/pull/76) ([sanga](https://github.com/sanga)) - Stats refactoring [\#74](https://github.com/locustio/locust/pull/74) ([heyman](https://github.com/heyman)) - Enhancement/url error [\#72](https://github.com/locustio/locust/pull/72) ([krallin](https://github.com/krallin)) - Include method name in command line logging [\#66](https://github.com/locustio/locust/pull/66) ([rory](https://github.com/rory)) - use correct python special method name [\#64](https://github.com/locustio/locust/pull/64) ([rory](https://github.com/rory)) - Small fixes [\#63](https://github.com/locustio/locust/pull/63) ([sanga](https://github.com/sanga)) - Use shutdown function when num\_requests are done [\#60](https://github.com/locustio/locust/pull/60) ([afajl](https://github.com/afajl)) - Update docs/api.rst [\#55](https://github.com/locustio/locust/pull/55) ([cbrinley](https://github.com/cbrinley)) - Added argument to options parser indicating on which port to run the web UI [\#54](https://github.com/locustio/locust/pull/54) ([manova](https://github.com/manova)) ## [v0.6.2](https://github.com/locustio/locust/tree/v0.6.2) (2013-01-10) [Full Changelog](https://github.com/locustio/locust/compare/v0.6.1...v0.6.2) **Closed issues:** - greenlet error when used distributed locust under Python2.6 [\#53](https://github.com/locustio/locust/issues/53) - Get fails in clean install on Ubuntu: KeyError: 'start\_time' [\#52](https://github.com/locustio/locust/issues/52) **Merged pull requests:** - add docs: Installing Locust on Mac OS [\#51](https://github.com/locustio/locust/pull/51) ([yurtaev](https://github.com/yurtaev)) - Add parent to TaskSet to enable state sharing among hierarchical TaskSets [\#50](https://github.com/locustio/locust/pull/50) ([daubman](https://github.com/daubman)) ## [v0.6.1](https://github.com/locustio/locust/tree/v0.6.1) (2012-12-04) [Full Changelog](https://github.com/locustio/locust/compare/v0.6...v0.6.1) **Closed issues:** - Locust throwing error when reaching NUM\_REQUESTS parameter [\#47](https://github.com/locustio/locust/issues/47) ## [v0.6](https://github.com/locustio/locust/tree/v0.6) (2012-11-29) [Full Changelog](https://github.com/locustio/locust/compare/v0.5.1...v0.6) **Fixed bugs:** - Master node fails to start if a slave node is still running [\#15](https://github.com/locustio/locust/issues/15) **Closed issues:** - Drop the require\_once decorator [\#42](https://github.com/locustio/locust/issues/42) - Improve catch\_response feature \(was previous: Remove catch\_response feature from HttpBrowser\) [\#39](https://github.com/locustio/locust/issues/39) - RPS count drops when master and slaves drift in time [\#38](https://github.com/locustio/locust/issues/38) - FEAT: add stat support for chunked transfer-encoding [\#33](https://github.com/locustio/locust/issues/33) - Date or timer for automatic shutdown of test [\#31](https://github.com/locustio/locust/issues/31) - Option to ignore query parameters on stats [\#29](https://github.com/locustio/locust/issues/29) - Remove SubLocust and merge into Locust class [\#16](https://github.com/locustio/locust/issues/16) - Add support for shutting down slaves without restarting master [\#6](https://github.com/locustio/locust/issues/6) **Merged pull requests:** - Change Locust/SubLocust API [\#43](https://github.com/locustio/locust/pull/43) ([heyman](https://github.com/heyman)) - Quickstart example was missing import task [\#41](https://github.com/locustio/locust/pull/41) ([natancox](https://github.com/natancox)) - Use python-requests as HTTP client in Locust [\#40](https://github.com/locustio/locust/pull/40) ([heyman](https://github.com/heyman)) - Addfix [\#36](https://github.com/locustio/locust/pull/36) ([jukart](https://github.com/jukart)) ## [v0.5.1](https://github.com/locustio/locust/tree/v0.5.1) (2012-07-01) [Full Changelog](https://github.com/locustio/locust/compare/v0.5...v0.5.1) **Closed issues:** - loglevel and logfile don't seem to work [\#25](https://github.com/locustio/locust/issues/25) ## [v0.5](https://github.com/locustio/locust/tree/v0.5) (2012-07-01) [Full Changelog](https://github.com/locustio/locust/compare/v0.4...v0.5) **Closed issues:** - Remove Confluence specific task ratio formatter [\#13](https://github.com/locustio/locust/issues/13) - Add HTTP request method \(GET/POST/PUT, etc\) to statistics table [\#3](https://github.com/locustio/locust/issues/3) **Merged pull requests:** - Refactoring \(separation\) of ramping code; Added tooltips for ramping form in ui [\#28](https://github.com/locustio/locust/pull/28) ([HeyHugo](https://github.com/HeyHugo)) - Support Basic HTTP Authorization for https requests [\#27](https://github.com/locustio/locust/pull/27) ([corbinbs](https://github.com/corbinbs)) - Add content-disposition with a filename. Fix missing import \(warnings\). [\#24](https://github.com/locustio/locust/pull/24) ([benjaminws](https://github.com/benjaminws)) - Fixed CSV stats export order [\#23](https://github.com/locustio/locust/pull/23) ([quosa](https://github.com/quosa)) - request timing csv endpoint was returning Internal Error [\#22](https://github.com/locustio/locust/pull/22) ([pedronis](https://github.com/pedronis)) - fix continuous resetting on of stats in master+slaves mode [\#19](https://github.com/locustio/locust/pull/19) ([pedronis](https://github.com/pedronis)) ## [v0.4](https://github.com/locustio/locust/tree/v0.4) (2011-12-05) [Full Changelog](https://github.com/locustio/locust/compare/117a61cfd1bba9ad10c8b680a574fcf32f6f46be...v0.4) **Fixed bugs:** - Total RPS counter does not work [\#9](https://github.com/locustio/locust/issues/9) - Total median value is zero in the web interface [\#7](https://github.com/locustio/locust/issues/7) - Wrong failure percentage in statistics [\#5](https://github.com/locustio/locust/issues/5) - Raising InterruptLocust within with statement + catch\_response causes failure [\#4](https://github.com/locustio/locust/issues/4) **Closed issues:** - Add sorting capabilities in web UI [\#8](https://github.com/locustio/locust/issues/8) - Add/improve support for running Locust distributed [\#1](https://github.com/locustio/locust/issues/1) **Merged pull requests:** - optional ramping feature; sorting stats by column [\#11](https://github.com/locustio/locust/pull/11) ([HeyHugo](https://github.com/HeyHugo)) - Dynamic changing of locust count [\#10](https://github.com/locustio/locust/pull/10) ([HeyHugo](https://github.com/HeyHugo)) \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* locust-1.4.3/Dockerfile000066400000000000000000000003651400440205700150220ustar00rootroot00000000000000FROM python:3.8 COPY . /build RUN cd /build && pip install . && rm -rf /build EXPOSE 8089 5557 RUN useradd --create-home locust USER locust WORKDIR /home/locust ENTRYPOINT ["locust"] # turn off python output buffering ENV PYTHONUNBUFFERED=1 locust-1.4.3/LICENSE000066400000000000000000000021071400440205700140310ustar00rootroot00000000000000The MIT License Copyright (c) 2009-2010, Carl Byström, Jonatan Heyman 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.locust-1.4.3/MANIFEST.in000066400000000000000000000001271400440205700145620ustar00rootroot00000000000000include LICENSE recursive-include locust/static * recursive-include locust/templates * locust-1.4.3/Makefile000066400000000000000000000005741400440205700144720ustar00rootroot00000000000000coverage: coverage run -m unittest discover test: tox build: rm -f dist/* && python3 setup.py sdist bdist_wheel release: build twine upload dist/* build_docs: sphinx-build -b html docs/ docs/_build/ changelog: python3 generate_changelog.py sass_watch: sass --watch locust/static/sass:locust/static/css sass_build: sass --update locust/static/sass:locust/static/css locust-1.4.3/README000066400000000000000000000000121400440205700136750ustar00rootroot00000000000000README.md locust-1.4.3/README.md000066400000000000000000000120501400440205700143010ustar00rootroot00000000000000# Locust [![Build Status](https://github.com/locustio/locust/workflows/Tests/badge.svg)](https://github.com/locustio/locust/actions?query=workflow%3ATests) [![codecov](https://codecov.io/gh/locustio/locust/branch/master/graph/badge.svg)](https://codecov.io/gh/locustio/locust) [![license](https://img.shields.io/github/license/locustio/locust.svg)](https://github.com/locustio/locust/blob/master/LICENSE) [![PyPI](https://img.shields.io/pypi/v/locust.svg)](https://pypi.org/project/locust/) [![PyPI](https://img.shields.io/pypi/pyversions/locust.svg)](https://pypi.org/project/locust/) [![GitHub contributors](https://img.shields.io/github/contributors/locustio/locust.svg)](https://github.com/locustio/locust/graphs/contributors) Locust is an easy to use, scriptable and scalable performance testing tool. You define the behaviour of your users in regular Python code, instead of using a clunky UI or domain specific language. This makes Locust infinitely expandable and very developer friendly. ## Features #### Write user test scenarios in plain-old Python If you want your users to loop, perform some conditional behaviour or do some calculations, you just use the regular programming constructs provided by Python. Locust runs every user inside its own greenlet (a lightweight process/coroutine). This enables you to write your tests like normal (blocking) Python code instead of having to use callbacks or some other mechanism. Because your scenarios are “just python†you can use your regular IDE, and version control your tests as regular code (as opposed to some other tools that use XML or binary formats) ```python from locust import HttpUser, task, between class QuickstartUser(HttpUser): wait_time = between(1, 2) def on_start(self): self.client.post("/login", json={"username":"foo", "password":"bar"}) @task def hello_world(self): self.client.get("/hello") self.client.get("/world") @task(3) def view_item(self): for item_id in range(10): self.client.get(f"/item?id={item_id}", name="/item") ``` #### Distributed & Scalable - supports hundreds of thousands of users Locust makes it easy to run load tests distributed over multiple machines. It is event-based (using [gevent](http://www.gevent.org/)), which makes it possible for a single process to handle many thousands concurrent users. While there may be other tools that are capable of doing more requests per second on a given hardware, the low overhead of each Locust user makes it very suitable for testing highly concurrent workloads. #### Web-based UI Locust has a user friendly web interface that shows the progress of your test in real-time. You can even change the load while the test is running. It can also be run without the UI, making it easy to use for CI/CD testing. Locust UI charts Locust UI stats Locust UI workers Locust UI start test #### Can test any system Even though Locust primarily works with web sites/services, it can be used to test almost any system or protocol. Just [write a client](https://docs.locust.io/en/latest/testing-other-systems.html#testing-other-systems) for what you want to test, or [explore some created by the community](https://github.com/SvenskaSpel/locust-plugins#users). ## Hackable Locust is small and very flexible and we intend to keep it that way. If you want to [send reporting data to that database & graphing system you like](https://github.com/SvenskaSpel/locust-plugins/blob/master/locust_plugins/listeners.py), wrap calls to a REST API to handle the particulars of your system or run a [totally custom load pattern](https://docs.locust.io/en/latest/generating-custom-load-shape.html#generating-custom-load-shape), there is nothing stopping you! ## Links * Website: [locust.io](https://locust.io) * Documentation: [docs.locust.io](https://docs.locust.io) * Code/issues: [Github](https://github.com/locustio/locust) * Support/Questions: [StackOverflow](https://stackoverflow.com/questions/tagged/locust) * Chat/discussion: [Slack signup](https://slack.locust.io/) ## Authors * [Carl Bystr](http://cgbystrom.com) ([@cgbystrom](https://twitter.com/cgbystrom) on Twitter) * [Jonatan Heyman](http://heyman.info) ([@jonatanheyman](https://twitter.com/jonatanheyman) on Twitter) * [Joakim Hamrén](https://github.com/Jahaja) ([@Jahaaja](https://twitter.com/Jahaaja) on Twitter) * [Hugo Heyman](https://github.com/HeyHugo) ([@hugoheyman](https://twitter.com/hugoheyman) on Twitter) * [Lars Holmberg](https://github.com/cyberw) ## License Open source licensed under the MIT license (see _LICENSE_ file for details). locust-1.4.3/Vagrantfile000066400000000000000000000003151400440205700152100ustar00rootroot00000000000000Vagrant.configure("2") do |config| config.vm.box = "ubuntu/xenial32" config.vm.network :forwarded_port, guest: 8089, host: 8089 config.vm.provision :shell, :path => "examples/vagrant/vagrant.sh" end locust-1.4.3/codecov.yml000066400000000000000000000001631400440205700151710ustar00rootroot00000000000000coverage: status: project: default: threshold: 1% patch: default: enabled: nolocust-1.4.3/docs/000077500000000000000000000000001400440205700137545ustar00rootroot00000000000000locust-1.4.3/docs/_static/000077500000000000000000000000001400440205700154025ustar00rootroot00000000000000locust-1.4.3/docs/_static/theme-overrides.css000066400000000000000000000004141400440205700212150ustar00rootroot00000000000000/* Make it possible to have multiline table cells by removing white-space:nowrap */ .wy-table-responsive table td, .wy-table-responsive table th { white-space: normal; } .wy-table-responsive { margin-bottom: 24px; max-width: 100%; overflow: visible; } locust-1.4.3/docs/api.rst000066400000000000000000000061151400440205700152620ustar00rootroot00000000000000### API ### User class ============ .. autoclass:: locust.User :members: wait_time, tasks, weight, abstract, on_start, on_stop, wait HttpUser class ================ .. autoclass:: locust.HttpUser :members: wait_time, tasks, client, abstract TaskSet class ============= .. autoclass:: locust.TaskSet :members: user, parent, wait_time, client, tasks, interrupt, schedule_task, on_start, on_stop, wait task decorator ============== .. autofunction:: locust.task tag decorator ============== .. autofunction:: locust.tag SequentialTaskSet class ======================= .. autoclass:: locust.SequentialTaskSet :members: user, parent, wait_time, client, tasks, interrupt, schedule_task, on_start, on_stop .. _wait_time_functions: Built in wait_time functions ============================ .. automodule:: locust.wait_time :members: between, constant, constant_pacing HttpSession class ================= .. autoclass:: locust.clients.HttpSession :members: __init__, request, get, post, delete, put, head, options, patch Response class ============== This class actually resides in the `python-requests `_ library, since that's what Locust is using to make HTTP requests, but it's included in the API docs for locust since it's so central when writing locust load tests. You can also look at the :py:class:`Response ` class at the `requests documentation `_. .. autoclass:: requests.Response :inherited-members: :noindex: ResponseContextManager class ============================ .. autoclass:: locust.clients.ResponseContextManager :members: success, failure .. _exceptions: Exceptions ========== .. autoexception:: locust.exception.InterruptTaskSet .. autoexception:: locust.exception.RescheduleTask .. autoexception:: locust.exception.RescheduleTaskImmediately Environment class ================= .. autoclass:: locust.env.Environment :members: .. _events: Event hooks =========== Locust provides event hooks that can be used to extend Locust in various ways. The following event hooks are available under :py:attr:`Environment.events `, and there's also a reference to these events under ``locust.events`` that can be used at the module level of locust scripts (since the Environment instance hasn't been created when the locustfile is imported). .. autoclass:: locust.event.Events :members: EventHook class --------------- The event hooks are instances of the **locust.events.EventHook** class: .. autoclass:: locust.event.EventHook .. note:: It's highly recommended that you add a wildcard keyword argument in your event listeners to prevent your code from breaking if new arguments are added in a future version. Runner classes ===================== .. autoclass:: locust.runners.Runner :members: start, stop, quit, user_count .. autoclass:: locust.runners.LocalRunner .. autoclass:: locust.runners.MasterRunner .. autoclass:: locust.runners.WorkerRunner Web UI class ============ .. autoclass:: locust.web.WebUI :members: locust-1.4.3/docs/changelog.rst000066400000000000000000001006221400440205700164360ustar00rootroot00000000000000#################### Changelog Highlights #################### For full details of the Locust changelog, please see https://github.com/locustio/locust/blob/master/CHANGELOG.md 1.4.3 ===== * Fix bug that broke the tooltips for charts in the Web UI 1.4.2 ===== * Multiple improvements for charting including tooltips etc * Added --html option to save HTML report https://github.com/locustio/locust/pull/1637 * Lots of other small fixes 1.4.1 ===== * Fix 100% cpu usage when running in docker/non-tty terminal https://github.com/locustio/locust/issues/1629 1.4.0 ===== * You can now control user count from terminal while the test is running https://github.com/locustio/locust/pull/1612 * Infinite run time is now the default for command line runs https://github.com/locustio/locust/pull/1625 * wait_time now defaults to zero https://github.com/locustio/locust/pull/1626 1.3.2 ===== * List Python 3.9 as supported in the package/on PyPi * Fix XSS vulnerability in the web UI (sounds important but really isn't, as Locust UI is not meant to be exposed to outside users) 1.3.1 ===== * Bump minimum required gevent version to 20.9.0 (latest), as the previous ones had sneaky binary incompatibilities with the latest version of greenlet ("RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject") 1.3.0 ===== * Breaking change: Remove step-load feature (now that we have LoadTestShape it is no longer needed) * More type hints to enable better code completion and linting of locustfiles Bug fixes: * LoadTestShape.get\_run\_time is not relative to start of test https://github.com/locustio/locust/issues/1557 * Refactor and fix delayed user stopping in combination with on\_stop https://github.com/locustio/locust/pull/1560 * runner.quit gets blocked by slow on stop https://github.com/locustio/locust/issues/1552 * Remove legacy code that was only needed for py2 * Lots more 1.2.3 ===== * Bug fix (TypeError: code() takes at least 14 arguments (13 given) (Werkzeug version issue) https://github.com/locustio/locust/issues/1545) * Bug fix (Locust stuck in "Shape worker starting" when restarting a test from the webUI https://github.com/locustio/locust/issues/1540) * Various linting fixes that *should* have no functional impact 1.2.2 ===== * Bug fix (LoadTestShape in headless mode https://github.com/locustio/locust/pull/1539) 1.2.1 ===== * Bug fix (StatsEntry.use_response_times_cache must be set to True, https://github.com/locustio/locust/issues/1531) 1.2 === * Rename hatch rate to spawn rate (the --hatch-rate parameter is only deprecated, but the hatch_complete event has been renamed spawning_complete) * Ability to generate any custom load shape with LoadTestShape class * Allow ramping down of users * Ability to use save custom percentiles * Improve command line stats output * Bug fixes (excessive precision of metrics in losust csv stats, negative response time when system clock has changed, issue with non-string failure messages, some typos etc) * Documentation improvements 1.1.1 ===== * --run-time flag is not respected if there is an exception in a test_stop listener * FastHttpUser: Handle stream ended at an unexpected time and UnicodeDecodeError. Show bad/error status codes on failures page. * Improve logging when locust master port is busy 1.1 === * The official Docker image is now based on the ``python:3.8`` image instead of ``python:3.8-alpine``. This should make it easier to install other python packages when extending the locust docker image. * Allow Users to stop the runner by calling self.environment.runner.quit() (without deadlocking sometimes) * Cut to only 5% free space on the top of the graphs * Use csv module to generate csv data (solves issues with sample names that need escaping in csv) * Various documentation improvements 1.0.3 ===== * Ability to control the exit code of the Locust process by setting :py:attr:`Environment.process_exit_code ` * FastHttpLocust: Change dependency to use original geventhttpclient (now that releases can be made there) instead of geventhttpclient-wheels * Fix search on readthedocs 1.0.2 ===== * Check for low open files limit (ulimit) and try to automatically increase it from within the locust process. * Other various bug fixes as improvements .. _changelog-1-0: 1.0, 1.0.1 ========== This version contains some breaking changes. Locust class renamed to User ---------------------------- We've renamed the ``Locust`` and ``HttpLocust`` classes to ``User`` and ``HttpUser``. The ``locust`` attribute on :py:class:`TaskSet ` instances has been renamed to :py:attr:`user `. The parameter for setting number of users has also been changed, from ``-c`` / ``--clients`` to ``-u`` / ``--users``. Ability to declare @task directly under the ``User`` class ---------------------------------------------------------- It's now possible to declare tasks directly under a User class like this: .. code-block:: python class WebUser(User): @task def some_task(self): pass In tasks declared under a User class (e.g. ``some_task`` in the example above), ``self`` refers to the User instance, as one would expect. For tasks defined under a :py:class:`TaskSet ` class, ``self`` would refer to the ``TaskSet`` instance. The ``task_set`` attribute on the ``User`` class (previously ``Locust`` class) has been removed. To declare a ``User`` class with a single ``TaskSet`` one would now use the the :py:attr:`tasks ` attribute instead: .. code-block:: python class MyTaskSet(TaskSet): ... class WebUser(User): tasks = [MyTaskSet] Task tagging ------------ A new :ref:`tag feature ` has been added that makes it possible to include/exclude tasks during a test run. Tasks can be tagged using the :py:func:`@tag ` decorator: .. code-block:: python class WebUser(User): @task @tag("tag1", "tag2") def my_task(self): ... And tasks can then be specified/excluded using the ``--tags``/``-T`` and ``--exclude-tags``/``-E`` command line arguments. Environment variables changed ----------------------------- The following changes has been made to the configuration environment variables * ``LOCUST_MASTER`` has been renamed to ``LOCUST_MODE_MASTER`` (in order to make it less likely to get variable name collisions when running Locust in Kubernetes/K8s which automatically adds environment variables depending on service/pod names). * ``LOCUST_SLAVE`` has been renamed to ``LOCUST_MODE_WORKER``. * ``LOCUST_MASTER_PORT`` has been renamed to ``LOCUST_MASTER_NODE_PORT``. * ``LOCUST_MASTER_HOST`` has been renamed to ``LOCUST_MASTER_NODE_HOST``. * ``CSVFILEBASE`` has been renamed to ``LOCUST_CSV``. See the :ref:`configuration` documentation for a full list of available :ref:`environment variables `. Other breaking changes ---------------------- * The master/slave terminology has been changed to master/worker. Therefore the command line arguments ``--slave`` and ``--expect-slaves`` has been renamed to ``--worker`` and ``--expect-workers``. * The option for running Locust without the Web UI has been renamed from ``--no-web`` to ``--headless``. * Removed ``Locust.setup``, ``Locust.teardown``, ``TaskSet.setup`` and ``TaskSet.teardown`` hooks. If you want to run code at the start or end of a test, you should instead use the :py:attr:`test_start ` and :py:attr:`test_stop ` events: .. code-block:: python from locust import events @events.test_start.add_listener def on_test_start(**kw): print("test is starting") @events.test_stop.add_listener def on_test_start(**kw): print("test is stopping") * ``TaskSequence`` and ``@seq_task`` has been replaced with :ref:`SequentialTaskSet `. * A ``User count`` column has been added to the history stats CSV file. The column order and column names has been changed. * The official docker image no longer uses a shell script with a bunch of special environment variables to configure how how locust is started. Instead, the ``locust`` command is now set as ``ENTRYPOINT`` of the docker image. See :ref:`running-locust-docker` for more info. * Command line option ``--csv-base-name`` has been removed, since it was just an alias for ``--csv``. * The way Locust handles logging has been changed. We no longer wrap stdout (and stderr) to automatically make print statements go into the log. ``print()`` statements now only goes to stdout. To add custom entries to the log, one should now use the Python logging module: .. code-block:: python import logging logging.info("custom logging message) For more info see :ref:`logging` Web UI improvements ------------------- * It's now possible to protect the Web UI with Basic Auth using hte ``--web-auth`` command line argument. * The Web UI can now be served over HTTPS by specifying a TLS certificate and key with the ``--tls-cert`` and ``--tls-key`` command line arguments. * If the number of users and hatch rate are specified on command line, it's now used to pre-populate the input fields in the Web UI. Other fixes and improvements ---------------------------- * Added ``--config`` command line option for specifying a :ref:`configuration file ` path * The code base has been refactored to make it possible to run :ref:`Locust as a python lib `. * It's now possible to call ``response.failure()`` or ``response.success()`` multiple times when using the ``catch_response=True`` in the HTTP clients. Only the last call to ``success``/``failure`` will count. * The ``--help`` output has been improved by grouping related options together. 0.14.6 ====== * Fix bug when running with latest Gevent version, and pinned the latest version 0.14.0 ====== * Drop Python 2 and Python 3.5 support! * Continuously measure CPU usage and emit a warning if we get a five second average above 90% * Show CPU usage of slave nodes in the Web UI * Fixed issue when running Locust distributed and new slave nodes connected during the hatching/ramp-up phase (https://github.com/locustio/locust/issues/1168) 0.13.5 ====== Various minor fixes, mainly regarding FastHttpLocust. 0.13.4 ====== Identical to previous version, but now built & deployed to Pypi using Travis. 0.13.3 ====== * Unable to properly connect multiple slaves - https://github.com/locustio/locust/issues/1176 * Zero exit code on exception - https://github.com/locustio/locust/issues/1172 * `--stop-timeout` is not respected when changing number of running Users in distributed mode - https://github.com/locustio/locust/issues/1162 0.13.2 ====== * Fixed bug that broke the Web UI's repsonse time graph 0.13.1 ====== * Fixed crash bug on Python 3.8.0 * Various other bug fixes and improvements. 0.13.0 ====== * New API for specifying wait time - https://github.com/locustio/locust/pull/1118 Example of the new API:: from locust import HttpLocust, between class User(HttpLocust): # wait between 5 and 30 seconds wait_time = between(5, 30) There are three built in :ref:`wait time functions `: :py:func:`between `, :py:func:`constant ` and :py:func:`constant_pacing `. * FastHttpLocust: Accept self signed SSL certificates, ignore host checks. Improved response code handling * Add current working dir to sys.path - https://github.com/locustio/locust/pull/484 * Web UI improvements: Added 90th percentile to table, failure per seconds as a series in the chart * Ability to specify host in web ui * Added response_length to request_failure event - https://github.com/locustio/locust/pull/1144 * Added p99.9 and p99.99 to request stats distribution csv - https://github.com/locustio/locust/pull/1125 * Various other bug fixes and improvements. 0.12.2 ====== * Added `--skip-log-setup` to disable Locust's default logging setup. * Added `--stop-timeout` to allow tasks to finish running their iteration before stopping * Added 99.9 and 99.99 percentile response times to csv output * Allow custom clients to set request response time to None. Those requests will be excluded when calculating median, average, min, max and percentile response times. * Renamed the last row in statistics table from "Total" to "Aggregated" (since the values aren't a sum of the individual table rows). * Some visual improvements to the web UI. * Fixed issue with simulating fewer number of locust users than the number of slave/worker nodes. * Fixed bugs in the web UI related to the fact that the stats table is truncated at 500 entries. * Various other bug fixes and improvements. 0.12.1 ====== * Added new :code:`FastHttpLocust` class that uses a faster HTTP client, which should be 5-6 times faster than the normal :code:`HttpLocust` class. For more info see the documentation on :ref:`increasing performance `. * Added ability to set the exit code of the locust process when exceptions has occurred within the user code, using the :code:`--exit-code-on-error` parameter. * Added TCP keep alive to master/slave communication sockets to avoid broken connections in some environments. * Dropped support for Python 3.4 * Numerous other bug fixes and improvements. 0.10.0 ====== * Python 3.7 support * Added a status page to the web UI when running Locust distributed showing the status of slave nodes and detect down slaves using heartbeats * Numerous bugfixes/documentation updates (see detailed changelog) 0.9.0 ===== * Added detailed changelog (https://github.com/locustio/locust/blob/master/CHANGELOG.md) * Numerous bugfixes (see detailed changelog) * Added sequential task support - https://github.com/locustio/locust/pull/827 * Added support for user-defined wait_function - https://github.com/locustio/locust/pull/785 * By default, Locust no longer resets the statistics when the hatching is complete. Therefore :code:`--no-reset-stats` has been deprected (since it's now the default behaviour), and instead a new :code:`--reset-stats` option has been added. * Dropped support for Python 3.3 * Updated documentation 0.8.1 ===== * Updated pyzmq version, and changed so that we don't pin a specific version. This makes it easier to install Locust on Windows. 0.8 === * Python 3 support * Dropped support for Python 2.6 * Added :code:`--no-reset-stats` option for controling if the statistics should be reset once the hatching is complete * Added charts to the web UI for requests per second, average response time, and number of simulated users. * Updated the design of the web UI. * Added ability to write a CSV file for results via command line flag * Added the URL of the host that is currently being tested to the web UI. * We now also apply gevent's monkey patching of threads. This fixes an issue when using Locust to test Cassandra (https://github.com/locustio/locust/issues/569). * Various bug fixes and improvements 0.7.5 ===== * Use version 1.1.1 of gevent. Fixes an install issue on certain versions of python. 0.7.4 ===== * Use a newer version of requests, which fixed an issue for users with older versions of requests getting ConnectionErrors (https://github.com/locustio/locust/issues/273). * Various fixes to documentation. 0.7.3 ===== * Fixed bug where POST requests (and other methods as well) got incorrectly reported as GET requests, if the request resulted in a redirect. * Added ability to download exceptions in CSV format. Download links has also been moved to it's own tab in the web UI. 0.7.2 ===== * Locust now returns an exit code of 1 when any failed requests were reported. * When making an HTTP request to an endpoint that responds with a redirect, the original URL that was requested is now used as the name for that entry in the statistics (unless an explicit override is specified through the *name* argument). Previously, the last URL in the redirect chain was used to label the request(s) in the statistics. * Fixed bug which caused only the time of the last request in a redirect chain to be included in the reported time. * Fixed bug which caused the download time of the request body not to be included in the reported response time. * Fixed bug that occurred on some linux dists that were tampering with the python-requests system package (removing dependencies which requests is bundling). This bug only occured when installing Locust in the python system packages, and not when using virtualenv. * Various minor fixes and improvements. 0.7.1 ===== * Exceptions that occurs within TaskSets are now catched by default. * Fixed bug which caused Min response time to always be 0 after all locusts had been hatched and the statistics had been reset. * Minor UI improvements in the web interface. * Handle messages from "zombie" slaves by ignoring the message and making a log entry in the master process. 0.7 === HTTP client functionality moved to HttpLocust --------------------------------------------- Previously, the Locust class instantiated a :py:class:`HttpSession ` under the client attribute that was used to make HTTP requests. This funcionality has now been moved into the :py:class:`HttpLocust ` class, in an effort to make it more obvious how one can use Locust to :doc:`load test non-HTTP systems `. To make existing locust scripts compatible with the new version you should make your locust classes inherit from HttpLocust instead of the base Locust class. msgpack for serializing master/slave data ----------------------------------------- Locust now uses `msgpack `_ for serializing data that is sent between a master node and it's slaves. This adresses a possible attack that can be used to execute code remote, if one has access to the internal locust ports that are used for master-slave communication. The reason for this exploit was due to the fact that pickle was used. .. warning:: Anyone who uses an older version should make sure that their Locust machines are not publicly accessible on port 5557 and 5558. Also, one should never run Locust as root. Anyone who uses the :py:class:`report_to_master ` and :py:class:`slave_report ` events, needs to make sure that any data that is attached to the slave reports is serializable by msgpack. requests updated to version 2.2 ------------------------------- Locust updated `requests `_ to the latest major release. .. note:: Requests 1.0 introduced some major API changes (and 2.0 just a few). Please check if you are using any internal features and check the documentation: `Migrating to 1.x `_ and `Migrationg to 2.x `_ gevent updated to version 1.0 ------------------------------- gevent 1.0 has now been released and Locust has been updated accordingly. Big refactoring of request statistics code ------------------------------------------ Refactored :py:class:`RequestStats`. * Created :py:class:`StatsEntry` which represents a single stats entry (URL). Previously the :py:class:`RequestStats` was actually doing two different things: * It was holding track of the aggregated stats from all requests * It was holding the stats for single stats entries. Now RequestStats should be instantiated and holds the global stats, as well as a dict of StatsEntry instances which holds the stats for single stats entries (URLs) Removed support for avg_wait ---------------------------- Previously one could specify avg_wait to :py:class:`TaskSet` and :py:class:`Locust` that Locust would try to strive to. However this can be sufficiently accomplished by using min_wait and max_wait for most use-cases. Therefore we've decided to remove the avg_wait as its use-case is not clear or just too narrow to be in the Locust core. Removed support for ramping ---------------------------- Previously one could tell Locust, using the --ramp option, to try to find a stable client count that the target host could handle, but it's been broken and undocumented for quite a while so we've decided to remove it from the locust core and perhaps have it reappear as a plugin in the future. Locust Event hooks now takes keyword argument --------------------------------------------- When :doc:`extending-locust` by listening to :ref:`events`, the listener functions should now expect the arguments to be passed in as keyword arguments. It's also highly recommended to add an extra wildcard keyword arguments to listener functions, since they're then less likely to break if extra arguments are added to that event in some future version. For example:: from locust import events def on_request(request_type, name, response_time, response_length, **kw): print "Got request!" locust.events.request_success += on_request The *method* and *path* arguments to :py:obj:`request_success ` and :py:obj:`request_failure ` are now called *request_type* and *name*, since it's less HTTP specific. Other changes ------------- * You can now specify the port on which to run the web host * Various code cleanups * Updated gevent/zmq libraries * Switched to unittest2 discovery * Added option --only-summary to only output the summary to the console, thus disabling the periodic stats output. * Locust will now make sure to spawn all the specified locusts in distributed mode, not just a multiple of the number of slaves. * Fixed the broken Vagrant example. * Fixed the broken events example (events.py). * Fixed issue where the request column was not sortable in the web-ui. * Minor styling of the statistics table in the web-ui. * Added options to specify host and ports in distributed mode using --master-host, --master-port for the slaves, --master-bind-host, --master-bind-port for the master. * Removed previously deprecated and obsolete classes WebLocust and SubLocust. * Fixed so that also failed requests count, when specifying a maximum number of requests on the command line 0.6.2 ===== * Made Locust compatible with gevent 1.0rc2. This allows user to step around a problem with running Locust under some versions of CentOS, that can be fixed by upgrading gevent to 1.0. * Added :py:attr:`parent ` attribute to TaskSet class that refers to the parent TaskSet, or Locust, instance. Contributed by Aaron Daubman. 0.6.1 ===== * Fixed bug that was causing problems when setting a maximum number of requests using the **-n** or **--num-request** command line parameter. 0.6 === .. warning:: This version comes with non backward compatible changes to the API. Anyone who is currently using existing locust scripts and want to upgrade to 0.6 should read through these changes. :py:class:`SubLocust ` replaced by :py:class:`TaskSet ` and :py:class:`Locust ` class behaviour changed ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- :py:class:`Locust ` classes does no longer control task scheduling and execution. Therefore, you no longer define tasks within Locust classes, instead the Locust class has a :py:attr:`task_set ` attribute which should point to a :py:class:`TaskSet ` class. Tasks should now be defined in TaskSet classes, in the same way that was previously done in Locust and SubLocust classes. TaskSets can be nested just like SubLocust classes could. So the following code for 0.5.1:: class User(Locust): min_wait = 10000 max_wait = 120000 @task(10) def index(self): self.client.get("/") @task(2) class AboutPage(SubLocust): min_wait = 10000 max_wait = 120000 def on_init(self): self.client.get("/about/") @task def team_page(self): self.client.get("/about/team/") @task def press_page(self): self.client.get("/about/press/") @task def stop(self): self.interrupt() Should now be written like:: class BrowsePage(TaskSet): @task(10) def index(self): self.client.get("/") @task(2) class AboutPage(TaskSet): def on_init(self): self.client.get("/about/") @task def team_page(self): self.client.get("/about/team/") @task def press_page(self): self.client.get("/about/press/") @task def stop(self): self.interrupt() class User(Locust): min_wait = 10000 max_wait = 120000 task_set = BrowsePage Each TaskSet instance gets a :py:attr:`locust ` attribute, which refers to the Locust class. Locust now uses Requests ------------------------ Locust's own HttpBrowser class (which was typically accessed through *self.client* from within a locust class) has been replaced by a thin wrapper around the requests library (http://python-requests.org). This comes with a number of advantages. Users can now take advantage of a well documented, well written, fully fledged library for making HTTP requests. However, it also comes with some small API changes wich will require users to update their existing load testing scripts. Gzip encoding turned on by default ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The HTTP client now sends headers for accepting gzip encoding by default. The **--gzip** command line argument has been removed and if someone want to disable the *Accept-Encoding* that the HTTP client uses, or any other HTTP headers you can do:: class MyWebUser(Locust): def on_start(self): self.client.headers = {"Accept-Encoding":""} Improved HTTP client ^^^^^^^^^^^^^^^^^^^^ Because of the switch to using python-requests in the HTTP client, the API for the client has also gotten a few changes. * Additionally to the :py:meth:`get `, :py:meth:`post `, :py:meth:`put `, :py:meth:`delete ` and :py:meth:`head ` methods, the :py:class:`HttpSession ` class now also has :py:meth:`patch ` and :py:meth:`options ` methods. * All arguments to the HTTP request methods, except for **url** and **data** should now be specified as keyword arguments. For example, previously one could specify headers using:: client.get("/path", {"User-Agent":"locust"}) # this will no longer work And should now be specified like:: client.get("/path", headers={"User-Agent":"locust"}) * In general the whole HTTP client is now more powerful since it leverages on python-requests. Features that we're now able to use in Locust includes file upload, SSL, connection keep-alive, and more. See the `python-requests documentation `_ for more details. * The new :py:class:`HttpSession ` class' methods now return python-request :py:class:`Response ` objects. This means that accessing the content of the response is no longer made using the **data** attribute, but instead the **content** attribute. The HTTP response code is now accessed through the **status_code** attribute, instead of the **code** attribute. HttpSession methods' catch_response argument improved and allow_http_error argument removed ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ * When doing HTTP requests using the **catch_response** argument, the context manager that is returned now provides two functions, :py:meth:`success ` and :py:meth:`failure ` that can be used to manually control what the request should be reported as in Locust's statistics. .. autoclass:: locust.clients.ResponseContextManager :members: success, failure :noindex: * The **allow_http_error** argument of the HTTP client's methods has been removed. Instead one can use the **catch_response** argument to get a context manager, which can be used together with a with statement. The following code in the previous Locust version:: client.get("/does/not/exist", allow_http_error=True) Can instead now be written like:: with client.get("/does/not/exist", catch_response=True) as response: response.success() Other improvements and bug fixes -------------------------------- * Scheduled task callables can now take keyword arguments and not only normal function arguments. * SubLocust classes that are scheduled using :func:`locust.core.Locust.schedule_task` can now take arguments and keyword arguments (available in *self.args* and *self.kwargs*). * Fixed bug where the average content size would be zero when doing requests against a server that didn't set the content-length header (i.e. server that uses *Transfer-Encoding: chunked*) Smaller API Changes ------------------- * The *require_once* decorator has been removed. It was an old legacy function that no longer fit into the current way of writing Locust tests, where tasks are either methods under a Locust class or SubLocust classes containing task methods. * Changed signature of :func:`locust.core.Locust.schedule_task`. Previously all extra arguments that was given to the method was passed on to the task when it was called. It no longer accepts extra arguments. Instead, it takes an *args* argument (list) and a *kwargs* argument (dict) which are be passed to the task when it's called. * Arguments for :py:class:`request_success ` event hook has been changed. Previously it took an HTTP Response instance as argument, but this has been changed to take the content-length of the response instead. This makes it easier to write custom clients for Locust. 0.5.1 ===== * Fixed bug which caused --logfile and --loglevel command line parameters to not be respected when running locust without zeromq. 0.5 === API changes ----------- * Web inteface is now turned on by default. The **--web** command line option has been replaced by --no-web. * :func:`locust.events.request_success` and :func:`locust.events.request_failure` now gets the HTTP method as the first argument. Improvements and bug fixes -------------------------- * Removed **--show-task-ratio-confluence** and added a **--show-task-ratio-json** option instead. The **--show-task-ratio-json** will output JSON data containing the task execution ratio for the locust "brain". * The HTTP method used when a client requests a URL is now displayed in the web UI * Some fixes and improvements in the stats exporting: * A file name is now set (using content-disposition header) when downloading stats. * The order of the column headers for request stats was wrong. * Thanks Benjamin W. Smith, Jussi Kuosa and Samuele Pedroni! 0.4 === API changes ----------- * WebLocust class has been deprecated and is now called just Locust. The class that was previously called Locust is now called LocustBase. * The *catch_http_error* argument to HttpClient.get() and HttpClient.post() has been renamed to *allow_http_error*. Improvements and bug fixes -------------------------- * Locust now uses python's logging module for all logging * Added the ability to change the number of spawned users when a test is running, without having to restart the test. * Experimental support for automatically ramping up and down the number of locust to find a maximum number of concurrent users (based on some parameters like response times and acceptable failure rate). * Added support for failing requests based on the response data, even if the HTTP response was OK. * Improved master node performance in order to not get bottlenecked when using enough slaves (>100) * Minor improvements in web interface. * Fixed missing template dir in MANIFEST file causing locust installed with "setup.py install" not to work. locust-1.4.3/docs/conf.py000066400000000000000000000125511400440205700152570ustar00rootroot00000000000000# -*- coding: utf-8 -*- # # This file is execfile()d with the current directory set to its containing dir. # # The contents of this file are pickled, so don't put values in the namespace # that aren't pickleable (module imports are okay, they're removed automatically). # # All configuration values have a default value; values that are commented out # serve to show the default value. import os import subprocess from locust.argument_parser import get_empty_argument_parser, setup_parser_arguments # Run command `locust --help` and store output in cli-help-output.txt which is included in the docs def save_locust_help_output(): cli_help_output_file = os.path.join(os.path.abspath(os.path.dirname(__file__)), "cli-help-output.txt") print("Running `locust --help` command and storing output in %s" % cli_help_output_file) help_output = subprocess.check_output(["locust", "--help"]).decode("utf-8") with open(cli_help_output_file, "w") as f: f.write(help_output) save_locust_help_output() # Generate RST table with help/descriptions for all available environment variables def save_locust_env_variables(): env_options_output_file = os.path.join(os.path.abspath(os.path.dirname(__file__)), "config-options.rst") print("Generating RST table for Locust environment variables and storing in %s" % env_options_output_file) parser = get_empty_argument_parser() setup_parser_arguments(parser) table_data = [] for action in parser._actions: if action.env_var: table_data.append( ( ", ".join(["``%s``" % c for c in action.option_strings]), "``%s``" % action.env_var, ", ".join( ["``%s``" % c for c in parser.get_possible_config_keys(action) if not c.startswith("--")] ), action.help, ) ) colsizes = [max(len(r[i]) for r in table_data) for i in range(len(table_data[0]))] formatter = " ".join("{:<%d}" % c for c in colsizes) rows = [formatter.format(*row) for row in table_data] edge = formatter.format(*["=" * c for c in colsizes]) divider = formatter.format(*["-" * c for c in colsizes]) headline = formatter.format(*["Command line", "Environment", "Config file", "Description"]) output = "\n".join( [ edge, headline, divider, "\n".join(rows), edge, ] ) with open(env_options_output_file, "w") as f: f.write(output) save_locust_env_variables() # The default replacements for |version| and |release|, also used in various # other places throughout the built documents. # # The short X.Y version. from locust import __version__ # General configuration # --------------------- # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx_search.extension"] # autoclass options # autoclass_content = "both" autodoc_typehints = "none" # I would have liked to use 'description' but unfortunately it too is very verbose # Add any paths that contain templates here, relative to this directory. # templates_path = ["_templates"] # The suffix of source filenames. source_suffix = ".rst" # The master toctree document. master_doc = "index" # General substitutions. project = "Locust" # copyright = '' # Intersphinx config intersphinx_mapping = { "requests": ("https://requests.readthedocs.io/en/latest/", None), } # The full version, including alpha/beta/rc tags. release = __version__ # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: # today = '' # Else, today_fmt is used as the format for a strftime call. today_fmt = "%B %d, %Y" # List of documents that shouldn't be included in the build. # unused_docs = [] # If true, '()' will be appended to :func: etc. cross-reference text. add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). add_module_names = False # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. show_authors = False # Sphinx will recurse into subversion configuration folders and try to read # any document file within. These should be ignored. # Note: exclude_dirnames is new in Sphinx 0.5 exclude_dirnames = [] # Options for HTML output # ----------------------- html_show_sourcelink = False html_file_suffix = ".html" # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org on_rtd = os.environ.get("READTHEDOCS", None) == "True" if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = "sphinx_rtd_theme" html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Custom CSS overrides html_static_path = ["_static"] html_context = { "css_files": ["_static/theme-overrides.css", "_static/css/rtd_sphinx_search.min.css"], } # HTML theme # html_theme = "haiku" # html_theme = "default" # html_theme_options = { # "rightsidebar": "true", # "codebgcolor": "#fafcfa", # "bodyfont": "Arial", # } # The name of the Pygments (syntax highlighting) style to use. # pygments_style = 'trac' locust-1.4.3/docs/configuration.rst000066400000000000000000000105331400440205700173570ustar00rootroot00000000000000.. _configuration: Configuration ============= Command Line Options ----------------------------- The most straight forward way to Configure how Locust is run is through command line arguments. .. code-block:: console $ locust --help .. literalinclude:: cli-help-output.txt :language: console .. _environment-variables: Environment Variables --------------------- Most of the options that can be set through command line arguments can also be set through environment variables. Example: .. code-block:: $ LOCUST_LOCUSTFILE=custom_locustfile.py locust .. _configuration-file: Configuration File ------------------ Any of the options that can be set through command line arguments can also be set by a configuration file in the `config file `_ format. Locust will look for ``~/.locust.conf`` and ``./locust.conf`` by default, and you can specify an additional file using the ``--config`` flag. Example: .. code-block:: # master.conf in current directory locustfile = locust_files/my_locust_file.py headless = true master = true expect-workers = 5 host = http://target-system users = 100 spawn-rate = 10 run-time = 10m .. code-block:: console $ locust --config=master.conf .. note:: Configuration values are read (overridden) in the following order: .. code-block:: ~/locust.conf -> ./locust.conf -> (file specified using --conf) -> env vars -> cmd args All available configuration options ----------------------------------- Here's a table of all the available configuration options, and their corresponding Environment and config file keys: .. include:: config-options.rst Customization of statistics settings ------------------------------------ Default configuration for Locust statistics is set in constants of stats.py file. It can be tuned to specific requirements by overriding these values. To do this, import locust.stats module and override required settings .. code-block:: python import locust.stats locust.stats.CONSOLE_STATS_INTERVAL_SEC = 15 It can be done directly in Locust file or extracted to separate file for common usage by all Locust files. The list of statistics parameters that can be modified is: +-------------------------------------------+--------------------------------------------------------------------------------------+ | Parameter name | Purpose | +-------------------------------------------+--------------------------------------------------------------------------------------+ | STATS_NAME_WIDTH | Width of column for request name in console output | +-------------------------------------------+--------------------------------------------------------------------------------------+ | STATS_TYPE_WIDTH | Width of column for request type in console output | +-------------------------------------------+--------------------------------------------------------------------------------------+ | CSV_STATS_INTERVAL_SEC | Interval for how frequently the CSV file is written if this option is configured | +-------------------------------------------+--------------------------------------------------------------------------------------+ | CONSOLE_STATS_INTERVAL_SEC | Interval for how frequently results are written to console | +-------------------------------------------+--------------------------------------------------------------------------------------+ | CURRENT_RESPONSE_TIME_PERCENTILE_WINDOW | Window size/resolution - in seconds - when calculating the current response | | | time percentile | +-------------------------------------------+--------------------------------------------------------------------------------------+ | PERCENTILES_TO_REPORT | The list of response time percentiles to be calculated & reported | +-------------------------------------------+--------------------------------------------------------------------------------------+ locust-1.4.3/docs/developing-locust-itself.rst000066400000000000000000000033171400440205700214410ustar00rootroot00000000000000======================================= Developing Locust itself ======================================= Here's useful information on making changes to Locust. Running tests ============= To be able to run Locust's test on different Python versions we use `tox `_. You can install tox by running: .. code-block:: console pip install tox Then you can run the tests by just invoking tox in the Locust project root directory: .. code-block:: console tox Build documentation =================== To build the documentation you first need to install the required PyPI packages. You can do that by running the following command in the Locust project's root directory: .. code-block:: console pip install -r docs/requirements.txt Then you can build the documentation locally using: .. code-block:: console make build_docs Then the documentation should be build and available at ``docs/_build/index.html`` Making changes to Locust's Web UI ================================= The CSS styling for Locust's user interface is written in `SASS `_. In order to make changes to the CSS rules, you need to have SASS `installed `_ and available on your ``PATH``. Once you have SASS installed you can have the command line sass program compile the Locust ``.sass`` files by running the following in the locust project's root path: .. code-block:: console make sass_build Or you can make sass watch for changes to the ``.sass`` files and automatically generate new CSS files by running: .. code-block:: console make sass_watch The CSS files that are generated by SASS should be checked into version control. locust-1.4.3/docs/extending-locust.rst000066400000000000000000000071631400440205700200110ustar00rootroot00000000000000.. _extending_locust: ================================== Extending Locust using event hooks ================================== Locust comes with a number of event hooks that can be used to extend Locust in different ways. Event hooks live on the Environment instance under the :py:attr:`events ` attribute. However, since the Environment instance hasn't been created when locustfiles are imported, the events object can also be accessed at the module level of the locustfile through the :py:obj:`locust.events` variable. Here's an example on how to set up an event listener:: from locust import events @events.request_success.add_listener def my_success_handler(request_type, name, response_time, response_length, **kw): print("Successfully made a request to: %s" % name) .. note:: It's highly recommended that you add a wildcard keyword argument in your listeners (the \**kw in the code above), to prevent your code from breaking if new arguments are added in a future version. .. seealso:: To see all available events, please see :ref:`events`. Adding Web Routes ================== Locust uses Flask to serve the web UI and therefore it is easy to add web end-points to the web UI. By listening to the :py:attr:`init ` event, we can retrieve a reference to the Flask app instance and use that to set up a new route:: from locust import events @events.init.add_listener def on_locust_init(web_ui, **kw): @web_ui.app.route("/added_page") def my_added_page(): return "Another page" You should now be able to start locust and browse to http://127.0.0.1:8089/added_page Extending Web UI ================ As an alternative to adding simple web routes, you can use `Flask Blueprints `_ and `templates `_ to not only add routes but also extend the web UI to allow you to show custom data along side the built-in Locust stats. This is more advanced as it involves also writing and including HTML and Javascript files to be served by routes but can greatly enhance the utility and customizability of the web UI. A working example of extending the web UI, complete with HTML and Javascript example files, can be found in the `examples directory `_ of the Locust source code. Run a background greenlet ========================= Because a locust file is "just code", there is nothing preventing you from spawning your own greenlet to run in parallel with your actual load/Users. For example, you can monitor the fail ratio of your test and stop the run if it goes above some threshold: .. code-block:: python from locust import events from locust.runners import STATE_STOPPING, STATE_STOPPED, STATE_CLEANUP, WorkerRunner def checker(environment): while not environment.runner.state in [STATE_STOPPING, STATE_STOPPED, STATE_CLEANUP]: time.sleep(1) if environment.runner.stats.total.fail_ratio > 0.2: print(f"fail ratio was {environment.runner.stats.total.fail_ratio}, quitting") environment.runner.quit() return @events.init.add_listener def on_locust_init(environment, **_kwargs): # only run this on master & standalone if not isinstance(environment.runner, WorkerRunner): gevent.spawn(checker, environment) More examples ============= See `locust-plugins `_ locust-1.4.3/docs/further-reading.rst000066400000000000000000000011661400440205700176000ustar00rootroot00000000000000=============================== Further reading / knowledgebase =============================== The `Locust wiki `_ serves as a community maintained knowledgebase for Locust, augmenting the official documentation. - `Extensions `_ Third party extensions and tools - `Articles `_ Blog posts with reviews & walkthroughs of how to run Locust in various use cases - `Frequently Asked Questions `_ Common questions about Locust answered here locust-1.4.3/docs/generating-custom-load-shape.rst000066400000000000000000000032371400440205700221610ustar00rootroot00000000000000.. _generating-custom-load-shape: ============================== Generating a custom load shape ============================== Sometimes a completely custom shaped load test is required that cannot be achieved by simply setting or changing the user count and spawn rate. For example, you might want to generate a load spike or ramp up and down at custom times. By using a `LoadTestShape` class you have full control over the user count and spawn rate at all times. Define a class inheriting the LoadTestShape class in your locust file. If this type of class is found then it will be automatically used by Locust. In this class you define a `tick()` method that returns a tuple with the desired user count and spawn rate (or `None` to stop the test). Locust will call the `tick()` method approximately once per second. In the class you also have access to the `get_run_time()` method, for checking how long the test has run for. Example ------- This shape class will increase user count in blocks of 100 and then stop the load test after 10 minutes: .. code-block:: python class MyCustomShape(LoadTestShape): time_limit = 600 spawn_rate = 20 def tick(self): run_time = self.get_run_time() if run_time < self.time_limit: # User count rounded to nearest hundred. user_count = round(run_time, -2) return (user_count, spawn_rate) return None There are also some `examples on github `_ including: - Generating a double wave shape - Time based stages like K6 - Step load pattern like Visual Studio locust-1.4.3/docs/history.rst000066400000000000000000000032541400440205700162130ustar00rootroot00000000000000.. _history: =============================== The history of Locust =============================== Locust was created because we were fed up with existing solutions. None of them are solving the right problem and to me, they are missing the point. We've tried both Apache JMeter and Tsung. Both tools are quite OK to use; we've used the former many times benchmarking stuff at work. JMeter comes with a UI, which you might think for a second is a good thing. But you soon realize it's a PITA to "code" your testing scenarios through some point-and-click interface. Secondly, JMeter is thread-bound. This means for every user you want to simulate, you need a separate thread. Needless to say, benchmarking thousands of users on a single machine just isn't feasible. Tsung, on the other hand, does not have these thread issues as it's written in Erlang. It can make use of the light-weight processes offered by BEAM itself and happily scale up. But when it comes to defining the test scenarios, Tsung is as limited as JMeter. It offers an XML-based DSL to define how a user should behave when testing. I guess you can imagine the horror of "coding" this. Displaying any sorts of graphs or reports when completed requires you to post-process the log files generated from the test. Only then can you get an understanding of how the test went. Anyway, we've tried to address these issues when creating Locust. Hopefully none of the above pain points should exist. I guess you could say we're really just trying to scratch our own itch here. We hope others will find it as useful as we do. - `Jonatan Heyman `_ (`@jonatanheyman `_ on Twitter) locust-1.4.3/docs/images/000077500000000000000000000000001400440205700152215ustar00rootroot00000000000000locust-1.4.3/docs/images/webui-running-charts.png000066400000000000000000003137701400440205700220150ustar00rootroot00000000000000‰PNG  IHDRgop#·‹?iCCPICC Profile(‘c``âI,(Èaa``ÈÍ+) rwRˆˆŒR`ÂÀÊ ÄÀÇÀ œ˜\\ààT£QÁ·k Œ ú².Ȭßy.B'â>ôùʪf:دÆT¸RR‹“ô NH.(*a``Œ²•ËK @ì [¤è( { ˆa¯±“ ì=`5!AÎ@ö [ 9#1È~dë$!‰§#±¡ö‚[”±¡3‡’ JR+J@´s~AeQfzF‰‚#0tR<ó’õtŒ Œ @a QýY †Œb§bùV '˜§"Ä’^00l¿ÉÀ ÉSÙÂÀÀÏÀ°­· ±(îÆo,ÅiÆF6Oëÿÿ?Ë20°ïb`ø[ôÿÿï¹ÿÿÿ]4hÞB"\Ñl£T,iTXtXML:com.adobe.xmp 879 1127 1 } y‰@IDATxì`ÅÕÇß©÷†;.`Ó{ï=ô:ÁÈG j @0„¡zhÐ!zÆ÷&[¶Õ¥;Ý÷~#ͱ:ŸNwÒ©ú={µeêþwnwæ?ï½ EUÄÄ0 CÀ0 CÀ0 CÀ0 C SÈê”R­PCÀ0 CÀ0 CÀ0 CÀ0 ‡€‘3Ö CÀ0 CÀ0 CÀ0 CÀèDŒœéDð­hCÀ0 CÀ0 CÀ0 CÀ0Œœ±6`†€!`†€!`†€!`†@'"`äL'‚oE†€!`†€!`†€!`†€!`䌵CÀ0 CÀ0 CÀ0 CÀ0:#g:|+Ú0 CÀ0 CÀ0 CÀ0 #g¬ †€!`†€!`†€!`†€!Љ9Ó‰à[ц€!`†€!`†€!`†€!`9cmÀ0 CÀ0 CÀ0 CÀ0 NDÀÈ™Nߊ6 CÀ0 CÀ0 CÀ0 CÀÈk†€!`†€!`†€!`†€!`t"FÎt"øV´!`†€!`†€!`†€!`FÎX0 CÀ0 CÀ0 CÀ0 C 0r¦Á·¢ CÀ0 CÀ0 CÀ0 CÀ0rÆÚ€!`†€!`†€!`†€!`ˆ€‘3¾m†€!`†€!`†€!`†€‘3Ö CÀ0 CÀ0 CÀ0 CÀèDr:±l+Ú0 CÀ0 C “øòË/eà 7ì¤Ò­ØL"`Ï2“h~Ÿ—áú=}Ԟد|ì1)½ûn©üðC‰ÖÖ®yk¡PìZÈ÷qÇMâÄ…ùŒbqüÝG£ÑïÏ8öçc'pîâã%Êçû\%”Ÿ/E[l!ýO:IúqD $ýÃ7^~Y^xæ™þÕWRWW—~]8Enn®LØ`Ù÷ ƒdç=öè´š9ÓiÐ[Á†€!`†@Ç P^^.ÅÅÅ’¨sH *++¥¨¨¨c*c¥¬Ô××K­z :ý~»R]:ŒN¨€áß  w@‘Ýõ»±øw¿“’›on@È)A¼‚×üqpw쾫\Kt|ƒ×ƒå$Y4^Œˆñé4š(Fáßççƒû@:‘hMT¼ý¶TüïRýÙg2ôÒKÒüû[o•§y$ÍTÝ':dÓ—ŠÛÌéÓeÊé§wJå;Œœ‰h[ªÑÖUŽÊœÕ«eáªå²¼¢LÊÊ+%©“B©—!E…2jà:2~Ø(”›-TŽib†€!`Møûßÿ.óæÍ“K­sÎ9G¶ß~{9ꨣܬ֓O>)êÌ`UU•äååÉV[m%|plÀüꫯÊþó©®®–AƒÉf›m&x üûßÿ–^x¡iz¶þúëË™gž¹Æu»`xèà>ôÐCòñÇ ƒòÑ£GË.»ì"[n¹¥L:UfÍšå£Æöûï¿¿ì»ï¾²|ùr¹âŠ+QxÙe—IvvvÒ4Ìt>õÔSrñÅËÀ]~7ÜpƒÔè`ä‚ .p¿æê+Ü’"À{æ‹/¾pq„öîÝÛ=ÓcŽ9Fzõê%¿úÕ¯ÞDày :TŽ>úh'Y[HZh|ýõ×å‰'žhr—¼Ÿ¯¹æw-Ñ3fÈM7Ý$'©ÄÈ‘#åºë®“ƒt–‡vh’×+¯¼’ôwñÚk¯É¿þõ¯XˆyÞÿ?üáeÔ¨Qrûí· Z+ñrÑE¹xÍ}7âãwÅs4fbÄLKÔöîÆ¡ž a8nBÊø0ÝÇ®“¿¿îãË„XAØëæÒê¾ I£Á~<ìb××£ñ’'Ê5ΓHÉ_ÿ*…›n*}?B®%«K¾ªú÷4Éô³ôø0x?öØcÝ3Z²d‰<ûì³òâ‹/Ê¡‡ꢌ?^vÝuW)++“çž{Αs¿üå/{ þ™ÆÕçwä‘GJß¾}†´{=ÑïÀ? öăø„t‡óé|ÎÞLJqNù}úôq¿É§Ÿ~Ú=·óÎ;ÏEå]ˆ9žsß ÚA¦%¾þmÍ¿ô®»¾ÏÂß_ùžôÐkMÆÄõñu#`üu®e5ºrõû`ep/<#®é>¶‘—>_âGÙ„bñ}~¤U‰…¹=k¼î×V(};,v9•ƒÿhûXÛ„{Þi÷Ý;ü¶ÛEs¦NÛÈ2U•yzöy}öL©“,Ô¯¿ >J†«†L$\%‘ºj©×H8\+aM.Ì’º>ùR7b©l*•5•òÊÜÙòÀïΔu”Ï9îУäÔSN“>ú1¥ñ™†€!`†@bÂá°¡µp '¸Hm´‘çÁ "FÏ’5Áx7#δ "E7ž?{ý8»=„OìZQãâù<ÉŸt~ï¯'Øãg']™þõ×é&éöñ;ëž3JÎh“%øž˜5G^˜5Cúöé/cGó!VV·®J¢‘ÕU2&TW#YJÌDëk$gB‘Ýê”% ëV-!âèyîÞÒo¿¥B5k¦~ô”üõÞ[åœ)gÈÿvºäÑhM CÀ0 µÕj&ü;µŸ÷â:qz‚V 3«h»…óÏ?ÿÜ –d¡5óßÿþW蘣½°í¶Û:Ó¥`;6ÒABå7ÞgÔi$cÇŽ•Ýuö±%ß3ÓÕÆÒó'¬˜ÛaÞá͕ҩƒÛÚºøô¶o@¢í.mç²lÙ27Ýf›mbð@¾aª³jÕ*§ñ4lØ0ACÞðA”ðàŽ;îpdüFÐrlßAÂÂõâã?î4|’aniï…gùÛßþÖŸºßä/~ñ GÜwçïþWš•â¨Î>°Å1±ó$DK¯)ÆÍNyÇIBÈqq‚§Ô%Ìx}-“κ猑3µúì?*«©ï¿'¹…}dò˜õ•|©©¯TBFÙuÕ”a_nИAk¦>RëÌša£ÄŒªÔHv´^Ɉš<ÕKn(Krµ¡çK¶äo<^VO!W½t·Üýà½rÇM“M7j`éײ¶b·k†€!`8˜™ÆœÀ ƒa„A‚Ê{PpЊ¸Î¤îSÕæwÜÑ™;AÚ ÚNGlÏ=÷tñì!.øÁ÷Ñ·ß~ë4(0=ºóÎ;嬳ÎrDMsùaÊß Ì)Ц¡bú„YSsBYˆÈ4F¢íûöÝÚº4fe»FÀ“gжþ|‚¤Ù‚ ! 7fÌ9¢qEÃ?yB³­EÄ›7µæw_JK¿ ŸxóçÏwæ«'Ÿ|rLû‰p¾-ûì³ÚÄa|ønh{nV‚aÁcMàÞ-\kÜb瞘iܯîÓ u5€eÓ»sâz!<öá~O˜I—F #äL¥Þâ=3¿“ggÍ” ×]OrUSF¢•ª£Ú2a%gjÕŒ)Ò@ÌDTƒ&âH™:‰¨æL4ѽjÍhz÷—: +«X¥m±^r¢JÎÔçJžÖ2?O$¯2$y[Må•«d“+O¿HN?í']`«œ!`†€!Ð^Ð)žœAó€AÔ´iӚ̆âwað‹ß4Ž;î8çT’A0NX™¹ æÙ^u·|{&ø-Z¸p¡œxâ‰N -®«®ºÊ93«Z4‰Í ÈALa®¿þúX|Æà,˜¶œH r|Ô`B…àÜÚ¯<Öšº¸LìO ðS5wî\Ááòý÷ßïÈ670Õ˜h|üñMÒpbø¯I“ {ï½w³¦–~M'9iéwá“rÈ!Ωóµ×^ëüÍ@y’¢-Hüû4=ö» -}8÷D‹Ûaº9372kœÂ~œÇ‹'TtŸ™A!£ù:Ÿ3ä<'ÒóóùèµT´gâ«aç]6;.†äOŸ~"ߨÖÌfã&hc©’,%]¤¶Rµd*oˆ™ˆžG"ÕŽ©×ðz5[ª¯o fö(ë/½ò‹¥(¯H^ö¢š@©$¥l¢õªJ•§+7éd_ÿ¾ý´-†dÖ‚Y’sørñ“×É4ý˜_ý_šýpw¨­&†€!`†@æ ç·ø\Ñ@@õòå¶Ûns¦" ~!^Há#‚ïÌ™3åÁtÚ3 ¨QeÇÁu5S¿'ÿàq|yvÞ}Èôs…$$d€ˆsiLæL]|YÁ=Ǭ(1à}Ð0$öø;‰OãódÏÊ3 $ñ‘„‰Ín»íæâ§RÒ÷ñeò~ÈÓo8 ßk¯½œÏVìÁñáñåöüÛ×D¸µô;ðZ6>-{Vì#—u×]×ýÖ8oîwáï‡=$ ŽoÕe’~øa9õÔSÝóDË2˜/ù­·Þz2bĈ¿ÄÍ”øºf*¿ó ÁcMÓ’!Æ^· 1;& b…ð`޽ðûâX÷H̬‰“ !C^Ä ìɳ >>Œ´ÁcÎã¤Iº¸°øÓtâÆ§íîçqïmÒœ˜¹ø½ÿɪP¡L>R[H¥d)­Sb¦®B‰]*ÛiËÔ(1£&Mõ ¦Lõ¡:©‹ÖÊ„aexÿšV¤0'[j•ÐQvÇÙªf©Y“Z9I®þÙz½­e¾CÕYpXJ&–Êï=(²ýDyèË7¤tÊäî»ïÕvèš~woVCÀ0 C Íà?µõÿýïòµ:óƒ°Á§ ³¥3¤¬–ƒéÈ?þñGÖà˜%M Ö"°É&›¸¥³1gzóÍ7yz|5'˜r0ßT—xõÒ¯_?GÐ>½3Zæ÷8ª¦=ãŸæî»ïvýÀ‰'Ê{ìᢴ¦.>oÛ'Fmˆ^0‡ÈM&†2tÖ kéwàɰ`Ê>ø@ؼ°Œ¹Ï7÷»ðqý~ýõ×—í¶ÛÎ9áf•4-žûî»ÏGqûÓN;Íù1ëößøñbüyð® ó×ݘÓ/>\Ï!f&êò:Øvt æïLšÈ_ÏcæMž¬ñ…5<þ4¶§~Á0ÎMº,¡HD—Uj…T(xÉÇïÉüÚ,7h°úŠ©R'¾ ÄLX‰5iŠè>¬û°4õjº„3 ëqX6¡NßzP'¢¦KùÒ¿ Ÿ¼õÝ›R^]¡>gàð9“+ÛŒÞNçH¹šGÕ†Õ¹°–ýÑœOäÝiïÈŠò2Y1m–Ñ{gù«®Ýnb†€!`ß#ÀÌ{õêå:y߇|DGœÔæÌG¾iG= ÌÜâFgòþhwhÐtÄäeцqD›H:².‰Êoïkíý,ÛZÿîŠWǵ¥çÒÒôÉÂÛû»ÑØOSÇ÷Ž` ÞX€¬pï*ξq ’1hÃÄ´cü±îýõ‰W°ˆt¿Q’Û™4)ƒMìX¿çÁcñÜ(Œx\ó<Ö{š¼x±iqO>Güµ˜ ‡Dà™?ú ~79˜ ¥+MpëÌéòUY•l¢Ú/a%l¢$ú ‰Hµ«)S¶R3JÒì4ngÚkˆT¨†MAž3ù}å»ÕßIY´\ ç Z3ù¡|ÙnÔ¶JÑdI•’2õê(8ŠJ½jÒŒ]gŒL[0MÕj²$²ñXyäýWeòM•3Î8#ÝÛ±ø†€!`†@F Wq/§¡Ú¤³¸ã‚§”­é²±Ãnˆ@{>óâ"õ ãÆ é÷5Ó…Ò•¥‰š»ŸŽ¬KºuÏTüæî=Sù·%ŸîŒWƵ¥gÒÒôÉÂ;â»ÑiØCÊxi$hÜ©ÇÈfÜÞ„Øñi[»oÌÛiÉ•(¡wÂ…²O¾pîBþM׿ú 3îaÓÁ)S·žxz¡…ÜßÔ¥;Ÿ˜ñ•ì°ÁJʨnõõeR5w™ä T1ž”‰*!£DL8¤æLYJЄ”˜‰ÖÈ.ëî"ëõ#«jWIQn¾çk#«—å3%¿ O×fRb&»@¶¶­êÈdIµ®ô„¶ ¤L4+¬^‘ÞùEÒ»w/=B¤~ÛñòÛÿ ;ì°C‹j–‰n¯ªªJþýï»ôØEw”°LdÉò)]Qêì­ñ€ª9uðÞÖ3Uœò}úé§2û»ÙR²¬Äyg§¼ƒÊØ1c—vT„“ *’؃·¤Êš,†Ê3¶²8ûK&¼fÌœ!_õµ,\´ÐÕ{yÉréÓ§ 8@F-ëOX_&¬?¡E̦«¤â´¯26;œ››+ûí·_²ê[˜!`†€!`†€!`t6žÌHTø0΃ׂçþ¸qFí™DY§}¼Tœs߸²ùâ¯y"†sÄŸs̵à9×Lº<i“3+ôA_òö˲ń-u¥¥2 //•h¾.™U-5Õ«%\¡,^a­&êcF‰˜pŽš2E¡O”^Ñ•˜¶º…lŠí C »!)wÆ5¿iXÓÈiÆòñyë>vÍçE˜IC S¡Te‘*X<òÍG²ãæ»I¨f™®ÈT.YyµRµ¤DrÇ Pß°¬þd™ Xoˆ†©ý±RB¥8¿P½·[¡‰Áx‘jÇë–£Ž~¿©˜®dL®d‡rdë[è>$5áS¦¨R=Jªã%m€f+I£ËlgiœÜ¼ÉÍÏVúF5p¢ùÒ+R,•“FÉŸù«œ4eŠsB—ê½yÐÂðÇ©¦m)Ú)çž{®üíosDÃW\!§œrŠ 80iR:mÿýïåøƒüñš?ÊÿzBžzê)7n\Òt’æ’K.´In¿ýv9î¸ãœxÁ¤‰åñöÞgoùý%¿wÚ,?ÿùÏeÿìïœ,Cî —Laä5^È×çM9ß}÷ì·ÿ~®³ÿÐCÉa‡Æå5¤Oß>ÂÆÒŽÛn·­üøÇ?–?þXŽ?þx™¢Ï ¯õA>b¸°%–“EFŒ![o³u²¨.,X÷#[CÀ02„À9çž#%%%k¬¨á³ÿä“OÜR¨|oÇÜ-¡hÅŸ¦¥=ß"¾+|#£Ž>Jn¾ùf·\7ß:&ÚKX&™Io¿ýÖí·ÜjKçgΣ2U.û?ÿùÏròÉ'Ç–uŽÏûÎ;ï”{î¹Gø^°49x UŠðí¾ì²ËäÑGu„æÖ7Þxc,/&Z®ºê*yúé§öêž{î)\pALãä_ÿú×òúë¯ uáûM~‰¾áñõjÍy¦¿aÁüXú—o1ßûššgÊ|Ûßns¦ÊÏ=÷œ«®ï pL¼›%,~õÕWË 'œà–ö%n|>Äm\¤V–-[&—^v©{®>_ßçí¯û¼Z›žg ©ƒà yüøñn‚lÖ¬YrÖYg Ï7H¹ˆúÄ'CYZ6Š@wÄòiÎA¶ ì:ûf©Ž â&”9÷›ÇПâú Víå¸F=ü;ÌÕÅkÒ ã~tÔœPÒÁ5VNœR»8NÇ™¾í¶Xd¾%ú.|ôäµ ;Ý]OWì[Ò$yN•"Ú*éàÔÖ²|ú”5g pîžöž¬3t]‰T¯pÄL¤¾BêjtcX–”ÏX$Y…©\¦fNúBPR&KÍ‘²s´ˆœ¨ì5|W)Ì*PÖ/"êI¿·3ýsûÊ—eêÔWɛՀÙfP1S©Q­´oÈGÿgëF cC²5_®kÖYš?$M¾ø«)RçÂUÛö–;ﺳ!nøKÇ bæ?ø µB'¬%b†j£¥²ë®»ºå ï½÷^× Üc=œ¶H²Û‚”ac9TÈŠ“N:)åN?öC=Ô™@±¤*N̰:R~ÿûßËjõkÄ@¢9b¦¹úl¾ùæòÊ+¯¾s0o¢Cfb†Àڈ߷ß~;vë çÏŸ;oÍ߃}Wm€Z°`A“å[“gWKƒæÇï~÷;G&$ªÛk¯½&]t‘< ÊéÓ§Ë1Ç#Gu”Óê >ó÷Þ{O^}õUA3•ïKÏú.š ,™Ëç,[›ŸŸ/?ýéO]Q\|°ó;ç—¢f)iêÓm+´«ø®ÓÿAøNCR´E***ä /L9‹[n¹Å=”ÄEL%ýý÷ßïž?}©?þñB[bÅ&èÏ!þz\övº–"ðþûïËùçŸ/,Qλb˜¶/¼?X•–%é1‘ƒ¦ŸœH˜”-**–°7iüð´½JjïüÛ«Þ‰ò…0¹Z¿g7©•H•®y–¶ý^6ù¼ðÒK‚¦»JÊäL…ÏLÿP†¤Ëe¯ÖU™t5¦H™nºüæºù²ôƒ9Rr¦N‰•hmDIõ “’l-a\Aïõ˜÷Ðó)Î*”^êxY]‰,×­8§@¶î·¹jȮʤ+<©¯´nø>7§¡i•¨ÑÕš rКщ‰ª¹”fçțՠÉËËU³¨\­Ï ùûsw+ÓÝ_Øq‹Ú.$O<ñD«}Ç òòË/»ÎÍ!‡"eee o‚™:´fŽ8âWn*$P¢Œ˜eV‡Át*:J`úéÐÒùße—]ZU,u¿üòË]§èŸÿüg«ò°D†€!`tÌC¢C`Ú‰¶!rë­·ºŽ;ïqw´KæÌ™ãù¼1ñ sÿ¯ýË™Û2»ÿ«_ýÊi,úûÞzë­å‘Gñ§‚æ éüÒË|“˜0p3‰±X ø9Ûh£ÜDq˜(Ê•W^éê;Q;P˜¬°Ü+ÂþôÓO—õ×_ß}/wÜqGyë­·‚I›S'ÈŒÁƒ»Á/„†ˆ#;8±G;”ï±7wÁdĈ»#<ÒÝi$!p€xíŽ àˆP&‚öæ’%K\ÝÉ—{Çt‡pףÌA:2{öl7¸òZ%,Ƀ€$>ÍÈ›U(ï¾ûnÞÿ0ƒf+Â@“g×V¡½¿ùæ›)eCÿ-æÖJ*ééƒ!?üáåœsÎq“lœóûdÀ Ç;Ño†x&k´‰ÝvÛMn¸á§)ÙÂûbçwvïë hêѦxðæ]Çûí7ÞFsÚxhæ!í¥¡Õ¤@;1Ò@`¶ºÙxW¿éoê${ŠTÃ9\Ûó?ôzÇÃË‘ß 4FÏÐ÷ößuÐgbß”k¯½V¶ÜrK÷1nkþ¬D~¨tCÀÄב|ÔÐɾ­Qu,>N:çtZùЩ÷é¸ÄŸ·eßSÓ¼è˜/^¼X¶ÝvÛ6•ÅÌ­ÖÔ1QÝZ“¥Iíýb8NÖÒo¼§ðeáð°vf 20ÅáŠ3ùvÚI¶Ûn;¹Tg‘”2D¦hÇSštî¹þ›ßüÆ ˜@€¸ñÏ¢^½tUÄÆ~«õA\$:¾3!„øñ¦~4˜‘¿jhõ@:à„Ÿ•qþNÄ ú1"-䓾LÊ cÚB ‘üŸxâ‰.œûƒpÁ'Î?þñùå/éöhZÞ—{ß}÷9‚ŠïçÏ~ö3†f)Cü ` Ù)Ä7™úQoÑCÒ0ë ©âë ît0 ã¦-0ÿ÷ÿç£ë¯¿Þí Ãô¥_¿~îûåÓó-¦~npŸ(Ì_c‹0`…k./â`Z†y;´óæâúëñuH5=QäL0޹ç¿üå/ò£ýÈM|Ň·õœrÛšG*éiǪ¬´ ‰Ê £?ýc¤’2+%KɉV*IR©Z,º^Ru­ Ú~°ÌÿÏLé;©Ÿ”Í\!}4nvV¶ +"#ò‡(ñR'9êä7?”«&M½ä«Š¯%WÕ^6.š,µQ\ÿÖ:͵ s&L5|³Õ0GJÞ@Àà{¦áXtõ&–é¡a£Kt£u“¥aúíUÿ5ê,xB?yä©Çd{}X%ty¨Ì’dÊV¿*hƒÐÁáƒ5hРØíÝtÓM1ÿ™Z SõŽU2ŃdNSÉ‚û‡¤j« *eYCÀ0: HÞýÌÄcŠJÇü믿vƒH4kÐ hjŒ;VÆŒãÊ\ƒTð¾¹ 2˜iEÄü‚Z3ÄŤ‰Â·í¥—^r&îBàß¾µ†5_,| ¹Æ,1žVÍueðÁdÂñ~ûí׬‰]HR„A1ƒòc‚äÓO?•Ij{Ž0ØcÀƒé,¡Wh¨@1XB0E‚ƒ¥ VaÜZ4hèxó¯„ÖiP \0CÀ‚:1KŽé~IÐbBHOÜ pÞ˜ym`xW>Nä߈{öæMm©;í =²â‹eR¤qó”|٤φÚb£êø7䈙"õ;S¦æP«Ã«eó>›HŽ:”ÁÜÉ‘/Š Ûë|RC¸ÐØñSCª/#Ùz–§ÎfXñ)¢å†Ôáסq²tRÒFÝÐHV¯*°Öt2[ŠŸN83€tB™)õéx!Ó)§£ÉGß_o=@e*ßø¼ UèÔ`ÚÔÖ2˜AE-½5ùÄ׫5yXšô5 3ÃÌÚ@zm€Ž¼_1ƒ !ƒ¯­D8ºˆú‡0/Á捻˜ÌB8ħgƒZŸ1¦ÌôÆÇeU=Íþ:-Î1ëaÖú¡QêÃÑ€€0áœ33ð¨ì{gÆ|ãG|:Ž˜ùsfñ©'¦W â¨øøpˆ3äýå—_: ´uø~ú¸Árü5¿G í Ê`†’RˆA8š>N}|öœ{’_j< ¶Ð„eÊ@û&}µv,ƒiƒ!aÁë™8NvŸ­ÍßÐø:AAÛˆöÁsõùûp¿'œû÷×}|4Q¼ã]HOŒ—sÚ¤í›0×¼ÄÇ÷yÃ[J¼× ö>ŠpèÜ0Åòefjï뜩üâó3Ìe≑ßCòò{À1>TΙTCë/ž˜ñùûý|àâA`¤’okãP^kÓ&K4UD›Ž¸¼#x!hƒáo’ë¼× Úï`Û;ú ¾/ « ‹ÑšMV~wã~3]OòlN¾#Äň{Wh¥¨XÃæ£úó@\Ôª}¢ü×À%&ÁãØE­^à8þ0]\ãÓ·öü%]IøWJF¾§>×T_l˜&!ýôÝŒ;’¾úè?`€<Ë7V¿¯ßéwòr5YúHMƒ‰{•’Ã[kû&>‚Iñ?Vâæ¿“<. CÒÅ)ñáBZ”’º°¬([.õµe֚ª9ƤI‰™¨j¯Dë骑![ ‘Õߪӷy+uYë|é›S¤Z3CÝ+[I˜‚P¾6y² zlÖ{%Z²´á  £>dôožjÚð²áŸ¯1Öp'×sõ#]ZS¢ÇJÚ(ÂM”%5•¬èQM´lfÌ™.¥Jbt†Ð‰¥3vì±Çf¼x:ÇøUñ¶ð€óATÆQ÷ìÎÂGÇŠÌ21ÖÁæu}CÀ0z*h!…Al:Ô¾Ä7 âgsƒù …‚–Ž×ê`àäãÑ1a°¯½I=ù¾ûåŒót€D‚Yä/H̬’Iðþƒ÷ÎÒ%>½K=ТÀ´MÌwLb†•Š<¯KÈ4`A+Ï>û¬Ófå;æï“pð„xÁÔ ç¸Üƒ1ê‚ Ú¢;|ÛƒiIÏ9¤[s˜§« X1Y…Ö/‚Ÿ"î?(h.!‰Ú¿ÖܽCÎð0™‚üH&´ï+ã”!i)=šXþ7D›ò²Îæ¢ÁÚÇâñšøŠàÞ˜„¤…ö˜||~+hF± d2æÝM¨7ï„÷RPÓ _]^ žÞ)´/Äkøù½OË{“Q$þY¹‹ö§íÄ‘ n„Ê5¿i £Ö å³ðyë~¼ ë¦òW%{ËÔ•ÅÏT;‚åý.ÐÎçé{ù:†ÞHÐ ÛSÍ'O8õTù§ú–¹Pß¡¼[мùR'ˆÂ:Ù‚† N†Çjÿ¤V'q¾hÓ Õ šî(Y©TzvÉ|}3ˆÔU•*êk¦®Rýͨ¯™:Rs%H’P¸^Æí«Ëþû[ÍR׉ Èë/ù9ù®Z3JÊdçËr%U&¯§ô 3 &KhÃ8'¿z-7 Qƒ#atgÂÝÚJÂdé–­äKž.¹½¢z‰æËB Ÿ´nk<ÖJJý*5”*©–™sf§r‹Ã* |¸ÚCmõ.ÔÄ™õóæ?ÞΙنî.t–™í¤#Ã&‘×úî~VCÀ0ºAs 4[üŒ7nªAÆxG¹ÆŸû$cÆŒ‰™)ùë˜1è` Á·/L.à´˜k>ø sFù.>iüÀÝë|š–öÜš-A§³hdòýœ êÐ/¾ø¢Ó ap)‚9uôƒ¡dù3£O ÙÃÌ6÷Æ÷‹{ò‚3`:Þ ÷LOG’<Ƀº‘9^È L»«@’áÿ=|Ï!¶‚8{0¯±åï¢M+$žhóqØz3Žà„iÉO~ògþÇä“hHsq[“0G¯^0¡‚ b ’¡>¼;ìY…Š6ê-!~Cüvðå5>|È/o®è¯µ´‡ˆäˆ=òÇy9m$žDE3©»™°ßK´ÿ ± è%Ï›”b2†=fOÄ2‚Ö ñ½ÖŒ»h2‚€{›ß)'Û2Qj²üãê’øm—‰J´_«õ·~»~¨ö-þe¾P²åe5aú™¶í?ªÉß*5ñ›¦­øÄ™zçò´_‰âW”ô‡Œ¼CM¢vÓdn×þùà`ùü“OdS}ŸªãÈî()™5-X:KB¹Yê[f¥„kp̦äŒjªD##áÀ!ÕaQ šê•U²òË2¼ï0GÈä*¥’ÒY2%Wç rÇQüÇ(¹; e9B&KÏаÁqpnN3F[]Q£«rkœ°ú¨)­.ÕÕºëõ·ÑHÎPˆªüé>¤«8U»XBÅÙòÝìîÃËÇ·¥ØRœTÃqꇺ73:©¦I'?^Â0ï¤C%›:¤éä“n\ßÈÓM—(~sy18 ã±…j;³µø`áUÛå—Ék™l ™¬—åÕòïØ02ŒÖ–6è=|¯Blð-BÍL8gÐï¿Äe‰™Ä «„xmOâcÆ€v Ç8FS†c·³D4³æœ³yáxŠÎ˜ãM4Xð)ƒ“b© êd Á@øXÀT‚÷<Wêèé|ã¼æŒ÷SN°Lì÷>g™h›PüO´³ÆRÈ̾CÐ`RÄŒ;eAŽpÎ@ÍožÂ½3ÃMÞA,â/ó̤¸BÀ`²C\“8,¥\:ܾ}¸7^|ÛXŠ›(÷HÙh Qg﯒†Ùq´Hñ1çï1“{W&ó$//>_H+0{´ˆX)ˇyMÚ!8ÓfxÞø(¢í"h:ùøñyã»È;ŽóçìIO=(#(>_ö^ü5Î>•ô¬Æ„ š&Ü#÷J:Ú9š=Am_F¦ö¾Ž™Ê/˜HP ¹ |~»‰–5÷ﯥ=dŽ×–¢<Ú “tô IËïÄ/;¬š}-åÝÚpÊimÚæÒ¡éî…÷B0žÿÎ{Ó‡aòÉ{÷ ï~'¼k!Å8¦¿ŒðnñiºûžûÉô=h†d›XâÃ8^ žûãÆ=õÔqÖ8÷ô®6æåò+Ëeä¯ù\ãϹεf$]\›É&å˳ôý~˜š7¿¨ý/oê„ × i qì{¬º£8Q'k®Òo7þiðAs‰ŽOÐïîT«–e¸ù> Ïë¤ÊqêÛŠøçè; ÇÂÈ_5Ÿ“ÔdêJu\ÞVI§LÄOIsfii‰»·ÚêU®-—ºÚJUN©Q uu%%DBjFTúõRùç÷Ë¢/Èò9Ëåÿw‡übÇŸÉí×Ý&½ê‹t•¦<]¥©X5hò5/ s¥?3N{F¯*ã4bÜ,™ #>i¢’«¡ùª5SRµX˜úºQRBÆDÔE;IªÌ$%sgk½TÓ&?$s¨ÖO'.÷1[ÖÂì#yk:±°ïÁ—z{”ÛQyÒAeVæ.]’§gtª™µ…|¢cOgÕhf¿L CÀ0ÖDŸ[83¥Ãp¸vVÐ`ð&&¤@#c«­¶r-|´ø>ahe2°„ÄðŽrÑ8@K3Þ”4&¥¼§q4Lž Êy—S‚fOhRð~gp‚ &S˜¢BDàЃ s™€HGÌ±Ò ƒd´QvÛm7W|³!˜Oq?¬ ÈR֬̄êB=øÞP¯á± ­w(KzîWð³¢ ‚?4((wìØ±nV ™Ì7À$ ‚xqìÏuÃÒ7†»ë>^E%Œš$ï&å4–Ë#SåÇ2ìØÞ‘LjÄKNV/`/«Õ$*öœâ»øyS#Ñf*»J_ÌÑ:¥²Líê²ÙÙªº›ÛÐNqÑ[[–7.yCYuí¡«cÞ씯.—[¦Þ,¯½üš<¢*GEŠ%œ¥«6E²œ 2ê-F L˜tS£Ú5úGÉÜü*ù¢ÿÜŠLšg¶3¹ºÍ.ûV‰‰:©SŸ7DaÝ"jÊDÚe%s¤¼b•¾¬Ô˜Jó_¥³^!̶µ§m1³?ˆoxÌÎÄÛøwÆ}g²Lžc6>:¬ aƒŠ7j´Ü;³(tÜ0ó™%[OÃ!“˜Z^†€!Ðs¸îºëÖ¸:ì^è¤3Ë ‰Íû”™mfóù~ðÍ@X ÈþxÓÇ›€øïï[H ‡Lv¨æ&héÄ®˜¸``Žõ ¾³Ñ’„œÁO ¤ ‚ó^/AB>Þw ƒà`8`HòâÞ ^¼PGV{a¶.X–§~Ü?ßÄcÁ1ù0(âI ÉPÅýñŠï àÈ–ïƒ^i ܃Âä ¦Ñäͤ Ú=Ehƒ8SFëˆg ™Æø¢Ô{M54è?!àˆ¶„"í$™@@BбD{*ÂréD‰mMÏÒê ¸1ÃÁ).Z´œWã 5ï»)•²:;u…0Aø0ßf}ƒ¿®¥»’8AÔ±5GHÍ×(ƒß²_íŒóî t^¼€?¶Éøw'qÆ(¡Îæ…wä$¹é÷A 1ÞG¼s<9í"ÙŸ„@aáçT_:M›\'ÜÇñÇÁ}“”­< æçÉ*î˜z­!'áõ5"Ú…®ˆ@ŽÜ'«\(•Úê2©«aÕ¥jÉÊV¢¤>*uj©ÊÏ•y/.V5D%GTI$ªúzõò»ê|G¼ÔT«É‘6Ì–r”`ÉVS&üΨ’¶ÿ†FÎZQ%aêÕg¹½ûh:¨ˆ\ý»X ¯®Qß7ºRTXµgjÃJÌ(qލ©ÓêÅRº_4›õÑüR¹G‡½?N†IKat*xaf"¯Deù|éPûcTAýq¢4m½æófïÛš'éSÉÙ§ã?Þm¤Á¾˜afEÙXºqêÔ©®“÷ƒüÀ͸ÑYkï-xÜš¼,!`‰„ š'þ]æµ+ý9{Â-¾¾|Ï |¸×ððçññý9¤ïîæâyR&>œ:3(‰¿îóMwï—ŸN”_²²RÁÅ;ãL”ws÷çëiÖ(-q’ÕÛ瑉}så·6o¥ f@0Ò˜º…pÌbЖ@ü3`õþ‰¸æó€dk.o4jÙ¼† ñypì3sŒø° #ßÖ¤oÈMÜâ ,Ð@ä ™ÁïÈ‹/ÏŸgjß^ùúúñ›À‰/ 3Ê x­½àµÖC¼ÒFðKH¹dï™`ÜÖÇßkkóñé‚äLüX!¨-“Ê{B"­´ºèÓFƒ\c¡ üxá˱»Y™ÆÞ£¿Ë&äKü¹‹Ôø‡0/Œ-Ï©î5t¶ÃýÜx•1™ÆýFÍ0]þÄ×pŽÕÃy¼h>®ò%?ö\ã¸ñÜaÐ;æiŒïö WÖüëãú=O×tâú"zʾ3î=%Í™A…ý¥zE‰Ô*I’«Z394˜¨.e­-7GêTsRÁœ¨^ µÅ(ùR'KuæîýÞ“C:XêÔqp®Î(D¢ùRŸ–pv®+º×Ø,™Òt4pR¢CÃÌnlYZÞÌÒ¯Õ°8ªÚ)ã65oZ¹j±nKUyG¾&sÍ_÷EŽ©V‡ ²øT&+š9âgäè,§«>šÉútt^ÌT²a›0C‰O>Üø9xôÑG]‡ •NCÀ0 ¦0³YQaaaÓ;3:¯1ÕÉÕÈHñhü`ŽÝÓ…ÉAH“à@†þ)~©2! ˜ÿÅ }@O¾Å‡uåó 9³lÙ2G8z-½ ³ì–~ 9^ƒ-H’ óˆg|ˆ¡©I?ù£>êväL‡?Gˆ O¢µ"´ïÉâÃØë™‚ˆÑ½¶BÈø|tﯭq?¤GØ“¶1¿1£×\X0^cüàï-–‡;hÌÏÛ¾[!’æÌÐ~¥vÙ ©\ Yêk&¤äL¸@µbT5%§VIÕšqÚ2z먇kÕt)W×UR¢§Á+W”ªÊÝŸeÈà!ú¢ÞÖ-}•Ÿ“«m­@Â!%fBuêäWÍ“4=ú2l;h½ Uá’Ê—oW}-5ºœ·.ã]QbFµe(m™ªªr§? mÛ(∦‰ªÆÏðáÃz %ØÀƒÇ-$k6{iÔYQ[öJ³‘[ÀJM°á2Ô—8+Q >ÛÒ˼Ź$A\‚ÇmÉ|üÖÚ|H†Æ jü2tÆŒ#pRÍßß[&ê•j™Ï0 ŽD€w&&$ˆç¹û³Ö!`Ï¿ç<òÎz–,ïW¿òhâ§)™f˜—Êçáñ‚Ä àö¾ïLçV!Äfúä ñäW]Â|ß Ž®“•f ä>€Ðš!.}`²‚†kø ‚œ!,Y~¾Ü®´ï°ú*Nž”aÙÄ´‰0/ÚÞDw$dœM€ !¯¨n±|HÇ/äÕ¸¹{ ž{b¦qï´i|8ùøcö^ô8p««öûtpM'®Ï¿§ì;ãÞ•ÍhYÖ9^êÞš¥Ng)ñR¥ëˆ«'ýªJu ¬fE5Uz ]²²Fv8c3ÙåŒmÜRÎ0)R/UÕUªÖ9Ë™š<òØ£êFÉebX^ÁyêÀ&/4(ß q£¾cB3záR q–V-’y«¾Sb¦FËU"'\+5Õ²zU‰D´|UºQÖR~‹è@•oFîœ Ôa®ãÕw[F;µØÑc“ëUÔqLÈ̤M{ ¦T™ßàýžŽí;”È™ÑC‡Iqv/)Ÿ¶Pf¿?MV”–¨ö‹:®®Q’¦Zò…dð}eÄöCdØŽdÂ£åø¿&Ù9Êj£Š„#êI¹ÂyÿÃWÈï•MŸ5s6z7JÌä©“_È™l%QSB†z£þi ³ e™3Ó–¦þeª¥FWŠªÖ­¢¼T**W;*µjÒrtS"H”Ì é¦¾‰µü,³î˜NÇ´ˉfZ¦OŸî–C zËgICä±ÇËtq±üPD[™òÁ~9h‡}à 7¸Úš?ví,/øõ×_;ÏömÍÏÒ†€!`†€!`4 ÀDÚ+ñN˜ÑÒÀ }ÆL¢Yö?*—^z©Œ;6–-޳÷Øc™˜Œš¡V ó+àaÊÄ rA'¾h£ùÒœ€ñòåËÖŒs—³˜¸e0…`ˆ4Œ2efÖ\ºýõqá¨Î>°%$J‡HÑÍ.þ<¸÷aŽ|iŒŸ(»¨ÐFót3YœT´ Šõå0q̆òÉ‚w¥¾," g.”²Õ92tØý±÷—â‰JÎ wÎarñ;ÓkÞ²÷¯w‘g.~IIµÑSâg^ ÔQÕCýÓ™üìµ×žòós&9…JÎ(Y£ÆNRtv} @IDAT¯Î‚!ljuE¦¯J?•ïVÍ–j5e*¯^-å•åRU[¡;8Vó*%~ÜOhÜÔëK¬^妱ëŠP#GŒ•½úhûÖóÄ5|Ã>•ø-dç<Ôo¬¡pÀ…÷ôLš6¡]BYÕ×uòäÉBy¬pùå—Ç–äl©žé†ÃȳÊB­j+Å/ÿ—n^äƒÝ­¿ÒCÔàO'x-Ý|}|¿JK’úc–lïËÎT[HV–…†€!`‰€ÿæuf¬ìÌ ÐQÏ’rX¢ùhRq|X±,<˦gª.ôŸYùÍ 9»í¶›0Q‰0ÑDzëøl/ÉÔ½ëyŒج ÇĪ_µiàÀrýõ×Ëa‡Ö,†Œµ¼ókVÿ Ö~õ\àÆÞ åBþ0VÆ Ö§«wZ}!6Ðð{P<áÁSã9&È4Â÷\syè^Ž}>~¯ñ…B:¿Ö8vu$Ž¿¿÷y°',¸o8köo:¸ú1r³™¥0DǑ穤õuõ:4»¾øôSyP5ïfè˜ÙIÛ´ïO>ø Ù\suþPõCõÒsÏI©”í)éà”©zh+JA´ì¼çn.Qõ¸J57ªIuEXJ–.–%KçÊŠåKÕ¯ÌJefU³¥®J*ÕÔiUùJYgë~ÒkH¡l~ÌFúVªÕ±rå*ùú«¯ä¶[o“}Ø_>.[f–O—ÒÚåRY­š2Kä‹ÒOäåùÏÉ7¥Ótu¦åRZQ"eÕ«¤º®R5hê¤FÕ#ª)ÃÒÝhÍÔ«9ST ™äŒî£Õe·‘|÷kHáÛ! 3 øœñj‡™(v¯ì›m¶Y“,±ùŦôøC“ë™<Â+|[͵ f Mø€eâĉNÊ22%I&†€!`†€!ÐñÐÑnNðShÒ½`°‚IN<1ƒÆ $ÄI{ þ²‚¤e½ñÆNSº=Ëm¼!³Ð€Á_$æL_|ñ…Ðχ˜I&¸08äC Ôšñi gðcƒÉ+4ñ¬ÐL7‰CÀÁËktGC¨'F8ÓcGXøk{§Ã1ÄŠßs¬[Pc&þØÅoŒçÓ‘"b&Vnc=\ü†¶¬5C:YN<õT¤î'®R+š«Õõĺª ÷£ŸüÄÕj¨®jwÞÅKõ§šLvÝsO9NÉÆ¶* $+£3ÃRrLÙï ùÓ•—Jn¹ EQQ #©+ÈRÒ¥VMŒT[FÿÖÖUH¾: **î¥*uU§Á&õ“aÛ ‘«'Éç~¥+=e» [Æ6ýÓéòÛ)—ÈÑ7*åËËÔuLDWtR“©(áêWF ªƒŒQGÄÕª-CšZu8\ÏŠM8 gé‡3곆•šðU£¤M]yô}¹Ñ¸S@س‚îǡƋwù[o½Un¼ñFÙ}÷ݳ®ªÒl”êêjÇ|ƒÁ•W^ép FÆ™å¡bºï¾ûÊ^{í NûøSe3y™£fÉÒ˜È 7ß|³+g«­¶J;OŸàÎ;ïtõÇӾǞ0ìkŸxâ ¹çž{ä¼óÎóÑ[µÿý÷]:Vu –ÑRfÁ¸Áã–ÒY¸!`†€!ÐÝhÏïÜý÷ßï¾å‹/n þ5n¹å7I3fÌ]4âO¶ŠL„ZwҞϒ5GÌ`òþøã ýÂö®õÀt'^0cg‚¯=¤½ï ÁþžR) ó$o¢Ô\|H› qÓ\¼öÀ+“yvj½C¢õ¸P÷Ú¸n­ñØ/›è4¦!¾[­É§%%éâÅçÙ¸w÷Ëqðº7wÝeG8>M| ÎÓÁ5¸ Šjr +oÒôù'ŸÈ%J$öQí8°:ãÜs]Ü)jƈ¯©E ÇãÔÇêò’y@•>ÿøc9±ÑŸÕþò¹HÓl¯Ž³wSÿS}õ=ô•úd½ñÚk¥ª²²I¹­=Éä½§Z‡Ô4g4· 뎕-6ÝVBeÚ¶ô~£U¢þf¢R[Q²¤F‰™:õS«æG5R^£Žz+Vɲ’¥2êÐÁòöíïË6—m*“'Uªê4®ÛüžýT¿ôi©(,—Õ+Tƒf¥¬¬]-«êʤLM˜ÊÔño•æ[ƒ`5cªSRF]KDµeê!“+Yõj·¦M½:ÕeÉÀ¾ëÈŽ›íРF–*Ž£ ©ÎI'$~øa«K 1Ÿxâ‰òªy¡ÂˆÃáxÁ6•òXÁ‰òÞyçø()ŸÃܳßóÏ?ï´|BüÜ íBÇêå—_ö—ÓÚ³Ìõ5j”³&†¬?~¼Sél‹“7:‚˜­·ÞzÎÜ+X††€!`†@û!À¢˜Q`Ö¯þä“OÊÅ:;ŠÆßyÌTøögRc¶ýîlíΙþg¼Æ ‹0<§æm™°ó¨Òw{ûí·]ŽɺDÂ$e¼0˜31ÒF ¡¼æƒû¸ã,]ªÜ/^c†p¯-£Ç^S†kÁ B"K‰ ÞÏ…“¾1ö-3ï%xœìšëÀý“<â\“üR¿w+¡{ü,åêWŠ{|³qÉwÕ—ÔL5[ÜC ÊÔ"ä*[­ãà#?Þ™ÿ½¯ïäMÏÍ›çÔ­ÇÕªS¬|“Õ!yw–”Éü¸L9åÇR·R_~«´ *1£L RTµZ”˜©Q}1V«ƒ`VgªÔ•œ*Ô¼){TT*K«dÎgódƒ³×“ O˜àVwröxJ&àø7_ýø¾/ä¥?¼%•EÕ²R}˔ՔK¹jÍTèêP•JÌT*™S«mØh4[‰­ºîCê¥&Kp|•«Ëq«VNX‰5¹:äÀc¥Ov†²ƒŸä~g°%Ýo¿ýœÖIºj¼¨/î½÷ÞÎ6õ'Ú±­mNƪz³Ctv°IM·<¬ñ‘¼ýöÛ…<½ð"რY\òÏÇI¶G›_9h]uÕU‚JgPø‘ÝqÇ.œú{í—`œ–Ž1—:øàƒï–YÌ”Sº–ʵpCÀ0 CÀ¹æškœL¼°²ÏGáVTäûÌDÐpUgÇg^"A 9èO³èí·ßÞù¾#>ùar=lØ0ÙSÕÝß}÷ÝX6¬RùÃÊ7n¸¡Ó:ö}"&˜p4 á@_•"é÷yä‘®>Ä¿ð c¾@b™®¥˜,¡íü£`>V™VØDóûT5}¸ì²ËäüóÏOˆÿ':ã/^ó$þº­B @pÄ´'ü5öºë„õ]}’ŽÓ&ªFÇpµ6ÈV²¥Xi™¬c‘É:Ñ=yöìØ¶ÁÌ™ŽˆÉQ¿+£T d"é>úH&êÄû%³É“m ¶ÿÉsçÊäyó\>“t)ùuÔOKH5¬|wOÄW‰Õ¯áÄ]ëªè}ýä¸ãäõ#õ±Ž ·Òwù•:VE›æ3ÅAûe¡ú¨ý‡¾o^Ò1évª3`Ð ¨Š_«ùò?5g\¨Ú5¥êwêÇjjy”ŽKÿ£ï£dþj\Â.þ'e³&îã°•ëÿtÌ_9GBJÐD ¢JƨߣÜz¬«_,ÕdÑx¨€EôÈm+£2h×~2óéÙ2êÈá2î´QÉ™qßw’«äŠÆ…mÌR2aúßɲ¯WÈ&¿™$¹ýÕdª<¢jMj§çüÊhtó´jyZNH#ê}FK ©ù“jÍè–[“#S?Õ9nh¶.ZÒ?¾a³÷[Òͺû‰ CÛÂ2ƒ=§Ÿ~º3¢C’HДAóóž§žzÊ‘!ø’Á¯k¢t\à ŽN8Á-ËDzÒ:˜$5W6á¯)cIG Û]fBè(í¬?ˆøòèaî„-+,:2|H·Þzë„öÌf0‹у£8fѸL˜âó¦þx¯‡Ð"O–IÄ£ý”)SdË-·t«;'^èl¡ÒJþ;œÓ‰À´+Qñéƒç>>{ ·cCÀ0 C § Ðß9¾Ã˜j¼þúë¦`hæòm^1b„Óœ ^óø¢]ÃB>Œþ“Vô%¦é å\UkǤ‚³îcŽ9Æ9‹e’Šc&Ǹ¾@;ñL !¿ùÍoœV0ý+–}Æ¹í„ œÂ!ƒJTò-ßà²Ç„wUñeº~³u€‰ï’x¡/AV‰„¾h¼ðÜ‚Z䬬É3òB» çm*4µéÏzaõ&ÿý5üÐ@Àµ×ý·W¾¾þ¶oÁ’ƒñh¼®S7Æ \©n+jfÌ?ÿ¹ä-ÃÕ Dí¬YRzï½2ï”S\n#t•±jõ³º\ßQHHßK£•PÎÕñß µ"¨R¢±ŸÐCUë#ªïªÒ»ï޹ãX¤cưú.í³ÿþ2HɇJ%3ÊTKÍ õPi‚Oã5ü“àz“tÁ¸ ŽÓ‰› yìû?×{š§ÄÕ£jòúÚ‹/ʾ:<]bUÓ¥•q«_¢æI2ÿÖñètÅpR²æ%q÷Ñ ýÍÔ¬ò|Åñ)%Ú!v2!™º÷tê¢4Iê’§ ÷|a8ó§§Iv¡úž)V2¦@¤Z·¬<¥GrU¯…Õ“ê"ºú’j¹èU²¤rYôÙ¨—®²–*Õ°yÊ «—¹Ì×t9J«è?Í;¤K_—Ϭ‘ÿýøS¸ÕGêO,Ò•ž”„Ñ̲ÜJLºä¶®ë„æM’6ÊÀ(1£Z;:ÇÌ)²ªFN<ütUÜ››òÍyðq¢…º­?O9HGeýèdÄ È: h¿°Lý±ª™â}ºà¼v®²Š3ôÇ^©ör|ØpúEG‚™TÓ H–ÒóåÖ—åaŒÐÉ™§Ì,:0|Dé„@"%[aŠeª™¥@e™Ùfœ¸:7Ì^ñ<Á+õý‡YfC x’ ³_à…o>Ì”V u‡`¢nä ³hÑ"¡ã@tÆø¸SÆúúCo‹´¦ ´¥˜ö¶úŸÑÆS¨„ˆ.‰T›•¬%g”  åiĨ궨I¨r3Röu¥¬sä`µ1«“šEJªeĉ#$+?OæÞ3_r‹ò¤^m–Bª“]#Ù ~ù´Éï–~*É¢ÙfaÂÄ€_‰£) éà\µhêÔïLM¤V}ÍDd@ö`ùÙgH¶>èÔ©q„ÊÕî­­/w: ÍýXhtÞs:Èü¯0›CÙ4<´Vpî Á‡jðàÁ®5—¯ Lð‡¼˜ B¥ÞW_}Õy‚÷d å1kÁòØ-hÉì¡ßÏr´T„³Nh¬`ÞDG’„½Ç‘,T|ä·_aª¥¼¹–DCçÒK/uZ=¨*ƒxAøP*ÑA˜Œm»í¶Îñ2€‘TÊpãþÐY8Eo:s­Í#.K;5 CÀ0º$íùóyû=ôQÿ ˜6¯qN!x-,ÜÓOâ›YZʬrƒ¶-$ÌW:ÓÊ>¸J Z :äC‡>„Ï]&¨˜pbb 3ìIºä«¯SW;ozbêIÕ¡>-Õ)NÛ`ó裎¥cÒÒ/¨<÷³Î:+?Qœ¶^ Ö±­yYúôèPì!2tlÑD⮹úhÜ},UóÍáj’3FÝI„•\^­&5K• ÖÆØEãž3—NÏóV—+QéVc"¦N4—«õB_}weéÂ:^ú©eB=ç»íæ.U©éy»Ü}>rü9×]kŒŸ®éÄõÕinÿ¸jÆá¤^ªñ†¶Ìµ:¡Žßœø.P‚ß2¼§ŸÑ‰ùôŒï™/u¼<^'ÝqúË²Ûø ¹@Í /Ôßþת‘w–jÏ*vhØ<¢šK™’LÞ{ªuJKs†LñX}ÓM7«¹ÈnR±ªLê{i#Q-š:mKYÙõ’­„L¤NÍŽò”DÉÎU¿4ÚÈÕAoVŸ\U×Âq¯jÜ({S_‘%£› 9ÙE²ðŸjSwùfºüu½”¼¼\ʾ(“õ9AúoÞWÂø· éÒØ4ŰjÌäk>jȤª2ÚæêÕÏŒú¹Ñ’:-³jÎR¹áâGd`vÚ·å>Ι\ò:Ù`Fi7ý¡±u„@Ò@¼°µ‡Ðqak/¡ÃFg‹­#¤HܬPeb†€!`™E€‰— f¹sî'V•ì £åë… ±—^zÉùÚÃ÷ >J®UUx®¡}Œ_;ˆ› ì þ ü -d@PðÃÄÌ#ê´òé§ŸvÚÎh'óõLß_ÓAc"¼íu¯h?_qÅrÉ%—´X.+¡¢‘޹„‰!Ðnx’Ã7zŽ UjnS®¦›ýÕ‡Jo$ ‹±`Þ4GÏ›é}m5¤“ã±kÙ‘2ÄQ¢Æ_¨DqT‰ëˆ>hͬAÌø|›ØuOЖ¹^ï…ß,$ ½` q¶*J¯?¤î=xÿæe•~/~¤¤ ã[™¿©ùX¾ï3µJ“/«3ö­z›Y˜Ó‰{L™‚ÄŒ¯Jüu¾AbÆÇÃ×Lˆ›à¹×÷i›5ù›_!¶*YuJ°¨ÉRVú VB¿1ºÕ¨YÊ~ã$¿¨¿Ìº|¶Lºl3é¿ÑpÃHYòÈ"ùîÚE2âØu%o„2Uª)ƒI“3eÒ¢”I[­lP͒ŲËz;Ê9Gž%ÙªEãXE_QÛ†€!`†€!`$D ¨•’0B.ú¼ýž¬NÒÙeœõcªÌB˜á'o—]vi|ĕɂ™¦.4×_½‹áóÄ ‰Á:1˜=Ó™' æÔø¼üòË&Z±gŸ}¶#gXdÀ§÷{2Å' ÄuBËyáÂ…íêh6îVÛ|¼—6gÖ˜šÄmÑ&Ö Ò…-(Áðàuüâs (|ÎÌÔ•n0óŸUV¯.“Ûî*9ùê&Kê1;R-]ÊI$¯Pjæ…¥÷C$;”#9yùj•-ù았Á©o6û°úYÙs€öê/ó®›+ã.ØH²‹ód䱓¤zn•,zt¾ªöM¿]êÒ‰jƤþe*Ô¿Mi•²f çË–Ö—©¿˜*EJ̘†€!`†€!`tMXUé·º,ìÁsôO|È%œ÷¢â˜1A¶@² há`r„cZ´d˜a=ï¼ób‹°Z%¾÷ðw‡)>ðpÜœ°øé©#yAÝ­Ž&M:H54ÛRÙ÷ ÖÊ’!8’4¾PO¬ÎhGèû 3%Veš‡)’†˜pìÏõ½2G‰™áꯆUšúë» ³¥Åº «<ÅâibG øt>³øsÝï[ ÷ñlße­X±"ÐzZWÏ¿Þu‡üñ¦Ë¥`‹Þ¨NZû^}ûHQQ,¿o±Œ;o²äDòœ£ßìüÕ¨Q/þJÊde)7¤þdð)£†Q’­+7•O+“’'çÊÈÓ'KVú­¡=ë{Ù«‹eÅ%Òk÷RÓ'"«Jˤ|Æ4Ùkì6ríO¯•Þ°”&†€!`†€!`)!€fˆ_©(¥Œ„£WLü¢-eÍÊŒ,˜Ðœ×’W"’‡• äãƒ&A[ œ¤½KÄéÌgÙ%h§J®íl Ù¶ö Z³’ks$Mã=d)iŒM’ƒš<ñn70gÊÒEHp&ì$±’,ŒÄ-…7”ÐðWïg„.¬’ª@¢ Õ¬m‚Iåꬣ¥Mš3¾²gN9ÅÙ ÿê÷çIÝ$UÁÊ­ŠÜbµ¡Ó69°Pê*u6$'Où%h¢ùRVÇÀÚ £’«Ì"¹0[’%‘šOÔå¯/¹wÌa'Mhžú±©ÓU…¶"ëˆÌ{l¦„úG¤¦÷\ùé?‘³ncéàÚNq3 WkòƒcH§Ö”‘(MFÌš‚+ï"GÛ>òäkÏ˃Ïß#_®þLjF •êAC%§°—ääæKNqH—ÖV‚¦ªB¢]a)\§{])Ñ%¹u«®QÇ¿%R;| |h¹üø·'Ëñ»+ýYáIICÀ0 CÀ0 CÀ0 C ÃðÄHK$M{TÈ—Ýy[ž]–¥n)Pºé¨]ö‘ÃvÝOf._"/|ð¢¼õÙ›2óÛ/e¥¨]ÿ¾*î­Î€Õ=’’1ÑZ%gjk$«¦ZòÃQÕÙiÃdŸÃ#›Œœ DNØy¾Ž*ycÚ2íñÄ,OCÀ0 CÀXÛh~`8‰VvNV¼[ÌÄÝ:ðÈÖpúy½Ð\ܵí¥z¿íñ,S-»'Ç3\;ïéviìƒDI{5Ár2ô(ÒÁumÕœêtpÊУ‘ŒkÎ+Æç7OÉŸ  – ö9N~¶ß R­ë2-,-‘…+æÊ²²åR^Ué’ª6Í Þýdè Ñ2zÐH饞‚C¬ÀDƒT‡I&†€!`†€!`]«jäØ>—fM"æÑ7‘AÅèY7•G>["¯Í,•[Ÿ$ÿ]*×½>Wþ5eS‰ë} rd‹½›&²3CÀ0Ò@€%¯£ºR\Æ%H d‚¨ æ—áÊ‚A:‚"EŽ.ä^ËàÉÕ{î éÐR³ëë…ÅÆÖïÛßmÍÞpÄȘf±±CÀ0 CÀ0º8wüpC¯+v¶F¶ÙWþª$—Ûß[ 'n‘|µ&×ö†€!`4‡@Jíûï7œ™ëAb%¢&˜.35I˜Kî&›$¼žìâX]‚üÛ¯¾J¥Ç…qÏ!9k³ªRgne†€!`†€!ÐUÈt?ÐçÇÞ'º×%eµróÛóå£e2apQ#‘ÓæË%årä/O?¾ö,.«‘Ûß] WWËÉ[ O”]S’ámµõõص5e¦±/<ê¨ö'g‚7ÝA„K°È–Ž >:íwÅ.{î¹Ö‘3Üs¦Û_KφðŒ-¥JaÇ0 CÀ0 C ç#0{E•|³¬²É6oUµ»q|Ò\òâ,Y]–Ë÷爙Ç>_¥²6"ß•6Ä=fÓ¡Ò¿0W~0i ì7q`,ކ€!.(E'Ÿœn²Ÿ{/8à€´ïgÛv’½[‘.킺H‚}´l³ãŽRÓœéØ­PCÀ0 CÀ0:Áƒg|fÐÏ4^þòì5nn«‘}äO¬'_,.—Y¥Uòø‰KQn¶l:¬—¬¨¬S͘WŸûÑýò%?;$ÃûäÉÐ^ê/¢ ÎD¯q£p¡=že'ÜF—+Òpí¼GÒ^Ø÷:ÿ|É™>h:¶5JÆÇLŽš2¡11ÓÚwè‘'œ £ÇŽ•7^~YfϘ!áæ6'7WÆ®·ž 11ÓZœÖxi^èPŸ3iÖÍ¢†€!`†€!`tC¦ªIÒØM}ÎøÕ—ÐªÕ·À3þÖ&)väŒ?·½!`í…$Ek4HÚ«>Ý%_H‹ÎÒ(é.µµžFδAKo†€!`†€!Ðâ¼léŸÝäš?©D¥:\ïOmo†€!`Š€™5Y30 CÀ0 CÀÈêÒ·1ŸæP óVVKIE­ ,jXVûã…e.ªä y4M5Sg©™gËÄ0 CÀhÓœi 6 CÀ0 CÀHoKª¤²vMí˜QêCf5aÞ'_îú`‘œ¾Ý™¶´B>ÔU›Æô/HXH^v–` UViV'aB»h†€!`t#ŒœéF˪j†€!`†@w@àê׿$¬æï÷+»ë'—ï3V.ù;9üÞ/¤ 7Köß_f)“HvÕøw}¸X¾Sm›«÷Ÿ(Š]3 CÀ0º=¡E‹yýÓn3v†€!`†€!`ÝÒª°ô-È‘¬Pò:×Fê% InK“gc¡†€!`†@—EÀ4gºì£±Š†€!`†€!гè_˜ZWÓ&CÀ0 C '#`_ºžütíÞ CÀ0 CÀ0 CÀ0 C Ë#`äL—DVACÀ0 CÀ0 CÀ0 CÀèÉØRÚ=ùéÚ½†€!`†€!`†€!`†@—GÀ4gºü#² †€!`†€!`†€!`†@OFÀÈ™žütíÞ CÀ0 CÀ0 CÀ0 C Ë#S_o+iwù§d4 CÀ0 CÀ0 CÀ0 ‹€iÎôØGk7f†€!`†€!`†€!`Ý#gºÃS²:†€!`†€!`†€!`†@EÀÈ™ûhíÆ CÀ0 CÀ0 CÀ0 C ; `äLwxJVGCÀ0 CÀ0 CÀ0 CÀè±äD£õ=öæìÆ CÀ0 CÀ0 CÀ0 CÀèê˜æLWBV?CÀ0 CÀ0 CÀ0 CÀèÑ„Mmki÷èGl7g†€!`†€!`†€!`]ÓœéÊOÇêf†€!`†€!`†€!`=#gzü#¶4 CÀ0 CÀ0 CÀ0 ®Œ€‘3]ùéXÝ CÀ0 CÀ0 CÀ0 C Ç#`äLÄvƒ†€!`†€!`†€!`†€!Е0r¦+?«›!`†€!`†€!`†€!`ôxŒœéñØnÐ0 CÀ0 CÀ0 CÀ0º2FÎtå§cu3 CÀ0 CÀ0 CÀ0 €‘3=þÛ †€!`†€!`†€!`†@WFÀÈ™®üt¬n†€!`†€!`†€!`†€!Ðã0r¦Ç?b»ACÀ0 CÀ0 CÀ0 CÀèÊ9Ó•ŸŽÕÍ0 CÀ0 CÀ0 CÀ0z<FÎôøGl7h†€!`†€!`†€!`]#gºòÓ±º†€!`†€!`†€!`†@GÀÈ™ÿˆí CÀ0 CÀ0 CÀ0 C +#`äLW~:V7CÀ0 CÀ0 CÀ0 CÀèñä´×æääÈÀ¥¼¼\***2^L(’¬¬,©¯¯—h4švþ>=iÉ£+K^n®Œ1J–,["åqXædçˆB!uápW¾…´ëæŸO¢„©>óììl—<‰(F í¥;<ïD÷ÜÜ5~Ü["éÊ÷êëͳé®âÛõïJXûzµ'¶ÉÊð¿5ÿ\»6¾N¶7 CÀ0 CÀ0º'g,'œp‚Œ?Þ‘'Üðüùó塇’™3gºûÏU²açvvçsæÎI “Q£FÉFn$Ï=ÿœ‹¿ÿþûË(?ü°¼öúk-æÑ·o_Ùgï}ä±Çsd õ;÷œsåãO>–Ûo¿½Åôaü˜qrõï.“¶Û^ a÷?þP.¸ô"ùâ«iîü±»î—¶ÙNv>poùúÛéîZ&þÈIG/ï~ø¾|òÅg™È2­<öÞko9ôÐC¦yàÁäÍ7ßL¼8õ†©RYY)ç_p¾k]ýyëžêñÏÎü™Lš4)aôÏ?ÿ\n¹õ–„ay‘Áú&›l"ùùùòÞ{ï¹¢Ï>ël™0a‚\qå²páÂŽ¬NÆÊºá/7ÄÞqdZ]]-%%%ò /ȇ}Ø*Ò8• ¶ûLäŸÏóÆ©7JYY™üêÂ_Å˸qãä¼sÏ‹]‡œ Ÿ7ož<ýÌÓòÝwßÅÂZ:ˆï·ß CÀ0 CÀ0 îŠ@FÉfÃþóŸKïÞ½å‰=!Ë–-“aC‡ÉÁ, Æ.»ü2Y¾|¹Üñ²Í6ÛÈ7Þ˜n>¿¾ð×2kÖ¬9óÕW_IMM̘9#¥<.¸àé߯¿<þÄã.>ƒ(ˆš¥K—¦”¾£#]wŒ¼ò¯g¥¦¶Vîä!yï£dâúäÌÿDž¼÷aÙûˆƒdÖœÙíV­ë.¿úÿÙ»ø¸ª²ãOö&i›î+miKWZ(ûZ ´AÙ}”åEÔWåTTÀEAD_¨Š,eÚB‚,¥´´¥-Ý÷%]’4ë{þ'½ÓIšÌ’Ì$“™ßé'íνç~Ï;sŸûœsíÜ3϶s/¹(iˈeÆ >\`oÿçí“A¾O6ñ@í[]•^EM¬¦꥗_²5«9¶lÝÒÜämúü1Çc}þ"{ö¹gCË9k¦½?ï}Û¾}{蹎zgÚ´iV[WkE…Evøá‡Û%—\bƒík:êzµ¶ÞÚ×?ûì³>€Õ½Gw;ö˜cíúo^o¿¿û÷¦Àa´ÒÔ~?Ú{x@@Ž*ÐàŒ2bºwïnJ§×YÒE‹ÙܹsmõêÕ–—ŸgÕ®ëÍÉ'ŸlãÇ÷^ŸûÜçìÕW_õm:˜™2eŠ?›^S]c+Üû§M{Èg>\yå•~úýöÛϾ÷½ïÙ¯~õ+Óý£>ÚJKK}fŽŸwîyþyÑýè£ìégžöÁ ‹¿t±•t-ñóPGí:“«÷øáÂЂºaÞù6tèPÛºu«?x|æ™g|½‹‹‹íüóÏ·Ñ£Fû3â ̘9Ã.\˜”¶ÿÙ 7ùƒ½oÝø}ûÛcÿ -cõšÕÖ¹¸sèqpgÔ#MݾöævÍ÷¾e›·lö/|àx»òÒËìø£ŽµÊªJ›;ž]ÿƒï¹nRlÒ±ÇÛÿçúôiŸ²~}ûÚÏ>e§ž4Å¿÷ç?ü©ýõÓì׿¿Ã¾÷õëíܳÎq–]íí¹ï¹éž¶û§ý5¨BRn׬Yk¯Î~µÉywîÜÙÎ8ã 5r”éþšµkí‰'¦û¶×ŽqGååå¦@@ã¢Ì© .¸À·ýôéÓý˧všrÈ!öðÃûv½ì+—Y·nÝì•W_±OŸõi{çwì!·Mj[Õ¶6`À€|òÉ'ý¶¢™´õv¬×‚ù lÞó‚‡ nµý8ÀfÏžm/½ô’=ÆÎùÌ9¶½t»Ï¬ÑçrÔ¨QvÖ™gY¿~ýlùòåöæ›oÚì×fûù(èª×?âpËÉαæ`ÿøÇ?|¦H~~¾]ýõ>bÅòþ3¬.ZÎ ÿ~Ág,)ÃMåøãŽ÷ÁÚ»ï¹ÛÆŽkCöâ÷êú¨2uêT;dÂ!Ö×mƒ«Ü>ãQH ²,ößûüç?ïסKç.þ³«îmÏýë9›5k–¤}€Ÿ Iÿ½öúkVUUåç.³ÞôCï Œ¾-[êdÊ:aâ ~ߢϥ|^{í5+,,ô|ʺïþûü<¾|é—­o¿¾öÀøý¨Þû©O}*”-vüñÇÛc=æ Ô– ÂýmšËL\ZŸ™ØÔjF²ÕôÚö•™¨öWÀZÛJð¹Q{ž}öÙvøa‡ûÏÓt÷‹¥h?þÙýhñGvÕUWùÏNœ‰w¿¯m1Òg>–z1  € €©(ЕÉ2oÞ<Óùk¯¹Ö~ôÃÙÙŸ>Û<èÀV”`¬ aè~vN¶iü‚/ý×—lÂÁlé’¥VV^f»’/\ôoŒo tzÝ×­²s Tœë–ho¾õ¦? ÑÙzeè¨ïîëý:¨Ôû{¸3º*züÍë¾iãÆ³m¥ÛLÝz>ù‰Oúƒ,½~Ò‰'ùƒ“~hï¾û®3Æ.¹ø0®×][ÀšùZÃÀÄŸü‹ýö¿Û'kæ·?½Í6¹ƒ¾­Û¶Ú©'O±ïã[¾Jy®-îºí×vÚÔOØ.û¦tÇvûääSLÓ«ÈqìÈÑvÃuß¶ñW÷nýÕNõã˜ä:oýÔ1víW¯²•«WÙƒÿÝö<Än½ñÇvÌGùù$ë¿.¢ƒÑàoü¸z-דּÎò¼Û¶móm>â€슯]joOú÷ïßdÕÔ¾jƒ¢Ì*=WØ©Ð?Õ§Oˆ¹àü \p1ß÷³ÓkÔ=J¼e/³Þ½{ÛW¿úU>l¸O[o'AÝåsîgÏmð§ÏƒÊ‹/¾¸'ƒí,Ó:]xá…~=\T`F]G”Ù6dÈèÔã k¢Þÿ™s>ã'æ†vR6„‚^_ùÊWô’ÿ,Êì°CóÁKZÐ:çœsì¨#ªëÇ}ƃiƒÏb¯^½|ÐU9óSgú}…–]º½ÔÔ–ú<ªN*ê¥å(ÐsØa‡ÙÊU+Ýg·‡©m”a¡ià'hƒÿ´þA6žÖQåÀ4úÆŽ냾ZíÛN>édìP0ûÐCõë¨õœ0a‚_WUœÑ{äö{Ú÷t+éæƒƒû ÜÏ.¾øb?mSÿE³=òˆ#¼«–­ý[_ QàrSùÔŸòû?}flÒ²[R‚à‘>sÚôï~?Úg¾%õâ= € €¤‚@B3g´BüåSFŒ-ÊDÑ[ýÍœ9Ó;ó /ø^…ýë_ÿjê¶¢³Ç/¾ô¢?PùÏþã³ n½åV]g¤ï¸óûÁÿþÀ€ÿü?ßÇMY:˜[·nÏÄQÖŽÆ|Pö‹1¼÷ö³Ÿþ̺ºŒq¡ƒ¡ÜôáEY4—æ½÷Þ3Ù×ÈÕW]í45eTè@vÎsüÌ[ÿyË—‚3æáójí}uèåìT‚ì—hóüå]·Ûoî¹ËƸ@ËÌ'ž³ñcôo)**²»ÿ|¯mwg±{ú ëá‚/ _dž­&óU÷©#O™dµÎf›;8ã Ï>ýL»Öeà¼üê,7öÍü¤ÿž5Ãî{ðShäðlñÒØº•ˉ÷Vã©„©¢L%u‡QY貞6¬ß`Ï¿ð¼|Ã÷oðÁµc±à_hÅ *;ã©§žòñ‰OX¥ÛÕõQmwê©§úlwý›_‡&×çMóÔø.W\q…Ïöè? ¿•W”GÜhÜ“¶*AW-TÎ9û¿¯Ð~èí·ß¶aC‡Ù7¿ùMŸ¢¬,´•A¢}RmM­ŸVïSv—²d­L?uë > ºç]wú@øOòS¨RÈ%¼Äb»Åí'µ}+ÓGËQöà¤I“üþWYT'œp‚Ÿ¥ö½Ú·ê±‚bñﵟ)pŸ}F•Õï~¿->óñ®Ó#€ € „gôã^ìêìùÁìÏúêàB?胬“Æ×ô·ÞzËO«.(T%8ËÞxúÆu¶ZÝ}tvù;ßþŽÏÐѧA±” è?ÀÏVuTÑAÎm?¯Ï.Ñã…‹úêc¾ëÚ1ãåþ€R¯'²Tì®Ä( ´Ée+D+ÊŠQY·~¿í²§ëS©Óãѧ¦Û'Nžj¿ÿùoýàš@W€ /³ß|Ýg8…?~ÿ•7fÛ¥Ÿÿ¢ïÚôÿþ†(xšën¥»d–Å‹û€Y° Ü‚òö;oûnf:P1bD(K&Öí&˜Oè¶>Y(ô0¸£¬/u¡Ñ6l'û¹¬e”d¹ #mcÚöTÚr; ê§[u5Yþñòð§\× U¡ÇO>õ¤ÿ<*sFŸ ¤”`(UQ†ÃÏ^Uö„2áôe`¨ääûÛ.(gô™øðÃúÏŽº¬È¤ëžK ²Ž-^ ª½þúë>8£ÌGƒ²bÅŠPbó¦úÏE'—ñ‘ˆ}@°ŒÖÞ*ج¢Á¨SW!íã”q§²tÙR[¿~½~hL.uGS·"u™T·Cm÷ Ψ‹—2Mæ¼9§ÁUå´©(`¬`–ÓTp&[uUàD]NGºq­”¦¢AȵÿQF–¡ÀŒJÐÎþAÿi; ö;òhÉ~?áŸù8êϤ € €$S ¡Ýšt §³® Ĩ«ÉŒ3ü ¿Ï?_ŸÙÐ8[%X1ÝÕX0:Û®ƒ ªƒ»X+šÖYX-Wgeu¶ÿºo^s€'7¯>N¥ª¦Ê#ú´Ýþ³_¸ƒ¼nö«ßÝî]µŒð²Õ¹E*O>÷Œ]|õåöê¯ùÁOu…¨ßþä6»ô¢ÿŠô¶V¿¦±‡Ô®ÁŸ®®”Ë/»Üa¡ƒÉ·\ÆUpÕŸx¶›ì¬½àŠXÁüƒÛðm"pÕ³ÆqQ·)ô‚e·åvÔO·«V®òYh °ó#(2Ñ µ*:Øzt- _O=^t`­õÕŸ䵌ÊʪðIBŸWeÀhy9.ë(ðj0a£9¹9þ™²]{?{Z†¶QÚÂç¡y%ØÖƒÇ­ÝóiͭꪌA :®1zôœ®áŸ9&T´ßQvŠÚjÔèQ.{f„­uc')¡ŒÀI'LòÓÍ{¿áxB \¶[s%ÛÉ“'ûý¯2ž”eõžOJÅ·¡óWQ((³s‚ç£Ý*“H àký[²ßOÄg>Z=y@@öØ{dš€¥ççåûtx žª KP‚q=ví9øª«­ïbt©K†ÆîP0G]˜”E¼¦yÛáÏóÖ­bøQÊûw¿÷]ûÉO~âxºvéêÏkšhóØ´q“&³Áƒû[ugQÀH™2:#­³Úê:qóÍ7ûeh0O‘Œòø3OúÙ~Ýct0­ÒÛaq套Û9gœeƒ\—’XŠÆ—Ñø0÷þõÏvþ¥_´GžœÞÀ6˜GøÁ—ž« µQý&¢`P7¶Ç—®ºÜFy°}çGÿëßz¶D¸=Š2@4°´.Ó®n.êbäÂy1W%8À,,ªÏrЃ1BÏDÝà‚ ­Ìî½÷^?xª®N¦@B[o'A½¢Ýž~úén°ç~> `ÌEnÌ“àód¿¨kв54¨­ºã™* ,ÜqÇ~u©èçž}Îæ/¨¿œ»Þ£€å·©ìï‚´úüh|}î‚ P°ðÙWCº£i0u•ãŽ;ί¿anPbÜÔc±2yŠ_†ö›êÚVº­4´(»µý+°ìÓ•¥oQ[ª«šJAï~¿µŸùxëÌô € €´¥@B»5©;„–uÕ”ÿøfûÐ]îZ™úQ­øïïãBg‘U&8ɺ–tµ-›ë¯h2bä?VͱÇë_WPD%8Ö¼>ûÙϺñgüóÁ:¸9ï¼óÜb=>ýq?½€tPŒÙ¢y(£Fƒ¦Î™3'xkèö9o˜ÆQj¿®ÔuCƒ“.›µÌÏ邏Oòc?èÀUÝG‚ñ$t¹ðd”;ï½Ç>÷™óü@¼¯>ýo[äØN8æ8¨™¿p=ù¯gcZ¬ðU9íô©§ÚEç^èëŠ7á%üXÏkð[•/»Ì˜>.p6ÀuÍøîµ×Û”I'ÛCüÃF»«B©,]þ±¿mëÿ”i ñGPÑøEƒ‡ u- ¶›Hu mU—;‰¤Ae‡ Öä[‚`¢^TÆÈÙ]L]ð4Hñã?îǦiëí$¨°®¦üÏíØ¹Ãî¹ç?žÉÔ)S}7›[n½Åþ«1š”ᦀè+¯¼â·m ôª “rÕ½¶‹….P º/½äRéú³\ðµÂe>hü¦ð Þe—_fo¼ñ†¿œ´êðú¯ûªì®Øíoå¤é5¾IxQ†‰º4©KÍ÷¿ÿ}ߥGƒ «„_~;ü=ïDzhüžD=¾æ¿¯ñ³R&ˆ‚Ì*¸+MŸ)]ÁéôÓN·¯_ûu?`¹ÆãR Jãp)‹DE]›”¹¢ %uiRÐF]µ´“Miã'Žã¿XlDÓ¾QƒJ——•Û1ÇîÝÿj´oÔe°5ض‚“ÊJ”w´¢î\×}£>{QûKu‘RFÔO>áßï~_W¸jÍg>Z}y@@öHhæŒ0÷üáXc h̬è@øö;n¡A1õ#[kº’‰º…h€Ò¾}úú«À(òñÇû®z¿Æ;ÐA±ºOœt¢?GÓΟÿügÒ8 ºJ“8îÿóý¡+§èCEÁUlÂ硳Ûüãýx5ʆ9À v«z>ýôÓ~²|ÐD«Ë_zé¥þ é©§Ÿò³áóIÔý]e»lò9gø L¿Þ}lê‰'Ûº ëíÜgŸ»ü’˜Çº™1û?æÌnàûn¿ÛtÀþŸ÷Þ±®î@rèý›­îtw9mHrÒd›:é$»ýžßûKjsWtúÓoçŸàoÚ·ÞÜì<’ù‚Vu kì_rÉ%þÀ^• $ÒòÜÑ8-:ÈT¦—¶3 š­(ø¨¬u­mí7.ˆ²¨‚A‰Ûz; ê«À¥Æ( ÿSv†²yte e.(»Gƒíêrà*ZouÁј:¨W «A¤ÕL]kTrÛ¾Êu!77ºÏ³>[A`AÓè*asß›kÊÂÐU„4FŠ®¥¢,½®Ì]Nº©r×]wùztwVO<~¢ß?¨žú ÆRbÙÄ2Ÿ–L£ žþÔUlÉ’%>ÃHƒüEÁ(íGèÐþK ¾ûÏGþLb \ ;æh m— Ò¨4îÒzSŒw¢ÙªnÚGëréûæeQ >Gºl·Æ™Q÷Á)S¦øÏI,nk­íQÛ¡º )cæg·üÌïÏ5ÿx÷ûÊ lÍg^ˤ € € ªY½FŽ~ ´µW× ¤é²¸áã#³Òot0£Ëk%Èx2e‚çƒ[e´è LæŠæ«Ѧ桴|ôD[CóÕYdµïÎ,OóÖÁ«^o«¢±PÔ¥iížÁ~[²ÜÎ{º™íÜs¦>–y¨}J\×0…‹º7mØ”œŒ¡ðåÄr_í¡v _%–÷Óh;Õ6h^‹v«íDË ªÃ§oí$|ù-¹¯:+»A]Yš*rÒ_ø¶¯æ_ýòW>zÃÿÞ˦q¦‡æ-/Í;RÖEPí"M×Tý‚ç"í‚iÚëVû0››Úf’]§h¶jÕ­9w•°´ÿmÉ:Ä»ß×z´æ3ß’:ò@@’-´àL²+Îü@ ýgÚ¿FÔ@@èx s¦ã­>5FÖ(DÝp”!GA@@h™™3-sã] € € € €@B: pBjÄL@@@@ úä¨@IDAT 8“Aͪ"€ € € €@ê œI½6¡F € € € Ag2¨±YU@@@H=‚3©×&Ô@@@2H€àL56«Š € € €©'@p&õÚ„!€ € € €@ œÉ ÆfU@@@@ õΤ^›P#@@@È ‚3ÔØ¬* € € €¤ž@nêU)}k´qáòô]¹׬÷¨!1NÉd € € €d†™3™Ñά% € € €¤¨Á™mª… € € €™!Õçàu™±ª¬% € € € zdΤ^›P#@@@È ‚3ÔØ¬* € € €¤žÁ™Ôkj„ € € €$@p&ƒ›UE@@@Ô 8“zmB@@@@ ƒÎdPc³ª € € € zgR¯M¨ € € €dÁ™ jlV@@@RO€àLêµ 5B@@@  8“Aͪ"€ € € €@ê œI½6¡F € € € Ag2¨±YU@@@H=‚3©×&Ô@@@2H€àL56«Š € € €©'@p&õÚ„!€ € € €@ œÉ ÆfU@@@@ õΤ^›P#@@@È ‚3ÔØ¬* € € €¤žÁ™Ôkj„ € € €$@p&ƒ›UE@@@Ô 8“zmB@@@@ ƒÎdPc³ª € € € zgR¯M¨ € € €dÁ™ jlV@@@RO€àLêµ 5B@@@  8“Aͪ"€ € € €@ê œI½6¡F € € € Ag2¨±YU@@@H=‚3©×&Ô@@@2H 7Öu­Ý]iµU5±NÎt € € € €@Æ dçåXvA~LëSpF™ºšZËÎ!Ñ&&U&B@@@ŒPEñ”X41E[”1“•••Ѩ¬< € € € «€â(±ö@Š)8ë‚™@@@@ >‚3ñy15 € € € P‚3 ådf € € € €@|gâóbj@@@@ ¡gÊÉÌ@@@@øÎÄçÅÔ € € € Aù¹yvÀÀ!I]c‚3Iåeæ € € € ÐÑõéŸÔU 8“T^fŽ € € €D 8Ù‡W@@@@¤ œI*/3G@@@" œ‰ìë € € € !…,'''æµí”_ó´‘&$8I‡×@@@@ c4ðï#Ç[§¼üˆëœ••ec£3Ýom!8ÓZAÞ € € €i!°hå2ÛPºÅ=Þº7¹NÊ–9bôAVY]iï~´Àêêêšœ.ž' ÎģŴ € € € ÖK׬°åë×Øá£Æ[÷.% Öµ¤¸‹ÌlÚ¶Å,_ÒàµÖ<ÈmÍ›y/é"PØ©ÐúõëgÝ{v·;vÙºukmûöíé²z¬ € € €@+7¬µêšj gï/]äßÙ§[O;høh”ùÈVoZÇÜ¢OÚ&Á™+¾v…7.jm–}¼Ìn»í¶¨ÓôéÛ× ;YEE…­_Lnn®ýö7¿õ³z|úãöÜsϳÝçö{ßý® ¸ß>Ï×ÔÖØ¦mÅÊ•öØ£ÙÖm[÷™&]žhu*ä俨éŸ<ÍN>y²åçïíSXW[go¾õ¦=úØ#VZš>Aš›|³u-éjoÎyÓøË©Ü4Ô @@hsuYÒ±~Uuµ­Ý¼Ñª«klÂc|=Æéº1Í·M¥õÇþÁ`À•»[]ÏÝ­éüóγo_ÿm»ð‚ [ Ñ’ädçXß¾ýìˆÃ°ÿùîÿXIIÃt§–Ì3UßÓÞÖÉr9çìsìŸød(0Sº}›ï/˜•eGy¤]qÅUV´IV=Új¾Ù9Y¦í6ËÝR@@@ ;îÐOltãϼ»dmÙQjs>œ Ìh¢7hp¸ið¦i÷h…EE¶vÝû`Þ|û—ëzT[Wë²òì3Ÿ=×ú÷ëïßÛ·o»ðsŸ³™3fØêÕ«]f@¶Mž2ÅFc½{õ´›6ÛÒ¥KìýyïÛò—ï³¼XŸ¨¬¬Üçý[·n±ïþÏwý¥³úØ`V‡v¸sÌÑÖ¿ÿÛºu«-[¶ÔžyöÛµ«¬Át‡z˜?ñxëѽ»ÍŸ¿À^šñ²Mš8ÑJºu³ù|`³_{Ígå\x~}†Ð¬WgÙîyuÏúò%_ö÷Õ ç?oÿÇß×±,?//Ϙ¦Ø!‡L°înù«W­¶Å-²÷Þ›ë-£YG{¨2î(Ë(XŸ'žœnƒ±C9ÄÕ¡›-Y²Ôžxê ÛµsWƒwE[[¾ðù/ú÷<ùôS~ ™£Ž:ÒÞÿ}›9sfƒyéÚ%(o¼1Çfôx·ë&7}út>|¸åºëÛwéÒ9˜ÌßF«G0ñСCm²ë.5p`ýrÖ®[g/¿<Ãmó ƒIüm´í]©¾øÅÿòÓ¿ôÒKÖ«W/;ôÐC}›Í;×Þzë-7NÎ:ÿz🶫cŽ=Æ}zÛŠ+ì‰'¦/q‹ € € Є€út.,öãÍ4ñrƒ§ŠÝØ¥Š?$¢´Ip&žŠêÀW¡¹n,  :Üô7zô(»ýöÛ-''Ï&w|ð²•tíæÏsá Î\vÙe6~üA¡×{öìe£Gr™-§º÷ÿÖö …&Žó޲iêÜ¿,÷o­D6(çž{n(+CÏus¬;Öî¼ýŽÐø4S¦L¶sÎþLð6›4©Ÿç@·Ž¹þ=~PZœéTP`\¿Nó?œš>Ûu¿ ž_±jeèùX—ÿå/ÙÆzß(ç¤?YýòW¿´7E´Žö~š*áëSä‚*p@h2ï3þ ñöÓŸüÔvîÚéŸe}ò\JY`±«|§sô±þ½ ~šwø-[6‡žvúi¶Ëer-Z´Èªªª\¿Âê&Ç?Š¥šé‘Ge_øÂE¾ Q°u›pðûãŸþhoÿçmÿt,Û{MMßæ=¤>½®¤k‰óÝÏy|òÉvóÍ7ÛæÍõëtÊ)§Ø§Ïút0‰ÏT;`Äp+(èzŽ; € € € ÖmÙdc‡ wÃ]4|¾©G ̬ݲ±©—â~.¥‚3Üà¾çžÌìØ¹Ã^zñ%[å‚- `Œ1ÒÿpüD›á² n¹í;ÿ¼ómÿ!ûÛÊ•+ìÁiÙ†õ­{·î.¸Ql˜õê+öʬYÖ³gO»ôÒKý|;ì°gT¿ñã÷2ºvíj‡¹`RvV¶)«æ-—¹¢2tÿ¡vâ¤ýý÷ߟk/ºL‡Aƒö³Oñ)à²}Îüô™öçûÿì²aºúç4aÅîr·^³|öÆäÉ“}`ÆÏ ÿź|el™zÐÞ|óMqÀ»øâ/¹–‹ìøã·iMkÖ:–÷?øàƒQ×@™Y³fÚ2—Õ¤ì ­v<ãŒ3lÚߦÅì¾ f´ )SjƦ?,[¶lµÅ‹Ù·mõéÝÇ®¼âJ”ÑÀÔ‹/¶7Þxçö¾7VWm'ç~ö3>0³ÅeVMŸþ„usm=Õu{+vÝß4΂3±nïʤ /Æ 3e­\¹ÚNuAeøtrAe?½ð¿ývuúé§û·h gž~Æg xâ$?]ø¼¸ € € °Wàƒ—̱w®Ñï¥TpFY»EåQwõ£×_ÍßWמÛn»Õ Np˜:XÕAwyy¹½ÜuC º+u-é⯰£fÌ˜å² *ýt••UVØ)Ç]*¹‡OKþëѽ‡}í«_Ûç­Z†²L‚,‘£Ž>ʲ²²ü²ïÿónùe¶páB8`?;ꨣ|öÄ´ü‡ìÈ#Ž4e{¨<øÙ[ÿyËß_¾|¹]÷ëüý–üëò‹]&( ʬZ¹Ê4öʯóD(¶2Wou#kÎ:–÷ótûÆœ7ì¡iÓü$s\@äæŸüØgCtÐA>8ëú„/c»z×Ïq›רa²ðitÿž?þÁ>wáç]›ìÛLÝÄd¡¿OžúI›7žýå¿ø žXëqðAû Œæÿ÷¿ÿÍæÎ}_wg¹wìqþ~—Îíà bÞÞý›öü÷λïØ3Ï<ë©»ÞÏoû¹¿ß«go{¸ :/7ÏßÿÛ´¿Û»ï½šöë×~Ãßç?@@@ÔH©àLÿ~ýB2 ?ÜÛE‚E.“A½HXÐêvÒTÑ%µ5¦‹¶/¹äbS—eÎ$¢èç¥ÛJý¬²s²}v‡(À¢¬ˆûï»Ï]r«Ö×QÏ+ êÚk¯Ñ]_‚ÀS»4Wï>}ü_ðÚB—Á”¥K—úLšN…ÁSqÝÊH%Úò0R·)eqÄþ¯bw…½÷î{ö쿞zyòÖ¾?X)Í'(¾­Ý8Dº–Æ¥‘m¬ë³sg}(Ík¾ ªD Ìh:kó7(uç.]l¬£hĈ®ûÜh¿ÍèŠMÊ,ºè¢ÏÛïï¾;æzõÕü—/ßÛ­Kƒ ‡,Ïö®ye•((ZGå¤mR¥—ëÆ§Rç6”Å‹?jÕv̇[@@@Ä ¤TpFWÉQÑ5Åw•í=ÐÖsÛwìÐïB”ï.mÜ\p¦G>ëDƒÛª¬qãÀÌt]f{`«ƒ4Öo°ßüc?_ý§ Æùç_`‡¸  ¾úœ°xÕªUV–‘Rè ŠÆÑ5õ%Ë 4ÛÅßUF…®TïÞ½ÛuAÙûÞàµÆ·ÙnÀÚÆ%Öå+tç]wÚ™gžéºÄ²ºÇ(»GY=êêôêìWÏ>ô¸µïf´½´>à<Þ¹«~ `e¹øHÌžÁûu»Ù ­¨`¶ÛGe§Û¾æ¼9Çÿ鱯úÚ×¾æ3[ÆŽçÆ|ɉ¹]VLPÊÊê³»‚Çá·ñlï ´¥¢¢ùyjš`ù•Ê+«ÞæoÕý.–íªÁ›x€ € € T” ά߰Á¯¬‚ ?Àæ/XZùQ#Gúû 6RFÄD7&3 püâ—¿pWiZê:ê*“袬“wÞ~Ûg4ïîjM ÎlظÁ† âoò“Ÿ4»ØÍ{5E……¦n.;öd~è¾9/UîÊVAé´'ˆ¥ÇAW–à5ÝÆº|y²Í]Eêþûï3§q—ickG¹ÀŒ`'»±~"gZûþ ÎÊ"rý©‚‡6rÏàÀjëÝ.˜ëúhÐå Ô¸l«håècޱÏîó~²Ûï¸ÝUao–-[æÇ…9á„\`&ÛòÜÕ’b­Ç–-{/±¦¬­u{ŠÖØ0ÊÊQyáùç-ží]cÅZ6ïèXZºâÙÊ•õE÷uÎ]»”Ä:¦C@@h#ú~m´°h‹Y0¾ªhº“ÜÕgzôèé34N‡lU™÷þ<þŸBƒÒ·__wûŽRwéêeþþ¸ñ†‚YaÁ{Zs[–ÅPTTŸé²rEýÁðÀþmì˜1~ö9îêS]t‘}ÿ†ìšk®ñ£eË>-úS.{EÓèï w¿qÙå 8©Lp™::è×´“§œÜxR‹uùgœ~†ÝrË­þ¯S§?6ÉCn_e¨ôvÝc_,ܺ%ïß§²î‰)î²çA׳‘#Gù —¦[æk*±®Ÿ8Žÿ4¶OP4ø°.O­¢Œ¡û5y£²ÞeLU”WÄ\Ã.×®AxU \°KWO:ý´Óí 7¨´‚N-ÝÞý #ü§€dP&ºK²k}ôwâ‰'Os‹ € € B)•9£¬]!çè£öÝnºéF?&ˆº©¨KÆ“O=â+ݶÍßl/¹Kk«èÀÿ.7æ‹‚"*êJ”å2<òˆíرw ÿ¢ûïOº×Vº€‚J®ËšÑÕ”î¹çVé7á%Öå+ÃâÏüÙææäºnM£\ k¬ïÆ#CµEPš²ŽçýÁ|šº}bº. ½"˜ÙåÆœ¹ûžß‡®~ëú45ïhÏýãáØ#þÓ_v[ÓªûPp¥#ms¿»ûw¡îNñÔãî»ïqÝòæûÅ—”tó½ÿ!wÉ÷Ù¯Õo‹z1žíÝÏ,ÆÿîúÝïB—Œ×å»;¹®sº¬ùºµëbœ“!€ € €´•@VŸƒGDíèS½³½ÝX==¬Â]–\ƒ—6¤WónÎ:Ö÷‡×OãŸüà7ú§îqWKz÷ÝwýXAg­koe5UbYŸ¦Þí9uëåºÑ©”=´Ñh›S­©k=JJºúÀ¡i«W¯nv[Œu{oª.‘žS×ÀnÝJÜXH+]æYU¤Iy @@@ Áµ5µ–Û9úÅ~ÛÇ'+¡Éåacw47k˜?¿d¼@@@Hœ@ZgÎÔÕÕÙƒÿ÷vÙe_±“N<ÉJJºÙ#þÓ]©©2q‚Ì @@@h…@Zgä²téRûÞ÷¾o½{÷ñ—ÓÞ]QÑ .ÞŠ € € €$V íƒ3⪩©±uëÖ&V޹!€ € € € Hë1gàÃ,@@@@¤ œI*/3G@@@" œ‰ìë € € € €@RÎ$•—™#€ € € €‘ÎDöáU@@@@ ©g’ÊËÌ@@@@Èg"ûð* € € € T‚3Iåeæ € € € €@d‚3‘}x@@@HªÁ™¤ò2s@@@@ ²Á™È>¼Š € € €$U€àLRy™9 € € € Y€àLd^E@@@’*@p&©¼Ì@@@ˆ,@p&²¯"€ € € €I 8“T^fŽ € € €D 8Ù‡W@@@@¤ œI*/3G@@@" œ‰ìë € € € €@RÎ$•—™#€ € € €‘ÎDöáU@@@@ ©g’ÊËÌ@@@@Èg"ûð* € € € T‚3Iåeæ € € € €@d‚3‘}x@@@HªÁ™¤ò2s@@@@ ²Á™È>¼Š € € €$U€àLRy™9 € € € Y 7òËÿÕqãÆÛá‡Z‘ʪJ{ðÁC¹ƒ € € €´§@Úg;Ö¶lÝbK—.óε5ÕíéͲ@@@@iœéÕ»—=þøt[µjeƒç € € € iœéÝ»·|Ò‰6hÐ`Û¼y“=æ5ëÖ­M{ê€ € € €XZœ•mÝ»w·M›6Ûßÿñ7+ß]a×^sÑô € € € €@J¤uæLm]­]{íµVWWç±—-ûØnùÙÏläÈ‘öî»ï†`â C÷¹ƒ € € €´¥@Zgºtîl}úöµ%K–xÓêêjÛZZjee»Ïš9«Ác= `³ O € € € €@Òº[S•»2Ó_ûš 6ÔÓ3ưùhq}°& žÌ@@@ˆK ­3g*Ê+ìɧž²K¾t±UVVZ/78ðC=dêîDA@@@RA ­ƒ3~饗læŒÖ«OoÛìV×&  € € € *iœtMm­­_·>UÌ© € € € Hë1gBkÉ@@@@ EΤhÃP-@@@È ‚3™Ñά% € € €¤¨Á™mª… € € €™!@p&3Ú™µD@@@ 8“¢ Cµ@@@@ 3ÎdF;³– € € € ¢gR´a¨ € € €d†Á™ÌhgÖ@@@RT€àLŠ6 ÕB@@@Ì 8“íÌZ"€ € € €@Š œIц¡Z € € € g2£YK@@@HQ‚3)Ú0T @@@2C€àLf´3k‰ € € €)*@p&E†j!€ € € €@fœÉŒvf-@@@@ EΤhÃP-@@@È ‚3™Ñά% € € €¤¨Á™mª… € € €™!@p&3Ú™µD@@@ 8“¢ Cµ@@@@ 3ÎdF;³– € € € ¢gR´a¨ € € €d†Á™ÌhgÖ@@@RT€àLŠ6 ÕB@@@Ì 8“íÌZ"€ € € €@Š œIц¡Z € € € g2£YK@@@HQŒ ÎäääØW/¿Ü† –¢MAµ@@@@ 2&8súi§ÙرZQQQ&¶3ëŒ € € €)*ÁeËô0ÀV®Ziuuu)ÚT @@@2Q íƒ3:ÙùçgÓ¦MËÄöe@@@@ ÅÒ>8sÞ¹Ÿµ3fXiiiŠ7ÕC@@@LÈMç•>pìXÛÈþöòË3lРAV_`}zõ¶U%% ‚5O˜˜Î ¬ € € €¤°@ZgŠ‹;[uM]tÑE¾ zöêi'žt’Õe™ ؼj–Y3g…îwØÜ"€ € € €@2Ò:83çÍ9¦¿ \÷ëìÙçžµ>ø xŠ[@@@@ ]Ò~Ì™vÕeá € € € €@´Îœi¼î¿øå/?Åc@@@@ ]ÈœiW~Ž € € €™.@p&Ó·Ö@@@ÚU€àL»ò³p@@@Èt‚3™¾°þ € € € ЮgÚ•Ÿ…#€ € € €@¦ œÉô-€õG@@@v 8Ó®ü,@@@2]€àL¦o¬? € € €´«Á™vågá € € € ég2} `ý@@@@ ]δ+? G@@@L 8“é[ë € € €í*@p¦]ùY8 € € €dºÁ™LßX@@@hW‚3íÊÏÂ@@@@ ÓÎdúÀú#€ € € €@» œiW~Ž € € €™.@p&Ó·Ö@@@ÚU€àL»ò³p@@@Èt‚3™¾°þ € € € ЮgÚ•Ÿ…#€ € € €@¦ œÉô-€õG@@@v 8Ó®ü,@@@2]€àL¦o¬? € € €´«Á™vågá € € € ég2} `ý@@@@ ]δ+? G@@@L 8“é[ë € € €í*@p¦]ùY8 € € €dºÁ™LßX@@@hWÜv]z,¼wŸ>ö‰SO±nݺے%Ùë¯Ï±-[6·Á’Y € € € ] í3g®ýïkl×®2{ì±Ç¬¨°È.¼ð‚è*L € € €´‘@ZgzöìiÛ·o·GyÄV®\i3_yÅFŽi9Ùi½Úm´é°@@@H„@ZwkÚ¼y³Ýrë-–——g ´S?qªÍ;×jjkaÇ<@@@@V dD I·nÝìÒ/_jt°­\±¢Õḧ$PW”cU£:›n) € € €@4´Îœ V~ãÆvà 7ØàÁƒíÛßú¶}ðÁ¶zÍšàe›xÂÄÐ}î €­Ø~Õpœ)|~ƒO[ÕÚÙñ~@@Hs´ÎŒ5ÊÆgÿóŸ¾W¸¬™µë×YÏ^=gfÍœµO3°Ù‡„'@ NŠãzœ‰ÓŒÉ@@ÈD´îÖ´fõj;ꨣlðÁ¾muÛ­kW[°àÃLlkÖÚH ¶g¾_R]Q®URÒFKe1 € € ÐQÒ:sfÇÎ6gÎûη¾c7n°šš:{ôÑǬªªª£¶õF PÓ«>8£ªî>´›å¿SÚjM@@@ ½Ò:8#Ô<ü°=óÜsV\Xhë7lh/g–‹*P9¡Ä œUV“¡¬6 € €DHënMÁÊïܱƒÀL€Á-$U fO—&còît™\Û}H·¤.“™#€ € €@ÇȈàLÇn"jI ¶w¯nîÊr+xu³¿Ï¸3©©+ € €m/@p¦íÍY"dˆ@Á;ÛüšVºÌ™ £&CVÕD@@8ÎÄŤ €@4 “UVmêÚT0{OöŒ˜‚ € €4%@p¦)žCZ(\F;wE¹ŸCÁÛõÙ3»íÑÂ9ò6@@Hw‚3éÞ¬´«€.£­ šêÁEV=¨°]ëÂÂ@@@ 5Τf»P+è uE9¾æYå{/ÿîžì™ãzvе¢Ú € € L‚3ÉÔeÞ qÊQÑÕš‚Rø¯ þ®¦ € € €Î4á1 `j²7í¶š^ùV5ºK‚çÎì@@@ £ œéè-Hý@ ¥ê ›Þ­vzu‹¯gÅq œR Fe@@H¦"R bTèˆA·¦¼w4¨~Á«{.©=¡¤Áó<@@@ΰ €m ³¹ÒCSfuE¹VÁÀÀm Î"@@è8g:N[QSèà{º6UBöLoJª € €@BÎ$”“™!€@& ƒýæ-ÜÙ$C§ k“»jSpÉí&'äI@@È(‚3Õܬ,´§@VY忳ÍW®MíÙ,@@ 5Ê/½~Ýõ[ƒØè½gðH¦@þ;¥~ö»åªMÉtfÞ € €ÉØuÁ SÖøÎK†øÛä-)sæLp&sÚš5E$ Tìì—»¢¬Ù%©k“2htU§šžùÍNÇ  € €¤¢€²fjzíý»ýÊ¡ü®M@CœI"³@Â|‰Tòß­ïÚ´›«6Ebâ5@@(ŸÒÇתxÚ*ße_W#ÝqÕ0ÆTle[œi% oGâè´çªMgâ•cz@@öPæwp e„wùÓrË]Yæ³Âw]°_{V­Ã/›àL‡oBVRE ø¢ÒT¤’÷áËÞ´Û§ƒV*Œ4)¯!€ € 2Së³f f×wÕWÆxç{—ûnûºàEÙ™ýS¦®­"¹­ÂÔHu¬òÚ¨U,p—»/7aÈ[Ôô¥·ƒ™díªv)£¥–³¹2xªE·ÕSûYçñý­n}™•½¸ÜrÖV´h>¼ @@ 3*Ž«¿¨Eá¿6„rW–» šmûUíì¬þ>“&¸Fh¢VÞ©: Ø 'ïoYÅy¶ý½5Vøï½Ëoå¬SæígR¦)¨d’@KUpFÙ6AÆM¤õßuá Ó@Ãz_K5µŸbã?{¼7ðD{¥ô{gÄÛ¶åÆ™‘Ék € €„”£ñe”%®€LxÑïÓ¢Ç×úàÌw§’[ï3MøôqÝÏʲ¾_=Ú¦Œ;ΆvêcŸð²-¨}Ù:½´)®Ù¤úÄgR½…¨têA|]#]­)X}¡•ܶ؂+<Ï7u[Ó;ß*'tó}yu•§X5ê2U3¨È½¯“uŸ2Ì®z¶Óý»ªï)vÄÖoÚºƒJ,ný¥½›Z.Ï!€ €@ëv]0ЪÝ÷qá ü –ÖÏ‘9 Ð>»­ÏšéôüÆ&+P4}­éwëîc{úKlë·n´ e49£FOVNèjƒú´;‡^ê_©¨©²U¹ßÑgIñ@À èL‚J¬_B{F±•å¦Ëî>´Û>šœM•îÇÞV—YSá1úØ8§$?Ë^Üþ¾άڽŶå•Ûök†ûåk€bõ¦ € €@b4xjùÔ¾~¦Õƒ ›Mت27" ëwnÁ;õWmê ZåNú“ŠÊ ézÇÒ¦&‹ë¹¬Ýµ¶±ºÔjÝ¿l÷oYå«-m]wÿ¸*ÐF“9ÓFÐ,h­€ÒEëûï6 ÔÔôÚûÃ/|tXãÙä®(·9«ì…©Y6qÍ"ÛZµÝJW¯³¬ž5¡nUê¬MÁ+›[=¶Mx¸ €@& ƒ§ê€V'qvª»G‚² 2Ù•uo{`[Îw[Ä‘ÚֻܾԶÝ8ÆXìæVFMkJÞü¶uýF;øë¬»ÛºWÚîléÌH·õiM›ó^@ ÅÁU—i‹ÒT ¦®0Çbê2eû|qn~þE[7´Ð²ªÌr——Y¢Ûí¿4û¹+Gø/O°¯Ë"ÌÞGVO[¬1Ëh©€Îtµv0é–.›÷!€™. žÚõÎ¥î"®{“ëžœ¨l‚L·eýÛV Ø–Ãn®úÝ¡m¾ôú  ¸Îýf]U¼ÓVîúØ:ß¿Ü:ÍÚœvYæ÷ëycs¨Áóµ•Õ–•<̈Û!C†ØŠå+2b]YIh½@Í€BÛíIË]YჭŸcìsÈY·Û¥—–ZÁœ­–·p§©›SVUݾ3pOål©²ìRqEÓhì›Â6Ö_1ÊíæëǨ)òë¢õ1sÓ¸ù79??þKeÛv\=Ü·'m™Ê-EÝ@ 4xjå‘=Üwm™?¼ÆòÞßî÷Ç5.@£¢ïìL+2Ñ•*ëŠs-oé®L[ý»¾áÛrÑôu1­‡ÿ=Zî²´ÇuµJ÷W8cS‹OîvŸ#}–ô™Q·©ŽVêêê,;?/jµ³£NÁ €i/ ±oºÜ»Üºkži_@ê.¥Á‡·Ür OòƒÒ#MVP3ꮦ´åæÛömÙxL¢4YeVH)Š)½}}‚ÁSƒl=©ý³Æ’Ë´RîNè;H¾‹:NëG¸¹5)|~ƒ¨¨K_ù”>ÍMõù೤«–¦s!8“έ˺!€@› è@X%{sÛtkJ֊釣ú÷øön·%¡/T1Qßa¥§j~Jê ”}º>0£±„Ô–ù{ïS[ª·ý`´oK¥ S@+ êÂÔxðT )žVæ_Ý›2éć~+édAP¶_9Ô‚ßOÁsܦž€ÚH´ÆÛr¬5 Æ›)ŸÚÛ»ÿoŽðÏ’ºÞ§sIûnMÅÅEvöÙgÛ)S§ZŸÞ½­tûvÛ¹3z !ÝšÒy³gÝH¼€<ÓWÁÛ¥i“¦¬îR~ü÷E¨Ž­5ý;ù¿JwÅ(ÿ[’k9kw[¶KY¥¤–€~Hí¼d_©®nP¾¼¥e¾Û›Î8e»útÀPëÆR[VœØËêhËÔj@jƒ^`×¹}Wá‚7·úýoø ©;.7\=¬³û+6M“ ݇õ£ßK:Y³®ÂÔ½«zTçŒYÿðm #Ý/wY^ÕÃë·Su¡·¨{“~#ëw¤¶óx»óŸ¥Â—7Yþ¼íñ.>%¦§[Óžf¸ü²¯Z·nÝì±Ç·m¥¥výõß²‚ü½Û”h-*¤°€²it–¯Ç·çYç?-÷}ç}zª»4èÖ[ÇÙö«†edjvb-±|–bWG˜.­ƒ3Õ55vãM7YUUýYÃ’’ëѳ§-]¶´#´ uD$PÛ³À×¶5_\huý´V†²jÂfÐÙ½-©~ÒÊHÑ™Aµg¥¢H²²T4àž~Hù´ñ°¬™½µjxOÛl×;–†Æ@Pàh§AAžxËî#»YáwްâïmµSÆûv¦GÒB ÖÁK¸Ñå†UœHÖ÷B* ê;Eß…*:PWÑ÷O—?}ìï+8•‰$û•OáÿZ:pS«Êž‰ãU¬Ÿ¥¦–ןËíˆ•ŽµÎ5.8³eKý Aƒ ²/_z©Í~u¶•–v̾j±®7Ó!€m% 3^‰_úQ¥–Ê Ñ­þrW”¹×6†²lÚª^ Š´w Lë¯ ‡Š%Já–—Š~„îº` ÷Id=õãWã©èéñµaŽ»J×7Vê.Ã’Û‡êm^µnÜšAÿu´7úTSØß~}àcö^þ Ëû¨þGxSïÏvýЛ;«ÜÔô­yÎìI©6µS"Û%ÚòxTP¶_[}.Si½U—x/U B]†õ}¡ï…ì²ê˜ö»ÊBèH%Èši\ïüwJýU"uÒB$—ܺ8)ûßTø]БÚKumí@À×WÛzýɼÿ;#Úà¾ñ~–/¯#>NëàLÐ §žzªM™<Ù}ôQ›ýÚkÁÓ¡Û‰'L Ýç кÂúDĬ]Õ-y{Z¼G?°ô§/óÝîà^gu–lÇ¥C|À žýÖ€è*DZ® Ó•Št‚"­™o<ïÕìr7&Š–\™#x\=¸Ð_)i‡ëÖí¦ «_5£¿Á™I_‰ÿSû©«ÓN×f2ÔeÔcý¡\þÉþ6¨ÿ~öƒýÎñK{cçbûð¼Õ¶µzWÄ¥+p¥@RKêqÆ{^Ô» ·-îvÁCeÅZŠZw€+Öy3©( }·2ý|wwÕéÕ-mXOE—xëT~J}÷œhžáóÕ´U£;ûïuŽ¥d¹ ŽÞ§Ëtw„`ZÕ¨.~µšÚ×+£Bß‹:¹£ U"/„o×ú]ÐéùõÖiö–„}ïÆÒVu}wªä¿»-a^EÓ×ù6Ö%Õ£}FZòYê¨ÖA½ÓþjMºJÓAã²_ÿæ×öÑGëÝàvÅòÖø«55 âDØùÅÁ~ŠÎYeÊôYWoRp è™õîÒân„~÷ƒÌ_èÈîywÖd{òX )0¤¢L -»ü´~nùùn< Z°If h™Û¯=ÀvÕÃ/FgCåи¸ Hå¡%þʺR‡~(¶¶hÙ;.ßßå‹g[—û–·x]Õ>ºCõðξ~'ööíØT&‰~ôV¸]ªr|Wë’[dõ™dùY¹ö§/Ú‚e‹ÌVîò:xhü§vÑÕÔfõíVg¹î*a‰¸j‰.ù® ¥²Ïô&¹¨k™®BÖ¸«^UãKüv¿Në™@IDAT£€LИ¶{•àjnú\Ö縳ݕ\™/†@ûá_T¿¾{Y\fú^ð%++ê>*»¼Ú·‘öÓj76²ªÜwœÛ¿¥j)ûÌ«-ɳ¢'Ö5ùý¤«ðT¹ïÐ÷BK® ÔxÝýwò×ðVzMµë*…µn~»Nâo’ÆõéHýo eÿê7…ëÆž¨ßnú-¡†µÑoĦ~[mÕÒÏR*:Çzµ¦ØO!¥âZF©SA§NöÉÓN³ŸÝò3+//³üü<ÿŽšê«©­òn^Fh­€ÎŠ¸ÌˆÒopÝdŠü­º÷$ã€W‚²3ûù*묛Š(ïf¥³fE¯MèY ¿ ÷Ÿ24tÆO?,•©£ ”æ~tè=ÊHÙâQ‚ Ï® æÏmk³f—Ô_YO rh½jur@«ýdª³ú¡«ûSP”ª¼qÁGvøæ«­8«ÀJWm²Âß¼oE;›¿Ôº~ü©Þú¡Vã~¨íºpG)º*C$¿`¹á·Úvï²¶üÀÔõ?q´.õg—]·-÷C0–¢.z-íÞËü™TÛ]ïXbµ.ËLûS}.5•þ’å–J&»îa=§Ž²,W©-ÿ^ly³7ÅT½Ö^êÇäpY$±}ç(³@ûh}Ïé¯=3F#ÕYûz}7ª4•9£çµ¯îrûR—½5Ư‹¶¹`Œ½Þ’¢½–«À¼¾sÕµJY­ºÕ÷—þT²ÄöÕ ß–ãý.Þwn Ÿ‰%{&|ù±~w7\JÇ|”ÕçàuѪ^½³Ü²s:ÞØÁ£F²kþûš}Vï¯ýK“Ý›Â'TW§Y3g…?Å}@ IýèÐ ¸*½.}»Éi2ýIí¼p?ÿ#RÉè2RIïnþBÜŰ»`ʪQ=T”®@¡ Ô$âK_ÁŠíWõÝô#P?0c™¯~\ë‡¨Š²l¢¥øú ›øOë¥.HꎠÀTs?~›xkÔ§ôãUÁœÕ¸ [Ë, ŠºŽé‡m°LeÔvɳÜe‘»3ïn ~4ÏceoŽ|6Xë¯zêà$(j¥û+8¨ýñµ¶)ÝÓök÷®x—“ÓË*ølE[ýÈoI{D›oS¯ë³¯í1–Ò–õŠ¥>m=Mð9WµÇ·?-^û6OJ¢»†è@9QãOi^Ç4 êëmÍÀN6ü§Ùc>mÅyyöëÙ‚>áöieQgt«mÍþ<êBMìÿ”Öþ*(þäˆËÊ öÍÁóíq«ý»ºk©mtâ"RÑ6§+ª(PØÒ“9úÎWpFû›Æ'K´oPÆ‘¶û`ßt‹eyšg¢‘LÚãµdoËúÍ¢íµ¹ÏJ²—ßÖ¦µ5µ–Û¹þRò‘–ÖÁ™H+í5‚3Ñ„xà‡D,?:‚÷dêmðcI믎úRND Ú@?˜t™ïæ#ú!¦³Ãú¯¢c­Íä j4¿Æÿê¹h%xkk²¶Aùn¿rXèG¬àü™F׆ÍYG[ïæ^oêGssÓ6õ|ã`QSÓÄúœ~´Y_jeµ4€ë2;Út Üi޵È1‘Ѧ–«@‚ Únc- 8$rü§X—›*Óé`X^ÊàÓ8Y‹> A–[Pð´5cƒhž6ª¶43Ç×Íh«Ý8nm[j{þôw.¶¿Œ¼Ú3|mÙíï·ßgÙO­jÌÒàql×÷®dØEmdŒËoîà7x½-n}ö•ðW™«±dÃßiª[Kê/‡X<Úv”¡QáÒWvo<%Ñ'BâYv²§Ýû»$yÛr° }^»{^ƒUJ…ÏRƒ %àA¬Á™´s¦¥–Œ9ÓR9Þ‡@æ 自øuÊ[äöÏ[ºË§WŽ+qcš»å%VðæÖV1²ýú‘>pPôôz+x·ù1Bt¦ËŸMtA?Þ‰KwÞíÆÂÑcÞÒègE¯Lu… ýèÔ˜CñŽ—¢:Õôηêa­Ê¹tr™(ñÎcçåÊÚÉiÕX3×-ü±~<©ÿ¶;è(|aƒ_O‚4¾P¢‹æ©±‚1‹4õu×ç+ÒŸêÕÕñ zª¾‰(j‡N/o µ?ˆtý´î™^´½i|¥ÊC볕d©}ôZhœ ÷¹ó㛸 i–û—ˆ3Ð>¨çºx(ÛIc>i¿¬ƒd}®£ÕËDá§OÔøOmÛºªè3ÔÔþGÏ©5x·²ÒªÜXY5ýÝ`Ûnì}^ãBËÜîÆÑA´ÚIãZÄ;þ”D¸®/;ÜþOã‹i›TÑmP_ÿDœÿÕuɵâ†Ø—úžäßyûº§maŪ¨cƒí:w Ï,,tû ™´G öÕî;N]²ê¿g»ùï»X2B’Uç²³Üx3.p¦ýt,ãâè·‚¾•©©ýn]Q¶3ÝSõ´m)¨®mJßËf4ß%MÛ‰ÿ] 6S–¥{œU]qŸá÷cnìœZ·œDŒÓJµáD Œã×é7M"öÏMU_ó ÆžÉ[ä¾?¾·Sá³ÔT[ó\¬cÎ9ÓŒ2™3ÍÀð4ì#Oºî>oÎÐ'ô埨.#Á¹Æéø±ÐïÕ´ñdòøS—IXèlsksºJŠÎÜélt·›>Œ¥ú~šàìSKÖ?æ…0¡ï§yµµÚÜTf >¿ LÆ:¾R8‘œÊ>Ýß*'耫þ`ÚPº dÁ+Ñ3±êò²¬ø+Y΀®–³¡ÂÖ¿þ‘ °ve_hYñviS=4þ“n_]-¼îéz_Ûµ2”u¦?c)~躩( 1Þ¬2m?:xV7LµUg·LÐgæ¨ú¬…?¥åjÛ)W¦Ãž1L4]u£+&]E»kžŸ¯^§h¿^ðÝíG^Ë­¨³MY»l]Í6¿on.S¨~ªïZÚÒåÆSÇX§ ¾4½º7u½si»ì·6Ý{¨¯²2ŠâÙo†×?–ÌTµƒ2f´mhúð.αšE›N˺²§R[G«w,¯kݶý`ŒÏ@‹g˼›š&h_m›úl©¤«/™3MmqůñŸ¥h:}†õùSÛFº‚H,óKÔ4²ÑYüX×£¥Ë Î’ÇsEÕIßyAÖ_¬Ye:SÆŒöÙÁÁ³¶Í/<3§nO&²Õ.ÚîÔ6ºz‹ÏŒr™ Hºq¥Ôí¥PÛ“;ó®ïí5mókIfƒ21wvª¶]O-¶ò{çYõŒUVé>ïʪl檃úPÿš²‹öíÖÒ¶iíûô gÕÏ®Üzäº}Y¼™N­©‡>ÇÊ.ÖþBíOiP·-DÛïîúÂ`wåÀ¿,f’ñÙÑ<ƒ¬e'%âû?“HÓjÛ×g«¥ë­lH}æÔV%¿ZiQ yMŸ}}¾µmÙ3zìÛÙgê¥Îg©µ+kæ Ýšš‘&8Ó O#€À>:¨Ðý°$8³O³OèÇCk»Œ(0S³ç ™º4µ¤øîÀ,ÚoÍ;t`ê Zr`©~ò ºuÒ™aËÏŽx [èèG¯R4v%¹:øSéÀÏ4ºl?˜© 8Ä’ªŸÜÚ™ûE¾Ú&ô§î:‰º4¹ê®±,v^º¿ÿñ¯@H×»?Žë,¸æmïúì©›Œ~”«†lZíS›ùëÞ£§ýuÄ56¤ —}¢Û»sÍÓV>}±•üvi«º´é`UAÔ¦jç¶<€ \tpUyDŸ™¤® å§õ ´Ó$òVû´?ÓTâ- ´íuëâ>…Þ®©ƒÃðn ÊPÒ>«©éôYR°:蚣7ðô™Ó§¾g5n‰Þ¯û¤ ¤|ñÚ”M©®zÚ§–üz‰eïtÛEØÉÕE™Z¹ë*|æµnþ2Ñ®^Ú®S©¨þ ^—©nªþɬ¯ÆÒo$µiKª¿Þ[=º³ßv»ñ¤òÜàÌáÝ`Tµ2À”™£ÀL8P¨í¦1 |[鬴‚!uÅ9ƒiÍÖ*Kç_[WÂ|u`é³QÜdÜë3•Uî¶Ÿ°>ýñ.Mó×¼TüøJêÖå,‰(ª—ϦqòÍ[â²”ö»ßvíá.sÞ¹Ö¦v;Èîß8Ó^÷–ÕÜþ~Bê¢ ¤¥ã?µÔCY€ågõóä™!Á¼|H„q3‚éZr«2m+Eÿ¬Ï6jÉ<äd•)XÞ8»A§ðñ‰”é¢1¥¢íÓu0Œ?•»¢¼>KÆm'‘Ú´]j; m LIJ­FÊÄÔûÃO&è3¯€¢¶Oe8)æƒnÌžT,ª¿Úoi|3Õ¿¥c­Å»~Áx3EϬÛç;,ÖyùŒ;W}7jó'%\05ØtâdçûÙiÜ$µK2‹ß¾-ñŸx€É¨—‚¬eŸX?kìPNu |¢-3üýÝn^˜ÔÀV㺨ŽA0U¯ÁÑt;áDp¦qËÇù˜àLœ`LŽ@ „~x<á~x´âà'ƒ Ý ûv‰6Pp¬ƒÇêÚÔï~'Œ´üÉ®ÛÔƒmËaõ—@Lôiãú鬱g€ "xLÖLcÁä?ö:º»;èÓàš~ꊶ·kN<Á‚Ï`E_8Ð & ¶íµe–»<¾©uà[úÝQ>•_‡ÀQ?jä À¨îA7’X¤šš²ºm¨n~_ÐL`F\es×ÙÇûUØ]kŸ±™Kß¶ ˜c9[×…KA¢JwÐ¥ƒ@" &‹_´i”U ‰ä­î®"–¢³ÿ0SÝiÀ–M"‹‚Z®¶›.YS£¹åë»/<«LÙ z¬l’nf­›–£¿–dOèNík^Ó+€¯vô]¨\]¢•X21›:™Péºçj9í9p´uÓëÁ~K÷eSå‚·ñt¡ÕûZRØUiÉ€ùáËóõwí“”½¨à›ê¯Ë°k ;µsýøo[Âß–¼ûn¥:Ôæ´¨û\¢*¦à`Ð5QOí+€SÝ‚b¤e5~K>Ÿ‘æí5µ«ÚÎo“n»üöî>Žê^ôø_Å*–d˶$W¹wãJ10.€ À„êÐ/y/¹ÀMy”$7¹)77n’bHIè„réÅÔb°±\À`pï–eËê²Ê;ÿ#ÏzµÞYÍJ»Ò–ßác´;{fæœïììÎü÷MÚý-Ú¶ÖÊé× Î´S”àL;Y$Л½@оígÚ~à/îC5Íušžë hžéZÉä\|÷;~¸\2ätyà„ïÉ–ôƒ²£Ê܈Ï_õ›5§.êáßšÀ0ÔÚ‚ÁNn/FkÆ1ëè¿N0!°kŽv¿ÐÏý§­iœ‹ÎÀ¿5§ȱsgÊÃSo–ц˧…¤ì}3[Žiåâ%éEõA3þ‘Þêo÷;?÷Ýøúw ÑY¶´L@Ò_%õÜjêžno˜Ëø\ÇpÐíÛnÿó…oû^Ê<©• RûÍR¹p³Ô¾òeD3Nyµ…þ’«^ѸyÕ H™YªâºÁRsŠ~4Ï,¥i÷E[Š8¿x§o«±ï£ú¡]m0ÐÞÈ8mçßj3ÓœÞäê~µÎíM¨´ÝOL Fß3j¨¿àkýô³ºûëm7»öîÇëú:¸º–Aë¨ã®hùÜ’¾ï–˜ùf`ÒPÎ$Óú8³j]5å™^ƒGnåèˆå6ÈeZhËÌæ GdfM VvuÕÏAõ w¼™`ÛÓe_›çÿ;÷oÒh5û])Í n£¹WoÛÖ@2Þ0{Ó‰\Án[”.m—,—\»ij4SB¹]ºtm47â¹öFRo&õ[oâõf^“^PërMz3Ж÷ÞÔÄãͤ­tþOŸÆ«3ÀèkÏÛÖz¾Ô˜æ]kÆùÑ ˆ&½ ²ÇÒlWÏa¯É9ß«L7¤ŠkIsCÚÞTkFš²ÂœÚ8œýÆÂ{L¿+ô<Ñó¦ò²þ&èy Å1ÔÀŠºjÒLá&Ý~zUøA»p÷­üZþüŸ®çÇíÇÞ$G¨{‹œ‰V€NË­m{1oþ,­²Á-·àŸ—í„›G÷å|hwVu–´|)7ï½v:ðÓ16è¬yu}]ÏN9î²~°m²,ºg¢ëËÖ@Ú! 7Gzcrð†¡öÂÂùµ_/Ý.FÚ±»«¦›©:KðŽìO[ÄJ`¦E!yß MR~Ïr)ë‘nÆ™13ÌÔ˜qcLô†QoìõâYÕ—÷—ÔªFû ¿¾÷óîßÑ_¸ã2z¥×{ýuYo2Ën!+ËZÝYݤîv'£íòòæîv¯æ fp`ÓUN[zèó¶&}9¿¸k°"Ñ“~h÷c=†jçßÂAƒ6š¢Ù3|õÇ K»Ý©‘¶øS§ö|Ïj€R“” '^þeÔ§¾4àÙj@ÞÅ6>VWç}«­ûZ ‚:=¶hvÖÕÝë1nmý6“ÕÚ(@p¦p¬†¨€~IjÒæÐ¤èè¯bù?ýTÊo23~˜¦×á6=oo©40CB š©û[Tª72zѬ7àµæ×Κ3Ì ¦æ½ßе¹õ…þÒÉu4HËmw»ûKÙÿ“Ñ6à¢/IoˆôFM»¦EêÆ4ï-6@TmÞÚe¨­ÛÕÀŸ¦Œ•-[‘x©W¼æÉýë&Ùç1öæTíôüÑq›œ U´[bƃ›¶ÂK3”r¨Ú³ôú¦»ŽÜÆVj«ÉÎ<m,£8+«Ø÷’>Ûz^zÙ½v“ÔV|šš»FzïÚ¬ß)Ú½Ì Îèñîˆ`’—z‘çˆÁ™#†&/#Y’~‡t5]u´ “¶ èvÏó·yܦŽh‰/Î:ÞŒv“Ñ©©õû¶ôWãì{¿-Áà#]š*â¥úm*§~>h SÇÈÓÀ§A¢•´õž¶FÒÖxÚÚ)ܤÁýi,ÌäZ*\¼ÊOp¦ƒ Ù  €@ûôˆÀLû Y;~ô½ß%~‹÷%·7÷íèJ)€ö¬-"¢9p¤êíèlJ˜Ò@§Þä¶eàh”+Ö¶©èXÇŸ±ÝùLK 'ÜVG‚3Ѹ?–Ü:b``mñ¢3í&¦­ùÚšô³Lÿ‘bS€.ô±y\(ĉ€Ó­)u_mœ”˜b"€Ä«€ÞT9ƒ@ëàÀᦎ8Ü2uT~ ðçnÕàtOkË ÀUÞÎÜOsk±Ïm× æi`À8ÙK¹´•_2Œ7ãXh@K»\k5é¤3ôévõ¸0€o¤uck{gbëxPˆ3¦ì4[â´½ü g‡Žâ"€q) ÝpôFP[~èà­^S² ÌE»íh—MÉ>p0ŸÀeÚuFÕ¤ï5PÖKrÆ›iKw(/ÛÅ<ÎÌgN´½eÔóUbûæO0Ý›»à1€o{Uc}º5Åþ1¢„ € €ø´Å‡vÍñ<8pZŠTÍíc×O¦€}`~tL’w§;“¶žÑñz4àÒZãC£síœ@˜÷½ÅoÎ6 œžbf—hòU\ªÖV2Îì”ú‚cuÌ$ .’[€àLb_j‡Q¨Ø<[“IB@ #ôæX[~è ¤­ ¬c]{¼t%µ)õRñO‚qŒi Ñéµµ%ÇÁ†˜×…·¤~äᙚÌû4Y’v9r®º o«ö6ôÍ’žßj«"®½¾8[ÍubõéEâ´(Ò¼:PréÇÛåñÉeòXá+"{ª¥ìÞÂ4Êþ’Éù˜àLrwj € 骤ôçteJ‚CÝaUÔ`ŒÎ¤—›Yœºß¹ÞŽ/£]vœ­’m¼| Ðè´ã~:Æ·X[é€Á:.cSöúnßëf|Iý€àLR~*íÐ&ªšô —„ €$‹€ŽwÔP˜ag Ói¶u€`íΣ)™¦Ðv¼³LwC[ƒU©%µfpß½¶‹׋Á´Xæ/@pÆ_ƒÇ €@…™6·ó H«’@ˆk1¬ÁtÝÑ.<Ú‚&õ`½­NõžÌI»º÷¼mèx\#&ó;!üºœ ߌ5@@@¤Ж yó7Øî;}§”®©YRÛX'¥i%Ií¢•W›ôªê¤w <º·…çEn@À'ДÝüšRÕüK‘ï € €I  ­Dú­n”iÝÆÈ'“ï’Gþ›ô=c¬4v§ @~ªa‚3es <õÅ]meÓ·ðËHòujŠ €þé]3äôî“ì¢SóÆHnv®4vë⟅Ç àA€¦$² € € €-Pýù^y¶ä}96o¨¼Pú¡”< i»êŽÎÈ)@p&$/"€î: ? @HfÆ[dEÑ?å‚‘k$µ¢AJ^\+‡˜É2™ßÔ½mIœ™>}ºÔÕÕÉ’%KÚ&ÅZ €@€€ÎN ©Ëç¯ð@Hº?§­LFòT›š"Q„s¦¸¸XÎ9ç¹pî…Ò³g¯ˆâ±1@@@@ ½ œ),*”ì¬,Ù·¿´½V¬´pfkj±' € € €@˜ ß­iù²å¢ÿ®êš& Ù@оnMëÊCgäU@@@ „@·œ Qw^B@@@:] á[Îx>uú©^²‘@@@ˆ¸ÁCúîÂw‚%`s @ÀOàÐè<û¬ËgÌÔäÇÂC@@hƒÝšÚ€Æ* € € € €@¤ÎDJ’í € € € €mHšnM?òpxX.phd®}!}KUð ,E@@< ÐrÆ#Ù@`)U Á³ @@ð,@pÆ3@@@@È œ‰¼)[D$¨˜mk™¾•nMIp¸©" € €Q 8U^6މ*ÐÔµyÈ®”êÆD­"õB@@Hš;È“Ý €@+•—õ—úâ®­äI©nœÇ·IÚ¾ºVó’@@ˆg‚3ñ|ô(;q&Psr/©>£·çR7öÊîÿ½^bqÐÝúâ,[Ô½µžëCF@@@ ˜Á™`*,C¨ÔMîn·›ýæÉXYrå×”ú]¥ò²’{ÿæy;ãE§[-{:CŸ}"€ € XgëxRbZ nr¾-_– δÔèv÷)»u¤hk›ôÏ*$kѾ˜®…C@@Ú*À€Àm•c=KÀi5£³µ˜Ñ §o­–œ'¶Ù}T\7ÈŒSÓ<;RX;Rf§,©%tiŠ1›E@@ ©Î$Õᦲtž@í”æV3™‹J=B[Ëh(Må7“¦®iž×fƦœæF‡iûEs7l@@’D€àL’hª‰@g ÔMjo&cù°Š¢­g´µMCA†¼ahXë’@@ˆ‚3ñp”(#q. ]št]¯]š«ÛýÎæ›Γªóú¾ÜáÏÌ,RšR÷Ñ­©ÃñÙ! € € (@p&*UB ÖÚҥɿ:•v·{6ØEUç÷güÿ<ùX§øÖ”¶·®#w˾@@@ AÎ$è¥ZÄ’€Ó¥©Ëºò6K×u.7;­WÚ¼AVD@@bD€àLŒŠ@¢ hW$íÒ¤3é LíI:8pÆŠv{å7í´‚ ›[ΤT7´§:¬‹ € €X‚3¼@ ªN«™ÌeÙOÞý›íØ5ÙCzJÞïfJÞí§Jã¹"²m¯iì•i³¶7ØäuäC@@Ähž6±ëHí@ ê&;Shï‹H)tü™¬·öÈ”ïN•;_)•uò£â‡eeÅ’z°}S[wù¬BÚÓõ*"d# € € tg’îSa:N ¾8ÛN‰.Mþ¥ÎÎÊ–)y#äÄÜvñ#=ŠeÉŒÿ,m~Üý¿×· iÊnnt˜RYßæý°" € € àœq$ø‹¨=¹—Ýf¤º49¬ÛqPÖ”lƒÅÕ²ÿP¥l<¸S²–Hêþ¶·œ©˜mfÊ—ÊKûKþÏÖ9» ú·~`W»œnMAyXˆ € €a œ Œì à] Ò]šœ=wù¤\Ö¾µTŽÛ}£4Iƒ”¯Ü!¹mq^nÓߦ®i²ÿ'Ù¢—TÊZ™nXm* +!€ € €@R œIªÃMeè8§K“Ž&u÷¯•Ú¼ÏDê%¥¶±ÝÓrv}q—T˜iº«ÏëëœÑ  @@ˆ¤Á™Hj²-+ЧO7ùã™gJ¿†4ÙÞ¥QþíÍ7eÛöè$™€Ó¥)ceôŽ}JydÇ|ÑÖ25gJ}qW©2š®/î<ê¨9]štð` € €  ‚3‘PL²mLß_¦önK$XÕ¿2dŒœ4ò‘óΓ¡ È_ÒRå…ÍŸËÖ²ç×n”;ËÃZ‡Ì'phT®Ýyæòèg¢Q»œ'¶KÙ-#¤Úi²Í¬PÚ¢†„ € €DS€àL4upÛ_6BîO$Rã^¹-5f&›sÏmÎpöÙÒgÙBùº"IogÏ“ïŒ.›‡l•—¯wß9¯Ä„@C¯ ;v‹62V”ÅD™¼B§ÒÖV1\ÒÖ39Olóº*ù@@@6 œi[r®4bhAs`ÆTÿ79ûå`Cð™qÎÊì%_zIäüóELË™]Yr_Æžv¡ï’#•çØýÿzNžüêõåíÚ+GW nJ¾ÝA4»4E³9o•?cZÏIÖ›{$m_ow‡F6·Ò  @@ˆ„Á™H(&Á6úöÍ“—M1ñ ÌÜñú2×Z?Ûg“üáÌðñ"ÙfšËÜôÖ²}{û[O,8ÜjçæÊž2cÎt¹xñR©(¯u-/tž@í´žvçñÖ¥ÉÓŒ3ï“Úi½¤ê‚¾’÷×ÍÎKüE@@".@p&⤉·ÁܼL¹ÂdéY™*OçUʯºf´ö»v” ~:âÚiÚÐýòèÐñr\e†,;îd9wó*Y¿¡$âûbƒmˆç.MþµîúüN©›”o4Y‹J…–2þ:sE|M¡ \g›êúâNûRŵf–2 € € „s&+;KfÍœ-C‡1c¡ì’W_] ••tGhí½ä?3Óu›cv\—w–m–s†VÊücm׫UÃ¦Š k­v±õúêîõ2 ½§dû{¶`}ÞzK~žZ)'õtDùMÓ­ëñ»cnZq§uI† Ìh`#’vmª>½P 2¥æä^vŠm­Wú>GáøR@@bA á[ÎÌ»|ž 6L^yå©©©‘o¸)Ücº ¾™™L)uf&ˆ7–“ŽCs‘™¹I+ŽÇT›bJÑåHÑSR$Õü •Î8˜e§ÿlæ,¹mΔ˜i1T7¹¹KVÆ ÷ÀR¨zÅêk¹Ol³E«¼¬¿¯ˆ‰|òUˆ € € Ði Ýr&'7G&Mš$·Üz«ÔšÀÌ–Í›eΜ9R<`€lÝÖ|³Õiò1ºãpgfŠ•jè84ßzõ}ùV¬(Ìr<{M‘L»÷’–ÖEJön“ÿ\±T–~¼5èVôÍ?PnÈë+ÇšY«n>ÔSn6-†þwR¥<¹g§üsÙ¦ ëE{aS×4©›œow“]šü½4ØÔå³ _«ÿ×xŒ € €´W ¡[Îɾ’˜Q¨†ÆF)ÝW*…½‹Úë–°ëÇÒÌL ‹¤b—?þŒ|÷£äWŸ¼.—,yÕ50£«j J[3õúB™¶c¥ü%ï Ý¢ÜütöpyÿŒ™v«Ž ¹öp`&‘º4ù*gì]ÆLMþ2!Þ·¼„ € € €q*Ð-gô˜ÜÿÀýfúì䜳ϖ̬,™?~œ*Š € € €‰(ðÁ™7Ê­·Ý&…²gÏÛ½)$uB@@@øH)š8ÂŒt:ÕWTKjZB÷€ À« € € € €@˜ ’ž›ÝêZD\Z%" € € € =‚3ѳeË € € € €@«gZ%" € € € =´œ>½~ÚÚæëê%%5¥µl1÷úåóæÉýûåàÁƒ¾²egw•o}óÿÊ|à[ìA`¾ÊÜ æÊ¤I“ZüKMO•;w¶ØDVv–œyæ™3gŽèz›7o’C‡Ù<ýû÷—3N?]fÍš-]»v•]»wKC}}‹õ;ëÉСCeö¬YòɧŸ¶(‚Ûò™Ì“À|'‚œqÆ-¼ÔoïÞ=R^^ÞbõŠeî…så´SO“®ÙÙ²o_‰ÔÕÕµÈ3aÂ9묳äã?n±¼3Ÿèôì}ûö•mÛ¶µ(F°÷^‹ ‡Ÿ®ÞyçÉI'žt”ÙêÕ«¤©)øðPÁ\N9å;CÙèÑ£¥´´´Å9¬¹,˜MàùæVžÀ|]ºdÈUW^y”W?sž­_¿¾Åf å’‹/i‘wËÖ-R]]-ݺu“Ó̱<ÛÌêVPPhÞ¥vy‹ tÒ“À:;Å<ßœåƒåóZßœœ®2wî\9ÓœÇEƯÌ|–VTTØ]x9gËÒQσÕY÷x¾¹•'X>¯ŸÝcÇŒ‘óÎ?_¦?Urrsd×®]ÒÐÐ`w¥ç¥žãÇsŒùN¨·ƒÔ»•¡£—«³–!Øù¬lÁò7N¾rÖWä¸ãŽ“”””£¾+í\yå2eòß¹yèPùžØ+¡ÎYgÝÎü÷Y8ï·Ï·åi¥ûv+—›c`yƒåëÙ³—\tÑ×d挙ÒÇ|oÙ¼Eê뛯·ü×wû,kËw®ÿv£ý8XuŸnçk`y‚å ç=¦Û ¼ÆÈÈè"çŸw¾œa®s‹ êÚs­} p×ö<Øg‘Æm¹SÐPßi^¯©Üò…º/pößYÝÎK·åþåœ2eŠýNÓÏx1—¨%%%ÒØØ(áÖ7Øû4/7WÎ2÷QçžûUÑkÙíÛ·KUU•ÿî;íq[ÏK·Ï!­Hï¢"{ ªŸeùÝ»ËÆM­i`%C]c¸ÀmtÆó`ÇXËÑžóRßçœ{ŽÜñ¢ã¹ìÚ½+dÕ?˺té"S§ž _=÷\6t˜}8½Ï2½K5ŸŸ­¥„l93~üx™g3§ž|йȲééérò´“å×_/cÆŒuuqËWVV&«Ì ²óoÍš52Ú\„×TUµ­y—Ï“áÆÉ+¯¼"555f*ï›|e¸ñÆdë¶­òÒË/ɸ±æÂÕ|ðtvÊÏÏ—Ù³gËUW]%Š‹}Åq[îËpø[¾;wø¼Ômó–ÍÖ¬¢²²Å&²³²åÛÿv“,;(Ï>÷œôíßO®»î_ZäÑ›ÉË.½LúôîÓbyg=)6NçœsŽ\8÷BÑ‹C'{ï9¯ùÿu[ÿsPpÞcú·®®Vzõê%.™`.zqpº ¾·h‘|òÉ'¢ï9=F‚Ù¸oeuËרØÐÂKÍÔ+==-p2À\DêçÁGË–ùþUU7ÑÏ»lž¹‘ΕgŸ}VôÂóºk¯=jýŽ^àVg·ó-°|¡òy­ïÿý?ß´ïç_xA˜ÏÀ[n¹U232ÄË9XžŽxîVg·ó-°LnùôXxùì.êÝ[®ºúÙ°aƒ,xmLœ8I¦ŸvšÝdfÍœ-ÿøûß僥È¥—\,£FŽ ,B‡?w«s°ó5XáÜòéMÛe—^*K—.1ŸEïÉç_ zQ˜rsre䈑¾sRÏOýÑBS¨s6p;ù·ûÿ2tôc·óÒmy`ùFeðúÔü ûÆoÈi3O3?Èžn³y­¯ÛûTƒùW]}µäåu“¿=þ¸è ó%—\X„ÞÞóÒís(33S¾ùÍoJjJª¼ðâ‹2|øpûXÁPסŽGàv:ò¹Û1nïy©××\s­lÞ´Yþn®«æÎ½Àüð5ÞµjÁ>ËN=õT™2åXyÙܯoÜ´Áܯß`TsÝH½Á™þýúK]m­ÔÔ œ¤wI7-úÈþ¥GÑêÁ¼øðIï–Oƒ3Ë—/÷ýëÑ#_Þ{ï]_+“³æœ%'Ÿ|²=¨Ú:äÞ?ß':÷« ˜€Çû낾A5²üÑGËdË–-²lù2ÓÚdØQåéèyyyÒÃܼïÛ·¯Å®Ý–k&§¾úØ-Ÿ¶&ñ7Ó`ÖÜ/j©éºë®“!ƒ‡È!ƒeמÝòœ Ìl3«—_~YFš›½hwÒ׿þuãýžá3€1 ‹ Í j–ìÛßòýì½çש¯>w[ù’sÌ>ýt 2DîûËŸm«™ž={È ÿzƒhk's™qÚ ùß§ž’Õ«WÛmíÚµÛ|øLqVé´¿ÁlÜÎ7-¤}Ýòi‹ÇKÿî7-å™–hüÔän˜–Ÿ}þ¹¬Y³Ú÷¯¦ºÆ~Ž3Z›`Öö;dášoƒZ8ÛuðÿÜêìv¾Ö×-Ÿ~ù‡ª¯snkfðàÁæœ}Ð~–-\¸ÐPÈØ±c=³ÌewçVg·óMWrê«ÝòµöÙíœÛƒÛÏõ·ß~Û~Æ/7ŸñcF7$Ž;ö8y÷½…ö;cÍÚ5&ßr™lZ‹tvr«s°óÕ)«S_}î–oŒyŸl0ßzÎ}öÙg²þ‹Ïe¨ùÑB“ÿy©­côQÿóÒù.r;gíF:ñmyŸù›¹™‡zxùËB}çÚtÒÿÜëüÚÿ¾ú¸½ï1§ÚÁ®1úõé+O>ù¤|ñÅòÁ‡Hý¡z).è¬ÒiÝ>‹Ü–ûŸSC†¸_‡†º¦òŸºåÓ”n÷†evìv^º-ײú×wŒiµ°øýÅæšiaó5Â; eò¤)!ïƒt^¾s™k°‚‚yìo™—;ì¹ýüCWïÔÔ–óÒ©o¨Ï¡1æþ¨Ê´â~ò©'í}Ð[K¦4Í×kÅù, uáv<:ÌìÜí³Èí¼Ôò:õ2Äý¼œ6mš¼¿ä}yçwìûoéÊ)¦†&ÿsÛ.0ÿ öY¦×³ÚC¿?>0ëW™ýû pVé´¿é¶ç(îøµ×_³[Ÿh‚$NÒ›°§Ÿyƶr8éÄiÎbû·©©Ñ×µ(T>g¥>æý5ô?ÿóçÎ"©o8dš®7JQA‘ì3ÍújM‹M ¦y_©é"QØ»HV._i»ê\j~Mܺe«œn"Ìíëì¤oJýw¢éNsâ‰S}Åq[®œúêãPùôuM't¢ L5Ù‹ôæ%fæ ½Ñü·Á4Ý»ï¾?;‹mÄx§išVQÙÜ}B›Âi׀ͦ{Ø1ãñåëÌË—™@ùwUלÅöÞs28õÕçnë;yõï%_la/?ØÜ-OÏòk®ÌEm(,,°¿f9ÛÒîEæ"¶³S0›Pç›}Cåsê¥Íµ‹Ó=(MÍA<ÿs»Ð|ÑwËíf›?j7Cýò[µj•i•Ôhn”?’KMˬ%K—Ú&Ž+V.7ÝNZv«söÓQÝêê|ó¯¯[¾ÖêëœÛõ&ðõÓŸýÌçÐÝ4³íiZ%mظAjM—ÃPçlGîǭΡÎ7§¾º-·|úËŒv³tûìvÎí?üHôŸ^Œ÷ï×϶`s.(õ×Hÿ.¬™æWþÞ}zV¡ÃŸ»Õ9ØùêΩ¯>w˧ç–vá=ýôÙ6:nÜx¹çîùvþïÓ‚Â^’“—+ßùÎwlÀ[ƒVo½ù–=/ÝÎY§õ·Mï³ÃßwZf7óPï/Ÿ‡nŸåäì×­\nŽºžÿ{Ä-_ZjªmÊîüh“nZ=ê²>&xPþÅzß5F¨Ï2§Œú7ð;×ÿµŽ~ìVg·÷Ž–Ïÿ¼tËçõ=¦Û v¡Ëo¿ãý#ýúõµ¿:ëãMæú¬³“Ûg‘ÛrÿsÊí:´²ª2ä5•ó> uíê¾@[uVr;/Ý–k9úêã¿›!ü¯“´µÇ—¾ y¤õõò«yí¢xöÙçȈÃeíšµæF|±î¶SS›ÎËÃ÷‡¡>‡N˜z¢l÷{/”ìÝ'999æ_®T˜a œs;Ô5†ÛñèT0³s·Ï"·óRËëÔ×í¼ÔûCýagé’¥¾ê•˜{c;Ö>÷?·uÛgÙG}dº^Ÿe»â ´æ&ÓòùKß6;ëABgÂÅ\»v­è?¯IûÐëw]Ý‘~Ío½Õd9Ö4ª©©m±©ýöÛ®M)ÍÁ‰ÍI8rÄ(ÓZ¥‡ý¥¿Eæ8yâÔ×Kqõ—úsÎ9WîýÓŸZdø‘‡}ÏõË@ÓñÇgšû_*O<ù”}®MøN6ÝÓ~ýëÿ6f#ì²xýŸ}[«ƒÖ[›(jsN'i«ûî»Ï>usÉ5­ ´eMMÍ‘VcûM_p½É‰·ä__/e?á„lwýBw’ÿ¹­cÉT™.uÏ<ûŒý²¿Þ4‡ÿÝï~g» |¶îsÓ„ö*Û ¬_ß~òÊ« œMÄÕ_ÿú†*x¨úúŸÛ¥¥Í­é´åÈõÿò/¦uÑbÓò­9XèvΆÚo,¾æ__·òµöÙxn9Z.»ìRI3™Ý‡»èhKɳÌwÇ6ÓJD‰“§L’ý¥ÑëÛìV—H,¬o°m–—”=æbI»Xj?ëZó™TcZ´jòŸê¯£ÚåÙWž3]躛¾ßçÙñi^ýu;þ“Û9lŸ±¼Ì‹Y¨÷H¸Ÿ‡±lá¥lþï·üú£M¥¹HŸcÆ>ÑVjú^Ó”™•iÿú›‡ú,ÓÌÁ¾síFâèþõu+¶×÷˜Û5†ÿvç]þuÛúyÅÇ+$=5MÌñ”üÏ)2ØwZk×TÎû4Ït½w»öêÙ³§ë}Avßÿá÷í—€öO½èk_ +0ä¿ÝxyNäÿé jxqKóçÿÞ÷žÑæØC‡ ³•î/Ý/W›¾Í¿úï_Ù_j´5ÃþýG²hÑ{¾.xnÛŒÇå§¾:°ùéfL*ív¸øý÷}Uv;g}èA¸ŸÝz´|År™9s¦ü‹ jÝvÛmvl¤&Àüo\oè.—%ï/1=H©eU.8®ˆü·¿ùiÙdÇ4Ó–4þg]ãÕW_“×^{ÝwnæåæÉ 'L θ³̘>‰˜t̬dzDâ>ö·¿Ù/§Í˜nι•&@¿Svï þ}çöY¦åhí;7e…mx}¹]cø_{ýú7¿¶[üà?°]0Þþç;±PÅ6—!ØwZ¦é¾®©µk*g‹`ùBÝ´¹°1²¢žþÕŒÓQf~<¼ýŽÛí5“¶Þv»òZìÔ´4Я•G}Ô¶¢üÜÜ4ÿä'ÿ!?‘áz]ìuÛ/ØçP‰ú›u1Cqho Ô&X v¡÷DÁŽG°õãiY°óRËèP­=/ºdffÉÞ={§¾¿¡>Ët̲7^ö¤×ûËüð‡2ÑL>óѲ|ëwƃÎuF­Û±OíõÉ'Ÿú"ì›Ò™qòÍx4ÎìVÚÔ±G²s×NÑ&SëÖ}æ[WÇÈ(*êmg0ÜN"=× Ô‡}èZ%m†¬¿Êk3µ_üâ¾ÀŒ® £oŸtÒIrÅWÈÌ3Ì`¯öqªY'Q“~M5ÝË>øÐÝÌÍåézQešáê ¸NÒë;v:Oò¯ŽœŸkÆøÌœ_Á’¶ÞÒ¾¥iæ ßI:®E¥iISlÆ ÑÖmN‹›Ý»vÛYe ädM¨¿áÔWgioÆäúÅýW‹ÀL¨s6¡°WÆëg·vá™:µ¹k¨^(}hfÔYù²Í tÝÌÀ†/½ô²üà?”Ûo¿Ý4ín07‘¡gˆgËæüYµêcÛµW»®47΃9ªJöÜ5-þœTbÏË ÛÊíœuò&Úßd{´÷øi 4mòǯ~eÏ«çŸ{^z˜±Ùö™Ã“Ûg™æóò¸½x}îõ=æv‘k‚§ßþ·oû®quöírÒËÜÇsrûNÓ! ¼\S…Êê¾ žÍôÇê›nºIÞþû?dþÝwû~ÌŠD}˜k²}¦å®vÃÖ¤ï³Ô”4É2?6ÆsrûÒëÑ^~“‹ô4­Bö˜±8uh ÿêÃíxø¯oÝÎK­Ç>s¿]PÐÓW%½×Ñ{íÀäöY–c†¥(,,’+WØU´»þÚ5kdðàοöOÜ;ÜÀ£â¹Nl‰`«Œ=Ê´tYsÔKz©ÓðéÀ†eÊdªùåO“ösÓfW••öל‘£Fú«ÓV4_~ù¥™²·yƘ£6à œú¶VD½èÑ~¨:»U`šlÆÒfd:pdióœ™m!55ÅŽú¯3æh`ë7¿ý½‘Ñ›ýÅUg€ÒÇÎÔ´ÛŒåçN}[+£’¬_D:šÒÙŽ;îxÛ§>”‹Žõ0Í´4 :DF›îQ:u¼%ÿú¶VöÑ£F‹Îà|‘;ùs[—ë—â,ÓD“¯tJ½•+WÚ錵5É3ø²&íf¡A@Ä4Þ’SßPåÞc~UU_çÜÖ_ ¿b¦ä±Gìg”ž“úO¿,C³¡ö‹¯9õ U6ý%>Ôg·snï+Ùg?óÕW?¿N0šuëÖÙóY¿®ºêJ»½ˆÒ©W®\j·1ûšSßPÜcºsM?ÉváR ý¾[mZ†hòŸê@ˆ:V”&~Uƒñ+Ìyꜵ™ãì^ÌB½GÂù<Œ3š ÅõÍ`¦È­·}ßN¸ OuÖÉÕ«Öø¾óPŸeºžÛw®¾OÉ©o¨2{}¹]chwEý!ä$Ó=_Ïk_kܸ±²Ì̲oÉÿœ õêšÊÿ}ê–/Ô}A¼™ù×wÖ¬ÙòÅú/̯ø®ÛµkWkõõò«×s:Œß üñv€ùò íä_É©o¨Ï!Àcè°¡v:m½Îš3çLùÒŒïç$çÜuáv<œmÄÓ_§¾­—z¥÷™zÍ¥C`l8ÜëÂÿÜvû,Ó͘žSŽ=Ö~–i°”¹YµúèûÕŽ¶£[“׃¯7³Ÿ˜ƒPIûUêI¦£Ô¦Y³fÙ>n:ÛÐýfF"Žësc£'ãüù̓ .^¼Øt¥*ÿñ?‘òò Óí¤ÆLÿø|à¦ââ¹}CxðàÁRmF¿vfßðÏ«Ó1>òÈ#2xÐ`ÑÑÿûëßú¿,ÿaš0–î¦Óâ…8}âÔW§ •FŒ.›6n:*K¾i¥S<×Ì6Ôà×750ã³Ï>'ßýîwä?þs; áÓÏ<-úKF¼%¯õÕziW€¦I`ò?·_~åeÑéuFÈÐÎÎd‚©šžþ9ùÆõßêÚÉHï"/›Y?j¸ÍX~î__·rê8 ¡êëœÛPÕ.™?ùñOZlêÑG±Á«D9gúêg·[jí³Û9·×~²Vf™Ö3?ûÙÏͯˆûÍwÂyþ…æÏø¥,µ}èuàÛ¾}ûÚn;X·ýÇÚr§¾¡>Ëž{þy¹Ò´xÔÖuµu¶5Ú3õ®&ÿ÷é?ßù§Œ»aœüøG?’îæk§™1Íiiêœ5“ÖÊãÅ,Ô{$œÏÃÖʯû¿GÜÊ«ƒ‘¾þÆë¦›æ5¾€Ìïïú½/»c®]NÜ>Ë´«¦Ûw®oCqòÀ©o¨ó2ï1írx¥ 4kð>ÍŒ5£¿<ëì¤ñ–üÏ) й}§…º¦òŸ†Êçv_ofþõÕû™af>©ÖI:ÖÇ¿ÿèß]ïƒ4Ÿ—ï\ÝÎ3O?-·Ü|‹½·êÚ5»Å$Îþâá¯SßP×Tú9ô¼¹v¿íûß7÷†µæú¡\~÷?ÿ㫞sn‡ºÆu<|Š“N}CÝêg™¶®ýÅ/þËÓmëÜ÷Òð?·CÝ/=bÆ>½à‚¹2ÝôðHKK·ÃŒèÌ’RŠ&Žhj­õÕ’šF#›Öœü_×§þJíÌã¼®Ñ9ù$‘NÝø;ú ‡*æ?puì”®óJ¢cU˜1?üÓÒ诀úÚÞ½GŸ³WÚèí9Ùê I/ŸÝêªÍkëÍ”îeeeGíV_«¨(OšóRYO57pÎ`…G^ ß‰f.cvð¨,nçìQdA²½GÚ{Øô‡3ýå”k*ï’í}effš }OÙµs·/0æ}ïñ™Óë5•[¾P÷ñ)ºÔ‘¨¯þÀ­ç¶Ž›ØP_N‡Ö þªÖ7Ï´L õYÖÚ5Fð-'îR½vÐî_Úŵ­I[ÓëX€þ³µu[¡ÖÓ.Vé¹Ù¡²Ø×δJD@@@@ |¯ÁšÃ„oË € € € €@ÄÎDŒ’ !€ € € €á œ ߌ5@@@@ˆ œ‰%B@@@ 8¾k € € € € 81J6„ € € €„/@p&|3Ö@@@@"&@p&b”l@@@_€àLøf¬ € € €DL€àLÄ(Ù € € € ¾Á™ðÍX@@@ˆ˜Á™ˆQ²!@@@@ |‚3á›± € € € 1‚3£dC € € € €@øgÂ7c @@@@ bg"FɆ@@@@ð΄oÆ € € € €@ÄÎDŒ’ !€ € € €á œ ߌ5@@@@ˆ x ΤvI“¦¦¦ˆí” !€ € € €‰, q§xIé^2¥ffHcm4jð’< € € € €@R h`Fã)^’§àŒnH7˜šée“äA@@@ð*à©[“ב@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ <‚3áy‘@@@ˆ¨Á™ˆr²1@@@@ ]ú÷ «×¬–ÒÒÒ«ôÂ.´ûºø¢‹$=½Ãâ›V?v„ € €$«À´c¦´¨ú^3þÌÊ/?•Òò2ù`Ý*_`F3ešAƒÀM‹•Úð¤Sî,÷|©®®²ÅÍÌÈ’)S&ËôS§‹¶„8ÿüóeíÚµm¨ «¨À /ßòêê3xÑ!ùåí·Ûe–ù^‹‡y¹¹rîWϵEýàƒ¥ZäÍQ{÷HQa‘œ>ûtyíõ×:tÿì @@@ ãöšñeô_4S§g¶nÝ"••¾zmØð¥Lœ0AºwÏ—>}úHJjŠ4™1=4ËYg}EŠ °c¢lÚ¼IÞ~û3ÞÇ6ßúú`ʱSdæi3¥°¨HÊì—Ïׯ—uŸ~*k?ùÄ—ïÊ+¯œì\ù𣥢¢\¦N=Q ,;¶o—×^{M¶›¿þ)¯[7¹àüódÐÀÁÒ« —”ìÝ+6m’_|¡Eù/œ;Wzöê%ëÖ­3ݳvÉ´“¦ÉàÁCL>“åËWÈçŸæ¿YOeÕ¼ÖÝãÛwìð*µ‡›WiS¬Ï?_ßâµ.]ºÈ¹gŸc—©É²åËDƒ—^v™]öÖ›oIñÀb™4i’dee™ Ù'òÚ«¯JŸ¾½åŒ3Ï”AŃ¥tÿ>zA¶nm9þÊqÇ''t¢ôíÛO´ÛÚÆäÕ×^•ÊÊæ œî@÷?Û7&Ož$Úzjû¶í²þ‹ÏåãWu,lüþ7{ölÉÎîj¶W!kÖ6w-ŠDÙ½–IBçžóU9sΙò÷ü#.Çëñãä! € € €€ÐI±s³sìx3­ädeKZjd:$uJp&°‚õ¦/×þlpf÷®Ý¾ÀŒ\®¹úIO;RL½ÙŸ4iŠÜ{ï}Á†ÓOŸ-Îýšo³ÝòòL`c Ìž5[âqy÷ÝwíkcÇŽ•îÝò%§[Ž dæ"7A M}{÷‘ &8tÏ=wû¶©ûùö·o’n~#3kýwÌØqò»»~'{M°FÓè1cd€Y^`4}ûõ“.é]ìò>}zÛAùë_Lf¹]浬^ën7ÚÆÿ¥š¹Ø'Lœ`×ÞbfšºddÈ”ÉÍ͸òM°lèСv¹þoˆ 8õè‘/ãÇO0.yv¹ÖqĈò³ŸýÌ×µ(p|¡üü|2dˆŒ6þ÷Ì¿Ûëæþy×_½Œ?f¼oû£Fýwæsä·ÿó[Ù²¥¹L¾ ~&MžlŸ-[¶\LàIS$ÊîµLK—~ çœ}®def™.y£eÕªU¶ ü@@@ ~v•–ÈØAÃÌôØ­×A3;K›ã­ç#2!žÐû8êÕqæ&}üøñöß ÇŸ óæÍ“ÁƒÛ|‹ß_lÿfš–—\t‰ Ìì0­Aþü—?˃>(%%%’m^»êª«%Å4ÀröáÖï/Y,7ßr³Üqç²yóf»ma˜† &ë>ûT}ôyû·íËP¹ØìÏ Ø\tÑ×l`FGï½÷®Üõû»dÉ’%v` måqÁs7+’•+WÊ|ÓmKó:sO=ñD›×kY½Öý¨DxAÿýM«¿Ëo¼nAª·[?yÚɲsçùËý±-…t¡ÚhZ!iÒÎŒÓfØÇ«W¯²nÏ>÷ŒmYÒ¯O_9ï‚óìkƒòfþöøßä»ßû®üá°ÝÝ2L€è”SN±ù‚ý¯· i—"MnH·¥ìá”iß¾}R^qЖA{$@@@øX»i½,Z³\¯mýß»«?’/¶7ÇÚ[ó#MRÚ»¥0Ö¿æêkƒæ~´rYx¸•˸qc¥›éV¤é™gŸ‘OM%Mié©råWIÏ=M‹á²yËVß ¬ýûõ7ÁÁòÅ_ˆ¶VѱV4iÇ ”ès/äú“/à û9vʱ¦UL)((XÝ<óG}${üq]M>ûì3ÉÉéj[ŽL6]}ºwï.eeGÆj9hzø¡‡L§Ñ–·¸¸¹¥M/Ó¢FS†õÙ@6TY½Ö=°›’ÝIÿ÷ÏwÞ‘çM—%MÚålêÔ©öñc=fƒdkV¯–ÿùÍïl@+?¿yî÷©'NµÞ:-÷ƒ=lƒ-êÖ¿ß»þ¤‰“䉌ÇM÷²®v[ú¿ÃGȶ­ÛŒÙ'¦EÒ]Æ8GªIäËä÷À Ìè¢òŠàÓg·¥ìá–éàÁrÀë]ÔÛ¯t^ù±¼öÆk¢ÝÛÜ’v“rRyyðàL[Ên™œ}û—Ç)@@@ð*Ð)Á™Ûï¸Ý7 nff¦Ì˜1CÎ?ï|égÆkÑ ËÛo¿-Ù]³m´Å‹Žë៴k“¦†Ã]mžxêI3Q•h÷XÛåIƒ=£ÍØ%úo©¸õ!ÓšÅ?iPÀ?UVTøž¦šu3ýöØ2£¼üHÞÀrip¡µä¥¬áÔ½µýEêu§¿ÿVHÎö×»úµˆÉ6ƒ#9©¡¡Á¶¶i~žbƒX÷üá9ï¼ódôèÑ6@§žÚ:G»ºiW§E‹9«·ø«-¡œÔdZ)µ–œ²µVvmñN™}ûöбµBò: € € €@Ò tJpÆ_»¶¶VÞÿ}œÑåÚµH“3خވßñ«;lðžð?]GÌM²Î ôÔÿþ¯xv¹Ùcoò{ä÷°-2t6!m㤂ÃÝœçÃÍ€¶NÚWZjf:2“Ô¨‘#}]ª4ÏÈ‘GòîÞ³ÇYÍÓ_¯eõZwO;í LNÀF»Œ 4Èvûå/éº÷¬ì,9`Zæ<øàzøDǘ®lSM`FÇœ™eyv ÎèìONÒV83T9¯yýë”=Ü2õ1IkÒR$@@@Ú*ÐéÁ-xuõ‘']»6Eâ̤¯Ÿnõ}ñ¥—ô¡™.{†œ<ýTI1Í!tܘ~ýúÊ7ÿï·ìk÷?ð€|d¦„Ö®N:híµ×\'©)©¢c¾øg&NœhfØcƒ.:¸¯N­I[Éì5Á i7geŠéî¤]­tàÙ‘#G™YšgÒʞݻìz^ÿ§³úx)«×º;-ˆ¼î¿#òm5cÜñÒ¿okŒ?1ci—§Ë/»\››ÊM«¥ù¿Ÿo¦¡>WfÍœ%MòãÿXV~¼ÒþÓ61§œ|Šé^V`§$ÓÖ,©ÔМÔÇ 2,²ÒyÚ®¿á”Im:î‘&§›W»vÎÊ € € €I+Á·DoÒ5¢Ýœ4mÙ¼Etö¥“Nœ&gõ9ñÄ“ì81öõU¯²Ýd*+«¤ì  ¤˜)²¯»öZ™sæ²×t{>|¸Í§Ó6o=½ûølæ]>O†&¯¼òŠÔÔÔÈ7Üä{ € € € €@g $Tpæë_ÿº¼÷Þ{ÒdþÓ”“›#“&M’{ÿ|ŸlܸQ^]°@â:Ûý#€ € € €V a‚3Ó§O·Ý–6oÞä;´EE²¯¤DjM‹M Rº¯T {ùòð@@@èL„Îõî-'Ÿ|мüòË-,{öìiº2Õ¶X¶ÿÀ~ÉÌÈh±,Ø“ƒ[Ì2@@@@ ¢ 1 ðÕW]%ï¿¿Xúôé#…EE6øR\\,‡êë$''§XfF¦ìÝ[ÒbÙ©ÓOmñÜy²eófç!@@@@¨$Dp¦±¡QN:é$û/+3SºwÏ—+®¸B{ôQÉï‘/)©)ÒÔØ$)))Ò£GÙ¹kg Ìw¾Ûâ¹>q Ø•‘ € € € €@;"8ó›ßþÆG0jÔ(9ÿüóåÎ;ï´ËÊ”ÉԦʒ%KDÇ¥©®©–ÊŠJ_~ € € € €)Á™P€÷?p¿™>û9çì³%3+KæÏŸ*;¯!€ € € €*R4qDó¼Ó!v[_Q-©iñ;vpZZšÈž={l÷¦Uõ½¤Ýš‚uwòeà € € € B@‡aIÏÍ‘£ù¥„o9£ÕlhhÝ»v·ŠA@@@@ £â·9LGK±?@@@@ g¢€Ê&@@@@¯g¼J‘@@@ˆ‚Á™( ²I@@@@À«Á¯RäC@@@¢ @p& ¨l@@@ð*@pÆ«ù@@@@(œ‰*›D@@@¼ œñ*E>@@@@ g¢€Ê&@@@@¯g¼J‘@@@ˆ‚Á™( ²I@@@@À«Á¯RäC@@@¢ @p& ¨l@@@ð*@pÆ«ù@@@@(œ‰*›D@@@¼ œñ*E>@@@@ g¢€Ê&@@@@¯g¼J‘@@@ˆ‚Á™( ²I@@@@À«Á¯RäC@@@¢ @p& ¨l@@@ð*@pÆ«ù@@@@(œ‰*›D@@@¼ œñ*E>@@@@ g¢€Ê&@@@@¯g¼J‘@@@ˆ‚Á™( ²I@@@@À«Á¯RäC@@@¢ @p& ¨l@@@ð*@pÆ«ù@@@@(œ‰*›D@@@¼ œñ*E>@@@@ g¢€Ê&@@@@¯g¼J‘@@@ˆ‚Á™( ²I@@@@À«Á¯RäC@@@¢ @p& ¨l@@@ð*@pÆ«ù@@@@(œ‰*›D@@@¼ œñ*E>@@@@ g¢€Ê&@@@@¯g¼J‘@@@ˆ‚Á™( ²I@@@@À«Á¯RäC@@@¢ @p& ¨l@@@ð*@pÆ«ù@@@@(œ‰*›D@@@¼ ¤{Íëùf̘!ãÆ“òƒå²æ“5²|Ùr[ä¬ì,™5s¶ :DvíÚ%¯¾º@*+«b½:”@@@’D !ZÎL›6MN=åY´h‘,Yú¾\üµ‹dÈà!öλ|ž 6L^yå©©©‘o¸)I-ÕD@@@xHˆ–3ÅŠåÕ×^—•+WZóõ_|!£ÇŒ’=%{dÒ¤IrË­·J­ ÌlÙ¼YæÌ™#ÅÈÖmÛâáøPF@@@Hp„Î<ùÔ“ö0õìÙC ,ãÇ—7ßxCŠ Šd_I‰ Ìh††ÆF)ÝW*…½‹Î$ø›ê!€ € € / œq°gΜ%Ó§O—½& SU]-ƒõ6]™j—íßýöKfFF‹e8Ɇ>Õ±cÇÒøñ㵌׬^Cßnø–š››)9%™fÍ<•@¥¥¥ôþû‹©¶¶.ôDŽ        à‚@ThÎ 6Œ.úÁE´yófúè£hÆÌ4{öiZu/™ 4ˆ-ZD tÃõ7ºÀ€C        Q!œ1|8­ør-]º”vïÞMK—,¥ÇŒ¥´ô43f =ùÔBíøû‹Sß‚¾Tзoxh#Wp"fMŸ|ö›05Ù«6xð`Ú¹k'uÏëNåeeÔÈ3ZÛÚ¨¢¼‚ò{t§’}ûìññ@@@@@@@ÂE *4gª¥†úŠ‹£ .¸@Ó–Y²äsêÖ­›25:°­êê©¶¦6(‘$€€€€€€€xO *4gHƒx¹ì©S§Ú T²yÓwÞAO?ó4/Ÿ}==g%%'Ó‚ ìqð@@@@@@@ÂM ¦ûè!íž ÑRSO±q‘«dGyìæÐ¡Cšy“§úÊy1kreîdæZĶÖ6ŠOOñ"*4g<Õ²µµ•–ô çA@@@@@@@ ä"W&ä¨!€€€€€€€ž„3gŠA@@@@@@@À4gL£BD<gÏ)‚€€€€€€€€iΘF…ˆ        x]bµ¦ÀcCŠ  …¹‰Ô7/‘ö•5QqySH2UB™©q´±¤žªêZC’'2®Lš3]ùî£î –'p˽èí[†’lC\ÙOËsΉ١Êù€€€€€@—&áL—¾ý¨<€€Õ °æŒµ EyG¦†<ÏPÔ y€€€€€€U @8cÕ;ƒr€˜2,Cã ¶Á†"&M*Lž®~b      DÎ.’è%’Žó¾?i][ÈþmT(ÈMR?±"g‚Iƒ€€?ô‚IÇyߟ´®U`3i’ó:AQ|ðŸ„3þ3D  zA‰d༌L óiÎHúS‡Û̪‚‘Ò°€pO€X”À¨B›ÿ—WV”k% …åxøhÇÚY)xMXôñ@±@@@@¢ˆFÝQt3Qè" 4e–o©Ñ* 0ÊñðËËm!U†è"‹Ú€€€€€€µ@8c­ûÒ€€€€òùòR‡ Dö³Rãìçý£°cÙnÑšY¾µZK^iï:/¤     pŒ„3ÇXà€X†€òõ²¢CH¢¶£ 9ì ta òm«3•ÔQU}›–¼2s t^H@@@@@àgޱÀ/° µlvIy“V&µUǃQЩCÓµd‹Šëiù¥94gÉi€€€€€3gœ‰`@ÂL@¿j’¾(ÊÌH™éÏùû[­¥V…’ôT~X±É_º¸@@@@Ü€pÆ=œP«&)³"Uµ 3#eÒ¤´e$OµbS0M©Tݰ®L™®|÷QwKPš1zA‰Tí«ó,¼2•R«C©´Å´J‚:¯Žc      8ÎŽ%R€PfD:œ«DÕ¾:¯Žb«>ju(•fQ‰Í!±2µRDZgÇ)€@@(ÿ/jIk•¨ÚWçÕñ@l r“´dJ7:$WTl[Â[™Z9œÄ€€€€€@@@8ŒH@C`êð -¡+Ωªã*žóy_÷ òl+2)'À*µ›lA@@@@ ð œ P¾]ŠËš\¦¡´gT<—‘¼<¨=ú•šT*¿`˜R©<°®N™®þ þ –" „ Êe. ü@IDATœÈ¹pÊa¯Z]Éù¼/ûJÐSÕáüWŸFQ‡ß›@æ§O¿A@@@@ˆ œÁS "0uxºVgǼªˆê¸r૎û³u'¬Ø”™OY©qþdƒkA@@@@ @8c‡A@ ”†Š³c^Uu\ÅSÇýÙ*Z™É9-u<ŽˆóÂ>€€€€tEÎtÅ»Ž:ƒX’€h¦ˆ†Šhª(G¼Î•ãJ“E™#9Çñv_­Ôdä禄ó”H·eD|ˆfÎDóÝEÝ@"Š€ÒLQš*F…Wç òmË_Å3{\­Ô¤œÿ:_§üÜJäœ>öA@@@@ «€p¦«?¨?€€eLjó7cä XTWñÕq_¶JF-Ñí*`ø¹q•Ž€€€€@W%áLW½ó¨7€€åæ'je22iRV.*¾:î˶0¯#Oƒ¥»%Í`ø¹ñ¥¬¸@@@@¢•„3ÑzgQ/ˆ#0²oŠVf%|1ª€Þ¨øFñÌUj˳¸Þ0ºÊOüá €€€€€ž„3gŠA@À'ÊçÌò-Õn¯WçU|·‘=œTKr+§¿FÑWlµ•iêð £(8     à#g|‡Ë@@ ”ï—}e¦’U>bÔu¦.r© ל)•ÞÀ)° ˆ8    ~€pÆO€¸@A@ù~ÙPbl^¤ÏG-{}|¡Í,IΛßJûFiã]«VlR£x8     à=g¼g†+@@ àÌø~ÑgªVlòGX¢´nÌhë¨å»§·­(¥/ ~ƒ€€€€øGÂÿøáj%ôPBO‰ªxê:Oñ]ÏJ³9øU]ÅQÇ”¦NAn’:„-€€€€€@€@8 H@ü! „J#ÆSZ*žºÎS|Wç§µiÁ,ßRãê´Ã1µ‚TAÇÒÛ'±     àgü‡‹A@ÀY©q¤„f´X$GO®“ë} …ù6gÀÊÙ¯§4”b¬Øä‰΃€€€€€w œñŽbƒ€@À (§¼j¹j³¨øêz³×©xÊ_ô¨ãF[eÚ”•‚W‡#_`„í 5\ $ óšÕ`QY+Ó&u½:nv;eX†µ¨¸ÎÔ%Çòóo…(S™!€€€€t!Ît¡›ª‚X“@a®Í¼hC±¹e´U-”ÆËñ…)êé­Êóh]+UñŸ™ œò!?3é#€€€€tUÎtÕ;zƒX†€v(§»f ¦â+ó$³×I¼‚|ÛªKJàbæÚªú6-š/ù™Iq@@@@@ «€p¦«ÞyÔ@À2¼5/RWæHêzuÜÌV­Ô¤L•Ì\³|KµÍW7fò@芢J8“’’J7ÞpƒÃ}LNI¦9sΦøø…^Hiið•à; a% Ì‹ö•5š6/Rs$¹N‚·~gÔ OÊ4J¥éiëk~žÒÅyèÊ¢B8OS§L¥k®¾šFŒ8Îá~^2ÿ*lAÂK@i¼l(®ó© ÅeMÚu*3‰(‡¾+¶Úüš¹FÅQfMX±IÁ@@@@ü'`›:õ?K¦ÐÔÜÄ€ÓÊ–”˜D‡—9›6}šÃ>v@@ T :|ÅxëûE•O]§ÒQÇÝm•I“Ò‚q×ùœZ±É—¢œÓÂ>€€€€€€@T g***(;'›bbc¨½­bbb(''‡”p¸ÿË–.sØ—l:!Á˜:êê©¶¦Ö=œPB¥ýâk–JFiÄxJGù§Y¾Í7'ÄÊÏMA~’§¬p@@@@@À¨Öœ‘ú?ýÌÓ¼|öõtöœ9””œL ,0Q@@ ø”0ÅW UBu½ö¨ãFÛ‚\›P¥ä°£O.£øÎÇ‹Šëmš:CÓMiê8_}GQ%œ©¨(§Ÿ]ÿ3‡ÊÚ·Üz+ååçÑ¡C‡4ó&‡Ø0ðWƒE[4`n敞:n´Uþi|5IR×aÅ&#Â8    Þˆ*áŒQÕ[[[é`éA£Ó8 ¦ Ì›’K}z%SlK›ékŒ"*Í™"WjRéªëUz긫­òsãËJM*=e†…›lA@@@@À?]B8ã"\  6ç^^H ¦çǾ²Fªb»þ¹Þæ¤7žÖ=4Šn|f¯¡¹‘2}ò'Oo„AþÔ ×‚€€€€@W!áLW¹Ó¨'€€ß柔­¥ñwþ·¸ª™²W”SlS»_é>ùñ!¿®WŸÿð6zî†T—DoÝ<„^^^Nw¾¼¯“àGi»ˆß_ƒìd¦ÆS¯Ú¤ö}M×€€€€@W'áLWPSz N£Ù,Œ¨dYÌo¿«§ò>)”œ™@éOï5u}°#‰©Ñ‰·n¤[ÎëE7Ÿß‹æMÍ¥9'fÑ/í§—Yˆ¤ÂÔáéÚOµâ’:îíV-ß=ª0ÕPKÇÛ4@@@@º*¨^J»«ÞT«Ô»[zœUŠ‚rD)¼DÊMŒù¦«úi_?Ü@­Oí¡6%j`H C¬~绥ˆDx"š- ¸Ü¢I£Ì™úå'jÅ-.kò«ØÞ.ßíWf¸@@@@¢œ@h¾j¢"ªçH`DŸdzüúI”—•HG›è¦¿­¤ <«$ðäõ£iܰžÓFK¿ùŽ~ùÏLÞ!­t}/?Y;öô›(žŸçŒ§÷ÐÑQk©Ä—ÔQâ×UׄsGVS:ÿáíšæÌ‚+û“8^ûð(*®É¦>ÝYs¦½•ò³vùÑ.½]¾;œ<7€€€€X„3V¿CÊ'¦Ìíí!–ùÓ1¼MÚ®:ó¸ˆyñ¬ã¨ß¨s‰úÎ¥Þ¥‹è?i ôâ'E.bÚmä•j[èÃÖ° QxBV÷9k¬ÍJ$U¯~7kꍭ™Î͹—^^²‡Vî¨ J5fžÝ“ºÅ­mj£í«*µœÆ&QFv/êÓMÌu‚#œùé¤nZÍžøªÂ¡†©lBÔÊfB¼¼vhÙ®™;9D óŽ8뽃OÕŸF;ÙVšì“(5%™z°Ïœ] >•°ä°í:ðÁ)°Oq€€€€Ø @8cGy?ÄÔB fîÚZãwZSc©© •J({¥M;À—D/œ‘Fv?cÐìŠ×Ò+Ÿp™”8'2,ƒæ³ïù€D1u‘ K9¿´ÜQèºRø–SŸn 4÷ôí”’½†¨µ…ZªöÒ–ï|KÌÃUC&äÐøÄXÍð»ÏwŠþÒ>jeE ;Æ šÌÇwuŠc…_l:D£GL”˜Kth •WÖÒ®C¾ f¤>b:õþ×G謳éþù}é†YÃ1²X£     à-g¼%f¡øCù£HÂÇõ­ô7^F×ßÐÎKâ–/MÔ3™ryy_qxêKxê“Côàu4°÷Úu Žîxv=•mq™Ôœ’,M83e˜m—‘p0(DãA‚˜§ˆÙH ß–,¡y3÷Ò …É”ØRI9Ar |åÜ^š§Ù¯Œ« í$cÁ.:ÂZHMÜ&ÅA°hÔX-Üýâ6ÊËL¢…_Ó¾Ê&úÓ7ø]Ä;Y0%™‹Ysèá·h¿E     Ð @8Á7}R‡pæ›ó«"™‰<.˜ü—¼üØò»Þ¤]YÛJ×=¾ÖÔ%âã(ç+ËñÊj22ÇÚ„3Š­å'ÅlíÿõÉ~’?µtôÍçö ø’ÎzGÀϾPbX´8~n3ŸØEU¼*’«‚ßðÿ2*-ÙJ{}…—éáÌ-ô‚öŒ~ƒ€€€€€°”¶°¬õø¶%q¿*:°¢©gšNôÓïŒ%zý-v$:¦õ¢š–‹:²¯M8é¾~žd-/ð‰™–2Õ låX´Óxp6œ°¥šÒ:Lóļ©¥C3)Pe±j:¢1#üE@hþV­3Ê    &áL ‰†0½1ì•ÃÖo·„okÎHí1s EX¼Î–ç¼)6§«¡Èy¦­$–³P!’ƒ8¼UfY ®èЪ(GÀ/®6çƒ)å‡(‰5IÚS㩚—ÙU h¥½LL´gžäzKí%ï @8ã=3K\¡œW¶“Ç}o ,¦M Î…Å´)ÁÙ´)yvõ<”†ÃF?*‘ÆG„âØ¸€d‹sé@OŽ€òÁñ̵•ËÒ ²åe•ãÁÔ^²JQ&g‚I7ˆi+gÀk|sÚë®hâwFL›ÜQŠìsvgÀ[ü_åË*$~§T+ÊÍì7Á“#`£ƒ{&SZ2†±f!ꙄgÌ,,ÄHJˆ!éËâãbB”#²±:¼Õ¬~‡ Ê76Ùæ¬7΀õY%u|X6Ž öŒ˜E¼ßaN¥ü¡è˃ß% B0 Ѥ9#õçÆ+¶VS&;ä½Î“"oKÞÎ!©c)úF^Ũ•—‰ï A´—”ïŸëfw “®®p_QÇàèžOoßu2ýã׳éßͤ»42x™EIÊc¤ÒòGgÑ»¿ŸMK:•fŽÌˆ’š¯ó¦õ¡7~;ƒÞ¼ç,úø™tB?Û x9"eO&M§eœªõe_ðvÂà4O—à| ßêuUìÅ· Xí XJL›jçõ¥¦1!\R›MAÎbSª³xoùÈCpM`,ô®ëXÇu ÷G•ðK„ÑD{ã­›3H´g^æçHVò&øêØ9Ñ@ÿMbØÈŽSÙì§+„ž)fþCØ´¬§Æ_¯ž‚h9]ܱZÛ++*ÈÌ5îҜDZy&5–ó=ZøñawÉYò\! ün>¿„XðWÅËÊ ¯H_åÍè¦Ê³x-÷±SyЊPŸN…#Æ ýg×F—$þŠ–|]LK6F_ÿ<‡ßís_˜•âßJÇ éG9N'*¼˜B«èß™±ôÍ–]ÔÖæß{™'¥^æÕö¬¤ûû,¦$ÅÒ¨¡)qä­Dé¨ÇöÇé¥[ZiûÿÞIÑÞXé9@Y¢@ll Ý}ù8pÒ|¢üÓ(¯t1½|k,}»mwH*[ÂcÔGØ?¢·cdçÂyÓ¯/ßVC ùûÅß1žs¢m™¼£ÃFÛ&Áp¬p(Ó¦–‚TÍ´I|h;ÈGÒ_©Ÿ& ‘2ogâøÃqtMdª¸¸/ »z]ç&Ž(gÀEAðWd"û G‘ÆWx€}1 ßrA/ºá_{½ÊÓWGÀ®2IfáPWÎ(í¥)ÃX@ÆÚKj™sW|ä˜ e tñ$áVþ¹ñé½$«¸yäÙ^pe?û2ñf®—üÅGίìƒ|°ýä´|MCÌLg ¥¿¾‰ïS4õÓÎÏb ¹¹L/ŽgJ“”éc,eçäÒ¸éQ%œAâïç÷%yn’X¸Óã[R9(5å?4y¨ÿÚ3rÿE¨/ýO¸µJþ,&3Ìh!u¯XGݹ¾þ¹§2 rçËû¢ª/ð— ®O²Sâixo6eeÁŒzΦŒ’·µ1‘§ku^+ÿàÉÒx|é×¥_“±‹¯cMÕç(¿u@Έ€F~›ð×°s9N ™Ó¹ áØ×k/É2Û®>à_ìâÌYâ‰PçÙi‚ùø7sïD˜{3kê\7»‡V]1­’2xº6+%–îg A1ómŸ'ÿwáë\•7󔬆¥Ì¥¿|2ÄZ?"‡ÛÒGŸüP:=ăºHÔ<Ò³•çç¯,ÔSÂyæzUÕû©Š¡ÏÄà÷$Öй颞”𶔍¾”bÒoX¨Ü??1*>xõ‚ģܾEXëï»ç—çÍÈzž¨û)De_ÒúUt÷sÛ ›;,ý‘hûIÛúìîaë äY¼û¤y,0– }Ù"øðóYüãµ948uQÞdj-y—Þùj?=û©ÍG›9Bc‰F˜¯JYå#ö[Nó¨s©qÂOàZPÈDTj<¿cvü•(w*÷eËÙ,¿’þ¯}™ÙÚÍgíbm“ßçóy¬|ã3{MOP©ò‹ ³ýºŒ·¤¿ðeŒg¶NÑ/¦ûè!íž*ÓRSO±q]Ë=Í´éÓhÙÒežÐ„åüK¦ÓX-ø‹KiÉëß­ -<?ƒ”˜ºʽñÛ å£OXf°e,—=¾KªKÿS¦yÀ&amSKŒ¥_0£|`´î¡Qš–ÂÌ»7û=H¶òMyüª~Ú‹Gfø/7ÉI`OOÏ£Ùtcþ ߤzõ|ïÄDPLœ2M–# ‡9‘·o¢½„E‹ÉY{ÉÕ‹]-Å-}€|œdòGŠù˜s7«#÷Í+°kވʬ\cVÀ"C¢á#‘ŽrgµYWÂ'1 —i‘|ÈÞÇš"H—PT\g m­0^þãü,ÊsèIÛËË,ÍHùÝÖÚFñé)‹ áŒ"+ g¶þs¬¦9qÂ[éÀŽZƒæpÅC#©mÖ#Û)_ºÁ28Ú±`´–Íà¿ Ø@.ØåfúâchÉo†i÷üQþÚ¸§N ¼v¤‰~úë"¯²ÖóÍ¿Ê7³(¯2 cd4Ê ¨¼.àç×Ì‡ì— O¤Áì1ÿÊ¥eôî³Å)};ç_ÞñLçÜRDb2Ø‚ð_ûð(­ªã¸Þ¢ÅböÅ.Ïéýüñ/³:ä#ÉyVGÒA®äˆ¥;xàëG« ÑÜ©f y}RhoQ5ù9{­UÆËôlr©ªB-<0*²ÆDóH ì”æQo6½íÆïåïz¯*m”W ;’}dºL*=£gÑ“&˜º>œ[i»ÎZlá$úÂBž é”ÀAü¿õòÄ›|ŸEéËndsÜH¸ßªžÒ,¸²¿ƒP=|KȽIáɰÕ;ƒ;ÖV£a{2 êšÛhÍ.0S÷ÓU¿(qb¾-cDY4"îP#kN_[S•I¿a‰~‚ÊyRÀUùýé×ÍŒñôåsþ}üÌ|ÊH§c8—Yö!œqEÅ‹cVÎȇú·· ÓœõÑ爴™ùOáÙÄ4îHBÔŒ»|uuÓ&1³yõ÷ÇÑx(aŒÛÍÚ/¼°È‡¬˜oÈàïü‡C£:ŠgÆ(õÂÁŒhÜ¥$޶ݶªyfQVmJåëÔ.âXXëµ—JX=_ov¤&îî‰<¯÷ÏëC#Ù÷•5«#3ÛÊçŠR©Uš7îÒ3sN¯¹óEl< JîMÉñ©t¤©šnza}µø ™düŽãJødÅ6déµ –%õ¡‰I›F»Y äŠ?,¡Òí5~óT®™fžÅ@åïM:‘öÁk+o?MóCê)‚D#³Fo8„+n°gxåY”¾LÚéËn|zOÈ4uÍÕ¹/p%TtžÁLïß¿šHFô¢ö˜Ú¼{?]òÐWÔÔžç`Ö3PiëŸFüdõêÞZ›kè©EÛé/ïl Tò›Žô‹FÚ½M£3©÷Õ“Ù¬5•jkjèÀS+)qÃѰÔÕhR`k݉/?1a’È~Ý[ÍÉÿ¶»O¡K‡çRLBí¯-§ŸüeíX{DNY>@8ãç-²ªpæ”ï÷¦ÿÎéP³ w¨”iSÏ\çÜê–†»tÝ“‘¨ýÁ´‰H9S¦ »‰jø>Høàïc4Ó¦3X`æÍÊMJX!3ZòAê ³µ<#ÙnbµŽ6-JaþhlÉ`qÝGQ&;ü«Oº 8ŽhÍܵµ†þöp`Í,d¨b¡X°Ú‘̼4ðjGíiñ”ôE¹ßÚ9õl-ŽŒÍ„ö¾/ÂÛþ°pò²WÚ3êœ//vyn¥_P¦N*-é#|5•g±žM™dë²ØŠ÷÷½’謩ßàk‰2'Úÿ&­)ý„*˽s0휶ì'Tµð_³«Söc2h‘ lb&`uAµÌ0_óóAtN?no'í­ \8Šïꃷ˜F¡û°Fà·±ÆW(C¯L” ŸÜñ7[¶VN·O¯d”`»OWòÊ)‡©ÊÅ·¿°HaAW(´.¥?l<™?|j[(™WÎó…¿³PýkîëjE+ Õ÷çÁ,×@Åë‘OGL¤ØQ÷hI¶o~vmúœJ+Ý÷ÛÊ?ÓT˜O=N'üSV¨§æµ7ÓæmÛ¨: §Vá'ý‡ò'¾ÌÄÄÛ®ÝË}fÎ}3èžS®£ù¹Shááé¡-¯PÉÖÝa-þìŒxz¡g2eó»D¤_ÿ5·ãÍ .:)}D~ÿ¿—ÿб(D%÷k;'%Ùƒñ1tv·¡”sÂD± ì¯ç úû7ŸÓïn_éC®¡¿Ä¬pÆ& }ù£Bå X/¾„ý ñ@°•Žjd?Øá}^Æ[³Éìp\ìü¬šþo¨9M1éP‚)ï’ÒÇŽ Oçro„3"—`9h{¡ù§Ž?„ë:fÍæ(YñÈ—Aº,JxPý,tYÈÎîú»Ë[X¿ù†N]¥/&ÕŽšx%¶%½Zö¹ÒÚñbÁŠhèˆ`ËÛ B¤Zv8ÛÂϖ٠׈VP:?£Î‚4QËÁ‚WŠx`â«Ù‘˜ñˆÖŒòm N2ýQ©õô,–qåïä¿9¬9£ fF· ”Yúdâ9’ènƒ¤ÁfžB$T¤Oywwͬê%dSnj’ÝôLÅ ÷¶Ó 9Ür“¿øhÑ4{ÖWٵȔpÉÍea9%îé¯ã¿ÿÊóݱp¯‘OàFîÛÒÙÉlR—·þâÿN⛡@'ÜóµnúëVóÎMü÷U ‰åÏEP,¤O—¾=XAÞÒ7¶wôq ì`=}îxû¾MÕ)\Îù¼ ßµËrÀRXè”É3ÔΡ„gÑ#Åç„zÓX˜º6­äN"J̤ªƒŸÓ-ÕÛiã¡Jû´ŒRB Üwæèj_>#5ˆÀ94óLçÑ9=ìBUió©ü\…:lâYÕêùLA~sÇ}¥/³B¿âŠ¿YÎÕ㲩^4YÃ(†g†S¸ïYkB_¯É(ýzÚ+û; ÂÍ–ÁU<™x«á‰ %”—~¼…ý¾ôëÒHZÒ×JÈc“Ƽmb[%2Žû‚ 6 M:lÓÖ"YðŸ^Ù tÿU“©Ûг¹t1Tµs1ÝÿŸ/i›‰q„«’"ÍKóΚDI}N#ªÝI{¶®¦_ü#24‚ Hæ;;B—q“´ëÞÙ=hjöH:Ÿ'Þ®XI+V¬ ê7ýc³.¡H{D~e&»ÖüŒã•/@CrÇ¥ö¡šÒÏé×ÿû‚ÞxÊæPÔÍ¬æ „3wê™P:VhÂiÚäj¥U®hÝê»3±9ü¯±‚lnfF  ê•ÊÙ²·¾j|a-üÕ©ÙR›Ök3%-AÿˆàI>¦¤Ž" òUsÇEÒ9$å’碡cyZ>eðjGΚ>Ι¥dÆÓÏnO#{§ÑêÝeô÷?š„:§¥ß—òÔ°yŸhIs7WšGúk¬úÛYz ›¹Ý0¤%°ÖÑë;öÒs¬!döY´j­\.é ”F¢´qÑ2mÃhÒ^¥ÝJ{‘ ý\05G‚ÅÌ•ðÃ[!¶·ýº™ºWg¡¼¾_ô¶_w÷^’÷L ßËHê ¦°pðÊÙƒÙçL ½ðÙZR¹B]3ÏC âÜ4§MÙ‹²)ÛóŸî¢ÕA^´$eeÒŽõÚÉ2FÍÿ.– ²©ag95¿^“¦P²ð5¯±,Ôºòœ”ͦ»l,¡çy?R„3~Þ)+ gBí XP­Ú”ÍË/›™‰×_ëËoå«B–Y¢e¼})g ¯™pfÊè–@?Ÿ–G“u€òðV‹j*¿Bå ØùƒMþ8Âu9H¯T›‹áUâØ¿ó S4?¼UÇ6b¨ãþ:võbÏàegÁ‹ ºëyyh,K‰ÄKØXM-Ò(†Æiv˜áÍ›´—J|nßJ{Â.ŒóBs'P|]¥#^žV ²ü}]åáë1í~²Ãcý µ«ûékúÁ¼Î›NèŸEo´à‚Y+¥Ý8>›b¶R;k7äÙÑk$ŠX:k­9÷fÒ²r›g™Y,A 2ãYØßÊ~bÙWKl…5ý€¸~øó^2ê×;çš±‰ -ây塿‘,Ä7!”—<&Y¸_wÖÜñæ½$}þ^úb6²ç•]n´ L£vf&¾Õ(‚|愌‘sFl’Ò4*“d\–°É\_æœD4î»ê ô‚Ðh¬3êÔ™„3™xuĊ™P;ÖS•òaªU›º’iÓíwϠˆçS|rUÔ¦uGwÓÿݱ٭FŒø¤yŒÍþÉj·ݶI»\þ¾…E²T^0SsÅör;6°Ç*¡q¹ÔÂÿj©¢Ým‡µz«o+~¤È ÖÇÀ¾¾Øµû1¿À®y4$®'õŠË¡ò¶j:ØRAeT§}Ìr¶]êèæŽË‡5ŸE>¥ÿk%L#œ«§>Xä>[QóH_^WÏ¢™NoµàôyFóïÖI”ÿóÉÔ§O_ªl©¡ú•%T¾p­a•…¿/Z`† FÈ M d‹ïIù1™TYÏ}ÙKëØÛKÕÄÙ˜/‰Fò¥-¥ž;„2ÏF¹ÉYô][%mo)Õ’7+”wÕ¯'ÿï°æTÝ[Dç÷’•ÌÖìÌÙª¢ÛÍS({X–gÅÑA^­©â¡åg¨ö<#ü‡˜¢÷¼nõéÞ‡ÊPõG»èè«#¼Vþ_?A$©I_àÏd¥ÿ%B á"`V8Ï>áªu”çjgÀzœIì¤W:e®?¬ß‹×Ui~gæŒÍ6åwæ§¼δ‡·Á*S0Ò=”CgæäSî˜G8ùXÊÚó4­­¨t+˜‘r¬ZÅnºX8sJ®9gX®œëmÙQ7ÀIP>KÌÎè™É[©ì‹¿šêkúÓñCÑÛÃÄMÑÌwÓ^¶ÓgÍ3eð7Ž B½u l3;êLµŸ_ì)›3;-·,^yJf*3~8’Îî5™þÜÿ2:ÜVCS×ÿ†Ž®8@,°¤ Kê˜sÏ»æŽø±‘Á{|qð‰ëïz¥nOﱜ•¾¬2PKbS”š¾Z¨52³@Þ}~þü³å?Ê›Nñ"Ï¢Ò‚“ûSùð(¦eþ”5®Mé•IS‡M¢§e…ãÒþvô­¥Øj׎G[øgE-°`³–~%ûî-š Wî…£è§ýΣŸ÷<‹VÖl§K’¡’IìÓÄ5²`­Sú"@Sþ[Ì ?:%âæ€·m©Õÿ» BKÆ?D¹±éô‹½ÏÒ+û?£ê7ÚÍaÝd§rÕ¯+eÁ›Ný{IÓÒa?ƒ¡~G¸«s[N?l(}Ú±ZÓ¹ÙÒûw•[VKË]]Bu.§°;:ädzbÀUÔLmtbÊ/©xD«%ßc¡bâÜXu‚(T<9Θãd‰XJð°i'«W†8ÈG¶|(È€CfmBá˜o1ÛbЦÇYc²ÜÖVœã>ñƒ>Ú2Èn#Zôä\®¸xjt8ÀJîIélãì)lgáLåµ´z‹ÉÛ¶½£:œ¶n`µd jöÊS>Þž¶æŠ ÓW¥ä¡ÇV¶ÈágÊ'e–Ì(Ž²â†šùv'¼ÒfGuŽýÑü{’0eMÊÎm9ä3¯ìú:ôþÁ  œ¤¯ƒØS‹ A„ºJX¢8„bìg1uP\Ê7ƒú¸ dJËŸNñ‡’ÄÏ…ò¹Žç"P‘Nj\2¥ñJ0*ôHîF­}ø=«¸ØúÓ¸H.¢I¿7m0vÂñZ¹'¦¡Ä¤d6qµM X¥2ª”>(XÁ›¶”‘’¦ f¤,SÒ‡Ò{™̨ò«:éÉþ<‹ÂFê Ì¦¬Öähã2[íSãx¬g5ww×2©®¹mOH¤!¼zŽ„Ïf§dØ…”]“ˆ­ÖÒn©Ü•Yv•ºC8Awz,{ø—°õÏ+Ý£Z‰ëmÚ3M¬É̇*»,Í*Kæöå™ÚQìèÕyùçt^Màö_ Ö–›–kv±=𭤣G[T³ýÓûPö®%åSMùzc±©²RÕDf'Ò,öWó/÷iİZ~Uq¬?ÝfÃïiÅ£4]åfB!¸‹Y[FE³¶Ñ½ioP{{;mÞ¿×É‚Ö2áŒøf1tÃÉgÝ×ûé/ÃÞ¢ ¥ômínªÚ[F ;‚+èU3¤"lç%UCBõ,ºN"°ëÆVûPQõŒ©mñ[*ƒÕŒí¥Ô·P[¾9Í?•´m›G¤Ó² ÖÓ±¯P}{#íÜ¿›2ŸÜI1¼Ÿ«þ®Ò¤cMߦ[>K³óÆÑŠ£›¨ise½²ÝRUU•ä9v0Û–Ž^™E—¤ü…F§ö§w|Iµëö«é ¯‹¨É^_èâ)&]ä]h¥¾@4g6]Ñ“îÉxbÚcháí”ò¯ö]h5@] ³ì¡ê“²éų>¥šÖ:ÚÙxˆíù޲Z«]†^¨ú‚pÔ y‡@hGËÁ©C—HU4#º±2Ee;yÔeÚÔÈKA†B8#õXÌ)ײfÌ|Vñ¿ƒ¼ªpÎe…ôèô<;“ÇØYÛßXe>RõG–Ñes˨Gz}P´—^_hnY¸Åߥ ™ÃÉRé7•ÅOVt8›U˦$ù@ …@ÅMñ¼>•ÀZBû[FOM+Ñ|ôÕÂæL¥ž—Êö:£ \ ƒQˆ‰™ ˜®èmåƒcÞÙGßùíSDm¥uÔøy ÙĽA¨¤S’¡p"î”eÄX´éw"­ï ô=‘û¼ëà2zúÄ]ÔÖÒJí¦ÄÝ6íÆ@ç-é5=¿…V•¡ #VRËd~Â+¯±Ò®<µ¥²G—Óg3JèsÖþ¨^¿Ÿ’––Y —§ò‡£°¥—ÐÂÓŠ)–ÇÝÕËöRrè“ýá,}Ùæ}<©:f+µ—7PÃn—<ÉŠ àg¼ã¶ØÃFÛL{Ö6&ƨ’Þ˜6µ±VK+ψÆò±q¬Mákx‰µ D8skˆpfÈ„ºçÒšÍKKø¸¾•~õØŽ° ¬|­—óuÛV¡;Wé|ØãþæC,œ™•uÌÄÇÕESÙQ›„¢¿ÌSüˆJr¤~%l®¦†Í´zEZG–¼¼ÂA8*'ŸIKSÿI•`FË ÿ€am3ÿIˆ´¾Ì°RÁ>ñy)Õó‚9q›¨åÕZä®­«fŽ—ÄŠßUGM ‹´ Ì_Ö¥c&/)£fþ“€¾¬K? ¨¼Ðvü€ÊKÃé X_O3¦MM§t§ó&R·Ìª¬®¢=ÿ]Iqû6ˆR¦MlÚôÐ]ÃéÊ Ñ ºöýRZòúwúâu¹ßâgF̹òò…"¸?4®‚³3à†Óòµhb;Žz2äåU·Ä'KWtòzòÈ@@@@¬IÂkÞ—N¥ §3`}a”iSÝy=íf1úóò»÷ˆtï¨+èܬqô)Ûƒ_•XOûOôÝYß‹,x¸…ÓU‚™GÙ–ûñ'vy\Íȹ\Ѻÿæþzú5 ­fŸ’o,œÑ9ÿâlTÌkÄÿ Bx(ÇÀâ{F‚?ŽÃSä      (ΊdÓ ·3`U=ù€Œ/©ã•~RV&ÇÒ¤´!Ú%“ÓQLR¼q\•°›í>WÈCØAâío|G낸ú›bXöÔWEGPª¶Œøß\”ÒÙpýUý´X̸€ÂCÂ_[ÅhX†å—z!d    ]’„3pÛ­à Xam‹ì»·¸¶´žÑF—'=N§çHŸV~K­kRÖ"ß=¶‹[ÌŸ`…U‡hÛ®ùœí{çô¤ÓR\{Ñ;Ö;N†+¬‚Z¥"¬…@æ     – áŒ%nƒûBXÁ°s Ý­$Ò°e=}µ¢„І-£ºeóå!‚35g‚Û¯a§ËkY«h\b,òýÞüðèGƒ#àÀ‘CJ      ` ±Ö(JᎀUœ»+£ó¹¸ÕåTÿü&M0ã|û'ðNÇÒ«“FevJ\ï Ž€;áÁ;gÂ~ <À*΀=—1ÂE૯hYOï™Ü©£:œ¯inƒ#àNtp@@@@@ÂO™ðß%°Š3`E„°'ɲ¼øx6mE*è¯;Þ¦UGÀж      ` ÎXã>–ÂJ΀ ‰– ðIU“VŽ“¦æÚË£œ/ß^c_úŽ€íxð@@@@@,AÂKÜãBXѰqiq&œ¾èð;3exº½ÊðêövjO'Y =®Ü&ıG°€p&¬ø=g‰Î€=× 1‚A`ÕªJ-ÙSr“ìÉ+gÀ_õJÑŽ%-/·ŸÃk€pÆ÷Á°Ê°røj'º<í,œÙÕÚNƒãbhÈ„‡r¼!#žbË þfºüc     $áŒoоHÊð¶ŽÕxôçðœ |ZÞ¨šÀ½3àM|4yy…st샀€€€€X€„3¸ FEP΀E¢¦ ~BŒ8áø1+¶Ôh;'H%å øÃŽÓ0i:Æ ¿@@@@@@ÀJ œ±ÒÝp*‹r¼®ºÙé vAÀ55>efe%’rü GMdÍ+8vÍ GA@@@@@ ÜâÃ]€`矜’L³fžJ ÒÒRzÿýÅT[[ìl’þ¤Q™Z:Bk& @»@"vÔÒÚ¦6—KמÑ]«ñ7ü/|Ít›*‚€€€€D,¨×œ¹dþ%4xÐ Z´h544Ð ×ß17kt¾mÕ8Ž˜[f‰‚.)mÐÊ‘•§m·T4±æL•%ʆB€€€€€€t&Õ™´ô43f =ùÔBÚ½{7½¿x1õ-èK}ûv&aÁ#§¥Ø>®á Ø‚7ÇÂEúªè¨½t²¸vÙ2,Ÿm‚      `AQ-œéž×ÊËʨ‘5f$´¶µQEyå÷°™{Xð~Ø‹¤–B†3`;ü0I`ÉëßÙc®â_plÇ      `IQís¦[·nlÊd[ZXѯ\æplÚôiûjG¼ÇY1)´ŽyÅ$eñú Ò—C• [pGàߟµÒë¹mT]žŒçÇ(œèòÚY(ÓÖÚJo?ó2=ôÄŸiÅšUK11,¨A°<½{öRqq±åËé©€Q-œ©¨¨ ìœlЉ¡ö¶vm •““CJ8pY¶t™Ã¾ìˆ@ÄáøR¢×vІ:ñÀÌ#¢NÀ¬ÀÌ#"‡àå€ÃÔN¤3áL{k›V×[¯ÿ%]ð£‹iÙòåAÎD:3SF€#™w@ÁË;^ÌÀÌ{Þ]gÌ;^»«1‹jŸ3û÷離#U4qÂDíI˜>}:Õ7ÔSmM­÷O®ˆJ" ‘0iÒ$zó¹—éä “I‹Ê £R   –#Õš3Bûégžæå³¯§³çÌ¡¤ädZ°`ån    F™•+WÒäÉ“éË/¿¤¹—Σ/V}T š0ÖYƒ€€XŒ@Ô gd í[n½•òòóèСCšy“ÅîŠ   `ÐXäF    ÐÅÄt=ĦËë¦â-5õšs<7Qp @@@"Ž€æ¸¹…*vç %3qâDhÐDÜÝDA@@ÀzÚØ·]|zŠÇ‚EµÏµGpA@iÐÀ 88   pÎ)ˆÐDÃ]D@@@ 2@8÷ ¥hÂY‚€€@$—Ö3÷nOõnkj¡˜ØOÑ,w~þ%—БÊJ:zô¨½l))©ôÓŸ\G«V­²sõÃ9^aa!ͽ`.3Æá/6>–8àDrJ2~útÆg\·wïjnnÖâôéÓ‡fŸvÍšu*¥¦¦RéÁƒÔÚÒâp}¸vH§ÎšE›6ov(‚Ñq‡H¼ãoÂø 4{öl^ÂïðáCT]]ípyß¾4÷{siÆ´”š’BååeÔÔÔäç„N 3Ï<“¾ùæ‡ãáÜ‘åÙ{õêEûöís(†«gÏ!BÇŽóõçwMž4¹³ ¾5\ÖÕ—“O>Y[¡løðáTQQáÐ\•#”Ç\±qnoFåqŽ—H—]zi'^½¹mß¾Ý!™üü|ºè9Ä-.)¦úúzÊÌ̤|/çðªnyyùüüUhÇÓŽsU1œÛ›:î¼uÏl}ÓÒRiîܹt:·ãî̯ŠûÒšš- 3mÖ¹,¡ÚwUgÉÛ¹½•ÇU<³}÷q#FÐyçŸOÇO¤´ô4*--¥ÖÖV-+i—ÒÆGÅï„ÍI½QB}ÜU¥ ®Ú««²¹Š7räH:ë̳褓NÒ|¹8¿+U:—^ú#{âX{Ûlnnâ÷Äar×fÕµÚ¶·µÑ­¿ø5ÝsÏ=.“Ü¿?}ðÁô¿EÐWkVÑÞ}%4HÞ™§žÚéiÄÒ9aWñ¼yFŒú£ãÎù‡zߨ\FíÕ¹|®âuë–K^ø}šyÊLêÉïââ½ÅÔÒboé¯7êË|yçêÓ öoWu–<]=;®Êâ*ž7Ϙ¤é<ÆHLL óÏ;Ÿfó8· o_ªolà±öWه嘫¾H bt\ÒÝ;Íì˜Ê(ž»ï•¸¶FíÒ踾œcÇŽÕÞiÒÇ{0-++£6îK½­¯«ç4#=Îäï¨sÎ9—d,+}p]]>û°ýöµ]õCR‘Ý»kcPé˲³²h÷žÝSçJºcÝç4±ïêK9üi—ò\œ}ÎÙ4þ¤ñ$þ\J–º­šs_–@'N sÏ9‡ß烴çëÈ‘àõeâß.–ûOO!*5gŽ?þxº„3Ó¦žL),(‘OS§L¥k®¾šFŒ8΋Q¼ªª*ú–?Õ_QQ çAxC]}§´.™ 4ˆ-ZD ¼”÷ZIû†®§Ô½ûÞ»4ò8¸rÇî­ 0/»ì2ê[P`/ŽÑq{„ŽFñ¾;ð—pÛ[¼WcVS[ëDJr ýü¦éhÕQzãÍ7©WŸÞtå•W9Ä‘ÉyÏ£ž=z:×Ns:ûì³é{s¿G28TÁÕ³§Îé·F×oc‚zÆdÛÔÔH¹¹¹Ôֱ̫> ù튋 NcàË—Ó¦M›´gNîQ¸ƒ+6Fí͹¬FñÚÚZx 3áçœõåA¤ôkÖ®µÿÕÕÛ^ô—Ì»„?¤Óé7Þ x^yÅ®õ£:µ7çò¹‹g¶¾×]û’tÞzûm:Â}àÍ7ßBI‰‰d¦Í:—'ûFu6joÎe2Šg¶ïîÞ£]vùi×®]´øƒÅ4zôš>c†–dfÍ<•>ýäZµr]|ÑhØÐ¡ÎEù¾Q]µWW…3Š'mó.¾˜V®üŠû¢/è‚ó/ T:‡ô´t:d¨½MJû”I îÚ¬s:Ø—“ â X‚låcCþdym o<ûMŸ6~ô£K©×S#–ê¼ÚÅ3ûŒõ FÇU¾áÚ•˨½:—Ó]<ÓU­æ±Ã”œ˜D×\sóåÚ¾Q_æí;×eâA8hTg£gǹFñÌ>c*=Wc ù˜êѳ'-^¼ˆÇ³ûxÂó§Ú{S]®­Q_dt\_Nwï4³c*wñŒ¾ ôeõo£vitܹ|Æ Ó&¼6ó„îG}D3fÎà ÙÓ´hfëkôœÆÄÄð»ôrÊÈȤ_z‰äƒù¢‹.r.BÈ÷ým—FýPRRýä'?¡Ø˜XzûwhðàÁÚ;Ó¹‚îÆîî‡s:¡Ü7ºÇþ¶KüøÇWÐÞ={éWÍ{O|oX5W}Ù´iÓhìØqô¯ïÞ³‹¿×¯×&Õ  щ¨Îôé݇š©¡ñ˜à$>!ž5zR告Nhåfþ £ÑÅá̺uëì99ÙôÅËì3fgžq&M:U»©¢òäS I–ñ~ñbxôÕfäÉòš5k©¸¸˜Ö®[ËÚ&ƒ:•'Ô222(‡?ÀÊË˲6:.‘T}å·Q<Ñ&Ñ3aÖ3Ïj3Ë“IÝfº¶+.2ÛŸŸ§Íf©´Ä< ;bÃ\±q×ÞôõuOÕKÔÅÄé™gÿMím6!ž¾mçó‹>3=SS3Cyù}ûí·¬•ÔÆÊkèbÖÌúŠ?ÄDÅñëõëØìÄѬN媭QݵK}}âyª¯jÛ-,øº›M<‡,V³íÆZI»vï¢F69t×fCÅÈ9£:»koª¾’–Q<™™3K£¾[µíÕ«×üÉ`¼OïÞš›PÊl¤Þ„5‰gù{ôìá\…ïÕÙU{U…Sõ•}£xÒ¶Ä„÷´ÓNÕ #GOO<¾@KBÿœæåçRZF:ýâ¿ÐÞ"´úøkíҨͪrc«–Ͼ‡…1ßûÁ…¬ù³’^{åUMkæÏÿxœbãbé÷©ïò$¤ɎïL#–RN=3£xîž3ý¡QŸ NÞ¤iT.£ö*i럣xq±±š*»š´‰g­G9Ö“…Õ;¶Û™»ëËôõp~çêÏ…ú·Qž)_ Ÿ1IÏÕCŽ?ðàƒ²¡Þ½{i³Îò{ÏÂŒú"£ãú6e4­­«u;¦RÏ©»±—»ïÑ< W0j—FÇ¥œª¾òûž„PãÙm»vºý’úšyçŠ`^LçÌ9›† L‹6ò‡ø É&¬Á§vÙñ}讚0qí×= e‡Ë)--ÿÒ©†Ý@¨¶ínŒat? Œ37곌ڥ”WÕר]Ê÷¡Lì¬üj¥½zeü^wÒ8m_ß¶å€Q_¶fÍ6½>SÓŒ-ÔÌí¬ù¼Óžf¸~D¥pÆ[˜7n$ù3Ć^ÜMMÇìš?þØ&dÇêQ IU©ÔLÚcl‰I܇ÆÚ*9ÚL¿CäÙQõ5S\™©?ûìsèÉüÃ!úžû}_^Æ?‰Õý/¦—y0,ATø¦²yÚÿø3¢‹ÔôõõT©·¨(Š:§ ¢²páBm׈K:kA‰fMCÃ1­±J¶—œH úúš)û„ 4sy¡« oÛâK¦ŽMê^ãuíe5«Ã?öØcš ÊÖ-ÛX…ö2M ¬w¯Þ´èýÅ*‰ˆÚêëë®àîê«oÛ6m:ѹúª«X»hk¾Ù„…FmÖ]¾V<§¯¯Qù<õÝÎm{øÐá4oÞÅÇ™ƒ&:¢)y&¿;ö±–ˆO;†*+‚gÛlT—@w®¯«4««jB 1±s¡Fî“X£U‚þ9•ÙQ1GycÑ›lB—Ŷßçiþi>üðCÍÿ“Q›u•g މéRVŸ|N*†ªö¢7þûš& ù㟥›~r==ñôBm6S>ÆÔŸ™|Í0s÷ŒxÛš)“•ã蟣rʤM-ÒÏ`ß'¢¥&Ïš„¤ä$m«gî®/“Ȯ޹Z"ô¾¾FÅ6ûŒ1ôé^2ÿ‡šöó×ß|Mñ±qÔÊÿERз)q éêæiL¥žÓ Ö¤3{uëÖÍð» ’xIYU}å·š8Œ‹ã~û\M;豿üE›˜0ú’ë̼sóx"è„Ñ'Ð×뾦+–Ó)3f²0°7™yÆ%+}}ú¡<~Fê;&õ¥ìGXKYÞ›¢m#ÓÔÎõv5Æ0ºVba¶,úúºj—’Nn·Êú‘í$>ÍD“F/p–ʽÿþìh÷C{ÛÌHÏ  &’gŒÚì.öéðÀ b¶ÇfÐî}èt!ûí™×_}~wïÝ,œy’Å6¶¸Z¤þ#>³ºÒ3t/¼ø¢¦e:ã”éÜæÖ³€þ<äú}gÔ—I9<½sQV+¤aö3cèÇ^|ôÚ·Ýv›f‚ñÙçK¬PEŸËàê–Äæë<©Ô®â¹û.ð¹°¹PO?c?Uƒo¬ö ³¶§ÕÕž{Å}ü!h¢òÿàCiíê­7ߢöÍVΓaÎÁ¨/“xfÞ¹ÎéEê¾ÙgÌhŒ‘ÎÂÓŸßôsûWVÏ““\þ ä`ôNfÆTîâ¹û.ˆdf2Y}ã7ÒgŸ|J Ü>™ˆúá1Y9kyÎbcâ(™'#9õC2ÍÕ-.ÒµB±/Nq¡îÆF÷C}¤ý6j—RrþÞÎËëf¯’|ëÈ·¶s0êËÒØ-E~~wvcðµv‰˜ëo,*¢þýÃ?öÞ/\ç»ãf_–ˆuµŠ„«K† Æš.ENÉS–ádžUGªh"ÏüI;7Q»ª­©Õfs†jwV'Z4;wîä%{m+ÆtJÔÂT}=Q=b‡*«[9‡Ù'¨‘‰ãÈ<ÖŠy“W[ˆÑ¼þËŠ92X~ôOj2ò1#3®²”üVKÓ:§iå}U_OeÀ0ò"'hú « œtÒxͦÞñõ0…Z @ÃÙ~ŒfÂ%,ä}·5C$èŸSq„(¾¢$Èò«"ŒÿšÛ¥»6«Eà?R¾ö%#³µ"”‘ß1üœ‹™{¼_ó7#«5Ýýà}>çj†™»gÄ›þÐçBZèBý3b\¬ºåÖßh .HYÖ|÷Eö÷€bî®/“ëŒÞ¹r.’‚ª¯»2›}ÆŒÆb®(!“Ù<_Úø×9ò8Z»v­»l-yNߦܽÓÜ©ôÏ©Qf7qgà.ˆ]¥42ñRïfÍš¥Ù¸ÉjCOóŠD²×Ùüa#qÁ›Ä+V°)Å@úÝïî¢êê6;iàåßrN*"öõõuWàþýûS={¿V«oèãÊrŒÏ=÷õïןÄûÿŸþø'ýiú«0–u˜é8œˆÐU_YÐ]2t0íÙ½§S”lÖÀ’%žÉ« µêlS#¾ñÆ›ôË_þ‚~ï½Ú2„¯½þÉLF¤³õ•z‰)À×lFâômû½Eï‘,ï(+¢ˆ#Cmu&¦Jxë­7éš«¯¡úÆJŒO ÷xÕÆÿÎiZy___£rŠŸwõUm[ªb’y×oïrHêùçŸÓ„WÑÒfU}¥ï6 žúnÕ¶7nÚH³X{æž{îåYÄJ~'áeÈm}üÊU+5zq|Û«W/ÍlÇYk”¿ÕŽ«úºëËÞ|ë-º”5E²©±IÓF[ÌKïJÐ?§Ÿ/ùœF^?’~{ç”Ŭ¼bšÒ´t×fÍD>4yjV\ÍØƒiþòäôç'lïðØxØð@PÅ×Ó3ÌÜ=#Þô‡žÊ çõψQyÅì÷Ã>d3ÍÛ2ýË_íÑs191êËÄTÓèkO(B~¨úºk—xÆÄäðR4‹ð>Ž}ÍÈ̳¬NiAߦD@gôNs7¦Ò?§îâ}D3}}å{f¯À'+Õª ¾>î¸óÃï ‰gæ+é¼þÚktóÿݬ}[¥¦¦8,B ò‹„­ª¯»1•ôCoñØýÖßü†¿ yüPMýùÏöê©¶ínŒáî~ØŠª¾î¾¥/íÚû…ƒñšvîš+ }Ûv÷½ôû>½à‚¹4-<âââ57#²²d¸CL÷ÑCXI×}h©©×fÜÇÂY=1ŸÈc5O™¥V+Ǩó"“•O¢Ið ê†­uÈ ‡8Ó;®¶NéÂWñ]TÃ>?ôŽÄ¤4òq&çîÜfÃWÚàåÜÕê’fúná*êµ-¼¤{UUU§lå\MMu—i—2³ËpÊYa' ä(CÊá´>žQ›ÕÇ Æo1MÓÞßJµœµiÄdYä#ÃŽ4»Ú3â/J™8“™SŒ©Ì“ô÷KJJb!}7*=pÐ.3Ÿ{dÆ4;¦2Šçî» 2‰¸/u ê+ÜÒ¶ÅobkKd9œvOÇõY©ok¦¹ëË<1\§½Geì æ_bâêkmzñhäçÓ×t¯«øôçÃö!œé„@@@@€ ˆ€¦„¦1#6    à³Â˜5yQA@@ºÆ@Ó…î7ª   a$‡Àa„¬A@@@@@@@Â<        F΄>²ÿ&Ä×J϶IEND®B`‚locust-1.4.3/docs/images/webui-running-statistics.png000066400000000000000000002230741400440205700227200ustar00rootroot00000000000000‰PNG  IHDRqØÊÃtÀ?iCCPICC Profile(‘c``âI,(Èaa``ÈÍ+) rwRˆˆŒR`ÂÀÊ ÄÀÇÀ œ˜\\ààT£QÁ·k Œ ú².Ȭßy.B'â>ôùʪf:دÆT¸RR‹“ô NH.(*a``Œ²•ËK @ì [¤è( { ˆa¯±“ ì=`5!AÎ@ö [ 9#1È~dë$!‰§#±¡ö‚[”±¡3‡’ JR+J@´s~AeQfzF‰‚#0tR<ó’õtŒ Œ @a QýY †Œb§bùV '˜§"Ä’^00l¿ÉÀ ÉSÙÂÀÀÏÀ°­· ±(îÆo,ÅiÆF6Oëÿÿ?Ë20°ïb`ø[ôÿÿï¹ÿÿÿ]4hÞB"\Ñl£T,iTXtXML:com.adobe.xmp 472 1137 1 Ús¸@IDATxì`ÅÕÇß©Ër• î¸`cLï½›’ÐKèÓ @B _¡‡–@(¡„@¨¡÷z½WÓÜ;¶lÙV—®|ï7Ò«óéÔîdI~Ï^íîôýïÞîÌÞ{Š©ˆ‰!`†€!`†€!`†€!`†@§F «S·Îg†€!`†€!`†€!`†€!à0ÇCÀ0 CÀ0 CÀ0 CÀ0ºFât›dM4 CÀ0 CÀ0 CÀ0 CÀH{ CÀ0 CÀ0 CÀ0 CÀè‰Ón’5Ñ0 CÀ0 CÀ0 CÀ0 #qì0 CÀ0 CÀ0 CÀ0 C  `$N¸IÖDCÀ0 CÀ0 CÀ0 CÀ0ŒÄ±gÀ0 CÀ0 CÀ0 CÀ0 .€€‘8]à&Y CÀ0 CÀ0 CÀ0 CÀ0ÇžCÀ0 CÀ0 CÀ0 CÀ0ºFât›dM4 CÀ0 CÀ0 CÀ0 CÀH{ CÀ0 CÀ0 CÀ0 CÀè‰Ón’5Ñ0 CÀ0 CÀ0 CÀ0 #qì0 CÀ0 CÀ0 CÀ0 C  `$N¸IÖDCÀ0 CÀ0 CÀ0 CÀ0ŒÄ±gÀ0 CÀ0 CÀ0 CÀ0 .€€‘8]à&Y CÀ0 CÀ0 CÀ0 CÀ0ÇžCÀ0 CÀ0 CÀ0 CÀ0º9] ÖDCÀ0 CÀ0 N„À×_-ë®»n'j‘5¥­ؽl+r©ó®©ñÉdl&±_öØcRz×]RùÉ'«­]ù2B¡xXÈ÷ ÇÒ$Äù‚âi|€îc±ØOgûóÀ±K8wi‚é’•óS©ÊÏ—›l"ýŽ9FútP ¦õ‡o¾úªüçÙgå‡o¾‘ºººÖЉsäææÊøuÖ‘=öÙG¶ße—i©‘8³Ub†€!`tMÊËË¥¨¨H’u"¹¢ÊÊJéÑ£G×¼8ku§D J­Ž Vyû:S[V9« †ÿ*½ªìªß…ú“”Ü|s=Bžp â óÇÁ}±û®–,œrƒáÁzˆ ’1š.NØø|§zHïËóÇÁ} ‡H¬¦F*Þ}W*ÞyGª?ÿ\_rI}D+ÿÞuë­òÔ#´2W×I)õõ_¸mÚ÷ßËä“NÊxã;ŒÄ‰èsS£ORi8&³V¬ùË—È’Š2)+¯”p¤N %*ƒzʈþkÈØ!#d@n¶Ð¸Ÿ¸ÌŒca†€!`«ÿüç?eΜ9rñÅǯ÷Œ3έ·ÞZ9ä7KöÔSOÉÇ,UUU’——'›m¶™ì»ï¾ñõ믿.ÿùϤººZ  m´‘ì½÷ÞòüóÏËK/½/׌7N~ó›ßøSÛ+!@Gø¡‡’O?ýT¼9RvØaÙtÓMå†néÓ§¯”çg?û™ì±Ç²dɹì²Ë¡x‰4²³³Sæaæôé§Ÿ– .¸@ú÷ïïʽþúë¥F-çž{®û 4Õ–•aIà=óÕW_¹8«½zõr÷ô°Ã“ž={Êïÿ{‡7 ¸_ƒ–C=Ô¥Iõ,$­l5 üïÿ+O<ñD£«åý|õÕW»°d¿"¦N*7Ýt“£Ç—k¯½VöQ­m¶Ù¦QY¯½öZÊßÅo¼!O>ùd<>ïÿ_üâ2bĹýöÛ-˜DùãÿèÒ5õÝHLßÏ—=úèONs ÔçÝa=iÂ>p܈¼ñqº‡S¾÷ljuBÀ ìusyu߈ÌÑh?–v©IëÛÑp #ŒóyU°á†­ÖÈA§;8‰q­cÆ—2¬‘“ÓH+±íçl©ºøûï¿/›¨5äÌ7ªþÌ9³§ -Z$<Ûm·KóÙgŸÉ+¯¼"&Lpn:óK—.uƒ  먚1Ú<‰õÙMèÚ¤û~~ðÁŽ8d@¸Æk8’ðíc¶µ×^{¹çâ{ï½'x ôë×O äž+žO1ò…ΈòܦÊãÉÿÌïa©Ú’¯&ÝMÒ}/=> ò?üpw~üñGyî¹çäå—_–ý÷ßß%;v¬ì¸ãŽRVV&/¼ð‚#ñÎ>ûìnƒºqõå|ðÁÒ§O‡!ϽOö;ð÷‚=é H!ç!Ê|>ŸÆŸ³÷ljqœSïÞ½Ýoò™gžq÷í¬³ÎrIy×CÔûßÔwƒç Ý’Øþö–¿ôî»*Â!?…üDŽhX£1+i}zÝljNXVƒ›Z¿ÆQç‰Â="L÷ñ²ôþ’>Æ> ”OïË#¯J<ÎèYC¸‹ „aFÖGß½­L¨V7ùþ&¶ßyçŒ^vF4qêôyX¬ª7Ï̘%ÿ1Mê$Kôí'C‡Ž¡ªq WI¤®Z¢á ‡k%¬Â…YR×;_ꆭ!µ‘ ¥²¦R^›=Cþý§ßÈÊû±ÿ!rÂñ'Joýpò ™†€!`†@ú‡Ãn…ÄQGå*Xo½õÜ ²m´²´³ ©SXXè4thÇÖ ,py‡*ä71šCr„ϳû< ü3fŒË^ZZêöãu¦¢!þÃ?”7ÞXfÍš%ïªú?$Nª<.cŠ?©Ú’"›E% À»Âÿþ'Nœè´ô ¼@Ä­¯“µÈŒ3‰Ç;Èð÷%ßóü8°QdS¿ƒF‰Òt¬ÿõ SRR/9xÏãzê»L×Y«T3µEâ ¿÷™8n6zž”Ô ¦ã¸ q&U.ºqÿÙëÇÙí!†âa „ŽKçˤ|òù½O²ÇPk8«›tÄ5§•ÄÑÛ/%Jú=1}–¼4}ªôéÝOF䣫Lo]•Ä"+$¦¤M¨®F²”À‰Ek$ÇF‘Ýê”9 ëV-!Òèyî ^ÒwÏm¥B5unøäiùû½·Ê“O‘_Ÿx’äñ€š†€!`†@›X¡¦ÍRû~/®³§'hÙ0S‹öLP8ÿòË/Ý šÁZ8ÿûßÿ„<Ú[n¹¥`2eb´ˆ—7ß|SžÕ™[46F-;ëlfs¾q¾W;˜]1°Å̳o&Õ–ö´µ-m©«;ç»Kgïy§,^¼Ø X·Øb‹ø%CÒa"´|ùr§A5dÈA[ßðC”ôàŽ;îp¤‘üFКÌÄï iåøøã;¢ Ÿi˜9Bî{á^žþùþÔý&÷»ß9‚¿Ë~7 I’91öW ZåâÏÙ¶DÂ&~ž‚Ðqùµž •Øۉ'ntï qC—¶¡=ñó†ìñ24Þ™UùpÒSv‚à#§µ‚Æ×ê&qÍi#qjõ>RV!7|øäö–‰£Æ)IS-­TâFwÕ¼a ×kà …Ô:s*Gì(£*:’‹*QS«¨ä†²$Wê|É–üõÇÊŠ ÃäŠWî–»¸Wî¸é²ázõÌýêö`Øõ†€!`íE€™n̼0hFl!‰Í"®Ó©û8@¶Ýv[gf¹ƒJ=Ç]wÝÕ¥³?†@kÀ/ ¾™~øá§‘ÉÓwÞ)§vš#tš*ü‚`ÆvÏ!&W˜S5%Ô…xò’cž}ÿ|·µ-”còàÉÆ=E{CArmÞ¼yŽ8†¨5j”Ô°Žáÿ†ÉŽÐ”D ñfUmù$–ÝÜï§'ÝܹsÙì±Çצ"žoËî»ïî“6r|ß-¾ú<7)Á¸à±fpï¶ø¹'pö+Åûí; ´8•ÚÜ{¦Í”ç¦O“u×\KrUóFb•ªQ£Ú7a%qjÕ|*ROàDT#'âÈ›:‰¨&N,ѽjáhŽúIÆ•U,×ç.*91%q¢¹’§­ÌÏÉ« IÞfãeIårÙ嘽äò“þ('ø«Ë*2 CÀ0º t´ƒ„‹'qÐd`°5eÊ”F³«øÅA$ã—‰#Ž8Â9Çd°Œ3Yf‚ƒev¬ì::ü*ÍŸ?_Ž>úh§Õ…VØW\ᜲŽV­œd‚¦$"&8×]w]< >mpz̳œL ||è`º…à¤Û¯´Ö–¶¸BìO# ð£5{ölÁqôý÷ßïH97€Õ”hyä‘òpbø¯I£€ÝvÛ­‘9Us¿ƒF™Sœ4÷»ðY÷Ûo?çœúšk®qþp •<™!œ ðyºíwr£AÜQàÜ2nOâts>p8n nV:Ĺ¢9OO¼@Ü(Y'r n´\ç‡òƒç”A¾`y¾ k‰6Nb3ì|Õ ÐnÇÆ¥±üåóÏä;ÕÂÙhÌx}0ª$KÉ©­T­›Jçû'¢ç‘Hµ#n¢Us©h´žÀéß«¿¬9h¬ôÌ/’y=äõ)/«é•:dRj'U9yºR•NöëÓWŸ»LŸ7]rÜD.xêZ™¢îë®û[“éU«Õj†€!`t^èìù-±•h4 òIsÛm·9É4 ¸ðaÁÀxÚ´iòÀ8mÞ¨Ðcá:’Z¨ßS~ð8±>;ﺤû¾B¦@&2ÄI6¦z&6¾®àžcVPƒÀ(ð>r,R{ü±$æñe²g¥œøp´g§vré[Òòwñ¥óz(Óo8;Ÿ4i’ó‰Ã E˜!>>±Þî‚&pM†[s¿¯µãó²g…BòyYsÍ5Ýoó¦~þzØCÖàÀøV]>úᇖN8ÁÝO´6ƒåRÞZk­%Æ kö»AÚt‰okZÊÓëmV‚ÄHðX3Ƶn(ÄDZ×-Hàĉƒ€!>˜‡c/ü¾8nh[ÜœŠ° qCY¤ ì)³>>޼ÁcΤQ¾„8;ý LãÔ.Mœ >xG–‡ eÂÐáú4TJ–6±:%pê*”À¸Ñ%ÄöM8jJ­7¡Š†ê¤.V+㇬-Cû Ó¼"…9ÙR«Ä²@Î6KͩԺJrõÏækm.kô¬NÃR²v©<üÆ"[¯-}ý¦”Nþ¥Ü}÷½ú̹Çü'ôìÈ0 CÀ0Zþ P—çwäÛo¿u¦*ø¼aöaÆ•Õ0Yù׿þåH³Ô³‰!ÐV6Ø`·¤8fTo½õ–3Ë`দüêÒ·^úöíëÈžOïT×Çù=·yžñŸs·®:Críµ×–]–…mK[|Ù¶OŽÚ#Â`á›J ÿTè¬×ÜïÀ“fÁœ}ô‘°yaywÿžoêwáÓú=~жÚj+çLœUá´‚î»ï>ŸÄíO<ñDçg­Ë7Çš‰çÁ«&Îo„7»ñª'h|¼žCଭ¿öÊwê(Ü‘;9Z¾3¥¢|=›UyRÇWÖ@ùÓøžöã87é„"]Fª R¡¼àEŸ~ sk³dÌ€ê˦JWÔ8a%pÔ”*¢û°îÃJäDÕd ó)4p"Öã°l2sÅL)‹•«c䮩ƒFN:¤¡ç¤8¡.GÒø0OØpŽøsŽ žfÒ©h5‰³ToêEï¾*›ŒßTW–*“ð’R‰åëRâYÕRS½BÂÊìÖ*±¢>p”° ç¨ U šEi]yjÓÁ›Èú'ȲÚeR `Èš~y½åÍß‘¼ÜúæägÊÖƒê5pª•ŠªœhLµp”Àq¢Ú8ÙÙ9ªÞ]¤º=aGâÔ©yVÝëɉçž,ï½ðV³ƒùÄ»€î¡‡*ÿüç?eò1“£ÓvŽéØK/½$>ö¨s ‰C¾ ðc...v$÷Ùg9ìÐÃÜy0MKq.vÿ¿ï—»îºË-ëë‚ Ây%ñ´ A~}]¶ý—ÇüRN<áÄø ¾.ç8pò1²õÖ[Ë?áƒÛ¼ÿ뵕§žzJæÏ›ïÔ˜ Z¶l™Üpà r×Ýw¹U |¼o;íaó³ÃƒvXýîw¿“áÇûäö·Ü|‹ÜxÓÂÚs‚úuyYy{а¼†€!`†€!`4B€þÍì9³e º,èÕ«W£8;1 ®€£GQÇiΨ U$–5‹GÈC¶–j5¿ÊQ (·PŠó{Ëüê…R®š<9¹ÙR˜W(Û¬±¥ä*IS'A:HW-̨T)G|TÁDí–³Uk§@r•ˆ(ìQ „N/)*è%s'ÔÈ-·ÜÜfãjnm.¡éŒ8jÛgß}Ür|x?óŒ3åŽ;îÇ}Lžyú¹ïÞûäꫯvÎ!YÞõôÓO—Q£GÉùçŸ/h µF^|ñEYw½ugb¬"rÊɧ8ò ˜¹sæÊÒ%KÝžzž{ö99ï÷çIeU¥œuÖY²ÎÄuäå[>°èI§†e&ïöëo°¾\ré%Îaá_þòyýµ×å»ï¾smFgÁünÙÑÿ½ù?秆7Üxƒ»æûî¿/)T\Û›ÿ}SÈÓÔÆ}@Î:ó,yû­·›LGþ×^}-i=h†@gFòÞøÕÎ¥K—6"äYr¸´´Ôµ£#ÚRWG/¦^ Gñ° ¥¹ú›Ã$Uþæò®ÂËNY5ÚÉ9:¡—¸õTÍëÑcFËo~ó· ¸/ääSNviéW%ʶÛmëâè?!¬žæË½âÊ+%Ÿ5{V<Î?'ôH?dèaR)(ÇŸp¼‹»à‚ âÁÃG waÿ¸ý.¬µù}AwþëNÙfÛm¤o¿¾2~üxéWÜOƯ=^n¹õŸÄö†€!ÐÕ`ðwF˜ß4®qŠ@âVÆËñeë>æË"ΤK#ƒ‰RKe*l<òÝ'²íÆ;I¨f±®@U.YyµRõc‰äŽ)–PŸ°¬øl±¯5HãÔ‡þƒ€ )ñR”_({ÜÍ­HÅ ½‡jÛé–£‹¿«ø^I›\ÉåÈæý7Ñ}HjÂõ&T1¥„”2T'Pú°q˜­dŽ.?ž¥irór$7?[iÕè‰åKÏH‘TN!}äïrÌäÉÎ!^K¯Íã€V‡?niÞæÒ¡íræ™gÊ?þñGH\vÙerüñÇKÿþýSf¥ƒö¿ÿýOþüç?ËUW_%O<ù„<ýôÓ2f̘”ùˆ$ÏE]$h§Ü~ûírÄG¦?‰‚)Kÿí¶ûnráE:í˜ßþö·ò³ŸÿÌ9‹†B<.éÂÈkÐP®/›zfΜ){þlO×±衇ä€ x%éݧ·°±lå–[m)Çwœ|úé§rä‘GÊd½ÿMxÚÊÐaC…-•°T.2lø0Ù|‹ÍS%uqÁ¶7›Ø†€!Ð 8ãÌ3¤¤¤d¥D|Ó>ûì3·D,ß*äñÇwK‹'[áÄçinÏwŒoßäC‘›o¾Ù-cÎw’ L ËG3qòÃ?¸ý¦›mê|èùï[ºê…øë_ÿ*Ç{l|¹ëIJï¼óN¹çž{„o K¶ƒ®ßýK.¹D}ôQG`"~ã7ÆËb2çŠ+®gžyÆiÒîºë®rî¹çƵO1›þ¿ÿû?ùïÿ+´…o?å%ûþ'¶«-çéþþËcId¾ãôjjjœùõmÿ¸Í™W¿ð ®¹¾ÁI0oðZX„—¸`ü•W^)Gu”[ò˜´‰å¶añ^Y¼x±\|ÉÅî¾úr}z_¶÷eµ5?÷òÁ©óرcÝ$ÜôéÓå´ÓNîo8r Óô'ˆOšŠ´b®ˆ+$7Ò”£oÙþ¤{¯½ÒÄu7I‰È7i͹ß|Yþ<ÖGµiŸ¬¼@íðï0×–$ׯõèˆ;©¤פ54£cÔ¿Þv[<ïA‰¾ ý÷¿å µnI§¬¥+Ž›0A^PÅ‹öJ¦qj±&TÏÝS>5¯)‘ꥎÀ‰D+¤®Fg6†dIùÔ’U‘ÊÅj^U ?~%o²Ô *;G«È‰É¤¡;JaV2)Pïÿ½”Àé—ÛG¾.SçÄJò¨FÍê œêHjá ÍC9ú?[7ž&6$[Ë%\‹ÎÒò!sò• ÀŸNu’\µe/¹ó®;ëÓv‚¿t¢ p~þóŸ Z0t¸š#ph6Z/;[ŠñÞ{ïu¾]vÙÅiŸ¤º,È6–z…Ô8æ˜cZÜㇽÿþû;Ó+–‹¥s‰ùWGÊ…^(+Ô¦œ¦Ú³ñÆËk¯½&øöÁ¬ŠÎ—‰!`†@ëà›õî»ïÆ31pœ;wnü¼-|Kvß}w—iÞ¼y–…nK™-š$úÓŸé¬mo¼ñ†üñ”kçóûï¿—Ã;L9ä§%Bzð|ð¼þúë‚–,ß2–äõn´RYJ˜¥ßYÎ7??_N>ùdWDؾûîë|êù%ºYb›ötE¨A{ m-úô¾ñí‘ŠŠ 9ï¼óZ\Ä-·ÜâîG‹3$$lIþûï¿ßÝúaW]u•ð,±Â[ôžP¼®¦|øá‡rÎ9çK·ó.@æÙNÞ¬à;qâDgšyL;™0ñÛ£G™4iR²h K3~h›æbãÅeºüxEp±r¥~ÏnR‹•*]ó4}ö{¦ÙÔô¼‹/ˆœ® -&q*”PxöûehÿºŒø ]…JWŸŠ”é¦K‹®™/‹>š%!%qꔀ‰ÕF”¼Q¿59!ÉÖÆô.ëôZ‹¹=Ï‘¢¬Bé©ÎŒוÈÝŠr dó¾«vè*Tº¢•úÒA‹§žtóšW ] Â-œ‘˜šiiqŽäÉQœ¼¼\5ÇÊÕö ¾p·²ßMqˆwkè<¡=‘òÄO´Ù· %¯¾úªëÈì·ß~RVV–ô"˜½C ç ƒrõ¶„,JV³¥Ìôáø˜DG ì?W:ú;ì°C›ª¥í—^z©ë=øàƒm*Ã2†€!ÐÝ`ÐQQ€9*šÈ­·Þê:ø| õÑV™5k–#x·bZ àÉ'Ÿt&Âh üþ÷¿wÚ“³Í7ß\yä*hÂÏ/IÍ÷ŒI 73OU€·õÖ[ÏMv†Éˆ \~ù宽kkG S–ÁEèŸtÒI2nÜ8÷­ÝvÛmåí·ßfmtL› =èÉ^ ˜áÈMU¾åÞÌS%& † æ°;øàƒÝõ‘—Á²×^{‰× bŽu"h’þ¨ËµÒvÊåÚ1"çýhÕ0Pc0̘1à ¼– ‹ @!àÄÙ¿6ÊfÅλï¾ÛÅwå?h e‹0 åÞµWxÞßzë­Cßê¶JKòÓC~ñ‹_Ègœá&ò8ç÷ÉÀ²Žx²ß éLV/x&vÚi'¹þúëæ¤ ï‹í·ßÞ½¯ƒh ùÇ3Åûƒw0ï:Þoo¾ùf0™ÓîCÓÉ”ÆW£ íÄh3Ô5ÈûúMK'CØ£ìÐC5‘õyþ—¾Cïxøa9¸á[ê)úÞþ§ŽoÖßÀÑ –%¤ßXû(×oã}J ýN7…J\®VýÔJf¯ßáÎ.Y| [²½·`¶:)ΑX8a]F¼N %\ q¢êÔ8T“êWHNŸl‰”T:ò&O™–<õ]³ÝÀmJfR…YùÒCI›¼¬\5£úNÉœ²IŸ %KÕljqb¬<ž¼qû†s̲êÃÕ¼ãðÓ1ñ°vz <0âý‹Cýí¶ÛN¶Új+¹Xg¥¼4H&k¤ ÿÃþàLR@ðøûˆéRÏžº‚dCƒ• !8’ß·G|Çx‡Ó>È ˆLÈ‹Ï8´„ 'Xˆ€U%q€O‹`–E^H&P|Ô<Ƥ†6A6A}ôÑ.žëƒ˜ÁgÏ¿þõ/9ûì³ÝÍ òûzï»ï>Gdñí=õÔS]šDä éƒX€-¤äßsÚG»qÆ™Ã,:ä‹o'¸Ó%Ž0Lj j~ýë_;béºë®s{â0¹éÛ·¯ûöùü|Çi÷Ù‡¥kÏu¦«¬`9”‹ø0î×¹ˆ€'þ‰÷âÓ÷Éâ|]„-äYSe‘“6̺Ðâ9o*­OlCKó£a…@âËà˜kþÛßþ&¿üå/ÝäZb|{Ï©·½e´%?ã,²á7Þ?m)'1õM7Ý䈿õ×_ß¹2Àô²ù•W^IK‰u&;Ï®,Šï‰eHx?iË»™ë ¶‡w$‚ÖÏ™_ó½`:Þwh\òÌòÞ ÆuµãL`ï@´?­~.ÒÙ{ï-稵Æu ü í‹|¤š¦‹ô1H'ï!h^zöYyLµ\T÷›l±…l·óβ£~ã¯Ö~ÌCJâŒÕ ž54-r’NÄÌÕI•›T»•´”÷±þ6*õ Yôžº3i¯dú7£z,Í ŸÉ¿ÿH/|¸’7Ë$KI‰U*™R©Z1º>Tu­ Øz ÌýÏ4é3¡¯”M[*½5mvV¶ )$Ãò)AS'9ê¬8?”«¦T=囊o%WÕhÖï1Qjc¸0®uš:j¥çL§ uø>«[cŽ”ä¨Á7Ný±èjU,_BcG—.G‹'Kãô;«þuÔéñø¾òÈÓÉÖzcV•ÐAä2s’.{tü¾ ]Bg†ô€â—ÇËû8H×Jéjw¼‘-áïñÈ‘#ãÅ3…oÄ  }Á3ÔÕ…wš×é–¯¿þÚùHįWPÀ‘ ⢓®êó…÷6ï$„wfTüÆÑNÄ7$6ï)Þ×Ï‚9‚6š‚S§NuçüÁÏ¿ Ä´p ò‡16Ê ™Êï.Ñg~€NìŒ×ç÷™Ç“;Õ§²µ’ò1õ'W¡ß@úÕê;bæ}ÆÇž¯}‡U±ãA%r~TÒg¬:Œ‡øê¯ãèÅjžKú{t‚¨¦ºZèwùk5Wîì’Ãǽ9©Su¥§.Ã6ÞQbÕêÐ8¦ )£î‡uõ©:%PÂÒcx,²HFí9R¾{`ŠŒ›4NÍ®¢²Aïuõ錩c5RÇÅ=Ô/N™ša­¯{o æWêýFͧI£ aãO”U‹”´ÑæáGǨ£¹l=ËSg8¬p‰Õj0íGK'¬yUKGÉu“#Y=ó佯Þs&U­ýq´­0¥à‹…L6Êt”é+dVÙØ®–æµt†€!`tx¿ÑáG8îÓ§Ó¶áÛåß}~¼¼¿5˜¿bæ 1Ö@PÐtÀÑ.ò3pÆD„™c_‡ß³!“¾:d ¶1'B…ö¡ÝêãѨ`ãœ6æSh¸@Âà[apâÓ³÷Ç!þ,E˜|AdÑ>ðññ-< z0C€¸Ac†mÈ)H€`ÙÁã h6¡ÍA2|ëð—GÁßœûzÉ˹'cðÄ   Í$ôàŽæQµv@ƒy+Õo ¶©=Ç™(Ó·?Ü;/h/AæAF%ÖËy²0òrý‰ñ<£øBcꢋ.’Í6ÛÌW³RZòBÞÑçgÌÁº‚Ǿ`XKòs­^¸g>?>”hcP ДH·ø:Ó]n²òxþ½Óô`¬©k‡Äá>`ªÅ ^©¤X;úÞA4Υѳ≤ƒNfʹ6¾}^ƒˆrpjLçÔûÉáZ‚ùépR&eÐ6Ê :h¦,0íª™†fþ…è @€qö¦ghÈg=9Fs I$ä< €½ùHpR,XŽOËþW¿ú•3;d‚މ:¤©´.2áOsùÑ0CpXëÓ-H#¶ iêã»Òžç¢Í¹t8àÀï?¸¢a¬Ço’ô“O>‰k»‡à_ _R]I‚ï%žÿ  Yè%˜Î›²bJ†6?æV4‚齎 ´?iAÀQ%A„ãT[:jMU~B[\ûÒQg–±B''n×ïB±jóâÿæ+%e^UÓ©SõÙ¾J5~—«iáõ‡_Èžî¼Sþ¦Šꊛ¯éä¤åjе“’É·krp”Œ|©zê»øƒvvi‘cãy‹¦K(7K}ß,“p NÙ”ÄQÍ—˜šC¡‰ƒsá¼êĨFNõ²*YöõRÚgˆ#nr•zÉ éÌ™’0ó¸ã¦RJÂÀ"…Ô<Ê9z†Æs rtsš6ú„Õ:ºZ¹¦ «ÒêR]Å<ª¿ƒ‡vDT]P÷!]µªú‡…*Ê–™3¦º,Úæ6nVsiZÏGUqfyZš§5éèèñÂ…'Ι¥¡óÙšrZ›Ö?Э͗,}Se1 “†Z<3¸ø6`À@G5YYéKç³î¶YyÍÿ– #ÃÈžÔÏ@²w\ð Âw õz°ärÀsHË`ó"VEñš§¤ÇämŽqjÌÌ;Ç8¯gélfÇ9góÂñäÉ“à |Þàì”Á,&' F˜=§ |@àׂo\Úèó|½&ŽÿnPO°Nì÷>)´W¨"³ –ˆÆd "S& S$ çhRx³®sÊbÆfe˜ažÅ²Ò5˜ ‘­“›µsI½t4¹>|qm Ðø.b"† ×HÝ Œi³÷'™Ãl;­øÏóטνÇ+eR–_.䘀=ZI¬ æã¼æÏ!8óÌp¿1»âÙEМòéËÆ·Ø%1-q„ÑêŠOËÞ‹óçì[’óx´« "¸F®•|<çh µ|éÚû6¦«¼Är K¸ü¦¼iOœ˜¯5çžXóeñ{…àõe`Bçcû4¢¾>Mº÷Ô“î2Ѻ÷Â{!X¾ÿt©)ï5Þ+¼øð®ÅüŠcúÚï–`y]ù˜ëIwûµ@ŠM.‰qœÂçþ¸aO;uP]¿%/½u¡ e¹rêrù0_jâ9á„5!­Åµ‰bZ<]ßï¨6¦T^ÞÒ‰ s ˆqP|¸® y´þæ¯Ð÷ þsð‘s‘ŽÒïî/UK—åÉù> /êäËêôg(AƒdäïZÎ1jªu¹®|Ù^i-N­Mß"MœE¥õõj«—K¸¶\êj+UÙ¥FAÓÕ¤”8 ©ùRé·‹äÁƒî—_Í“%³–È¿~}‡ünÛSåöko“žÑº*Už®JU$ùº:•>õ›îðyC#êIÈÎu1r@§Ôa¹›¯Z8%U õæTëîŽÖïˆ$Ú¢"|ã”ÌžáìݲòC2{žj­¡s…Ý63h™f$ÁÈ;£à #|g¢ÞŽ*“Î(³wér«8`£ÍL.$x:ö¨Ug†±£®Ñê1 C ³"ÀÙ8e¥cq vjЈð¦-´ |‰0{‹? ŽÁ¢ @!;¼Ã_ZhŒ2XM&˜ÁòŽÇa2e2xç;à}– ‘€¹š|Ä ƒ©æ³8µ‡ì`à‚ã_&9Z#L$°ü4ƒi´[vÚi'×üÎ!˜mq=¬¢Èßø,Áÿm¡|«h¿×¨ðX×;Æ%?×Ç 3;î¸#ÑÎOÔ;zôh7Ë4o`Æò‡ "âŸÕÕ8Ð@ð3ðh:€7eã#ó2¢®.5Üg3+´ŸžSü! @1aCÛÁa·ÇÖ$ùÃ3ÕÒ¾eA ´URåÇïl²Rg™{ÉŠ¤ÜwúFÜ×®&<÷‰/þ¼– VI0¼%ÇÉAI$çˆ;ž‰ @w%tñ’ø >ÇA-v´Ñp†FêÏô«IÑ áÃ;Ó;GS³MˆEˆf¾&­@ ˆÇþ\÷q,ýqC¼ ÷éZQUÒ¤)ÊnTOCÝñ2ÒU¼ÀŽ=àÉäG¢Ôé¤q‰=‰²¢ þTËèˆó佨„š—+!«S*ËÔi°.'ž­j¿¹õÏ$®†kËÂòæEo*û¢äK„‡U g‡¤|E¹ÜrÃÍòÆ«oÈ#Êt÷(.’°:BΉd94nÔ›9˜NéFGµuô#v¢«»ÆAèhMJàäê6£ì%0ê¤N}ò@$…u‹¨ y—Ì’òŠåúbR:Zþr [ \&í—™BüË€›D?«âºÓY'÷Ž0V3ØA=œee¹vf ù c^†cM¶î†C:1µ² CÀk¯½v% èØ{¡3Ϭ-D9ïb–×F;€oßä|©Bã …D“ŸÆ›žøoïjÈ P†L…hf.hýàç%(LŽ0€G£‡vß÷hlBâ`ª¹‚à„ØKôOô­Â`9Ï`ò‡²¸6/´‘åÅ™ý Öåãi×Ï÷ ñXpL9 ž¸FòBÆ^ÄCZq}|ãûhð-d¢ˆÁü 0Áƒ97e3±ƒöJwžAœB£ÅĽ†ôc|å@þ½¡N€é{!àˆöÄ#ÏI*¨<þøãiMªt>ŽUÕ ’’ |šTûTùYržù“O>éœt£uÁónüº ñæ}K¥ª£3Çñ›å¾ð»‚N—Í,)Ó¿Ëg2w^ 6x‡ùw”ï¬{ˆðÞo*'oãi3ƒ—Äp_nk÷~Yîd奪«%¸x§¢ÉÊnêú|û!wØ’å%Mªvû2Ò±oªþ¶– ñÔ4–y†™ZPˆÇ”Í)­d¶Þa¾ Hƒ¦ÊF»—Í y [Ø_ÇÞÉ4Lj :$nKþúÒÄ-PÁ"”A™uü޼øúüyºö™*×·2 ­0VhÃ",QhC[ÛÁ³ƒæŸoÎèÏý>èSŠ0ž ü,=Ú'Ië¾­×ÓT#‚$Nâ8#¨}Ó’÷ fn¾há %Fßš¾4B„!‹`r†ŸÊM6Ù¤©fuÊð´b¯Ï¦öA’&ñ<ˆ„ÏC˜'môváD™ÃúcÒ1žÓ¸ïÔìÐ¥%½Æs¬GëäÑ|®U ù9wa”ÍF|C˜+ß³oÈïóÔ$ùëÓú(=O+®¾Ün¸Ï4N-ÒÄPØOª—–Hm¡jÈäªNGL—øÖ+7G— W?%JÞ ,ÛUâ„x}z”¤©“E:›÷áGÈ~ûì+uê9Wg"±|‰f…%œ«Œî55K‰‡4Ä 9Ѿá¡ËnxÖ²´¾i¥ßª/c%zT- òÆmjVµlùBÝ©2>êšÍ=ðºïQÔ‹fu¸ÐKTMg#ü‡ÊÏÒÑ1öÞæÓYOg-‹ÙK6ìÿf-ñ™CGÕX–¤ó…:¨‰!`†@ú@Ss¦ÂÂÂôj%i@ )í‹4ÝáE A„ÖHwü:xâ‰#JÀ_‘Á~wð8ˆalóá¬P6:C$ޝ#]û ‰³xñbGBy­¿ Óïæ~ >^#­Jä‹/¾pf'Ôø8ƒxƒü¤cè®F⤠ó—áù‚Ý)–%*Äû8öº¡Ä‚°Ñ½òBÜørtïÃÈÞHȰ'oCyûr]\0]Cú•ŸÆ—ÇÞ¤S#Ð"MœÁ}ûKíâ¥R3°@²ÔNHIœpjÙ¨ªKN­’1ª…ã´oôRQ/תÉT®®#¥„ Η--Uu½¿Ê ƒÔ™á–nY¯üœ\}® $R'T§ÎŠÕ,Jó£Ã „ Z:39¡|ùaù·RQ£Ëœëòæu%pTû†ºÑ¾©ª*×túÐçÅÑ<1Õ :tˆ–Óð§¸Á4ÁãYRFa“ý¶zºFåÙ-)3´2UPrÈÚËËšÕ3P½mîÅÝʪâɃ¸ã Zy@Á­•Ù%‡4C‡ ÈV¹5jTœèi”!ʼn¿6ß¶I-Ê0 ÕÞ·˜® þ}éNìÏj‡€ÝÿîsË3y/ñ…ë{ KîãSí'Nœ(ÁUÆX™ !Op—å͵¹Çä±­õ’?•¤»\´q kÊÆ/–_e —^𠔪n4m ðQ†ié?#`‘C> qˆKUž¯·3íÓÚ^Å¢I!®t!U#“ª`>Ò4œ‰§‘ r(+¦[¼ò±% e5lîZƒç DNJBǧ÷åêy£«$>‰¤×$åw— L㤬Gó²æð±R÷ötu^<] š*]K]½ÿWUªƒc5gª©Ò04bt‰ËÊÙæ”d‡S¶pÞçAT$*UÕUª:Ý™¸<òØ£ê¿FIelXvGÇyê`'/9(ó Á£¾mB8z1S iU-9Ëg*S£õ*ᮕšê Y±¼D"Z¿*ñ(“©¼ß"ú°«2ÏÈ‘«f¶'JÉ>Í#Þ| lõqæçÕÛq‡9UÐηùRÚ–®tˆ¸ýž2q°†M{|üàò /ìrö\»å5 CÀ0 C`uC'¼Þ ‘k‡ ÀI:¾r裭íÍÔ± šÙ%ÆuÆóSN9%Þ¬‹.ºH~øaçLžkDÐàÚgŸ}âi ­µpHãýè ¥fôÏ—«“×`œ;YÝÿ4An8X‚qÁctã¶øyá±ãH—†½s3¢ÇnÅK`Ã&Ÿ˜ÏÕáË ÔIxpÜÕ\›ÝjÊ1é4´ˆÄ9xˆe÷”ò)óeƇSdii‰jÓ¨£ãê%sª%o@HnÒG†m=H†l[,ã÷)GþóÉÎQ&Q H8¢ÞŸ+œ7ô?_v™\¨«VLŸ6=%pòÔY1$N¶‘¨)qÃ?=ÈQÿ9…Y…²X œ)K¾Pÿ7ÕR£+cUëVQ^*•+œé–ZSi=º)a$Jú„tSËZ–ŒZsÔ*»È3Ï<“öú¿ÿþ{·Ô+ì¹VA{ì1”ö=j•hÿàl2B9ø Úz_ýõ+-Ù–º°yféÄo¿ýÖyãoK–Ç0 CÀ0 C ó#€ºwÎë[Ëjxm´‘ÓZgÉñ ¹‘OÃ>Ø †wÖcVHó«{qM¬˜tFŒ&:š4M ~$1!cáÇ+¤Ýpà Ýä0ƒ|ÎãÌBÓ´LR  8ÕáÏÙ¶8qÓ?O n‚¤Œ?nŠ´IŒ÷çqÂ&Eý®m\–¦iDѧ“ yº­î’Ó­Š"}¬=j]ùlÞû-‹Èüió¥lEŽ R¬?ì~R´v’8CcØ]üâô\£—ìö;ȳ¼¢äŠÚ*AÃÊóÔiÖC=èL&MÚU~{æ©’S¨$Ž6:jd%Quz ±S«+P}Sú¹Ì\>CªÕ„ª¼z…”W–KUm…jáÐXͺ” r Z¡ÁÕVT+燠+` 6Zú÷ì­Ï²ž7#ž•dß’ôÍçVXÒ{µ@IDAT_Sá ŒJ:MªÐV¡xõ÷mE”úXÑàÒK//7Ú\;[KÏʵªý”¸´akË¢l{ý5Ÿ)þ~‚a­-×§g5„åVý±Kµ÷u§ëYHU—ņ€!`]ÿ½ìªí·vÿ„@GßKßïþ©(!¨ÏËôÙƒy‚Ç¿þõ¯eöìÙróÍ7ë˜ô§Ah°Lˆ‹·Þz+˜ÍM(Ó4ŠlçI&ÊeR•¥ÂY1É[¿JUÿþýåºë®“8 I§y'Þ¬vl}r–ƒgáýäpùDŒ3‚iÛ K‡dOk{ÏS³'-Z ~ï3$–Á³®éœé¤ñ {Â\º×£&Í©ÜSN>¿‘¶á7é÷ñ~O:/„!~_Öäß´âÚd-+G Ò1èYê¿iœŽïÐûJÍ#ÐÕÓ¦êxÙn§œiäg}´ræ†\äß_u¿ò RªDf&%Ó85MÓ¯J‚íwÝIÂ%ªZW©fNÕ!©®KÉ¢…òã¢Ù²tÉ"õ{³LÙZÕ”©«’J5±Z^¾LÖØ¼¯ôT(¶ž‚]¿rR­‚¾lÙrùV—ô»íÖÛd÷½~&Ÿ–¿+ÓÊ¿—ÒÚ%RY¡š7?ÊW¥ŸÉ«s_ïJ§èjTK¤´¢Dʪ—Ku]¥jäÔIšETó†%ÍщªUL‰›$ŽîcÕe”·|÷ä/¦ãŽYòŸ8^e15øÌãIžÙ… œ~úéÎnõÏþs08­ÇEx²o¯™äÊzë­×¨}8¦c™[êH—@8™†€!`†@×B€gS‚FC ˆäÆ•W^)<òˆë_rî…Uòî¾ûn9úè£}P|ß—mDZ<5øÂČꫯ¾Æ8©· ûí·Ÿ#k‚Z8>$~vÎ8ã ·"¾…Ð’7I@ ák Eê3îãtïFÖ°wZ6{â…}ÃÔÀI<öi‚ù(?¯—Vùú.k¥ö6„Çw¤_Årô 'Èu™q…Zô\©î2ÖTgä¿üÕ¯\«ë*~g]pôS_±©dÇ]w•#””l¯"Bª::*®EŽiÌ~{î#¹übÉ-W¢¤GLÔ²Iê ²”œ©UÓ&Õ¾QƵu’¯Î°zõTu¼‰©óãâ }eȃdýê òå£ßèÊVÙîá…AcûþóïåüÉÉ¡7í/åKÊÔµMDW°RS­ñê÷F+ªƒ´Q‡ÊÕª}CžZuœe…*œ‡³tCõ©ÃÊTøÒQr§®¼Nöù¹¾Èx[€¦gì݃Ÿ¦•eùn½õV¹ñÆeçwvŽÃZД&“TWW;6 pçÛì3àØŒúpV¶Ç{ȤI“|T›ö8€ãÅŠ&K7"{íµ—›á žÍ6Û¬Må’éÎ;ïtígu©àu`ÃûÄOÈ=÷Ü#guV›Ë'ã‡~èò³ŠU°Žæ ¦ 7—Ïâ CÀ0 Õ L~#ï¿ÿ~×X¸pa#HñÿqË-·¸‰ Q£Fé±Us!Ô¶“LÞËd-JVaÉ“åO¶ûî» ¾n0«gÉy–¢G':1Í€àIG½ÉÚ”©r}]8:Æ iI]˜EyÓ¨¦ÒCî ž¦Òù6tÖ}ZÛÝÚ±!Ï2Z4äÓ½Þœz˜ŽýØ´‘®ACÒ»Õ©|^r’/Q|™ {w½Ãõ¸©pWñø<‰u$9O+®IÊo*‹oJõågŸÉEJ8öîÓÇauÊ™gºl“U± æÍŽÇ¨ÿØ%%%òoU€øòÓOåh]%ùóßþ&Ô<[«ðô]ÑGÝ…|£þfo¼æ©Ò÷F:$Ó8µLG¯düš£e“ ·”P™>Gzm±*Q81©­Š(©R£Núª©U³§)¯Q‡ÃËeqÉ"±ÿ@y÷öe‹K6” Ž‘ªgYušÖm ô'Ï}._üŒT–ËÒꥪ‘³L–Õ®åueR¦¦SeêÀ¸JË­Á™±šOÕ)y£®%¢Ú7QGÜäJVTmã”ȉªCãP]–ôﳆl»Ñ6õ*hé¸m(–²¡cŽ9F>þøã6”RŸ…—ÙƒTE õÇdËüaÿJ}¬XE}ï½÷^›ëƒÍgyÁ_|Ñiù‚PCE{†NÔ«¯¾êƒ[µg CÚ9bÄÙe—]å…Ô;v¬SÅ][…Nfgk­µ–33kk9–Ï0 CÀ0:nÀ|SôDuô§žzJ.ÐÙV4è#°l5ý†tjïvÜ•ZM™F€U–è/{‡úð+Áè³òÁk²ãB ñ óÇÁ}Âq–.áî¯C¼{ͯyCXpƒäÉR#˜ÎÅ“¿¡ öÍ8)Ò{ § óq¸J5ìp§r¶~î~üq9ò¸ã¤¼¬Ì]ã[ +f¾ÿÎ;2M㻨2C™®ªv…¦­Ö1ôÁGéÌ?|÷]×âg5?ãs4y^PW$WªvO‘®Ä6qƒ :ðŠÚWU‹IüÌL>þ8©[¦^„—ëó¦ŽZN) 1Õ’Q§F5d”©VGǬFU©+WU¨YUöˆ˜T–Vɬ/æÈ:§¯%ë5Þ­fålþ”tÀq¾‚øé}_É+~[*{TË2õ}SVS.媅S¡«aU*S©¤O­>¿(ÏÆbÙJàhÓuR/:Y’¯a¹ºL¹jù„•àQS¯ýö>\zg'a-Û‡W«sC"à{Uœªa§ÛZ`TwÛm7gÿú+}ØÎ>ûì&Û1ZUËדì^[[Ä ä DÈí·ß.”é…—³^FJÁå }šT{´cðåƒVÑW\!¨ƒ…ÔwÜáâi¿×¦ ¦iî3­}÷Ý×ùֹꪫ$¨NÛ\^‹7 CÀ0 U‡ÀÕW_-˜VCÔ$Ê]êÿà ƒr«Oòmg²i¨ªÑã0™ ýÜsÏÅ£0åÞzë­_?)3qœâîªjöï¿ÿ~<-«ò@±ÒϺë®ë4 }ŠI,ü¯0©F?U5é3±í!ýyç÷U/Ô2†7LÞ]rÉ%îÞÐ_N–ʦ”ÄÉÄ`œmB @„ĵ1|{ÝŠtR|¼.?AÇxk«†ÈPµ|ÈVR¦Hª™¨ã˜‰:™>qÆŒø¶Žºš€°ÉQ¿0#T«dmò}ò‰¬­“ûÅJzS&[59š¨~¡&ΙãÊ™0eЬ¡~dBª±åÓ¸k"½J¼}õ'.¬³þ™§×õ«#ŽëÕdòSOn¦ïòËuœ‹vΊ‚6Í|õ¿û/ÕÖ|Eë[©¦M±jáõ× å‘oÕìyçÍ7e¾jë”ê";Çéjo‡è˜ö?jF˜ÊŸŽË؉þ´ØœŠ6°÷þrÝ_®–¹ËfIH‰œXALIõÁ”ÕA½úÉRÍM‡úXDܶ,&vì+Óž™!#*cN!‘‘©÷Í”ì\%a4- d–’ß?1S»T6øÃÉí§¦ZåU‰R6Òù½Ñ‡Í9.ÎÓNëÓzBê Qï8Z[HÍ®T G·Üš™|à ÎÁqý#ê’¥üãbö~K™¡‰Hw= qh¯ðÑ€ôà£ÎG椓Nr¦I|ì“ š7hÒ`VôôÓO;ÒPüìø¶&ËG¾rè`uÔQnÉA–Ûæc†)TSõawþ†²˜tšÞÔ›eºém¯b}t€0³Â^–Ζô¥±ùæ›'Í@­™5¡x@‰â¨SgÅt*±lÚÇ}ˆ/ÊD/ü“'O–M7ÝÔ9Ÿ#M¢Ð±âNù@œ£nIY²:óÏ}zöþ8odž€!`†€!0H |Ã1ae!$øFK˜~A0lذaN'曂¶‹%ø8úVLŒÑ™¢ƒ›3UópHLÑ;ì0§©ÁDÇLÀ>O;ûLÝÝOΞ¾#}V/7Ýt“3±òçì!úšª3˜®­Ç™,»­mZ]ò¥ûÒc%ìg,›(pÚáÆ‡°áêj£fêT™÷ÛßJžšû U×µú —Þ{¯Ì9þxWÚ°njõ!»DßQHHßK#•xÎÕ±ãRµh¨R“¢¾úüV-’˜¾«JÕç“÷.ÐñfXý²öþÙÏd€’•Jz”©3_'´C¥> a."ø'Ix£|Á´ô2 tЦa @>ð£UÓÅûœÁ /žõ§ê[^ØEÑi`¶§¥‚Id Ä Ëúú° ¦>ïÄÍekéèÐY驪dt8 ›R­¨ÅòÝØà¢îŒg|f¡¸:2Ìhq?ÁgTWéÐ Øá2Kü¨&»&fÄÀ ß?˜nQZ:´"жQ>dÍ‚ d†²ÕÔAÇ‹uŒÓu{¤-Ï@{ê³¼†€!`†ÀêŽNSÂrǾÿâÓÐ`¹äÖÊ\­-**r EЯ`¢ ­g&ž Þ~ûm·ùè1yEß ¡-˜†ûÉ1úR,:A߈>ÐC=ÔäÄSkÛjéE^{íµFKˆs߃$ÎN;í$˜OÑwö‚&ýUúàÏ?ÿ¼slìãØÿL¸þþÃíØhŒ7õ7ŸJS‰œ¨Nž£yƒ T©Žs t¢úN ëXfÚbZÞPµt 맬á¼Hß/ù:Î*Q«ŽEÊZæ }®×V7t’©<„!å:¬Õ±Qµ=}tY¨üŽÄiˆoѧ!­+pÿaŒÞ_¨‚BZs”,^,“ô÷Kø\%v#"CÕê:¿Î:ò¢í¯é*nÛ«u‰7™äýŽŒU1³ü•’h(ùõ€j7]® t…¶®"­ÒÄá¢Øs_¹wó»å£)ïª}P •8Ñ% jóc’U£$Ž9¡A—Âõñ‰mêlçÝÎdõ–,¼)¬‚iécÓß Þ3ú»L&úÚ¸–‘,]{Ã2]~{Û×ó§ûæ âu\ÒHÂ\{4 .J©ÙèP5¥.0ÂJB¯PSžE¬.ìëiØ3–uùô<_ÍL‘r%41­r¢“ÙåjIÑGß]YJbzé«VQ&ç•ÜDªÔd‹²ÝØØ×ábôOâ9áÉÂÒ§׆2[²{\­-ð[ƒéSÏ^½œöÍ5:i_œÏÓß;¾oxO?«“ÿ{é;ß8_ëX{¬Nì㼘åÈñ‘s®®nuÞi§É·ªáwšjã*vhì<¢šPé’LãÔ*M. /Û7Ýt³š©ì$ËË$ÚSÕÊ©Óç&+;*ÙJÜDêÔÜ)OÉ–ì\õ›£´:Îꫪ^8 V ey¢Y2òu&–ÝCæ?¨v{—n¤Ë‚G¥äÕ%RöU™Œ;{¼ôÛ¸„ñ¿Ò%Ãy쪓¯å¨•ªÞèóU?8ê‡GYµ:­³jÖ"¹þ‚G¤v«/Ë}ˆÓ¹xª€Y&f Ø:B s hØ2!tRØ2%tÎèX±u„0“Ê\&†€!`†€!Ðy`rg™š…s?y ÷ÇÁŽ4Ç^˜t{å•WœA–T>G;òר >ahsೂ'(Û¨¿ ?ã ¡üó0ùÃòÖÏ<óŒÓ¼F[9•Ã`~;n?hÒ3á×ÜÂL.Þ¥Z LbšEÀ“!žàÑsÜŽ,W3Ÿr5í§>^zéDt±.HƒYÕ,=o$ä÷ed©‚„JH'àãazîÈÒ(¡ãÃû+¡S‚;¢fFChá¬Dàør]©ÿÚ7×éµ`Z™ƒãb/Xfœ®ÊÁð‡Ô% +:çe¹~/~©äccˆˆ›¨ÙZ¾ïÓµ*•¯+Óûú§¡•µ 8H®ú˵RWR+ÙeÙ’]©¦NÕ9jI¥dŽò+U¿‰(™#uÙR;5*=Çõ–œš"É (iÓSò²zHŽô’ˆ®t5ì Ñ2æ„udúUÓ¥hD±LøÓ†2þìõeî?”¹w,•Üü"Õ¶(Ô­‡úÍ)PöR\)h¨P©œ<]­*[Í´Tgþ"9q¿Óe×qªÆÚÊë±ä†€!`†€!`uTEžU:½ …ƒÏ=–ˆN&hãóÏ š^ð‰ys¤ÎÜâOï+ux‰3c| ŽVÓmÈ!| ž¦³µlL$¡}“hÎEyEø0쥳Øsª³Þ¿S_ &‡³'žxÂ9œfB.QpaÀ}ᾓˆŽ·T¤H ²f¤úu)T_Ÿ%êòb†úvY®+ïa.å´yi]›8×­FµH^j¥áÈ ÃON’ëTC00%œ¦ŠߪæÎªq¸H­™,7xìJ üIH¶ª1¡ 8¾‰á|‚ŽO‡/œ a6ÁsŸ®³ï[mNå/hŸI{Èì?^&WþåbÉí] lŸR'=T&¢>k¢…’«[A^O)ùr©o:X²ê ”ˆQS©¬õ¬Ä~mtªQs˜=ÇH~~2ýÒ2á’¤ßzäøúáòã# dæ5 dØákJÞ0%nªTóS*gB¥+b)»¶BY£šÊkm+g|šd«VŽc}Cmo†€!`†€!v‚Z.é.Ü—í÷”ŒÎV³`Ú,¦€é >wØa‡úAJB# c0o:ôÐC™sÝu×¹¾LÌŸðiƒ† ¦ÚtúÉÃ²Ôø7¼ôÒKå²Ë.s¾VN?ýtGâà,×ç÷{ Åg mBãzþüùne«`š„æuªÓŽn'þ q:(Mµƒ…=Ø‚’,-šRø·<õÔS¿ÇiºªZS˜ó—O–7XvºŽ;ªžtµ·;•“Vì[JlÎkÝ$‚ÙW«¾OóÔ”sˆ¾[é³R-žj-áH´FȬ¯á³©j5 ê§æD!}Î+õ=ÈÊThâ,Tó '>ŸîÝxØŸÛ’,ÌǧŠkH“V\}½ÝpŸiœZowù7Çž +V”Ém÷Þ 9ùê'K¢˜;©ÖŒ.]%’W(5sÂÒë A’Ê‘œ¼|5ÇÊ–|öJààœ8›}XýÀìZ,…=ûÉœkg˘sדì¢<~ø©ž]% +…ªÍÓwÇþº,¤šO©ÿ› õ¿SZ¥LÚü¹²iñ8¹áw7HgE&Ú¡!`†€!`†@7@€U¤Î×år÷ÝwßøbS¿øÇK&8!FÓ†…!0Ÿ‚”ŒAÐêÁÔ‰U¤ÐºaÆö¬³ÎŠ/¼ÀÊžødð1€ Λ  ?m¤,È¥»Õa¦ÉªAMœL³™ŠDH*"Gãçë2Õ©î0}aÅ*Ts0Ò†âº$.ûs}¯ÌRg¨úÓaUª~únÃ\j¡š²ªUþª¬§ÿê¾Ö%¥V,“òeÕ’·û`]ú+"Õ±\©V’¦¶6KjtµªZ6=ÇòÔÏMŽ:DV²F#W«ß›¬½¤×ÏGÊ´;¾Q{ÙJY¦³-‹,–¥R%‘-Ë¥oõ2¹çô»åŒŸoNî•e1 CÀ0 CÀ0 CÀÈ0-!JHÓ’t-ijKËJW}-i“¥I;91ì•Ò$Ëû˃·Þ/Oþ÷%¹áž¿ÈüÜYjtœ'µ=t©è ™(’Z]bkªì\]v\šÊލºND׺×JÔ9-Ž©-qT"ýBÛ®X¦Ýô±8TʗΕ¢’R9eÏcåø?þRŠÂ é–¾Ö§ +Æ0 CÀ0 Õtö!W¸:õ%Ú½ÌÌí1\3ƒkKJM+öí%<|þd7Á‹ñé‚aé>ngiÅ5Ý×Ö‰ÊË4Ni1§ â¥üŒ¼ãî²×N»ËSo¼(¼x|½â ©6Xª –œÂž’“›/9E!]r\‰œª ‰EtE©pîuõ©XD—*×­ºF—HíÐyÒÿ¡%rÜùÇÊ‘;.ýXÑJÉCÀ0 CÀ0 CÀ0 C K à ”æÈœL\Œ¯;e[™Ž@ËugB TEæv—vÜS¦-ùQ^úèeyû‹·dÚ_Ë2Q;¾~}$TÔKÍÕU“’6±Z%qjk$«¦ZòÃ1Ño ÙnÝmd÷ÿ  ¯„OØyëŽ)ÉcÚ7™¸cV¦!`†€!`-G }Èp ñœ¬D÷žõmu‹`è%[ãé#F4 ©´-¿ºÕ+e&îåê…`ò«5\“ãÒ¡iÅ>ÝH°¼L:ÁzÒzZqMS›:c1™Æ)íš8AùÔæ)I´Nñ@Yg÷#äÔ=’j]‡j~i‰Ì_:[—-‘òªJ—¥Pµsôê+ƒŒ”‘†KOõxbÅ)>uÞdb†€!`†€!Ð}˜·¼Fÿ÷—RÏÕ¬Lؤ/½?Nv5?–ÕÊÍïΕOæ•Éø=Ÿú<_ÿX.÷~¼@þ¶ïx¹ê™²°¬FnžÌ_Q-Çn64Yq¦¤ÂÛj;†kÛ±koÎtc_xè¡™'q‚Ý Çè…‡ÒêwÅ“&­v$לîç/øhpœ¶%Æ ¶sCÀ0 CÀ0 C µÌXZ%ß-®l´ÍY^íŠÁgÎE/O—5a¹t1ŽÀyìËEñ**k#2³´>ía–~…¹òó ýeϵûÇÓØ!`­E `ï½¥ÇäÉ­ÍÖmÒ÷8öXƒÖÊÛn+»íµWk³uÙô»+F\s¦Å4q2°•o†€!`†@7C`àÀiŸiô3——¾:c%´6Þ[þ²×ZòÕÂr™^Z%½¾ôÈÍ– ‡ô”¥•uªiSãÚãË`?²o¾äg‡dhï<Ü3/íí]©‘]4 ÷²‹B‘Öf®i…³U…e ûžçž+9'JÕÃKø‹/tQžÚVµ««%ÆNÎZHJÄø÷kk¯ã࣎’‘£GË›¯¾*3¦Nív>rð3ZM¨vØuWGà´§ÖàÚ¡>qZÓ0Kk†€!`†€!°ú!pƒšB.nìǯ6…–Έ>ŽÀñÈLTäHn{CÀ02…Ú(mÑHÉT{ºJ¹h§t„†JWÁ£½í4§½Z~CÀ0 CÀ0 ´!P”—-½ò³“–W‰Iu8š4Î CÀ0 Õ3§Zî²]£!`†€!`uMÜЦ-.9˪¥¤¢Vú÷¨_ÆõÓùe.*ìõe4ÎÐŽPoïäðZó CÀ0º ¦‰ÓMn¤]†!`†€!`ÝJª¤²vem›êãf5Ú;_îúhœ´Õ0™²¨B>ÖUªFõ+HzéyÙY‚ VYM¤I힤-Ð0 CÀ褉ÓIoŒ5Ë0 CÀ0 Õ+ߘ•ô²/œ4ZvÓW.Ý}´\úêL9ðÞ¯¤ 7KvÛO¦+Q“LvÔôw}¼PfªöΕ{ŽM–Ä CÀ0 .…@hÁ‚^wµK5Ük†€!`†€!°ú"PZ–>9’JAm$*¡PHr›K˜º‹5 CÀ0:¦‰Ó)nƒ5Â0 CÀ0 C 5ô+lY7“*CÀ0 C » `_µîr'í: CÀ0 CÀ0 CÀ0 C [#`$N·¾½vq†€!`†€!`†€!`†€!Ð]°%ƻ˴ë0 CÀ0 CÀ0 CÀ0 n€iâtëÛkg†€!`†€!`†€!`Ý#qºË´ë0 CÀ0 CÀ0 CÀ0 n@N4j+Œwë;lg†€!`†€!`†€!`ÝÓÄé·Ñ.Â0 CÀ0 CÀ0 CÀ0º;Fât÷;l×g†€!`†€!`†€!`Ý#qºÅm´‹0 CÀ0 CÀ0 CÀ0 ‘8ÝýÛõ†€!`†€!`†€!`†@·@ '‹v‹ ±‹0 CÀ0 CÀ0 CÀ0 C ;#`š8ÝùîÚµ†€!`†€!`†€!`†@·A 4`üH[c¼ÛÜN»CÀ0 CÀ0 CÀ0 CÀ讘&Nw½³v]†€!`†€!`†€!`†€!Э0§[ÝN»CÀ0 CÀ0 CÀ0 CÀ讉Ó]ï¬]—!`†€!`†€!`†€!`t+ŒÄéV·Ó.Æ0 CÀ0 CÀ0 CÀ0º+Fât×;k×e†€!`†€!`†€!`Ý #qºÕí´‹1 CÀ0 CÀ0 CÀ0 ‘8ÝõÎÚu†€!`†€!`†€!`†@·BÀHœnu;íb CÀ0 CÀ0 CÀ0 C »"`$Nw½³v]†€!`†€!`†€!`†€!Э0§[ÝN»CÀ0 CÀ0 CÀ0 CÀ讉Ó]ï¬]—!`†€!`†€!`†€!`t+ŒÄéV·Ó.Æ0 CÀ0 CÀ0 CÀ0º+Fât×;k×e†€!`†€!`†€!`Ý #qºÕí´‹1 CÀ0 CÀ0 CÀ0 ‘8ÝõÎÚu†€!`†€!`†€!`†@·B 'SW“——'#‡ —%K—Jéòei¯&++K²u‹D£Õ­µ …$';[¢±˜D"‘ÖfïÐô999R\\,+V¬êêêFuƒ×ÒÙ¯¡Q£[pÂ5qmÉ„ûÓûÖœdëýEÀÆ—G¾¶•Ûo¿=˜¬KŸú›Se„ I¯áË/¿”[n½%i\G2¨ß`ƒ $??_>øàWõé§.ãÇ—Ë.¿LæÏŸß‘ÍI[]×ÿíúøï’B!XKJJ䥗^’?ù¸EDcÚ((øÜ‚ÓvÈý¼ñ†¥¬¬L~ÞïW*w̘1rÖ™gÅÃ!q***dΜ9ò̳ÏÈÌ™3ãqÍŒ1BÖ[w=yáÅšKjñ†€!`†€!`†Àj@ZIH›'î~P¨ÖÈ%×\)3fÍ”µ×'8ãyì_÷ËÖ?ÛEæÌ›+×^z¥übßäÇÕ"!†^{âyùðÓã$Îo¿):@÷ÄPs½ôèÓ2tð¹èêË]ÒYsfËŸ®¼L¦ÏœÑ\ÖU?pà@ù¿ÿûƒ„ëêäíwÞ–éÓ¦Ë!CdÒ¤IrÆïΫ®¾J-Z”±¶yÄ‘²Å[È7Ö“f«¨™‚¿ùöùäãO¥‚Xj‰<öÿì˜E†‹œ$I”œAÉ’£ 9#éGT@PQ‚   PQE13’£HÎ$£’Q2üýÕÙËÜÞî^à¸ÛÛýêž½é ývÏLwuUõÔ)†ßˆ$ói–.[*­ 9söŒ_ä«|ùòÒîídþ‚ù®ëY±r…lß±]­Ë\+ãèÂäÉ“Eß-Iž,¹”.]Z:tè 9rä©Ó¦ÆÑEÏeŸ>}ZæÏŸ¯Š®´÷§• å+Hï^½eô˜Ñcx’!½yö}U ¸¦'+•ÊVkׯÉ6³ïýäÜ…ó2ùó š¾H¡Â²|Öiü¿–R¤ÐCÒºY 9qê„Àҧȃ…å½þoê÷)3¾vï2dä'ª4=d¸d4JÈb£ zãý·åìÙ³ºÿŠ5«dÁÒEº-G¶ì2øõ·¤t‰’rÜX,\ºX>úl¸^wÚ4iåý7Þ’*å+šv‘_ŒUÑ—ß~%+Y£ûF÷¿V-[Iã’6yòw²nÝ:×áÑ1Oš$©ë·]Èò@⊞ýû÷Ë×ß|-—.]ÒÍèPBùˇ›7nÊ3"Žãž?^­8š7o.kÖ¬‘R¥JIšÔidÓæMR´hQÝ·mÛ¶²zõjí€7jÔHÊ>RV’%K&‡Öt+W®´—pO¾ÿøãOUby:ø}÷Ý' 4PK%,ÿa,‘fÍš©ùGúòåÊËåË— weNëÖ­µ39sæLÝ\¯^=)Q¢„üôÓO²gÏyö™g%Mš4²jõ*iÒ¸‰lÞ¼Y¾3ÜÀ³åã-%K–,rêÔ)™={¶*$p)R¨õT¡‚…Ô §å+–ëñܯ!:ïÞµ[vìÜáñO?õ´dÉšEËxéÒ¥ò`¡¥YófráüµÔ¹aîׂ JãF%sæÌZ¶ëׯ—5kCê6\Ÿ°­t™ÒÆ…1ìܵS~üñGµ<ÛdïÞ½ÕºâÈá#ZÏàþ‡ó,Z¼H- Ôo ×U©b%yÀ(RÇŒ#…Íýš3WNÙ¶m›«žÖªUKJ/!™2e’cÇË4£±V¹rå’ÿý”÷¥”råÊ©[Ü‚… ÄÖÁlÙ²i¹àV"¸æÎ›+P&ÜKYûËZ¹n”­0{ëÍ·”òåËäŒq'…À©Jå*’;wnãbzZù¬]»Vï%XˆÁiü„ñš¶SÇN’)s&™8q¢Z¯`߆ º¬Ï*Uª$Ó§OW(K<¾Ÿü½ü~À»rÓ[œu/((‡ñ<°÷ ʳiÓ¦RÚXWâ~šiÊ h+û÷í—çŸ^ËÈ*q¼=›`A×­[7ÝåÙ¯_?:t¨*„|Ýóö\ü&    @%à9èHsûÏ¿ÿ¨â#±qÅ™6q²lX¼JÞèýªGçzÁ\£p9) Ä7 ñxzĤÁ'‘é$Œúp˜Ô«UGÖmÚ ç/^º>&Ãßû0$]ÂDú 3þDfßéÓ¥“ ”+wû ””)³fÈöÝ;¥mó–2ôí÷u[¢D %žùƒÀM(~¼ø’íø#¦ÑâÅ‹UwX áº`yì±Ç´ŽÃ uyjÚ¬©À"•+WÖûpà›Õâ X€@ypêïSz tðG}6JvìØ¡"íŸh/5jÔ÷¿'sfÏQÅÑÊU+ÅZ=éNÿýC]¯S§ŽZ¼½5è--»Úµk«õ;Ã>æJŽ8&âÏtíÚU­GÈò€\¾rY?ýõ—ZŽ!þ âÒÀâÄe‰)Ar‚‘Cš5m¦uà‹q_ȦM›$Oî<Ò«W/µ"ƒ•˜AY…è­›·4-öƒµ¬™ÀÊY¸Ù{Ë#GXɼ÷î{z.”{àóˆ°=c¡~ÃrçÁ½^µjU}FÀâ®J•*¸òÑUŽá7”g‘<Ëñ¼„…!îQXõx{6¡œGŒ!Þ çĹ!1qÏG6_LO$@$@$@$@1I Ú•8gÏÕ@ÁP~Ô«ù˜Ô15Õ*V–mÛËJµb¹Ãfô¼éôL›3SêÔ¨%p}ªdFú!°è‰ˆÀ=a×ÞßÔ²fÑÔÙjñ3oÑBùåØÏDT0=4K¦3S·ÕÀºp +dÒ|7v‚Àše±QbŒû&dYwˆÆèÀ@€,„à–žØQn¸HAСƒ £´aÃ͇[ ,j v”[˜{«ƒ/…ÑÞ½{µc—*¸3ÀMè—u¿øÜÇûn¾÷íÛ'[·nur+pû‚Û:”îl­nÜófÓ‡ûb|&ܨ0£:Èp[ƒd3°P‰g¬Ê  €¥dÏÞ=zP0 ÃºË¸-_¶\šàýƒ‹ËáC‡Cý˜‰?eeöœÙR¬X1µÄA9ÿðÃv“+OPÖAP—† é4ÃõûÀ¢’8IbýÎb”'V‰ƒ¼þöÛoº®2`’ѸEED¬ÓÞ}{]Ê·_~ùE•8°‚ÆÊ‘#G\ŠŠÓ‡¸I%5$¸¾ã×rèÛ§¯º BIµhÑ¢Uàà:qÏB  … ÊN܇°Ì‚8x@•Ÿpƒ{Üàà΄º WRê=”8HË•_×ÿêY†zÁsJ#œÇ“'"láv ”nÌ3VfÄ8Keì°ÐÁ9 ƒØrÖ‘ø‡zdŸéàÑg“óÑ~Ï;Îe    ˆ¢ÕªT±2øAFaó„º$ûv¢/þô‹ÑŠ3By¸F!pñ§ƒ?2–42ô³Oµã™© ºZóÀ 3Q=Õ¦Ìýnªºjy:§û:t!ˆÁãI df¶z[•E`Ú°v]™þõ÷êÂå)ýݬC³Ü@`㔺uêª;Fó‚tˆef;¾‰GpPXF £‡à²8>>Nù÷¿ýëœË˜Õiìçc²g¯î ¥ \BªU­æLíˈ߃ÑzûÁuXéülg±Nçcedg9rÏ›Mïé®uVìljö·ýFg܊劎5âÌ@q{î©S§ >P(Àâ1^^zé%uó±Ç¸ßÇŽS‹)(bìÇ©üß… Sn øm]šœùÄz§ Žüâƒ?ÎqíÚugWBì+œ/±b²¼B%tû‘ aˆûÛ¿ÿÜáŒs .C!ç<Žmåæ­›vQ¿„õîu°ô€QÏ^=Ã(,CíÍ?p­éÌó ‚{1„°îÊÕ+®{Û À€$L”Pc¡¬ *h¬qòë,sPVÀµ±j•ªšnÇöÐñŽBq0îXÞ$"l}ôQ}F ά¶¶n Qšjþ(‹¬¸[ûØõá}Ã2 ,ð¬Bþ#úlr7:îyçñ¸L$@$@$@$@qÀl4\9!ÿ×^^ïÕ׫‡ÍjF›!gMç rëVˆ!ÞhÄ¿Á T˜*¼UÇö2uöÌP7÷ôzÇ?¸_AA„x5W)+ÕבÍÛ·šXé¥bÙ«—rÃt,=ÉA3ÂA€e:‹§ÎQË(?ªT¨¤1gª6¬­ç˜4%Ä’¡i½ ­ºS4þƒ+JÛÉN•2•LÅ 8÷§ qÕï”p³AÜ–åË—«{¬rœb»?âr8å¶«ŒB¬  4¨üرcuÊnkÉø$±!ˆí‚Ø?˜jî5pm2ª©_Šíˆ&Kb5m ÷ƒ8ÙØE°Ò`ܸqvÚôiZg`MמwÞyG^ë÷š ~$¶8Ù¼Ô¯__2ë8( PŸÚœ­Öš.=X 8/Ü€¬å îŸ#Fhž1…ö‚ù d×î]öðª°ÊiîaH.c½74ÄÏq*ìù\;ý·—âa?8bîQöÞÅzoe …Ü‘ànîï¾û®*GpÏÀº$¦qx×Ïß Öcˆ·d²¸VX Òà{çÎjE”Û°ƒ,ß +VÔü#˜t(‰`UÛšÖÔs€\êΟ»£È†B õ <!PàFVP–p‘ƒX‹¤ðžMà±õænïy=ÿ‘ @'­îT¿š Äv¦¨-ËÖh¼L1ž7W‡æºÎT^ éÔîI5 ÓŽC*–-§±tÚ=ÞFcˆMc½ýÚòѨOu½ýwÛt01«TrÓ!ûãÔ qrÐù8b:ù¸GAÞym€ü8sš.;ÿýhbÝôêú¢t~²£ÆÁµÍÃf¶–ñß}­#ÇX·°|F™±ÉŒTgÏšMw?`F®ï…À SòÂýé×ßÐÑyÌ „8œÚŽPxç>s:dvœüòkpã +è.ÖÝÊîo;Lö7, U«U•T©SiÇî4˜Á³ñX×%V 2ngP¼ vOŽœ9\.Mîyót}6ø,â h/‚ãæÉ“ÇSR± -l„JSó‡Ø8‰'ÒòA°å3fhìœê5ªk (BàÞdã¢ÜkN˜=Èv’m&.^º¨J7(gjÕ¬¥î=˜š1m8±M Ü[µj•^3ÖB9e¸BÊ£P@0ìŽ:Êþß÷›à²M䊱¤xû·CYh<ÛùYI JFÜí W¯\Õop‚Eâ¯8+°ð‚²¥ÿþêJ„YÐ ÎiÉû¸/£þ¶lÙÒ(“’ÈŒ™3Ôå Ê\?Ü-ï¥t±»–%P˜B0½¸U>aƪúõêËË/½¬A—dŠ )·tp©‚% ,žàJå\ݱ–;zðHü‹[(Û`¹„àØ—ÿ½,å+ÜyF ë~]§Ï" ‡NîÏ O—7²ž=B,¡p@ «Y³giòðžMVÑŠgM‹-tF¯»¹ç=]#ב @\#àÙ,%йÀÔâO½ÐÙÄ‹Y¦3üÔ«Y[òäÌ-Ì,>-;Óé)R´ˆvþÑY A§S{ƒC‡T`§b·%¾® J Ä‘AgÓ‡ƒ‚ÿ†'°üA°gt¶'Ÿ‰[k\yÒ¤IxÓiwìØQ;ásæÎQåHxǾ›íèè"†ŠókX”Áí –°ÂìB˜&‚|Ãõ1pŠ´ÅÌmpK‚Kä;“'tÞ1kfÀ:e¦ žðÕ—i kÛÖm«Ìš„.˜ «l‡% fó$£FÒëHk¬ê*›™ßP÷p¨‡(C¾úê+µÌB¹`V*('pVa‘ãD% ”øÀE ±¢`±„`ÅV ´š;w®*uà~Å̲åËdÊÔgÒíÞ½Û¥ôAŒÔK(s î®Tº2ÿÂc‹k#L#Ø<ËÌôð{a:sÄÁÛbÍš5õ>±S§ûº (SQQáú†gÙà÷k|ìÞ³ qx 4ÅqÀ n€wsÏûºVn#    ¸B ^ú9"h˜¹,¡ÁàÆ˜VÜÓ(2:<©«Ã_'ïÌn„¡ ÖjÆýŒ8ÞÓ„‚ÛÀ‚&A‚øêúäž. °Úñ÷ƦGL3gÏè,VvýF§Ô{=ºoχotÀ¡ÈkCTÅZ§ØÑíˆ3[¡œl°d»®ÅÎÀc×ÅÖ7ØÀÍJ™¨,›Ok™cÀzçµÎ}q]P†Àš"®Hxõ œðqæ ÷ùЇªÂäõ7^wÅÚq¿çqlðBöeÅa¯uÎW:_Lq8Nd꺯ãEç6¸ZáÞñTg¢ó<žŽ[”®Íw(Ÿðì…‚-:%¼g˜áþ´çE>îæžÎkç±H€H€H€H€H ¦ Ü3%NLg„ç#ˆyîJœ˜¿ž‘H€H€H€H€H€‚‡@ÎA!Å@IDATÂàÉ*sJ$Ý`Q÷Ÿó^fu‹îóñx$@$@$@$@$@$Ìh‰̥ϼ“ ÄÑØ8ÎäšJ$@$@$@$@$@$@$@qŒ•8q¬Àx¹$@$@$@$@$@$@$@ÁI€Jœà,wæšH€H€H€H€H€H€H Ž 'Ž/—H€H€H€H€H€H€H 8 P‰œåÎ\“ Ä1Tâıãå’ '*q‚³Ü™k       8F€Jœ8V`¼\       à$@%Np–;sM$@$@$@$@$@$@$ÇP‰Ç Œ—K$@$@$@$@$@$@$œF$Û§öŽH2¦ ‡@†‚9ÃIÁÍ$@$@$@$@$@$@$@$à™-q¶…ÚtëÊ5¹uý†ÈíÛ¡Öó @4ˆOâ'J(ñ“&sÀ)qTsíz˜¹‚H€H€H€H€H€H€H€H  ã™[ÿé`Ü9r§R œh¼ŠH€H€H€H€H€H€H€HÀ;Oº˜)qèBå*· @´ðÎ&bJœh¿H€H€H€H€H€H€H€H 2¨Ä‰ -¦%       X"@%N,çiI€H€H€H€H€H€H€H 2¨Ä‰ -¦%       X"@%N,çiI€H€H€H€H€H€H€H 2¨Ä‰ -¦%       X"@%N,çiI€H€H€H€H€H€H€H 2¨Ä‰ -¦%       X"@%N,çiI€H€H€H€H€H€H€H 2¨Ä‰ -¦%       X"@%N,çiI€Hàn Ä‹O$H ŸøñC?ÎñÛnCº¨Š=ö·çs?WTûùb^Þ¶§¸/…Çm™²< ©R§…Ær·åhË6T¢ýaójó ÙŒÙ²Ï|;ÅÖO¬·õÝ® †r³yuæßò±õÛ‚…Íwt~ƒ>Á(¶þcÞyƽsúôr_Ê”ÎÕ\"¬a ;aØU\C$@$ä-X@ºôzI/õâ… òfϾrûömýõy ä×å©ßN–ÕK—G:Kxi~0f„\ºpQôxErçÏ'Ý^é!Û6n–¯>éãʉ'–-šI©òe%Q¢„rè÷òÃÄoåï'5‹ &”F­ZHi³=¾é|ìÙ¹K~˜ðüsé’noýt{y¨øÃrýÚu™ùÃO²eýF]ÿ@¶¬Òs@?þÞ‡ráüy®Z êIíÆ dÚ¤ïeÕ’eҹNj’¯PAùpÀ ùëø®t¶E×€!ƒ%á¹pæY0sv e1ÎäÇ> ìðú›râÏ¿ôçcêËc ëëò¶›Ì³ásq¯³v¿@ü¾×Ïá@dÑ<~¸¨t|±«&õáPù}ÏÞˆîé‚åYï­°’&K&õ›7‘ÒÊ Þ»³gÎÈÌ律vÈ&o»ÅêúD‰Iù*•åàþßåè¡Ã±z-prÖï¥zèÖ{:n! ðS·nÝ’”©R ”$I’Hμyë£SNŸúÛ(¦È†5¿DçaãܱZ=ý„T¬QUV…Êœ©3${î\Òµ×Ë®Ffzµ¥bõª²vÅ*™k¶?Tìay¼ýÿ4Ÿ9óä–2ËËçÃFÈîí;¤nÓÆ®ü£# …Ï‘]ë°€uà~pßþPëýG©reUÅä#•+¸¬<=ßþœ?ûL)ðPa×e(ü`˜gM0ÖÙ˜z»ÀÁBÙ*]å«V ‚‡Îâše+ôÙñü…ЂàCºõé)åªT’߶úFæL™& â''»<#ÅË”òK ·o'[?.É’'÷Ëë‹KÅ:à»´h‰ã›·’ €ßøóØqÉš#»4«?ŽŒ Ãüüø‘£ºÞ™XcÇF ׬m+IŸ1ƒ*×v›ÎEµÇjÊϳçÊÖ ›Tшe¡ÐÌ¿ógÏI’¤I¤yÖ¬\´ÄtT’IŽÜ¹Ä>ƒl:÷: ¥f = l^í·e‘ç0¶}Hà>‰º‰ç:ì°vlþ¿ÖÆJö©ÞÃ谦ϘQÍ™ç²Ú³ç äS ,q „‹éÃ%KHŠûîS‹F(á?lÞ?+H:|Ï÷í%7oÜ”‘|¤ë¼Ý‹¨·Ý^é)ŒbïJ<Óçü4U~]½V­Ê<• ˆ´°Â,ižõÿücÞÓf˜gSU}Ž6d˜žÓ×sG8þÁÚ°iÛÖ’ÿÁBb^潸ßX[.—ý¿íÑT¨K¸¿vnÙj܉ÒI«§žpì²kï'|pÏž*µjH–lYµL¾?Ñ•o´[ÀïCH•š5ä‘JdþŒY²cóV]×ñ…®’6Ýýæý0Dß¹žÊ:¥©SžÞÉŒõOóvm$߃埋—d½©Kæ-Ð÷5Ê¢å“ídݪ5Ƶë>m×à]¾Øl_kîß*µ5ƒ6EõoßV~1÷õâ9óõ7ÿEžë€of´Äñ͇[I€HÀï  ópùßMÃæA½V(K öîÓoû¯H‰bÒ¶ãS’æþ´ÚøÍW¨€iôö6²¤š¤n“†RùÑêúûìé³ÒîÙŽvWýNl,|`í“æþûõwº ¤MÇ'%[ŽFq°K`öZ©F5©úØ£ºÝZ=aŽÆé“§ÊŠÿ=ÓA·ÇÅh°AA…ެÓpófˆÅÙP0 aŽÆŸumƒ‚nGÒ²ªÝ¨vPÀ ¢V8fÙÝ ÛRš8àŽãz’F-›Kõ:™N€È™Ó§ÕÒçÉ.ÏzJgÖAY’9KÙ¾i‹6¢qá‘…\3ܳFˆ4° s÷5Ôåü©õ ŠžœFÁ†Ž:Á^è"¹óåÕô©ŒLâ’‡K–{DÝ#QW÷îúM2fΤõõÖvgþ>­u»vã†R¶rE£Ü-!7nÜP7V÷sòo(®Q·¶üºA¹dÀ:¨Sø … ¤QŠáÞË-3¬Ë`î)°‰/¾Ö!Oem÷s¾00ðìË/˜A™Ú^I d€ÖµÛªcÜ›1€…2(‹ xE{õ ®§øf@ƒ*”¨`ðÍŽ–8¾ùp+ ø=[fqY0š%BAÓ±=ó÷ßrþܹP×^³~]ý Wtð»nÓF¦![^c­T0£åŒ^;|D-i𙯉7‰g¬Hæw!4¦ œ€5 F3dÎj—CûÈ矌ÐN߀k£'i²¤qÖRÊ"Å‹™ŽXCÍw¡"!®%èT`ô‚N—Œ CR™mP<ĸcUÓø©ƒlÃßý@Ó¡1ˆò³J ]éå:0°R¹zõª î?@ãìtîÑ]•P˜Á2+.J9Óy…l68Ô­Ó§Ni' Ès¦³µ~ÍZµ\‚I=ÜÒÐèFzãÚuÊ­ò£¦£eî…ùÓg©• ”7¥¯úXÍPV`8ö膩ò#_õnpèxc´wüÈÑêêÕ÷í:BnZîÚ™ IJЂpüó.‚¹ S«DÃ3 ²OíYàÌoDŸÃ°FD|§U‹—ɿƚ£™±Ä€{&”9PâþôÍ$Ï,Ÿ>¯]½f,Kn¨¥žÁ$Tª¨ÏÑíæ~ƒub£”3.UË.Òçè¦u¿ªå¬ç`AƒN5î¾á=ÏŸ=«i¿dÌÇŸEï!µ~‚E©·²9jžxnCF‹IXEB±¬®²!ýv3±çŽÄüÃs å‹ç¬X·¬ß çûæÅ;~`Ï>úy}¢sG˜a¬.ÃËo\|@ùçâEý¾Ûîew.Äù(Tä!}ã?ú£Oʳ·†}(U…ÍÒy ]—€xvC½«m˜NÝ»©•hæ¬Ȳ? ,± ˜ƒuÔÞ]»]ûp!òX|3£Ç7n% 8AàÀÞýÚÀHbÆ2›Nnظ5¹ƒbféEMÆZÔ`” ÊÄÒï=8ð ä»eÃF=^-ã׌ÎC“s§ìûÏ4 Sìň:ÃqÕÝA³fÏ.5êë#p‡€ÿûeãúƒNĺIé²̓\½rU¿ÿ2–"S¾ùN—ña÷+¸µ½øÚ+j>Ê,9ƬûË•ÎÓB†L™T™péâ%©Û¤‘&Iœ$±~gΚ%N*qP‹›F0\ÒnÞ¼!yòç3#ïGt¤³¬éØ¡“µ{Û ¸†8Ü(Ðh†lXRï0y‡dÉžUG¨1"‹ººî”›·h‡–løøªÏ2eÔ]3ît¾Ð؇µ$ËB3æöÏ\`ý«(|""ö,pÏsDžÃPxÁš ®°†„kÄZöÁM.©p„²õV>Á$x—à~ƒÅ \j  ÜcpF€c(nÀÏ ‡‡ ‚Þb,r`¹ãí¹h•8pׄ5”_eãzGËJëÖ wJ§Dô¹c÷ÙÿÛ^µ8„"àšQÄÃ2Áë±ìM $@p|<Ͼý|¼árJß¾ò•8xC¢[ÆZÃ8º—µÝæ|à Á;–M\¬4í Ö5m$Û~9sê4Vi›Fø/Ú°øFI%Žo>ÜJ$@q‚€ z‹YŒ ø 7+°R@£ŒY¢fá¶qÃtš­\¹rÅ.züÎm:×0=¾mFˆwlÙ&kÌ XpëÁ9œ‚øVàŠ×V!C’|ϼ™q 0J|Ñt¾ðù‡’ÊŠ]¶nUv=¾Ñ ‡U¬p`IŸû·z¿jf©ê/ÅJ—0V$óœÉÃ.ÿgºÐÌ’eè \ÜÃîè¿kÐ)C#Ò¥×Ë¡.ŽV v$ŠKÌÄ+thTþGãn~(\¬’MW˜ÿþ×QÀïðê3”Jæ^²ª³€eaóéü†’JˆÒÊj¬’¿üêÜìsÙY'áYàžÙðžÃHk0tÏkm6«âÎç¦s9uš4î§ øße+WÒ­^Ú|Åä7F7®š «%{t†SÂ]ÜÙÛíx.DÄ”*Ü_¶Ì‚é^;bF,Á !ˆQaÍ…ñL°Áa§÷ƒNŒr?÷Q( <“Òš¸-ÓÅîÍ[ võ*pË \Kàb‚Ø ž$žëÈ‚(Âì~îÔé:ÒkÝÔPàŒºÀ·`‹QõLl” b]¸ bã 1Lº›ežIØŠ¢)â}+qŽ™sbDð–‰Ë3vè§úE§×W§7_\ .ÿ{Ù… ¦î`jÃÚ #ñ^Š{ßZá`ÄM@z¤AÀXŒæÂr䨑+3{Pëê†ßáÕgt3 1§0ZŽŽ”?…ý±,/wÁsn?ˆ‡q‡ãžÞù;Оμa9¼ç0Ò 6îÏß|G¤7mÓ«]‚ÿFfvp†B.;°42®A°…ËŠóžÆ=—ƇMxà÷wà ÁÉ!6}x÷b"£ô†¸·Ã}• ‚Ùÿyüµ ‚ ,”™ˆì”ˆ>w°Ú;̳ƒ%PÚ n\cM ÷fL.àn}…öLûç:é;õañÜù®S‡—_WÂ8´€<â™\θÿeÅJu£…µQ­†õÔ:ïY(q®þ7Ø„z2±ƒÜެívç;`ßî=ºÊÁ¯Ç|¡Ëp]Ãû.Îxÿ@|=Çì¶P ~Ý‹ÿ"K€uÀ7±Uâ@{ŒGoÿÃ@zI½ýéÇÚÁÁƒÑJ¿÷ÍÃÚŒ¬ôz¦«]Åï{L1+žîöœ|bF»“›Æü3/=/ã†rÍTâ<ý{#‡©®sR‡M'kÚ·“µóëÜæ¯ËxûèøÃâ.>î²wçní·íôtÈ,J¦CŠ8 ˆÑrè÷‹ê—tÇ»é³ (Û q?~cWŒRÕnT_'1.,P\Á…Š(PPóøÑ£®Î쯫×h§¡ážvŸ™Õ ÛØ´l0ÊüàÃEä“wÞ×UxΠs‚Æ=”qÇÿ ˆlÓ{úFgpÿž=£ç‰Î4>Q}£ÔÀu¡Þã˜qIàò¸}3öËPõ ›Æ­Z˜¸•u–*¸€;\ÛથÔui!‚gB"S^ùŒ Faãn1gÊtiĦsÖïðêóï{öiÇí˜o¼¦5Á4­,,#Oßp;±JXŸ ãD q± ï9 e.‚ª–«RY]5¬Ò2iÒçf‹vmµ‚Ymþ6GÌH„q†˜ûƒP.%Ë>¢ R´›úzR¨ì"îÚ5Pæ þÈ&c†ñŒ…bÑδÞ½hzûVh«ÑðÊS]ýëù>½Œ’üËÎ/¢Ï¤‡RA’aY‚@¼¨7VI×1wÁ¤öžƒ…a·Wzh<ûÐ ¤÷2¥9ÛcfG´7ΜæÝ€Y¡ð.]nb#Al[§bjjiYÔX2ÁÅÖ]ÜËÚnw¾ ˜Ã€À´hj’Ä3Öŵt ±#"ö=òB<¼û)Q#À:à›ÛÛ3ßé¢eëê%Ë䇯¾Ñf€¬Z¼ôκ?CÖEËÉüè MZ·Ô c~tIAs)hXÚX˜Ÿ1 ¢… iÇàcÇ|rÀ4Ȩ¯˜¾f›ù2 «™’#qAÐ0„âÊΚÓ× N`.JÙÀÌ M¨‘¯Q (aì³ßž>žòƒ©HažlMÚ=¥ äuèXA¼åµqw‚" eL¡ eb/ `"döOÓ4>b4T«]KHúŠu±vùJ=W±Ò¥¤u‡öª¬Æ}†Ùª|•¯ž,ÿÃó`‡™ò Jt(0]úøOG»r´âçÅ& ïzmà£zØt.0­»Àõ V8ÖbA|1*‹+FqžˆÈO'©Ò ç¨4fg™4n‚Wóñˆ3¶Ò”3Ê1bÓ8×X·ÙŒº¢s†éà²~uHy§qçsZí fKÂÍ ®+¹óçÕèøy“ðê3÷˜ö }t¶c¥iÃ@0»$ÊB3äåŸ}Æ æÈ‰?ÿò’*8W‡÷^8kŽéxžP 2ÌJgëP6£ÔŨ?:ù_hÜ1½1އ™ïê—Í`cÊ©”µù¶–6°ÎÀ;Ù`‚;%*÷¢¯²Á±çOŸ©–}P¦Aû¥±B…ܸ~C¿#ûÜAûr×ÖíRθA %þ™siœ`•iñD[}/c†g€T–EDHwXÛÁjÒ]YÜT¢?÷Q¹½• ¬Sñ®ƒ’Ïu¸¾ üè}UäâÕ)‘yîà=‚vh¯Ý­D%¿w{ΘØîf°Ðôö‡Ríúõk®þàÝ^Üʯå\T¬YQI{—·6ÖÝ^[°îìu aª¡ŠÞoL 0²…Fˆ§OþQÅð_Ç©ëV®Ö—\úŒõ÷3Ý»©‚]k†Š7. ¡ÑŒlŽÜ¹¥Ã ]däû…šR4{ü>´˜e# piq÷‡Ù<\0ÚîmÛb*£šÅÃÚà B‚Ub=\JŽ%Wac~ÿd×g5FhÒ›þò…ŽúέÛTÁ…©>1 ë™Ó§ÕìlÆ|<üçÖÿ¦˜žJ2Œ–Ü÷»šFBYètqótåÙsçÔ—Fró*¤ ì®B@W4ê1ŠŽ‡=gÆòR` œȉÎ:hPÔÁ 3MXó{ÔwN³¿q 0©ÅŒ ˜I%¼s@é÷hý:ªˆ9¾éˆ±(&ÍÍtÐÖÊ-þ3âà8ñÿ›-¨‰ñ½‡)0üˆq^ø^côèøsC©Uº|9}é")0I’&Ñ{ÊHoR¦bÃþN0\Ôk¼¼1õr›ŽOÊÓˆÂ,yÌ(LV1ÓÄ3ýcJ£XS”‡'‰Éü{:¿¿¬C#ÈWã"² ÉȦ÷w{ÖlÚÛq°Ý[¸¿avwâl—ynEE`…%4_u=tÊ_Þê3â¨5nÙB­{0p‚÷4‚BنٳœÂ²pÒà²'hÓQî=¨Ü‹ÞÊ&øv¨ËÀT°0½‡Õ,5`JùÖ°5NE¨„æf/æÿ•A4Hï쟦ÊÒù?«u°ü8°oŸ2„©çàþT ѹGwõ¹…B,.N3èÎ!2¿Q§0/”8ëV¬2V{TáµÑ˜Ý®X´Äç¡ÜgE²f†Q0B0 ( á‹ …"Ê­ª‰Ù°Ô(0[ 8¨w£>øXGë{ èg”8™}žÓ¹1¼s<\²¤&‡¥f‚« \§NÓvÔX¡a”øs¿Ì5®¸ÄKé;,ÃBY%ŒRêŒ*Œ¢{4ŠY|©TQàæ„XÅJ—T&Xö%p qÊÉ÷ÿR%NpHÛõˆÌž!S&u·º&Ê=Š"”<Á¦ÄAžaý+T)£\$2L`Åa}×u¥Û¿•FÉ“ÉÌ*ƒ:ðýâ“‘®2Àq!°¸kxXµÀ¼Áb!‚Ÿ}fÊ_ÌåK`5c%¼s ˆ]ÅU5€jÆ ÕÊhÚµ^])P'`ƒûáå×_UË.ÜKË,º'æÜ°4‚"Êä÷óýéÓ«åRÁ‡T7oî:Pò8·6³@þ>qRce`æŠZ&–@Þ‚ùu}Âÿ,ô‡—1/—ÁÕ$@q˜À6㲊…H øÀUqú($@$ÛBk bùjà„Î2ܨò, V)˜@§Ü2Š+ Ñ©‰ÿëÿ¢#;–׮ƾyù\Ó)…Ùõ£ukËMG~óäÅ×z›8(éôZÍž'MMÌw«ˆËÆ\ÛŠÝfMo;ŽgL*4\€¬ò þœ{Áéžbèß°Àò W+ˆ%ã-&ŽM3oÚL‰ÓÆÄÕ)mŽÑ¥÷K2ô­÷46‘Õµ$3.I–3,`ðÁ,=ñŒ3Ä––o¹Í‚€uøB[I0]´E)ÞÎŽÄ„QcZ5Ée”%Phàƒ86P¢ë`ÿ-Œ:\jÔ©­1p±S¥© †:¨÷kÑÏ÷±‰wB¬J5|<Åı׻fÙr1qÄnl¨ó;L SX !øœ½'ìþÞ¾c2ÿÞ®ëI€H€H€H€H€H ªüJ‰ƒŽfô¨a [6Ó<¹»Ra%¦ =l‚>ÂS´BÐ!‡Å\Pà«å•‚c[à_‹ëP ›n;˜…q>`õX@ˆSÒÌÄ5‰8”Y6=fýkÖ­›·4z;ΓßÉ„"Ì΀bÓÃ7\ï0ÓNfþŒÙêî„€u³Œ+ZDƒ•¡\ ÓùÌÆ*3IÀ5iŸ1¡‡À% ‘Ó!PL þÍc5rúdH R̈²jÉ2Ýžß@vŠ• *fÒ‚RÏJxçÀÌ8˜¾püÈ1Z¾PVAˆë€ÇÖ1¸ Aàªë#(6g|ÿ£Æ—B0qÜCPšBÑ‚øO°ôAGÌ*Ìî73ÌúuÙÄÃ‰Š¿1”N‡ Í8vQc‘Q‰éüGôºü-fADw°kX­!~¬ÁÜóþÆà^_ßkÂ?>ËÂ;+²ñÎÆ¹…œœ4‚c.ô°¬†{:â›a0m.x·ñ]뻢¬œVïÞÊÍ™Î[ç™óý ÄÍDLJËé¬vr‰W¤WC óÉ3ìñ"º¯ó|ѽ ƒÄ´EØ<bZüJ‰ƒÌÃ¥ Jœ¬Ù³k ÷@ÀHóX£ú:»ÏB‘³Ç¸¬@I¢ÅZˆÔjPOg耲S¼Á5ÃüU—/\¬ÓÚ>òb;JèDczXk­€‡AT/¸Ù1An1]!Ü…ê7k¬Š аâ"*çöÇ} ìƒbl÷ög鱆õ±Ts)¢7©éßý <«Õ©eT¯ÓX/°²‚¢A‹¦æPñ4`2âÓ 5¦Ç­ß¼©ÆliùäUµ´²;ö¼§Œk¤bjj-VÔXj¡>[A<_ç€R¤nÓF:…!¦!EPpÈßfzaˆU~¸¨N Å”c ‹fRú᫯5® s¸Ä>rÊöM[ŒKÐV£Ó¸U U õÁ 꾯s@1‰™Û0m6‚ûBa‰€Å¶ŽaZsÄRBlX°@!ô©˜üãþ@ mX Múb‚Æš±çÎo¶¼5°vØ;¯–Ub²XéRÒºC{ zŽl9r„Yqîc—c#ÿöÜqå–YÆNP6kÆè( ³©vゎO° ûOɳ,¼—ÙxgãÜBNNÁ±ŒX•M›nß° ˆéÞ¿9fpÛ19ßµ¡$²jñRoôãÄoÍàÒ\m—`Fc´[‚P¤‚ mæšõëºbŽ"þ%”=h¯#Í„Qc´ß‰ÞÎ=^t&è—ÏšITOÊùAŸ%"öó§ÏŒHÒMï†ÃÄŠ2zgØ?F³-ÆÕg¸Ç3Â|-QâDºm£±Êñ$¿,_%?›.YŠäÚYv¦Áˆ?>ªzéÂÅ»×h;ÉåW»v³Ç¶›¤g§.®õ¸ñ¿;Nã˜`¥µžp%0 ÎôX?êáÎÍúÀpNU{ñÂ1 n'‰ÌØ‚UÐqÿð·T™—íctÞÌ&àK^yî›Ç}:*ÔzXô î7ÀX³¤ë×o„±r‚UfÇJa”H˜j²v£¡öÇõŒ1Z-…®_¿æÒê;ù:Fkl€=S†âÈ)¨ïôé¯÷‚–Vkø@¡߸YAix/åËŸÉe£=‡@„YÓ|Iß.¾_zx Œxÿ#UÌ!(8bf+˜%+Ÿ fõ;¦óêä~þ–\ˆc×N”-^ì¦ÊËf”ª|Õʦ¾\6®x?™Ë-£l¡–\p_3ešæ÷F¤àÂi™™ÈöwÂå®àôp-¬ôhuµ–Dƒ'Ø„Œý§ÄYÞË‚l¼³qn!''àY†²í¯µ¦/â´·¡ÔƒUõ…³ç´Ó™9+V¯ªïOtX­{=â6mÓJÝØS+Xâ@z¼ñšÙï'm§eË™CÓ<-‹Z‰`ÆÑ]Û¶k:¾kÃ]ýC{ÐòÄàÝ/ |ÚÁG¬ß³c—Zócƒì/¼Ú[=' X@8 uÍ2í„@@H…&^ã~3 ‹F üF—¢çËò¯™²Ïž^uš44“ûÔö=Œ9—ÔN>S¦bym"TŠ»ä6Š”æ& Úî‚ЈC‹pµòT×gÍ`zZè®ß¼‰öÍ`5w7÷Ê]Cf,^¦çÄ€zãí€ï‹Fÿ€kÿÙôG¬Ç&Šæ±¦Äñ”X(ü Þ¸Qðñ&èT¸wZiÑiŽKâIys·×H°ûe^¿v]}-Kø-F·øŠí‚‡wxuЦðÄ×9°¯·{ øçºKDã¹ïÙß'¼Oþu"²»{M™¦îFb*ÿws1½/¦§‡ØYï0C\a½wÕcÆŠª°™aìIó2DÌ-¼ ã&àJd(hàêëB¸!–*_ÖÌP–OÞýMµƒ¹2Ö»tÅt^cë|d[äÞ—e–‰]C6–„ïoròÍ'P·fÊ’Y-2ḭ̀6Ÿ¥ÍûëN™¶ÜÇ;uï&ï÷¨ïGĺDGÔ*qŠ•*¥ï×¥óÊCÅï·‡ø¦Ó™ua½Ý­OOIdbïÀB;GîÜ+‘‘fë yßò]ëBåXÑ\2ƒÜP´d0žQ€6óîm;<FP @ΞiWc  ƒ¤M|¤Wß}SC- ý³Ù â¢ÝD¹CЏ9ÅZâ@±¯ÔuôY0+pG3ˆ÷)ô£0û4Ü©½,Lž“ÅœøXÿˆ¹ß1ÑÒ˜?ñtÙѲί”8è ¡õäW Í(”PàPH ®8kâΠãË{\+¹à¸ÞÌYC”8ž,Õ†¿û6N_4@ƒ9Î6Á—ÎÿY­WGꙘ[¹‚ ø–o\»Nöš—1\ãÇOê™ ¥&OÁ(dì?¥Î²ð^dãs 99iDzvøM‡nÝîrõÊUy·ïëÚOiõt{íÄ•7®ì³ŒÅ cÔÖˆ“R¸xQcÁ}]gÙÜhb4üè}E5¬ÅÑÉlТ™Nâ0ú,ùyö\3’WžïÛKª>VS•8|׺Óüï†&¬€S~–î«m:>©ÊL<¢V7f§_W¯Ñ]aÍ>nøHiùÔZ¾˜(ÄÊ„õ9:ô”°îF+ðD±J(oN8¡íJlïýÖë:™ ,Ô`%ÜÏsÈBc½«9ÄÏ…ÇJTï1¸Rá^…Á Âvä)_ïsä úŠ-ëK…Ô­3È뽿Râ|ñÉHŸy´®#>q# ø)¸¼9ÝÞüô2yYAJ³¯A.¸¹¢acGÿ1£ŒbF3¬µŽ]oG;‡ ÇÁ$¬~3fÈytZ>AI„ Œ‚X7¿`ANÆþSÒ, ïeA6ÞÙ8·““Fp,c°ŠOÖ¿ïÝë²~G§#ñŒ%+dóº_»H#ã®ó°楽ÿ~A\DoVø°<€dÉžUcÂ:A;AßµŠç®þ!¼Å  ¡¸± mñ¥Gå\Ò¤Iµ³‹w ÂÂ¥Ç7ñX‡zOg|}¨ØÃæx¥´Ô¦ãSê.w·–ãw•I?Úí=gŒZ§Z¡'à†‹5LJ„6"$ABÌçy±Ê6÷=·›2‡µî»»½Çòȧqy­× búâþ|ùõWµž ¸õ²‹´n¹_Gtýö+%NteŠÇ! ˆÄIë×®^ µãe‡»ŸM°#U·ÍËÐ)ðÇ b¥Ít÷x™a´Ÿ!ßÖ©Å‘Ö6Zã›Fi° ûO‰³,¼—ÙxgãÜBNNÁ±Œ‘{ˆ§P·oÝé–Âmï¿©•a‘¡Jð6¹‰ç Á„^%^ȸc`cCöýÌwmŸ»ù¿~õ/\a9õìË/ÈзÞw×ÿñ#Ǹb⸟¯dÙ2‚Ù…1ËkpéYÁ&dì?%βð^dãs 99iÇ2\> ýà.Ùrå0îÃ!Ý*tð ˜ÍrúÔ߯‚õ vøKyÒu¸tÒÉ*2/i×Îq|Œý§YÞË‚l¼³qn!''àXF ¸Ô ~»¤N“Fž~¾‹üm=å«VÑÍN·Xã à1\E`…ãt3ÆàG*I-Í/›Ìèþ^TZˆÆí@ü¸˜.VÔÌ9]–Ì[Àw­;ü»üýÓד4 f:z¤R¯³(¹ŸJ¶ªµkšYŠòɾ'‡~? ±Q#îCPÜQ|ÀLÒ˜„&]ú :1F6SȺ •-<±ÊtLŒT½Îcf2Ž Æ*ÇÝœíλ¹ÇàJ…c!È8ËMÛ¶Ò™çN¡çPìÀu íÝ{%´Ä¹Wdy\ ˆC0¥#$Gî\øŠ’`ÚpLóX®r%y¢s'­\8sŽŽ&â€IÌ #GŽÒñãúNdì?%Ȳð^dãs 99iÏ2Ê=köì&^Gèqðå IòäÉ‚åQãFOf˜ ¹GÝy×m5Štê î®T˜  t`gåû _KÂD 5&¦2†Åˆ)Âw­âж°˜ÂîÌ””Ì”cDû1ÚÌ‚û‡¤J“ZÝÇ“%Kªq†¿÷Á=s£‰ÈµÅ•4W._–3gV7¤Ý³Uai•ŸPè„'pÓÂtäF“¢e+Ü‹áÉÝÜc°ºë®‹+²þøƒ5jÙ\8£nLúb‚QêÞÄ ïš"»=^Æbùï8qzÙûÆ…ð§@ö²+W“ Ä=ô“ÌËhôawuÅ0)‡ß¿{@¿"Å‹™‘ÊçÔd¾ÏÁ(dì?¥Î²ð^dãs 99iÇ2â\<Õµ³N÷Gݳ]6;ÌÔèXôy{ ŽÒìÑ'Ô¬H—â¾FÉs[l<»/”°V° »ß|×:iÄî2b¡ Ïž>㱬b÷êüÿì!u9…k"È^q¢Ä‰$Q¢ÄQra‹ì=vútZƘÝ]'IbîËxFÁsÅ}Ó]ÿN˜*E¨cÐ'þ  à%ðóìy’×L“ˆÚÝ›î ¯DÙÒê{¬ 0 cPðaYx/²ñÎÆ¹…œœ4‚c³ÎÀ³yX88˜&¹mǧ䅾½Ué‚)ˆo¸)xpœ.ýFƒõ˜ Ë“Ûø®ÿXe ö‘·²ò«ôß«©ËfÔ( \²¢ƒ(²÷Ø3‡'.n’÷Bã •8ž¨p !í›6«‰héòe£=÷ðŸå%óæGû±ãÒÉØJ‹eá½,ÈÆ;çrrÒŽeÄ¿@ðÕ¢%Šk Œðr}Õtê0ƒâÆýºjq qÛ o¿¨nç»6ªä¸ Ä-t§Š[åÅ«%      t§ ’‚f6I€H€H€H€H€H€H€‹Ý©«<™       %@%N€,³E$@$@$@$@$@$@$X¨Ä ¬òdnH€H€H€H€H€H€H€”•8Z°Ì @` '°Ê“¹!      PTâhÁ2[$@$@$@$@$@$@$@E€JœÀ*Oæ†H€H€H€H€H€H€H @ P‰ Ël‘ „‘ÉNÂT)"“œiI€H€H€H€H€H€H€H€"IàÆ…<îAKX¸’H€H€H€H€H€H€H€ü‹•8þU¼       ðH€JX¸’H€H€H€H€H€H€H€ü‹•8þU¼       ðH€JX¸’H€H€H€H€H€H€H€ü‹•8þU¼       ðH€JX¸’H€H€H€H€H€H€H€ü‹•8þU¼       ðH€JX¸’H€H€H€H€H€H€H€ü‹•8þU¼       ðH€JX¸’H€H€H€H€H€H€H€ü‹@¬+q²fÎ"©S¦òH%a‚’(aBŸxñâIüøñ=n³û`{lK¢D‰¤@ž|z¸®¨J‚ø ˆs9ªÇã~O÷HòdɼfÔÖ'¯ |C°ç?¶Š÷nžƒ±uÍèÿ¦@!ôâë}Ĺéq‡  €ûáãïèýÓ¦['Wž¡Ø|¥Ë‹Ò°V]I“*•¬Û¼Qú¼;PNþÛ•&‚=ÿ±]¶m7—ao¾'™Kt=§cûšáüYúã¬0Y)Y§j˜u\sXßC³F=}¥kw©V¾’$KšT~Ù´^úðŽœ9w6t ÿÅû9È+€É~ëFÍdðk$W¹b.S¿øZòäÈåúmæ.ùY^ü–@yÐãÙnÒ¦I }¿nÛ½S†~>J¶îÚa“ò;š×k$Ï´m/9²f“ÃÇŽÊ«†ñ–Û=ì=b ª•±Ñ¿ˆq%NÍJUå“·Ë aJ×W{Ê›7µ‹."ã?©/öq“¿q|ÿß‘/&Mtýv_ÿ÷º =›æ/“:íZøÕ«Z…ʲtÍ*÷Ëæo¸gjW{Tºwè,yså–MÛ·†:Ï Þý$î<Òèé6ríÚ5yõ§‹Ï|@IDAT…òõ'£¥îE§:Øóª2ÄðÔ;tà(ÑO èƒ…%IâÄR¹Y½è?8%¬ïa±¡í‡»j-êëÆ¡ß•‘ï|(Ά°{ßÞÏÁWæ6Ç($/v|Nª”-/ñã…ö&èÐãyõ@°i=VWzu~^ÆÒêÜîi©lŽ«µh .]”&uê˰ïiûîÊÕ+v7~G€@ƒšµå—_‘϶—‡Kóú eÊØ‰R®Q-ƒžd¨ž$6ú¡Ÿ1¸·±øvê2yæT—§…¦¸û€¾rèØ‘¸Š˜;EŠ•eÉš®>R¼”,þ~†ìY±^¾üh„Z!Ùóæ—)ŸO”ý«7ÉòŸfK#c-)S¬¤Ìþj²X³E÷kV·aDvcš%0À¼xÆ|;Áõb·Ù„y_[3BóÅw_Ëé³gäâ?—t”¦D‘‡].6m ~{þc³Lçƒ>!c>ÍËØs/\T6nÛ¢ Ìh,,hÝ{ÅÍúî™ýKÆ"ùÕ÷Þ”ë7nèçÚõë’"yÔ]F<Ÿ%î¯åý÷Ë0ª9€%ÍÞûå…þ¯„9Ĺ ç]ÏvXk½ÕóUí7í;ø»¦}áégeÈèOUQ „iófKõ– … œ0(Ã]Ñ®YK™>¶ì;x@nÞº)?Ìš.ž%v°¾{æŽNè¿—/›v`Aéß½—`´nô”Ðx?‡æL¿žëû²|4f„\½~Íg¶öìcˆWºúLiR¥–´iÒH„ dÚ¸odߪÚ7€—%òrfË.Gÿü#ÔŽœøÓ´•Ó‡Z‡dIЭˆ­þEŒºS4~›¸.r0”­Mœˆ t%‡kÓ¥}ÁÇ)ètf+]عÊ/—kT¬"KV¯ umo ý@;3X‰Fvñ‡Šêö'[´‘ëfTªû}µSQU<,º¶ï$«~ý%Ô1œ?:¶yB._¹,xðƒÙ¯[6Iîì9åEãNE%øàþð$)’'×Õç.\µù‚1oO—&m¨uø#Øó[e …rq£ˆÝľ€âšý å- 'ÿ>)Ï›ÑÛT÷¥4nk/Ê„¡#¥BãÚ:*ýgä½`}÷FæÎúÿ5miâ²Õ‘³çΩUè-\ÞÏÁ[¼µßœDÐ7¨U¹º´ïþœk5”øwú¼.?Ξ!~˜$Ý[Ö×ÃGK­ÖM՚ĕ˜ စày£tv \Aï÷ÐV&{'¥à\Ž­þEŒ*qŽÿõ§–.,T`¢ÊcUªërJÓøÌgâx ûü3¹y;$VÎ;Ã?’‰?MÖíöŸUðØßþú]½B%ùƸŽ9f’Vö: Vª¢? åË/W¯]ÕxAv;˜…g!‘?WY±nKé…}—í<|9)$à$páÒ%ý™4qçjIš$©¸+vB%ÁžÿØ(Æ,™÷û½©~å0I¦ÜUš×Óø –1‚\Â*§ZùŠ2cá¼{sR5 Ö÷0H<®è÷þ 0ä]éõÜ 2{Âd)Tíùçß=¦ Æ•¼Ÿƒ±Ô#žg„L8i¬¨ñ6m¿AŽaÉÀ‚o§HébÅu‹ˆŸ)/\¼hâÌ…m+Ÿw)²g}‰­þEŒ*qࣇJ‘‚…]&€»öîÑ`Ĩ°\ùnä¡jÿÆÊ&¸qM0­hÙ⥥‹ ÞìXÍX¹-·í¢º¹œ:sFvìÙíZ‡eøŒû’dI“©Ÿ¦3 Ì•oÞ`‡ÉɄˢ#ž7M ñÔfV*+ˆ¨ òñ¿B›Úíô8@ÁœÿØ(ËÎÿ{RƒÕ#¸"ÄN™ŠŽÛÓЄ™r÷Ј´8f@üûÌiIeâ&PbŽë{ÄYcR‹Ñ_—çM ¥ËÊÏ+–F|çOÉû9À ø.³÷xƒÆò½‰+j•ö8B1@œïTĽ`C¹L‰“§O©›”s/¸MóÐV&{'¥à\Ž­þEŒÆÄAÑâÓ¡u;²Í½¨1»F HÀxçÞÝêÿ‘<:zD2ÜŸN>›ø¥Œújœ~àRuÜÍ'ÓýX]¥\…P«ñ{×þ=¡Öñ ܺuËtîH©¢w¦¬,i–¡Ø8ögˆ•\ S öüÇFÙ.\±Lc€ÍZ4_ðYµ~^ÆìÅ L |ÅaL0O’$‰,ýa–Ô¬\Íu:X´¦7ïgƒÞµ‘ ÷Œë»w´ˆ‰¸~Ηõ1R¦MF0àuË °÷£îÞÏ[¶Ñ‘³”)î“¢…0¾<Ôá0Ø}âïS’3kv×zx=À½vïïw<\¹à“Àžß÷ ÚÇVp_bæ°#ÇÙU®o²w¡Ú…Øê_ĸçucBûûáƒòãè Ò¶éã—!ÄIxù™®2âí7ŽÓB%—y =R¼d˜O®ì9üº²è¬Tnñp|]0fëzÀø´"–MòdÉùûâÃá’5 ú¤é?i œNmÛ 2˜^ú1ã+;oÉ"_§ã¶ %0qÊ÷‚8Jð©F£÷Ý—fzÊ`™½ ØóÓÕ~õú_t´#îø`¶ –íŒ1}Mv¾«W¯šXhååN]$s†ŒúéÛíeÙþÛ.*Êb¸°Yß½¿víš,X¾D^êÔU2¦Ï ŸW_xY­@Q)!x?³&ø"'g.ݼ÷¿©œiÇ™™G{š)Ç¡¼ÁìU˜é ý­ßöïs&ãr|mÚÊ5+UÕØ¥ˆ×úüSÏÈÏð@J?\Bžiû¤ëHdïB´ ±Ñ¿ˆQw*”,^äÆ…Ùžª“ ðŽúýã¸|2n´±D'ÐhYyƘããã.ãMdz¯™ªÒ_¥z…Ê&Èdï_Þî}{5(å;¯ô7ë.&Xñ™·t‘™&z’ÏclÞ±Mzê¯<ßèÞ[._½"_ý8YÆ~;Áç~Üœðb‚%ΦyË®Š·m•F}40‚=ÿASÐA–ÑO¾#ýÌL‡Ë§Ì‘äÆÅö73Ò©÷‹AFÙõw#Æ•×^ì)+§Î5ƒUÉå€é`>õr7ÆÃq+8ÞÏn@øÓE Ÿ‰ƒ‰YEÏfb”é?aàñÐ`ÝvôcÒî…Ρܮ\â‚OõñÞÈ¡2õó‰Ú¯‚·DÏ·ú»XV,SVº<ÑA>Ÿô•‡ì}â Š±Ñ¿ˆ—±XþÛáѽqáM’0UŠð’Fz{º´÷«bçâ?!AW#}?Ý¡€™‰ËÄ8¢— /FSaéTf…·?öƒ%Ï_Æ/62û…w\nL0ÉE¿t0J°ç?Ë<ò kL(qΞ? Ùeã(ÄòKyß}fFµSq41sÙ¼Ÿc†s õnTPöPîŽ@"3£2báD”%Ùßï@Øû^ô/¼éab]‰Æ< @tð¦Ä‰ñ˜8Ñ•!‡H€H€H€H€H€H€H€‚‰•8ÁTÚÌ+ @œ%@%Nœ-:^8 @0 '˜J›y%      ˆ³¨Ä‰³EÇ '      &TâSi3¯$@$@$@$@$@$@$@q–•8q¶èxá$@$@$@$@$@$@$@ÁD€Jœ`*mæ•H€H€H€H€H€H€H Π'Î/œH€H€H€H€H€H€H ˜P‰L¥Í¼’ ÄYTâÄ٢ㅓ „‘Éìí7#“œiI€H€H€H€H€H€H€H€¢‰-q¢ $C$@$@$@$@$@$@$@÷’•8÷’.M$@$@$@$@$@$@$@ÑD€JœhÉà À½$@%ν¤Ëc“ @4 'š@ò0$@$@$@$@$@$@$@$p/ P‰s/éòØ$@$@$@$@$@$@$@$M¨Ä‰&< ÜKTâÜKº<6 D*q¢ $C$@$@$@$@$@$@$@÷’•8÷’.M$@$@$@$@$@$@$@ÑD€JœhÉà À½$ëJœld‘Ô)SyÌc $Q„?ñâÅ“øñã{Üf÷ÁöؖĉIÁ¼ùô2p]ˆ) â'÷TÁ\'#Â'\€LiÁ\ç" ‹;Äy¬ïa‹í7|(á@;˜œîK‘ÂkÆ}õoxyÅ¥ l+F [PïSu&V´yså–χ —M WÈŒ ßɯó—ÊzóiÛôñP/ö?¯”c›“#w…ù4­Û@žlÙÖµþè¦Ýr|ËÁ·MÿJ·—b½U)WQú½Ô[Ò¤J­×—?w^½¦†Õ•ÊeËÇúõñ‹^ÞÝž~Fæ~û“ÞSߎúBp¯x’6M[h ¦Æ4>}_è!kfý,Û—­•ñÃFI†té=ááº{@ ëÜ=ÀæÙ¼hU˜O˜„\£XßCãF=}÷Õ7dõÌ…²É´ïF þXîO›6t"þ(nÐ~ݲxµ¬_°\¾úd´¨(ÉÖMšËÎåëÂä¸]óV2ûëä×¹KdÜÇ#¤Lñ’®4¼¿\(¢e¡yƒÆ2ÿ»©²cù/2oÒ)QäaÇM›&l]²Æã§yýF÷áÊÀ#ý‹7 ©Y¹š çyëã÷¥KŸ—åÆÍ›Z’xAÿä3I–,™Œ›4ÑUºý’Ï¿ýÊõÛ}aüäot,zÐ(¨Ó¦™lÙ¹Ý=Y¬ý®^±Š,]½R.\º(Ô’#Çêµ¼öbOöù¨X».ž80 ´jÜLZ7i!Mžj#§Ïž‘‡ >(óÍËçú2ûçù®LC™Øçù—]¿ƒeáí>ý%ž¼Ò°}+¹výšà>üzÄX©Û¶¹Ü¾};X0ÄJ>ƒµÎÅì‡ ?$I'–JkÇÄéxŽ`} iøÛÈù‹¤jÓººqØ Á2ê½¥õsO‡MÄk:·ï UÊUªMêjÛ1`U§Ms¹rõJ“ ü¬£ÍÖý™.R¥l‰/ô8{¥GÊI3(\½y}ùóä ©_³¶L0ý¦òõkj=áý}õ£A­:2 GiÞñ 9pø4oÐH¦ŒûFÊÖ«!§NÿêDçΟ×2q®D[3Wöœ²`Ùbçj.0Øè_„~BÄÜÞݺË7S¾—ÉÓ§¸88-//öE=Ws§¨Q©Š,Yµ\R$O.ㆎÌ3Ë'ƒÞ—ìY³É«¦Ù»kw½hÐG þHv¯\¯Jè`[s¬*å+ÊÈ÷†HǶíeÃüe²ÎhàñR/ú`aÕc6;ä1WŠqçLG“ûõV®zçžÝrâÔIó2ÉáÊDbÓÙûôÝeȨá®uÁ°€û©m³Çå‹o'*Ÿ‹—.ÉÇcFJɢŤÀ.ÁÀ!6ò¬u.¦X3ƒ ¶n–3gÏê{ßøPb‡ë»gîÝ_ï#}ߨƒ X¸výº¶<§Þµ/vì,š÷3^\˜:w–TkVŸ œ ¨=Ÿ{^öþ¾Ož­W˜Ü¢ßùûÌiý>þçjIœ*eJýÍûK1DË¿'Z´’ióf˾ƒ¿ËÍ[7凙ӌâì/…»àµï\|רXUjV©.O¿ÔU.ýó{rþ@±Õ¿ˆQK4l eþxôE¸ò—5aÖg56îf¤¸a¶îÚ&­¿­È‘5»Æí9|쨺S=˜¿ Ž–Žÿ¹@1óÝ´ŸäûSõ²'~:FÀ§kßž’5óÒ«ë‹úòþ`ä0Iu_JiX«®dÊIðnfÌó0*óû¡ƒ2zâ—rõê5a”<3Ì•Ýûöø†ÿ·w'p2ÖÇ¿k×™›r_å/·ÜIÊQII%I$G®B‰”[RÊEJ”]JrŸ9SÉ-ä–ûfñÿ}ë³kÇÎ2³³;óùy­yæy~Ïõ~ž™yžïó;ØžX´®ÏKÝíCR}€J @Ý_$hGøÕ†~µhš“rš O­7®Éi›cˆ ò8Už¦¥èŸ{Ò/¸\¥ŠºJ”ÃN)œ˜·qëf9sæŒlß¹ÃV¯Ò:­•ÊU0Åñ°%'4ÿ™³gå­×ûÉQ#ìì©R¥²%,vïÛ+ÿìØn¿È§ÏúÅF‡5Cë§›KÊU âX-þS¬™³È{Þ²¥ÞVý¹Æ¢Ô©YËE{ê/¥KÄ^¿7Xõ´4œ¦£—o$œýÍ'%œç{ÜÖO5|Ì>Ñ>|äˆE:f¤\¸ÕVNÿwß’‰_L¶Óÿœó>±¾Þ]¥šLúê‹87¯X¡"röÜ9Û ­“9]Ú´¶˜qÎ[n±£NŸ9-ÀѤëš/_f_õ?ýrÑ/* ?î_ŽûÄ|ζJ×¾=-Š–ðܳ¯­ã«ÅCC-;~ÜîrÊ”)£ízª”©ÌuÔâhxsá~ÎÝ0 — ¨öPÛ~‚ó¹î> ,þa¦ ìW“ogüèåRÈv£œïÞ öx£¯¼>x€)qÜI~øtª«ZVNž:åÝÌAžË¹¾Õ‡to_~ˆ§¥¹gLùFÊ•*-¿­Zäìž'm6AK¯•¯]Cô~JKë|9v¢<ܼ‰,^q¥6Ÿ/O‚Þ×vLSżV4ÓãºVlô`ÑÏn\ù¼ßr&@Ý_$hGë jé“Ŋˬóìqù{ãzÛ±¾Ñ’+SFv¼NŸ>$? Ú­hÅ2åLãÍ£íOloҘƜ5Hó×úuÑ&/Y±Ü–ØÑ‘Ú~GÌtæÜÙ˜£x€Ü’-»)†=Ù–xkÖ©œ3BM­š6· ‡ëÿ¦}Ÿ6MT÷•?š‹h­?gÑ|;>XÿÓ†ž/˜†Ôµ¸º“´ kÝr’ïBýœó½hìKÔ?çÁ‡æØ¼m«m7!Cú¨¶bŸ‹±¾à|÷^T;µýñ‡ÒÁ´ÿR¥|EùeÞlïgâœûöGUÁ˜íö{¬mFêM‚ I¡+P«z S²úKÀQm‚BKæÜW£f´ ŽNãó¥ ןöÿw@2¤þ`\¯ªk±-Y{©ºÇtÞÓ¸m‹Ø&3.ˆu‘ A=~ÚSS‹ÆOÙ†Úœžšœãó ¹3>)¾V(]VþÚ°^NŽûéÒ¶wØËŸfÿb«JéþjQI jŬú‘-Øæ„Б¯?šd«Õ=×µ£+€£[0Ó\$ï5=8éVsŽi5 íµ*‚/^´%“ÊÜQRœêeeî(e;×úav¼x¿@¨Ÿsñ‹ÿú»9Ãtƒ:àÝ·eæü9v…ò°Õ)g›ß[R p¾{¶Ö¶"›®Å» èåzˆ§¿WúÀëZUHt’:k›®;.—ŽsÆ»¿V(UVô:sÑoKÝG3º¿Hð NÏ7ûÛ.~¿7Q†%KV.³ mÏ¥}‹Ö¦±ÕMrÉüsR^Ó«ŽDb&’jð#±¦šUï²½RyÚ¾³¦Ímæ:“©N6wÉBY×îŽ{½5Ð~NËÐ>m«æ1«’yZãPWLq[­Š7nÒÇÑ×î(.[jÿ©r%KKË&Íd”yêáv¦ëë'S'KË'›É·?O·=tnÝ^>šü)½~øé€sÎù Öm±gMûiËV¯”[·“?×ÿ-afZ÷ŽåÏuke§[#Þn³0è'ÎwϰZ"tÆÜÙòb+sž®ûÛfÔk  /[M!w¹?ûDº´í ó–,²òº´é`;²X¿)´:#p7aXl‡­žzF~žý«íÉ÷ázõmïšý‡¶ìø|ùî,™8uŠ}8¢m–jÏZ´2¥Ûÿ±¥Ÿt-zý¬=›~ðé×J š‡'[L)X§Z³k!!ˆû‹âèyÓö­¤w×&hÓJ†ö}ÃÞ@joïŽ)£&Œ³‘Lçˆë–þÅLÚ"{·þ½bŽN4ïµ=œvÝ»zÜíIJ»/R °<ùü³òLÇ6¦Ûç·eùŒy¶ •^”¿f^$¼ЪAM>nŸÊ|õá§Ñfi>W½ß~#Ú¸P|3ñË)¢¥oVÍ\`«0®\ó»¼ùÞÐP¤`ŸƒH@ˆ¼úBW™?í'I*µíiíÙÎíƒhÙ•`ñÑyµSWYøÝ ÛSàVÓÃæ3¦Ê/íáD?º#'Œ•œ¦ê”¶kyÞt€±Kš´kÉÍat¦{§÷H9²e³Ÿ}Ø«Áôx£ëáŸ/ßÚÔÇ#Þ±%ÛÏœ=c hqN€¦j…JÒÖ40íÄ)”?¿lܺÅwÁ’’”@ î/²•,|).¥ÈcQý܇§IWÖxOÏ’)³)x.Ö6_â½°D4ƒöÄWÑW-žwɽs/™Ù´|~úô{ƒ™ˆv‡MA ¨´´R˜ù§×‘ýMÑ6ִ׉U@ú¬%ªIžôóœÞô6wààž31%ä´3íÒx÷ž=® ‚;Ÿ/wÖªjL[8|oÌ1”æöÇýÅ…Sg,aDú¨¶LÏ€qœ á@@@@@ÄS'8 € € € €‰_€ Nâ?Fl! € € € q8 @@@@$ @' $6@@@ ˆÃ9€ € € €$‚8Ià ±‰ € € € €AÎ@@@@ ÄI‰MD@@@âp € € € €I@€ N8Hl" € € € @‡s@@@HñÙÆ°ˆðød'/ € € € €€(‰ã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?<ˆ“<"BÜÿâÚ9Í[ O>I‘"Å5³†……Iž\¹%CºôWås__Ìáˆðð«òûrDòäÉ¥HBv‘ºn_¤ðdá¢$®% Ÿ‰4©S{ÌêçP¨ï¿Çƒ ‰Z ®Ïu²d þ³ž¨½¹q‹@ê'uóyNÇ)¡·2®ë“kÝ»è¼z^‘#×± ÌV±Ö„H¨sÀ7Q…xÈüñë"É”!£\¼xÑÎuñÒ%Ù¹g—Lúzª¼ÿñ8×øü·æ•~/¿*wW®*GŽ•Yó÷_òÑ”Oåç¹³\kL•2•toÿ‚<õÈãrþüy{Óº÷À~0bˆ|;cº-XXæ|ñ+¸ Ú\2ëtÖ¿âߥ~óƮ龸ëÎÊòô£OÈËzÉš™ ¥\½»åßÝ»nh5}ºv—›³d•ÖÝ^¸¡å0sð èø;½HŽ›³Iãv-];ª7/·í(Þ[W2¦O/¿­^)Ýö–ÿså æPßÿ„>¶ú]?gê÷±®¶ïÐÁòõO±O‹uFÚ óØ>×ú;Øù¹ç¥vš¢æ/],ÃÇ »÷îA-8žÁõ![lßeêÜåy¦ žâéwšs(ˆz»V¯æ½Ò¸Á£r{á"²ïÀùqÖ/2nÊ'röìY;g}síֽË¢çÈÎ=»eÜä‰ö^G'êõÞ ½¥Z…J²ï¿ý²xÅ2ÑßÙc'ŽÇ±V&ߨז7*˜ôçÄ9GvÐÈYö6û—ïÎÒæ•ÎÒþ™ç¤CóçìQÌ}KN™9åY·iƒÜÛøa)^³’¿»¢¼?aœ¼Ûû ´yÑu´»´n'wU¬"UÔ–b5*Hʥ䵷ʘAC¥r¹;eÖM®ué:wìÚ)}ßìçÏŽndÊÕdÎâ…®íõÅÀ»ãFÉëo ðÅ¢XF Ô®qüøñç¢1S¿—^•2%JÚÀeÅï x~2ltÈ<µ õýy>øûý‘cG¥æcõ£ý-Z¾Tv™‹Ï_æÏö÷êƒjù×ú\ëogÙ;JJí&Jµ‡ëɹóçdÈký‚jÿ“ÊÎp,<©·Ý.)M©êZO4ˆöçyŽàÂç9xíõîYÁ¼ùäýoË›ï¿+eëÞ-M:´’F<$½^ìfYúwHÿn=¥yçöRºvuéÜçU;­pþ‚vú'ÃÇH2ó¯l½rףȇÊwã?³ýëÝ&æóN€kK9W ΀qÜbä… òûÚ?åÏõKÉÛKØI ±lõ*0|ˆü½qƒ§ùæ-]$m{t‘Z¶•Œ2ØñY2f’ÓgÎÈþË% 4ß SR§Q›gd×ÞÝî« ÈpÍ*ÕdöâùW­;gö2î­á²aþrYùÓéѾ³­fæd¬vg%ùêƒíôQo ‘ÍSÖ.­ÛÛÉOš(}ë¦ÍípuSÒgäÀ·¥iÃÇeé÷3eíì%Ò§Ë+r­¢–Î:x N^/¾,c&MñŸOжƒZ¼OÏq“?‘ƒ‡Éñ“'dèØ‘¢N•¿h3Ù›Pßÿ@N-õxèÈa×_Í*Õ¥VµÒ¢K{9qòd 6)É®ÓÓçZw(O®[åÄ©“ræì¹pñ‚ ÎÌ›?ÉîkRÞpŽ…ç£WÊ\ã­4¥Ÿõ;AKE;ß žçÞ)|žƒ÷Ø^ïž%3×h­L û¿6¬³‹8|ôˆ¬Y·VòåÎcßwhÞJ¦LûJÖoÞhßoúg‹h)6}ÕR8wÜV\F}ò‘­½ 5F:ÞÖF(_²Ìõnóy!Àµ¥HAž%Pç@Àƒ8z\µäMŲåm©}_ªx Y°l±^•ô@“^ hš4íK)V¨ˆÌûòäÐyµHÓ‚ß–ÈöÿÚ<úOÛèÑm‰¹z°Ç)·æÌ%í^}IÞ?Οl(¯››oMêñáÛ#dËömòt§6¶*™V¹%[v;=[Ö›%WŽœv8}ºt¶ÄEÃzõåµ·ÊÀ÷Þ‘–O>-÷תm§ó_è ÜÕð~WñZ÷½¿9K[ÝP«/:I«QŒ4Õó²8£‚ö5Ô÷?ÐVÛ5ëݹ›¼=ú=SÔû@ 7'É­ßÓçZwäƒI¤D±ÛmJ-©Ú¶i GBõ“ϳçó$T§h0fæü9®Ý¿)M{}¯¥W5i3û}°»aÞr™mšŠ¨\¶‚¦³5if'é=ƒÞƒäÊ‘ÃÅ«¸¶ôj[d ÎoGK“‡¹¾xò›âƒ%Môx÷¾=2ö³‰¶cýâÙµ'öºüÇLÝN½¸½HQ™»d¡}ªÓàÙ&Ò¹ÕóÒ±E+ÛÞ‡Nï?ì-ùâûi= ô©óìE ®Ú†•«˜ Ôÿ¤êÃum]3„G„›œWäÍ‘ÃLû>Éá#Gl;::MWw›;žRêT©mô~ÿå# èè½¶ D = ÊÄ–ô‚@Ó‘cÇ¢M>vü˜h‰¶`O¡¾ÿ>¾µïªižŸúC`¿—íp½ë÷ô¹ÖåíÞ·W6nÝbÚºª#§NŸ¶Ú†)á8žÍ‹,"ûM[í{¾,éÓ¦“—Ÿï(†¾/•ª-GÍïP(%>Ï¡t´ã¿¯ú°wÔÀ!¶]œ±¦ÝMzo¤¥òµ¶A»ž/™øÉä‘㤒ùühûgúÿ\“f²ú¯?lI×¶O?kçÓ{’ÿ¸¶ôŸmRYr Î€”Ĺ`ª<é˜þ-[½Bº¿ÑWª=RÏ­=wîœ}M—.m¬ÇN‚ËhÇsoX¿¸š½ð¼©^^žxþYÓXë Ño°<þàñ.#¡Fj£Ìs_Ä)”¯ ìÙ¿ÏÀÑí™kòiïUi/^¤˜­:æl§Vs"ñÎ8÷W½øq8:^ëÁò¥í.İ ;qÂB¤J‘2ˆ63°-C¼ õýôaltÿC2}öLs® ô¦Ýúµ]«“§NI©ûªIYS¼þóï¿‘“¾ºfïtA‡Hvˆcáù@ToXOkÓÂ7ËŠ?VKA}%kæ,R£RÏ3…àΡ<èn»¬Ó}k˜yX]LoÛBô¾HÓ%óO3îÜ·§üº`®´ìÚÑ´vÞu¯ÓµßkR8_YnJ¸ýþË 3ÿ6oûÇþ6¸-žA pmécÐ$¸¸@ âLùîkéðÚËöO«ÿbR´/™U&Š\¼Èm±Fmø+eÊ”6Ò¬_t/µéàªZ¤­·kÐä¹—:ً؆÷×u 1R2w–*kð%uªTrüò µ³-§.…Œ¼i/¼µG.÷ôß¡Cîo£ ;­Ö;#M3$®Ðvp4€šÁôJå$m;I#ȉ¡ý(g›üõêûï/Wo–«E¼kV½K&}3Õ›ì䉇€Új»VZG9ôcÚBH–,Ì6îE‘õ8×Ô6²´Í&'é ¦>tJoÌ‘¢8‡BûLÐ{‡Ls Ú¾Ö2p¿6Û»¿)Ý?ߤ—˜¨rå¸ÅŽûôŸS¥Ayæ…¶Rç©Gí=––ÞÑžªHþàÚÒ¶IeÉ:ĉë ü2o¶i€µ¡hã¿1SçVídëŽm6­ wi æÑX‚5‡¶%}bΟPïË—*+k7®³ÅÚc®sÛΦ!Ù‚¶!2gZuÓ% ~!ëEÍS,þ¦:”{ŠùÞ}Ãx#pñâEs~m•²¦w*'iOUØÙé¡ú¢“/^C}ÿy Ë—*#—Ìù·hùoÜŒ \·–NÕvô‰¬“"Â#D‹ãkO@¤„àXx¶Ö‡os¾øÞ6lîä*”/¿-‰[‰e'O¨½r…Ú¾¿£MϺ…òú-ž´÷9îSµ[¾[£9vÆë½Á†-›íÛç›=kÛÚüuá<[Ò_Û›Ò‡ÝkÖRµÖñòÇ+×–þPMZË Ô9(ƒ8¿œ"?ü:C¾Ÿ0Yî©Z]ÒÝ”V´ ½wz {ªÜeûuïgß|)Ýžïdë‰j;9Ú˜p³Få™Ç›6a~t²%ø«í•*–öptC´á2mP¶{‡Î¦AÙ¬ò¿¢·Ió'ž’Y 犦&|ñ™ÜU©²ôìÔÕ¶ýófÞ¶ ß Vt¿ú\žmÜÔžwÚЬ֯þÈôb¥½Ú„B õýÔ1Ö›5 P»?…Ô¶Ûzµ‡Ÿ¥«VHÏŽ]l;#ÚÖÈK¦!|mg±yJKJ8Ž…gk-1¼ì÷•ò¢é]T{Òѯ´{ÑöLªUDHQœC¡{&Ô¿·®mÈøޗܦtMóðCÿ´‰MÚ³hýûêÚû"-EÝâñ&’%S&S:gžž-ËÍö¾"MêÔ’1}†Ë Œ°=‘Ú üç7®-ýF›dˆs {sD´Î§^”öéÒÃp ØbâÚÖM“­L„y«kÃ?#gM}ÑÖO=c.^°ã÷Ø/½† hÃÆwW®fï{ɵîZä½yçö2¼ß YõÓ\Ñ"ÆÚHsÛî]l6¶k?ºÿšµ`ž-ByÆ\‘¸OLGKâèywêÌiÓhölÓ•êû¨ã\Ètw½Ñô¼Aò€þÖ¼×ÿ-Y7ï7‰4%:<(-ºví¢–”° ÏÞÃÌõÚ«æáÕ¼¯~”4¦±Õõ[6IË—:zž!D§p…æoÖè [ªR¿ËÝ“¶ûyß“Èò5«ä•}äƒ7‡‰–Ø:yê¤<ߣ«íÉVók5Z}ؽfæB¹yAfÌŸ-ïOë¾(†ý$Àµ¥Ÿ`“Ðbq„e+Y8ÎT"´Œéo §–V9b.FµºÑµ’>LeÚ›qoä÷Zùý9­HB¶ñ¾¸Ö¡û¦=n¹·k£%Š´A²µ×»fÿnüdSRgž ûp´k\¯€–nÓ‹=÷B1…úþ‡â1…}Ö§¯Úæš6œO ¬Ç³¿V­Ò AFÏF:…sèÚ>¡:U«Ïji6í /¶¤çxâºgŠm^ÆÝ˜×–7æ sûãð‡IAœ`8¨ñÙ‡Gê>(ƒ{ö±%s¶˜*÷ßsŸ¼`Š kCe›xšJò"€ € € ä<qmuª$'ìà þú§ï%ƒé­Aë»-XHÖü½ÖvNLJÈ, @@@$&@Iœ$vÀØ\@@@nO%qeïTÁ}(Ø;@@@@ þqâoÆ € € € €@‚ ÄIprVˆ € € €Ä_€ Nü͘@@@Hp‚8 NÎ @@@@ø ĉ¿s € € € € .@'ÁÉY! € € € ‚8ñ7c@@@@ Áâ$89+D@@@â/ŸY.E^ˆOvò"€ € € €øH€’8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS àAœÜ·ä” éÒǺáá’<""Ö¿°°0I–,Y¬Óœytz SŠäÉ¥hÁB~ÝŒðdᢞ’z¨)´ô˜§IÆãN_ëœñ8SMõýÔ¡Ôï#¡"Àù~õ‘Öß&®I®va îioºÉým¼†õþ‰äø^+bï÷¤¼”øž3×»¯¹š.˜/¿¼ÒþE){G)¹té’¤M›VŽ?&CÇŒ”ÉÓ¾´ãt‡VÎ\ 9nÎ&/^¼jÿÚuï"ÒgÝ_·Óô‚@ƒ6šW—©iظÑ2hÄ;v8PÿU¯XEž~¬±<Ý¡µß6aðë}%EòÒáÕ—b]džE«¤Å‹ídîâ±Ngdð èçahŸ7$G¶ìòD›æ®ÔÏÈËí^ú÷Õ•Œ2Èo«VÈËý^—ÿså æPßÿ@ÛÆ?*Ãú½)ÙKr}Oz›‚aýú dî7Ó¯Ú•Òµª^5Ž 'ÀùÝZÏÓní_•«IêÔ©eÉŠeÒóÍ~rèðáèCüŸç?Ìî?Ñ ¡¼Ù³ä-÷?Æ7ã'I¼ù]ïé¿Îîûˆ:·é O>ÒÈþ¾þ±ö/úÁûòûÚ?¬¼ÆC áÉsMšIÞܷʶwHc¼ú¯?b]ö±²„ÔÈ@Ü_$x§Vµ2|À`éûΛҶۋyá‚=È¥Š—ñÃFÙö?›è:ð=õ“±“>v½90~ʧv”–èYe‚>u?’¨¾°î®R]æ,"xó¸ñÞuî®%Z¶‘‚ù Ȫ?ÖD[Qÿn=¥p‚òàÓ˹óç¤GÇ.òÉ{HÝ'†ÄMu¨ï´“!ßÎ_ÐÜÀ½˜Àk ÕÝq{qI™"…T}¨vhìpØKÎ÷«Òðþƒå¨y`w×ÃuíÄwû ’‘o¼íAÃÕs…Þ>Ï¡wÌ=.^ô6éô\[©~geI½6AóNÏK²ð+ãêßWO^z¾£ŒŸ2ÉÎÞúéR½be¹«A]9vâ¸<\÷ÑÏXÆ åÌÙ3Î*xõBà{ëH¯Îݤá³MeëömÒðúòÕ‡ŸÊõjÆúÐ{/Pƒ/õуßu½¯RþNù⃠ö}Îì9äÃwÞ“‹Wɪ_æKN]lµ1¨A¡÷¾-}_~UÖÎûM©÷ Çý¿›Êüo~’Õ¿.&…–@¯.¯È˜OÆËG“£œÎÞkñ>}B3nÒD9xø?qBÞó¾”)QRŠø¹ÊŸ³ | õý¤} `1ð-y{äð@nFЮ»¤y²bÍj[¢AÏs-Ù@é†ÀnÎ÷Øí;½ÖM^Ð[ÎGFÚ¿sçÏËMi@ï›6nÝlóv|¶µ¼e~c5Pª5¾žþ½Ôxä~8WIÆ=¢é£Ë7?ý ›þÙ".^/¾ûFöìß+šRì±%ìcS qº¿HÐ Ž^Øh”yåšßc=² –.–Y æE›–Ë”°ÑR:î%o¿R¼0ZæDö&O®[m¯í;ÿ•=ûöJš÷º¶Pƒ/éM™2¥WÛ”žØ½w¯mÛfÂðÑ’;g.i÷JñÑòäÃäusc®)Cºtr­ÚRúwÈŸN0_Þ[ìxç?-…ñj§®2åÛ¯¥›©&óÌcOÊÔ«u–ËkÒ¨Þ ŽLûùÇ«6øæ¬Ym9ÿîÞ嚦ըô‚:[–¬®qÁ:êûÈãÚ§kwùÑù^¿yc 7#h×­¿·˜àÿâïgÚàþÊó¤|©2A»¿‰}Ç8ßc?Bzzêô)¹½H1yíÅ—í5V÷ EàóÝ#”Þµ~©“¼=j„œ5%¥¯•z›ßÔÙ ç»î™2šæ%2eÌ$á2mÂg²yÉïòù˜ñ¢µHñÈ›;ìt»VÖ%ìÞ»GnŽåZûøûÛº¿HÐêTÚÀ¯6ô«EÓœ¤¥N´Þ¸&§¡»!£ßsUíxþ™–¢îIo:s•*ê>*Q;¥ptã485¤÷»…ò‹&J¾ÿÀ~)[¢”,^ñ›­#>øýw¥F•ª6`Uµ~mWt]ëZö6%wÞ|o¨_Ÿ\éýnŠ™Z?ÝÜ–Â9a¬´yÛVYú㬘ÙxÄúùˆ-9O<š i÷¤íQeΘÙ}TP‡úþê Ö©YË~§õÔ_J—¸#P›Ôë-V¸ˆì;p@Ú›¶âÒ¥MgÛùØ< ¨t-ûT6¨w>‘íç{Ü䩆Ù'Ú‡‘ƒ‡Å=CˆåàóbÜmw=]¿¹e±„ûîª)MÛ·rΑ=»ؽ—Lýþ™`ªXiµ,­._«ÑC¶4‰+3q èõâ‘cÇ¢å;jÞgÉ”)Ú8}ƒýU$!7"P÷ ÄÙe¢˜šòäÎm‹¨épÆ å^óe¤)½¹ø,dÚñÐŽ/\Šj+§ÿ»oÉÄ/&ÛéÎNÃÅÎûÄúzw•j2é«/ìæ-\¶Ôî«Ö“¯T¾‚mÐOAªX¶œü³c›hcÏó–,”&ýOf‡Ðh  $„Ž?n÷Þ)ýåP¤J™ÊüXEì8Ó‚é5Ô÷?Ç2WŽ[dpϾ¶^¹I&ùG ÚCulû Žq÷}dñ3íÃog\]*Ï?[ÁR9ß½;z¼ÑW^<@º>ßI~øtª«ZVNž:åÝÌ!‹ÏsäØÅ†÷×—ý¦µ{{›Î}ÑôY¿Ø’<ºx­0cÊ7R®TiۉЬ2äfÕ6…R]®)áì|ªT±_+cï…îk î/4ˆ£uô·ïÜ!%Šwü{ãzÛ±z-¹2eô•„Ž;}út’¼ÁÔnE+–)goa‹ÿ¶r¹T©PQ*•« ‹–/µÝõî¹×d–­^aÛ(I*µyºÙ¶3šÿNŸ9m##£n‚ôËÅSJ™"¥¤6_4NÒÒM—;ërFñ¢ÚÎÓ¸ýt’–òÒò®=»QAûêûˆÛªisÛXý°þoÚÕ§MÕeêæÆMëîÏY4?›tëÔ‹HçÁ‡îœ–ÀüïÐAÓƒcº Û×ļCœïÞíÔbôÇJÓŽG•òå—y³½Ÿ9Èsòyò|ƒ»×èÁ¦]Ñ/£•®Ù·¿]êl·ßTmkTo.5¸LŠŸÀþÿ˜ßÏôÑfÒkç±\+c)$ßêþ"AÛÄÑ#«‘ãŸm/&fŠYB æô¤ô¾Bé²ò׆õ6xãl÷,ÓÀqUÄ©X¶¼,Y¾Ì”ÆùMÊ•,#Úc×Ìysm6mعHB¶khg¾j¦µy-b¹Å\˜Ç•ÖnX'Uï¬äÊV´PaÉKñ?WBFàâÅ‹¦ÜV)sGI×>—¹£” ìÄöÃäÊ$¡¾ÿ8Œ3ÍÙ;¦zì÷¿üdÿ.[b7㇙?‡Dà0!Ìõwsî×?ʽÕïv­N«ìfÍœEf›ß[R p¾{¶Ö6WüìÒ¦ƒyøû¬ßD‡×2mÚÄ©SdÆä¯mÚóc‡­LóÿˆvÀ£I¯e´gWí`Fö–!¤ÿ ÄýE‚qô‡\ãêݵ‡ Ú´’¡}ß°óÿîÚ)ïŽ)£&Œh9©ÕSψþÅLã§|*Ýú÷Š9:Ѽ×öpÚuÞE vxÐT)[ýç×v.^þ›íiʉ”k½ðg:µ•Þ’U3ÍSTSL~Îâ®jY®= Lø|’m_G3K–L~0=Â8my˜…Ñ!$0ñË)¦$N){ni5=í)Îi0;B}ÿCá‡â>ê‘W_è*ó§ýdªÓ¦}Šølçö¡HÁ>'b±½g.ün†í)q«¹Á|¦SÚÉqÌø<Çá­K  i7Tô>zÄ5ÎÐMršªSÚZdäyÙ±k—4i×2Zµ+'/¯×Ц>ÞñŽ|ýÑ$ÛE»èÒûU—eÕ •¤m³® ö×ö …©¸¿ËV²ð•b/”#´SÂÓ\ikÅCÖxÎ’)³)arζï™ñ Ú—˜¹ÞÍÔ®ì´ý}2ߤE—oJ&Ö/úø.‹üÁ' ErÃÌ¿kµ¯|{}eB}ÿ¯H0LZä;MêÔ¦1û«/ðƒi?Ù—¤- FýÖÕ$Ï|ž=Û0ų€ž7ÚQŒ{H7& =*g0máxk‰ýyÃÜþ¸¿¸pꌥ‰HÕ®¤ã𠎳!¼"€ € € €ˆx â$xÃÆ @@@@ø ĉ¿s € € € € .@'Ìg "wIDATÁÉY! € € € ‚8ñ7c@@@@ Áâ$89+D@@@â/@'þfÌ € € €$¸Aœ'g… € € € €@üâÄߌ9@@@@ ˆ“àä¬@@@ˆ¿Aœø›1 € € € àqœœ"€ € € €ñˆˆÏ,N‰Ovò"€ € € €øH€’8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uY6 € € € à#‚8>‚d1 € € € €€?âøS—e#€ € € €> ˆã#Hƒ € € €øS€ Ž?uÝ–<"Bôtµ6W›$ĘdÉ’I†ôé%eŠ ±ºDµŽ°°0 OTÛ Êç\(_öoô{€ïß(©T©RÙßaOnjE =½.Ö볈ðØï£îKPw½¾$…®@BÞ_ðëçYíšµdïÆíö¯JÅJ °Æ„[ÅÅÿ']ÚwºîêÉ®6-YyÝË`ÆèŽ-,ZíïñGžÉ¼ëÕíUÙúû:iÓ¢ÕUÓ‚u„¬÷(ÛþX/;þÚ$ŸŽùH²dʬ»›èö+Ï9„üyòFû¬»ö{¸¡¿WÏòcèÍ×ʹ‹¯:&óˆ‘3ôÞf»9›|£1—tk®ÜòÅøOeÇÚMöûí½ÁC%]Út1³ñ>ˆq{ˆ7ˆ‘±kMR.^¼(ú#Ý쉧dÑÒ%Ø Ÿ¯Soæ|?C–­\!CÞæóå³Àø hPìîjwÉÉS'eÚß»°mûv×°T¯\UÚµlm\(¼éÔ¶½<ûT3yÜÙ³wôíñº 8XžnÛ2v? ûªçœ¿ÑŸ8!ßüð]´Õè9y!RÖoÚmRªÖ­%þ;pÕòáY ®Ï¨ûœ\›6é óYÎb¾Û^—b…‹J˧›Kút鸶t‡ òá@Ü_PÇÏ'•>yº÷î{d΂yò׺¿åÁº÷_õä_óL;ÁFo§O&5ªV—?Í’Þ¯ôtm]ÙR¥eÖ·Ómd~ÜðQ¢%+4ÏCõ°yôéÖÌo~§k,Wþi¿ÈuBÉÿÝ!?MýV¶ÿ¹Af÷³h© ÷¤ùWÌY$/]-Ý:u‘×ÌE•.7Oî[m6ì°‘²~ÙïöÉ¢–\Èž-›è“‚ÏMÔYS‰Û‹Ûy2fÈ`ßëÓß%¿Ìµûóõ'S¤P‚v¼þ—"yryÃ\ lX¾F–ÍZ õÉwzó Epõ|7q¼ý±m@ùmår×J2eÌ(#ß&ÿìˆØqeâçžn!gΞ•^oô“Q•ßÿ\#÷×®+·dÏÄ{ø] åsÎßúÿ:hÏg=§õO?ëzQÙ¶K'ùã¯?ý½z–C T‰’vÌøÏ&ÊÄ)“dÀ7E¿ƒCý&êÒ¥Kòx‹§å>ˆøð“ æ!Ãw¢ãòÞu­ƒ1¨ß6¸ÿA[¢bƬ™räèÑ«ö5Þ¼rîüyùlêçòåwߘsç?ã”÷ª|Œ.½îž8jœœ5×(KW,‹¶sà©w_¼`4#?ü@fÎ-·äÈ! l`óvn×Ñùô»ê·_Kõzµ¤hù’!ÿÝ ÒË7q}FÝS²x ¸Ÿ·pŒŸô‰tïûºüwð?{m©»I¡!ˆû ‚8~>·7l$¦xõ×?|+_™c baÓ¼úª?2£† ·Û®O"«V¬lƒHúÔMSwóä Õ3ÏÚ§p;wï²";ÿ|"PúލˆGzÄÅÞ´ò/Ô«Ÿ-æ¬@Kžœ:}JF™‹€PJzc›9S&9hnzõæAÓ~sq¬)w®\ö•ÿü#ªçœ4=/Uëã÷6Õ$gÍ›#?Íœá9#Sü& %&4½3`°,9O¶¬Z+Tk‹âÖ@Ökÿ’F Úª ZZlÐÐ!QCèÿmæJ½ÇH·Þ=%2òüU{þÎÈöfü§/§É_|#ùóæ“wGE»*3#‚Fàô™ÓÒî¥䑦OÈÞ}û¢í×… $Òönºé&{Ÿ ###mž¼·æ±ãrçÌe¯ýßèÕ×V¹ÒsG²’â/×gÔ}‰ú`PS†Ë²µæ…þiÊcŽ )øuAÇÏç––t9{îœLÿågùúûoíÍc³ÆO¹Öª ²èÅM¹•¥VƒûåÇ™?ÛéÑÔøÑÇlÐC—Q³~]›ï€‰òjròè°FêGŒ)ùJ“áæµuó–ö‰ì›Ã†HçËãÍ›ÚüN5šçšµÐÙ¤§yJøðSKkÛü:N—›&M=~œ´ëÚIšµ}N<|Ò’5ú¤à±æQû¡eï½K9"Ÿï ³Ûiži"ƒÞ}ÛÞ8?Ùèq»L-毩®¹€ÑªWú¼fßóŸo4§éСC2öãìS=ÎO<uìô||°ÎýÒõµîrΜ—¡”²›ošôóè¤ó磆µ4É?¡|ÎùGÔóR›=ù” èúÅdÏ™˜âW'ˆ³vÝZ[’"™ù]þæ{\üºâ$´ðûï«-چĿ»vÉ?ÛÿIB[î›M]°d‘,_å¹ÀßL)Œ-ÿl•ÛŠ³ÕjôÚjîÂù¾Y9KI´¸™òÕTÛ7ñBÛE·ºÊµëÉ=wÝmóÞœ5«è5Œ^·kõ¼ûî¾Gæ/Zhì~ùñgöþÁãB™«@\ŸQ÷™ÖoÚ ûì—òeÊ™j’HÇÖÏÛã¡y²e½Ù=+ÃA*¨û ‚8~<¡ªÜYÉ6:ö÷ú¿¥x±ÛíEËÖmÿØ‹9§ãB—;\hÚÉqn.;'ÚV9 "Î^0׎×b¶úe[úþçE#ö'Nž0Em]w¿W{ÙªKZá¶b·Ùñκõ©­&½høgû6;¬ÿiÉ ±q’“G«eiE\Ô Éú ëm–Ó—¿ô#ÂÝ×}eåúå?çûŸåý·†J挙dÈûÃl€æâ¥¨b‚ÎzœW- ä#Ôué:µ}}‚´gï^{!«y5å¤ã'N8ƒ¼ú@@ë6npý ;Á2­F¤-]U¿îò¯é™I«ÞiêÞ¹«h•¾`OZÅPŒi̓“œj~X$ù^ ÔÏ9ß‹z^¢V¹ÐïlmäØy à97Sü% 7T_þÕu¬YÕ.‘~“L5ls£íÀüù÷ZÑVÚ£‡6ÆOŠÐó¤|™²Öç“Ï?³×OÚP­>«rgE˜BX@Û1¬f)~ªu ©×¨|úÅ«±oÿ>9h®oœêUoXgǯþãwûê´qÂt~ßõŸÍƒ“ ÷T“í[›©÷Èæ­[ì:÷îçÚÒïø‰`º¿ ˆã§ƒ¯Á‹ú¦ÚŠ`&|ö‰ëïãÉŸÊySúSREÛºYüÛ{cY©ü’*U*[²n­ÚѶj¡É£É¹ÐÑ|Îp´Œæ.ÛIZPÓ×§9Ïvhc¾ô'K¯AýíøEKÛWmG“]´a\'Õ»·¶­‹­ äjÕ¨¯¿Ÿf·Ï™îÔùtºÆÔ@‹—/µÕº´a/]gÏþ½eŒ©’õá§Ëî½{ìöi½]ç‚–‹GÓ7¯ý{ö² PW(SÎ.Ðidsž)Z«7Ú‘VÝ;tä°8¥ON:m§ùf ïRôüÔ‹ ýÜiQ~mÇé¶¢EmCÇ;vîL¼ž„·,ÔϹ„þ¤]²öJ3}þõ—v”^Ìè—§Û>+³çϵOî>,]{v·Óµñ`MZEJK¬1ÝÅj ‚™sf›£ì4§Utû&ÆZ\¹c·.¶;pm§b¹ ¶¡Å÷ÆŽ²9õ‚J{GЋ~ÛvÅ;ƒí¨NÔukÕ+mGƒ0+ÇŸ°ÓÓ§KoKèèM°V•J—6´|º¹äÈ–]>4¥vÆ™’¢¦mÛS–ùÑym`_@Ðåö4À.Wsn÷\yܵÖi¤Ðcúöˆwí‚´q5}RÐáåÎ.ÿ_CÒ^¨>0½ÄM³AS Ljjýß”´wŠ­GÀ8í¹·kL ¼oÌèÅœ¶E×Â<¤ÐÒ šÔÍõ÷_d­77?Z5D<¤+-;>o§4ÈõÌ“Mmã-;¶µ\ÉÅP¨ Lš:Å>+oJZëçG{}ªUsƒ¶3täp[õNƒ=Ú és/´“=ûöºò0àÁÃÞ±•ëÃù Ú߀¾oE5YàŸ5²ÔÄ&ˆû‹°l% _)ºáA$ò‘D47Û“ÓƒO4-&©_ kü&)Ì…VýH‘2…-¶§Å$ËÝ]Ùãy\{SÛT¡úÌùþÏ´pÿíô¤€iSÛÚY°d±yrØ(®Ù™Ž € € €~ˆÄ ¿)G–Þq­ïâÙ+寕—éñÐ6qrš¤Š,d»×¶hú™vkfÌŽê&V‹DnÚ²Å6tWÚÔµÔ’/Zgú…î]M—àÛã¿ÂËsh—âút'wÎܶ¤>›1ëWy¹wÓF¥¯®–@@@ð@2SˆÃ=QÇ]ƒa@@@@ ‘Ä,‰CÃÆ‰äÀ° € € € €Àµâ\K‡i € € € €@" ˆ“H› € € €\K€ εt˜† € € €$‚8‰ä@° € € € €Àµâ\K‡i € € € €@" ˆ“H› € € €\K€ εt˜† € € €$ï‚8aa‰dsÙ @@@@ b‰ÅxÄI–<"tØE@@@@ qÄ‹ñ*:“,U »ÏGŠ\º”8ö†­@@@@‚MÀ”ÀÑŽ‹qß=¯‚8:ƒÎÛÜÆ0 € € € €€¼ªNåŸU³T@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €qˆÏª@@@@oâx+E>@@@@ €OŸ àêY5 € € € €€7”ÄñF‰< € € € €@€âø°z@@@@À‚8Þ(‘@@@°AœV € € €x#@Ç%ò € € € € ˆàÀê@@@@oâx£D@@@@ Àq|X= € € € àAo”ȃ € € €X€ N€«G@@@¼ ˆãy@@@@ Ä ð`õ € € € €€7q¼Q" € € € `‚8>¬@@@N ,,LÂ’…źBOãcÍ€‘q€Î*@@@@ 0…ZÖ—¢í•dáÑ6 }ÑÍ ­3e– ’ïñZräÏ-’«ö’&wvI}KV O™BNþ»ÏµÌø P'>ZäE@@@$)ž2¹¤/|«]¿]ŽoÝ%)2¦“TÙ3GÛ—ˆ´©%CѼ²kú9²v«d¿»¬¤3óhJW(·ÜR«¼ßô¯lÿjŽDž:#ùß+:¦”™ÓKxªvXÿ 3ÕµRݜѾÿoù:›_:GþÚêÊß‚8ñ#? € € €$9 ¦úÔé½mÉ™K.Ê1ŒÉ\Ê”¶‰‘vÿ²LNlÛ#–ü%‡×l’,¥‹Ø7WüŸÛ²SöÍÿ]Ní< ÿ~·P.E^,eŠÆXÂÕoÏßX¨{—¬Ñë«–hQî|åæ~.•¯ÐÌM tÓôiÌ=gêãiŸz[hN½zvsZWoðStÙ+ªhTnSÄyhpß®*Ìs¦wPC‡ ÐK/<èÍmÛ[yùú(ƒºE6(œ¿T s¾Sûô6:vð1úlùg*ST»õ¡;ÿu›~ÛãP]pú…ÞžjÒ«÷p¥gtòæîчnu_/¸èÏî+üX]rñ¯½©º=ðàÓÞÔŽá7gŸ¨'þõ’7W³úlS_ÁømúÇÖ!à—ù…z%wµz†W« `޾)ø\Ù):ô9Ê‹æª(µDGí~˜FuÙM—üær]öͽš¿p¾·7°s{î¹çôÄOxs[{üñÇ5uêoÐ,Œª«íˆ,ˆ²@ª6MV™ lت ó‡5›¶ö#QŽè‰¼ÕêY¶F«—ÌвÐ"etJÕE{«`0¢åeËutß䄿n˜§ÌpPc~q¢Ž{þ Eœ}k7Gÿ½ønMÍõfTaa¡Þxã =ðÀýÞ’J÷ß?Ao¾ù¦Ö­Ëñ–P©¶Ðª©Ã*ó£ÃêëM›´¹x©—k횥*‹äë´Çª_JO-+\¢}: qn@TË7(9)I%*Ò Ž]TØ©@-™çeGCX†ú;÷Üs5nÜX½ÿþ”*¡•…US¦Lu×vÚiÞRªªZ5GXe²1¬¬#À¸1¬†ôùqŒauß‚iú|ý×Ú?ª…ÍÖð{ëšý.ÖšÒ<„ T-֦ЕEÊ•LÕÂüÅútÍWš±ð[‹®¿ò{ïHÕYh4IÝn¾Fc³¼E-¦5Ï•Pzè8ç[=ZV]zéeÞ Sß1¬n¸îBõêÙÍ›«Ÿ+×êö;òæ fg Ê®{[×TŸmZ›Z5GXej®° ü8úüfÉ %•¯T´¸@ _™§§Ïÿ?ÍŸ5_ÝR:)9!QÑhXmRŒ†”¢ˆr‹–+,UÙúµšùñ§ÞQ(wŠî¹ø"]ìµÿÎñ–»r4õžêëªWLÅÏWßÞÖ=¨OµD/Þì,«zp VLù•VÛV5¿ÛHzš‚?ÞÓ¶vNÁXeÕÓÆ•‹UÒv¹~øt޾{i–f}÷Î8çLw]ï” DB*)Û¢.É´±$G«òiã†Eú~ùLE¬Ú¬Áæè¿7¿¨î=¤tÚÍ'iõCñáÓÍúzøÍ±uNûåw§ÚÍyO/v¿8nû!úåƒëõÑI7;˶y f ¥o¿ãa]pÑŸ·j¾šÖÙ>€‡ß `õî›Òz «ùúô?ï(·d±N½ÿýúîSôõ×_ê¨CÇkéâ¥Ú#sOuIÈR~qž>_õžÖç.Uκ¥Šl’†Þ×;Jä®Ój¨=ý)kœÆ°DkrœéÜÙúzÉ?6;¶®>²»ªÏ§êž©v ñâǬò+­âÇ´ &ÕǬj®ÐêGX?úÚðäfÍ }«äÑÕýøLvõ½3åm è?@ÿ´ Ý =»ä1ÍZù¥6nÞ @´­´Q:dÿü£´¢¬qºúÁ‡t–žª¡{A ~âÃ*ë0¾{@B+@mª‡U¾æ­~ÔÕ¾ûî¡vYµêÃr}þét}üõGJÖÿ9H!ç¿ËÇþQøãú¡l…J”¤´`W­_R§ì:|ØÞÞQ «‹ºë}çK¹S4ùS¯â*k¨†÷ùD“·ª–ÊR·>^–™óªž•5öÝ|R­Î¡Ò óøã×8fU|hõÜsÏyKÍá’‹]gÛÕVùš:´ ({Ϩó§bcYEœ×ˆ†ôí¦ÂõawƒÑÐ!ôÒ zsu›5w±F:H©WIƒz RÁì ¾l˜6þ¯Hóþñ½‚I©Úóü!ÚuT?å­襉OèÍ«&ëðÝ÷òŽP“9úïÅV –úœt³®¶îþr§èž›_Ô’ØRtó5›åÎ8ªîwÀEÞ8Vsþ«‹úÄ[x øt•ºÙ~9qËu .zð—Šm~‘²ƒp1ãX¡NFêÜsÏõ–TeVß¾}4vì8oIýôê=\é¼¹†{ô¡[ÝW³ €}`e|ò?ºòÅs”uP? ë8RÝöéªv½;ªxQ™"k#JHê¨E9ë4mÕ§ºïÐËõ›ÑÇz{¨ÉöV7\w¡ûzû»¯€Ÿ¶ŸD`e¦~õ•~ÿü5Ê랪^}©[ç]•Ò)CK>[¤‚‚|Eò uï1çiüˆ½=Ôf{+âýd+SXR¬©K¾ÓW«ëë+ˆ–jïÔ¿¤~qÀXµIMó¶P+@Sª9°êÓU…yÎôª±€¦A`hJAïhVhUVhUVhUVhUVhUuÙ+*Ùÿœ¦ˆóÑ>]•»<7¶Å¨÷.ÝõÉÇoxsZZv×JIÉôæØ>µV3>~;¶ÐŒè­ŠÀ ­*Ö%`ÔºŒë°¯u øNl‹*))Ñúõë•—·AùÎ|©"縎`0¨ÔÔµi“©N:ªsçÎÎ|ª»@Ë‹ºß÷Øo šÖš5kÔ­[7onÇtÙ+µÀ*b®Ã^`ÕM3>iX`•——§¥K—jÓ¦ÍÊÊêì´,µoßN))©JLLp· …Â*--q·ÉÍÍuÚzw›]wÝU:ur·Ð2ü°ªú+ZŽRU€¦ô“¬ µ`Á|«_¿~êÑ£»bÕ¶„Ãa­ZµZ‹/VZZšvß} Ú´ÉðÖh.NY³àø‡~P$â|ï Uƒ êÛ·¯[`¡€¦¶ÓV²Ê ·º"X ®g—€+W®Ô¼yó4pà@ç/Ô>ÞÒÆùá‡%š?¾ ¤ž={zK45¿’ʺêœ>}ºöÛo_70@ë°b€éÓ¿Ô~ûíç«b­4¥!° VíÌþô[Ý.\èvxàlwXeìv,;¦@óñ+¬¬²Š°  uÙó{Nã?³€Ÿ"7®·¿ãÛ¶X ´aÃ=Z™™™ÞÒígDzcÚ± ­~bõ¥ `Ý®[·NûRR’½¥MÇŽiǶsع4½Öüm¾¯jF…€Ÿ²`•^·Ñ`AA¡;fÕðáû4KXå³cÛ9ì\vNüx-¡²ü*š%Vµ è·`Á| 8°I»¬ÃÎeçÀW@]öŽQ«7uf#Îÿ"Ü·«f|49¶…'//Ï­x;öoI˘:õ 4H:uò– ¡ uÛm·»Ó7Þxƒ222Üiü4YYyÄù>·6}ú4ç{z¬·¦eX—€={öôæ~<~øa÷õ /t_bêÔ©Úo¿‘ ƒn³âàÇîñÿ{T‘Íy±žßâ{Ãtæ£oÒ6ª²ÎVFÌÈÔ¹^â-lZápX›7ovNQ»v하˜è­Ùy­Y³FݺuóævLõ¬¾þúkuïÞ]»ìÒË[²m”Ü|ó­îôÝwÿÍ}m¨åËWhõêÕ>|¸·¤ñ¦M›î¾Zwƒ-ñ³÷ÿöÛoëË/¿Ò²eËÜeƒÒˆ#4f̘Šàè¼Öý? ;ïü«;ß”ü°Ê?ïÞ½ ­~âX­X±B .ÔúõëÝÀÉæM¯^½Üð©sçÎ0`€;¿- ¬ŠŠŠ4eÊ}ûí·Uι×^{iܸqJOOw—€Ÿ®ýë_úüóϽ¹†=z´Î:ë,onûØ5ص˜³Ï>[ûï¿¿;]_V?]Íù|¸>^|ñE}üñGÊÉYï-©[vvgs°N<ñDoIãýóîÛµéþ[H‰Í{Y”"!)Ùa;ÓeER0îq¾õ‰DÕþüëtþoö–6 {vš—·Þ¹kΜ9î²þýû»Ï";wÎr¿7›SM™‚=Óßwß:ꨣ¶ë¹þNXºîc#ùyUØy kHŸ®šññÛ±-%%%úôÓÏtøá‡*!!Á[Z7?¬Z¶l©vÙ¥·î¹ç.oMÃX’ù¿ÿ½¯­ÔÔToiãX`UP°EmÚ´möÐêË/¿Ô£>êÜ绩éºà‚ œÚ¾:ýô_ºËž}ö¿îkS‰«vÙewÙòåË ­~âXMœ8Qï¿ÿ¾7W·C=T§œrŠ7W³úVöCž{Ï=÷të‡a\ÙõXˆuê©§6ø‡?ðãbÏØ¶‡=Ãk ×]wÛK•±_îýË_þâN×ÕOWmÏ‡ãƒ¬æ µ,¬z饗½¹†9ñÄtÒI'ysó÷Ü¡MÞ¢@J@ᲈS$$.ªÏAm•”– …ïoRBR@‘rÛ#êLÝg›íϾ^¿ýßÝã4ûåù/¾øÜý^,--õ–Ƥ¤¤¸÷Á¬ôôæy®þÑGêßÿ~Z#F ×QG×®»îê._ºt©Þ~{²buÖ™nXØÛXÙgÐò…ú° ¢1ŸÕ@ ëp/°²úºš+{À¼aÃ7ä©êaÕ-·Ü´]áÈ×_ÏPÇŽ·»±P(䫹C+û`=üpìÿèìÃeÕTLÙ}™;w®›Î;Ï]oÁ‘ß]_SVÕê?ÿùFwù­·ÞFhõ×ÐÀÊÿ¡Ï‚!ëšs÷Ýw¯ø^´¿,Xàþ0æÿ&Ó¶~È«O`eÇzþùçuÕUWÕZµeÁÕßÿþwB+~âüg ž»_Müê*X{VÒÐ*+«Ÿ®øÀ*>˜Š_~Ùe—*77Ï}¦;xð`wyS8÷ÜsUTT¬¿þõŽŠ€Ägç¯é™µ(úÓun¥Õÿû¼¥ãVܬH‚”Ý?UÁ”ˆò—)èÌøuO¥e¦hÚ“KµiuXúH‘pP[ÖDHˆªýÙ74I`UVV¦9sfë½÷Þsîq®·´fYYYî/×:TÉÉ^YX°Lá©§þí|}ot¿6=cÆWî:¿šÍîûm·ÝÖèЪ%+Ë$þö·;½¹úÛº~Í ­ªÉËÛà~!꣩Ã*cç¶kØ^NYHea•…V^YˆÕ”ìý[ j.¼ð÷»…UÆîƒMÛ‡îàƒr—Ý{ï½îkSª)¬²s[³i[fëlÛ¨û!ë˜cŽq§¿ûî;·;¾ÝvÛÍ]f뚊ý&Ãĉ· «n¿ýv·ùlmcÁ–íS?“uAàçÏæüEºoôhÝ·Èia9šúà-Îß¿^{pª³¤ª9ãÖOŒ•7WÚÖþÕÖoµ?? L}ÿý÷zóÍ7Ýy{Nâ??±e¶Î¯ºêÿ+¸xÇǞ1[°Ñ”,¬2’X(f!•½ÖŶêÛ…`],ްlÖêi’Ûµû¡]µßY½5üW»¸]ÿ•”kÈ1ÝtÀïzkðøîJJs÷p÷©)Ëh §Ê~ÉßÚ¶XotÅÅÅî/ñ7?Sˆ«¬èÅ_|É­„³u¶­oçú@Y€YŸÖ˜°ÊT ¬ì«ì·Jùjß¾7W;»IMV;·]CShîÐjòäÉÎ}(ò*«jO9÷» Ýñ¬jë2°±j «|„VØo¼ñ†[Õä÷Çܬ»?ûí£Ú*«âÙ66žU}»,üј|Ի͙ø°>Ê:I7Ýt“Û.Ê}ýꫯÝ׿0aÂýnØ`¯-%àöå¼Z=³Hå%RJÛ }¸JŸ?¶BŸýs¹~ødµ2:Y7 Êu㠷øª1F£Y…¤…¿úÕ¯tÈ!‡(99Ù[SÉ–tÐAúÙÏ~¦Ï>ûÌmMÅ2…ƒSÖJÚcƶ±ñ¬lŸ£Z«ªJJJ•’R÷øQö}s„UÆÎm×ÐTš3´²~$MmÎYÙœ¥ÔÖün›J|Xeª‡U>?´2„VØÑXõVMåò7ÜpƒÛª³\Û¾åävÖ˜C†xóRöÁêœë,wçæèƒ²tÒ)•ë‡2Æùœ5fûçÌÑÜõƒtÈØlw±ý;Ï›ãíø©³ª¢ë¯¿Þm6íkèòưj& …,˜Š?–…U~`´½OV9eÕö<4--ÍíÆžOÄ÷@cÓ¶ÌÖÙ6¶­íãWb •••í!XDSWYùê[aÕ”¢ (˜(¥wHPǾ) #š7i¥ÖÎ+vÖ;mÝœˆæ¼¹R †Õy@ŠRÛ°d£‰*¬ÌÌ™3õÌ3ϸ߯—^z©öÞ{o7¤jÛ¶­ äKbC<ùä“Z´¨i»T²LáàƒÇxs5‹¯þ²ñ­üâÇÆ ¬ì­ú­&6ÖMbb‚7W³Ûo¿Ã «ÌòåËtÎ9¿Ñ)§œZ¯výõ±ð¤6vn»†m™6mº[iQŸöᇺa•ñC«¦à÷áè§¡õeÙl/Ÿ*¾\´®À0~Z5±¿¤}6`h]â·m,û²¦êªê]úl[Û§q¬Û>+!öÚèûœ%ñª­÷»û³ §ŠeÛêöϺ ¬¶…ºÏ¿è¾Ñ•ë¼}ÝeGÿSúçÑîr·Ð*gª¼åAÅŠ¤²5d°åO•ñÑœ>’qÖ8rr”Û9KU:yÍ¢Ásm•ÍÔ½n®¶*öÎÎvŽçïø©³žY¬ºÈÚSO=å-møòưçþ/ÂZheÏ ü°ÊB£úöêR ¢|öÛ†,8å”SÜpÊgÓ¶ÌÖÙ6¾ø}†òCæ +Z£Â* (˜$ 84S#Ïî§”6ÉZÿC¹œeJY³õœem³Ó´ÿ¹}Õ瀌X`ÕÄJKKõñÇë¹çžsǨ²ÊH«º²ŠIû{Êo睊Y¦Ÿ'Œ?Þ›ªß››m[ß±¤šR|1ζڵ×þÉÛ«a‚ * «j.°jvõéòÇ¢¶~Û§cu5_ñ¤š>(¶ÏOék€†ñˆ³îüC«ó£íý¯.þ˜MÇ¢ºbØ$÷óomá)5 "4ªaý?¹k&/¤…Þ²è¤aºâÌêA—ïs]1àUïm;éüê芮ü¶qþE÷éÌ+†i’·.:éxw¯þ—æLŸ/ÛïÑ­ÿÿKÙc/Ö…YTŒ1õAÖ…ºØ¯ˆ²À)+;>Õ¢Îý‡ Ñ ÍÓUº|ÑY@L|—{öoW_C—×Wü³ cÕMLÙq-¨Š«ü*(¿úª1Ï2âc±­;±ÚØ:ÛÆø×4ÖÁÇB ë°¹z̲ꪖ¬° £ —I˦hñGkUVQ ÁË,|6ë,++kñ'ë´ê»E±åÍaóæÍzå•W”’’âVUýïÿSAA·¶ùtÒI:ñÄ”•ÕÉm6mËv&ù»ÜÔ+‡ ƒ …ìP»n¸Îí Ðôž|ò Mœø|½ÚwÔ]Ýcç¶kØ–‘#÷sK¡>;¹­K@c¯ÖE`Sð£¥KcÕf-ÉB¯š‚¯ø´5¾ËWÛ~€ñp³ß °ßª)´òû_nŠÀÊŽÑ`ʶmÔy½©‰ŸŸ¯Iq‰OÿËÿ­h¢Þ´Ähòݺb«õ—ËæÆ;¯ýc‹œ™ãuþçó´Ð›­jýcá£î>fü5ÿÐþ³xÔ6ÎþôøñÇÙJöX]|ÓÅŠeJ6ÆÔ-z8÷Š1¦NÖ ºåÁ©^—€Û²­ý‡è”›NRÖGÇZc‹ò.ºè"÷ù5?Ø1 ]^_~e“õªäóÃ! ªª‡UÆ&¾*ª!ª‡Vþ³‘x¶Œ° MÉzÍ1b¸;m=ˆ5«®jÑ1¬uÇ£Ú°¬Lß¿¿A‘òˆz oë†XJY —J=e‘pT‹?Ú MËËܬª‘™H½MŸ>]sæÌi–ªªx–)øy‚{wÛm·);;Kýën³i[fë,¨´m›¢Ç¶†² ¡¦bœšZcó†zV©©)*--ñæj–žž.·ÊB+ëÐÆ³jª”×Îm×ÐTl¼*ëкôÃ*ת)Ø€g楗^r_Ý^{íå¾~ñÅîxÕp´e¶ÎøÛn=÷ܳÎßLªÎ~µ}lá<}¾ÿ ðfkTÛúE÷itEW}GëŸÞâÙÖùû_®Ïž¢‰bç©(ÌÚoŒ©ø1ª²Çž¬1úHn/YYqãYÕ`[û»,´Š…YÖ.v6ÍU–õ €ÝqÇn‹„º¼¾ì—Ó=Oˆÿ%X{†áÿòzüó ÛÆöàïÛ@ù×kÏF«ó—Ù6„Uh*þóç>úØ}ÝÙY—€€LzïÛNi풵ˈNÚíÐ6JïTzçívxí2¼“RÛ&i×QíÝ1¯Üª«fª°jiö5ýðÔ››ãVÏÍ;O?ü¨Î;ï·n³i[fërssõöÛ“+>?6õ ¬Ú´ÉÔ¦M›½¹ÚYÂÛ¡•Û®¡)4gXe¬Éôô4÷ÃS×àw“&MrÑ–tã7xS@ýÙUÖ¬é^xÁ¾á†ÊÏÒĉÝuþvÛË~P´ßrª^eeUTÕ+©lûm¥FÿpYkeTlüªótcÔëª/:Iç{«l[ç·ÐÊ;‡Ž®ghUÓSñ²³•µ>W¹Þ¬ËB* Ö œ¶µ ræÌÕúACTqÐr¬2Ë6`ÝÿÅ?S°q¤¬ùlmclÛw{»¯þ¸Þyyyn3þ2 )ØXFöüÙzÒ²€cggcQEÃRJ[)53 _åéû)«Ô{dWíwæ®ñ«^ê7¦‡»lÞ»«T^R¦ÔvR$ä  ì»ï¾Êήÿob[bc\5Ë,K(,,Ò…^à-Ýšu hl ³šÆ¹ú1¨XY ] et:ut“»úhŽÐÊÎm×°½š;¬2öþÏ:ëLwÚ’O ¥â»´i[öôÓÏx‰hËý¥rÛmuw½ÔÆ~°³²,H²Ký€gÓöI¶.þ‡¿ía¿}dƒ‘Ú÷Iü˜’Åeþ˜¶mM¿Å´Mã¯Ñ?öSÊ §ÎÔÃnÔåÖߟÛÕß:ó¾Šþùœõ÷ÉÝ:®2jÑ}·5®Âj[çŸ|A\@5@ƒêúE¬œ©zð–å+UÃS9S_ÐGëÙ*Ç 4O/N¬(—Òœ>’‰kµÍý«™3Q;»9„¸ Ðz칄U1YO0·ß~»žzê)}÷Ýw’MÛ2[çwØÏ2ügölÂŽÝu׹ͦýçñÏ7€¦àW×Lšô¶ûº=,ü2 âÆßÖÆWÚnÑXhU^ÐÜÉ›4gÒF­_v«§æM^­Ù¯­R¨8¤M«ÂZþE±–~Z¤²-XÐÕD]¦§gèÈ#¬qØ‘êCuèÐA‡~¸† æ-Ù~~¦`ÝþY®b…'Öõ£}m¬Ùô•W^Ἆpÿ³mmŸ–öÇ?^«ÓOÿe½Úµ×þÉÛ«aî#¢Ñˆó•µŽ"­EÂÒ·‹f|\ùµ¤¤DŸ~ú™ó…8T ÞÒºYHuÓM·hùòeî˜Vwßý7oMÄÃaýïïë€F+55Õ[Ú8Ó¦MoÖ°*ž%¢O=õoçÿkþ û ýîw¿sÓÛ¦fó׿ޡ]wݵbÞg}HÚ_*úÓuóøé°ª H$â¶éÓ§iìØ±ÞšºÙ`¤=ôÐV¿da•õ5]ßê*¨°gÏžÞ\í,{þùçµ÷Þ{kܸqÿ‡a?äM™2Eß|óV5¬¤~².¼ªã£þ¸R6×¥ßþÿÐÂÏâÆ§ªqýÏõæèºÂëµpÿüCî˜ç3þø‹tßè3¥  Œu%è.òÏQÇùmÛW¨¢sÄó')Z1ÞUå~çOŠêÑáSõàÃs5øB«9šxË‹šg“®A:é¦Sâ* lœª‡õ‘WJÕyÌ…º8¶£§®ý«î»õ±h=o¼ñ†Þ|óMo®f?ÿùÏuÌ1ÇxsgA˜…SõaÝn«škêÔ©Úo¿‘îrk6D~üç·öœ¶¶éxsçÎu‹²³;ëÿý¿ ÞÒÆyñÅõÒK/{s c?'t’7×8ÿwÏÚôè- ¤Üq©Â)-3¨ÎRµlZ ¨ëÐtmY[¢âÍQ·ë@ÛÒžm¶?ûzýöލ ØsÓo¿ýFï¼óŽ;nÕ¨… jÆŒJJJÒèÑ£Ýç”]»vóöhZ~¦°ß~ûêÈ#rŸí{–ÿÎ;okúô/ݰʪìcÍš5êÖ­ñ×nÕòå˽¹ºÙ[ÇÊ ¬b•U±°*ZC`e¾þúkuïÞÝ9ÑÖ)cmüÐÊÜsÏ]îkC-_¾B«W¯Öðáý%g•iî°ÊgïòäÉn‰žÿ…´/”%àV²×\)è¹çž[kPV¥à-9ˆZ_c+c?ˆÙ~^ ©ì¼†”Ï×7°2öO6F•ý”ÿÛH\Ù˜UV¶ß¨Ê*ð£fÏ/¬—{~aÓÆž]Øs {༽ÝúìøñC~Ø/ÕúA˜=?‰£ûª«®Úæ/ûXýtY`ìmÓÕÕµ®¡,´²°$77öý²-öLÙB“í «Ì?ï¾]›î¿UgƯ˜r>úW¸ßN —ÇÆ¸ò¿%ì{#‰ªýù×éü?Þ[Ø„ì™ä´i_¸ÏQ-°²ç¨Tõë׿Ùs…æÌ¶7°j U+ «jª°2ö—û¼yó4vì!Þ’–1uê4hP“ýÉO%ì<òð6ÿ‚±¿X~÷» 5xð`o ~ ¶'°j ¬vT~÷ƒö˵ֽ`õç—ö˜‘©s/¼Ä[Øô¬÷·E‹ºÝôùcÒíÌv¾ÀÊF7‹D4¤OöV•±*+|¬oß>Þ’æõÃK”““Ó$ÕUb¬v<VšÓÎXU1lvß} æÏŸ¯üü|oIó±sØ¹ìœøñªXÅRûÚ“û6m2Üîù¾þz†JK˼¥MÏŽmç°sÙ9ðãU­Â* ­ê(7µ®¼ºté¢/¿ü²YB+;¦ÛÎA·aÀß×€êÔ% oÀ€êر£>ûì³&íÐŽeÇ´cÛ9ðãרÀÊX ´ë®»ê“O>Õ?,ñ–6žÃŽeÇ$¬š—URZ³<‹‹‹½¥h ö|ÆžÓøÏlà§(è>"ª¨3ÄF¯Š†5¸O¶¾þð-›Û¦‚‚B-X0ßýKµ_¿~êÑ£»¼µu ‡ÃZµjµ/^¬´´4í¾û@ƬšY4ê|Ë;-‰(77WK—.q§Ð:,¬Úu×>ÊÊÊ"¸Ð,Ö¬Y£nݺys;&7°ŠF¢±Àʆ¯r^횥Mò6©Ÿ¼¼<-]ºT›6mvþbíìþåÚ¾};¥¤¤*11`…Ba•––¸Û؃òÜÜõî6VUÕ©S'wÍËÂ*c!•\ùËüW4??”²W?¨²W4•"°R7«°ÚþÀÊWRR¢õë×+/oƒ òùÒŠê ûË655EmÚdªS§Žêܹ³3Ÿê®Ðr,˜Šoþ2´¬øÐ*¾@SúIVvÕƒ*+€–XÅ¿ÀOM•ÀÊÄÊyB`ü$Rì8«ü”mXE"Ò‡À -£ÖÀjÒÄ'b[ͨÖÀjöÿ‹m4£`,¬ò›-²ÔоRÐ2‚Þ+Ð*ªVVbå7 ùQa€VU5°rDZŠÄ^€ x@kp+¬,´Šo@Ka +´*+´*+´*+´*+´*+´*+´ª`Ôù£zZ VhUAœ?ã›ñ_€fF…ZU0 œ ­‡ +ð£ôý÷ß{SØÑ¹•UYù hI@÷QE£R4âÌ:¯‘ˆ÷ÉÒì/Þ‹mÑ ìtÙ˜Í( "g~mq‰–oÎך-µ©¸X…N …Ê” «CR‚zdvPÿ.ÝÕ«C'g€‚Î>•‡‰¸€ VaµÛn»ysØ‘ÕXekÖçïÆ¶h.Îy6‚š™—§ïrÖë‡Í›Uìœ?ä\GY¸\‘PHå¡2••«¼´HeEù*ß²Q¡ kÔ¾<¢½»ôר=Giÿ‘£” (Á˪bñ`§’3E&LQ—ÓoשCœù9Ïë†g×iÜe—i\¶m0GÏßð¬fÙ¤k˜N¿ýTÙ¦¾9Ïß g½ ²Ç]¦ËÆIS&LДœØ²x±õîñ#¶páB 0À›kZú¼yŸóœìqºÌÙ![9uï3tö6¾/jºŽóshÛýæØ¤E=öUV‡ ]tÞ¯cóMÍ9þªPD¯¬X¥–­Ðwù…ÚŽ(-%Uí2ÒÔ1=YS­%9ÓIꔞ¢ŽéêÙFí:vTZç.Úâ,û6w™^~’^šøœ¶ä®×À•’šâ†UT[ÀN¦p‰¦M[¢6ÃÆi¨=oÏ£)³ ÕgäHõÉðªa§ëöËNÓ¸qãÔ%÷9=û\®ºŒ*÷ñüœç5á}iÜeÒ1³5eÊliè8w[·uÉuŽ[î1ã4²O†í…¹ 6¨S§NÞ\jäç-gÚšR˜¡ìœg{ûlg8Ÿñ:ö©óû¢¶ëðÖídÜ1¬ZD8¬MQéß+Vëž õ忥§¦k×™êÕ6Eí’Ê•T¾Eá *+ÈQY¡Ó¶ä:-G!gZEyJ,^¯Œò|õÌHÒý4äèU:jWÝûí[ý«£ôÈ#»…bQ¿ÚÊ*Ç;·9³5KÙ7¶²žjÈX«N™¥Ùs¼q¬ÊäöÛ++P€æTÿÏÛM’£ì¡‡jhvŽfÏ®¡¬j;ììŸ{/°²„§é+’ü¸Èr£iEºÍù›ãÓõÕ9­úwÈTfRXåETæ´péf§mT¤|“Êw^æ¼"Îü…BÎòh±’ÂJ †”T^¤6eÅêÛ¹ƒö7RiG ÓÍ?­ƒq„f~õm¬kÀ@€Ð v"³ž½A7Üà4¿3GκuΟ]Ô%þA|¶3L[ç=ô2TÃÜîÕœ}Ÿ¯!ÅšRc>o^ð:tè§e+gÊTm÷'õGô¹w+ ubÁNÓWþÑÊœ‰§V®Ô£?,UjJ†w`©JK6º!U ¬@‘²|…J7)T¶IáòÍ •ç+ÊW4\ ’²ÎJÔ­]Guj“¡ ³oRBXééIÊÈHQ›Ô$µ GÔ##CÇî­å{¥è°«NÖÿ=üˆ{„V°óvúíºýv§>Ì[R_Ctª³Ÿ»Û¬guà 5 4†ÞæÌž%eu»öËj]YÖ\!Ø0?žÏ}l +7ϱqŸì%6†Õ…çža Å«Šœ?ïû~¾¾Ø°Iòº+#1¢òò-Š–Iá"EBÅ … */P8\¨pÄ™;¯%N+UI¨PÙí:j·n´KÇêÕ©‡ÖnYí9¢¤Ä ’’LpÎŒªKÇ.êÞ&K)é‰*럩×ÞC¹_,Òá‡n©¡ìÈ —júô%Ê6VC²œùÜÙšjcõì·Ÿ†—:Ó9ʲŸvõÇæÉ™­)ÎöÙ£~ÛÞ“5ÄÆêªÜ©Ó´$cˆöówˆ;^Å1ð£gcXuìØÑ›kzõÿ¼ÍÕ”çf+ÇÆ¤š2ES¦-Q¡³4G]4Öÿ×ô­ãû"þs\ëuìDš| «ø°ê/sgiî–RèÖKÑHBÖÅ_¨PQ ©ÊòUV¶Iåβò°3-Py¤Páh‘3]¤ÂH¾tÝUCz Rzb’Rý‹”)%5Yi©)JN ªMZªÆ ­Ÿíy„ŽÚç?âgê“ÞY½Çדyïë‚óÏ“"ÆÙUv:ƒ‡i¨u{öüTçO“£©ÏOqþªaƒÝšûüºñÆç5×frÖyÛÍ£¡Ÿ·œ©ïk¶Ãvémºí¶X;}¨³bö¬Ø1j“ÝÅÙË6‹m•ãv™]Ñ=æésߤ•V…œ?ïY0[ËJÂÚ§{•–ç»!•Ê Ý «²Ð•;óåa © œí‹Š9¯%* ;jx¯½Õ/«B‘¥&'©mrªnü^‰‰A¥§¥(PFF¼ÛõíÜÛ9G‘ò‹òÔ%³³†ï¶2Éê{ؽ𮫮¸Â Ƕ«Ê*·x•–/‰TiÍu v\{¡PÈ}õ›?_ŸóÚvvMÁŽcÇ«[»Öøë÷§ë{Mþ=hÊ ) Ö©·®¡9Stÿö€þ~MɪÓo;ÕYãmqª³^³õ¬­¿Šr²ÇéÔ±ñƒ^M§aŸ·Í™ãv8$n“ÁÃÜÄJïO­+fr>û–lÍ~ÖùÜߨû§ähèé?ÎÏ} Ð}D4±4'ë0Ñà>YúîÓ·c[4T8¢—ÿ ÷×oÔA½ú©´t“"EÎñ‹.+”UI…ÊcÝÿY·áH™Êí5ZîL—«ÔY~p¯ƒÔ3³‡6oPr0I]Ò;kñæešµ~ŽÚ$µu¶ +51MûvÝG) )Ú\Z P4¤²pHA%8ûåë­Yï(Ë­O,ÑÊw¿Ö-ë /»Ä /‚Á&/,k2rX5X}®Ñ¶µí¶§zÌŽ‘àÍm[Sœ³)øaÞÎx퀖±xñbõë×ϛάÉ+«¿ ”‡ôAþ&Ý»d‘Fvï§„hTV @¤HÅkòÌ)’X¦òP‘V…ÂNS,¬ŠDC* êÐ^k`»ZW’£ jŸÜ^aç¿W¢„@‚3QzBºöÍ¡Ä`’¶”mq.9ªÒHH!§)Ty8¬÷~ õù•_T¤µÑÍZûìgzÿƉÚsÿáîÅ6$´Ø²e‹Þzë-=Z»ì²‹–4uèQ=8²0fݺuZ¿~½6nÜèV µk×NíÛ·WÏž=•’’âmÛ¶¡!\õ}V®\©Y³fiéÒ¥ÊÍÍ­è׳S§NêÝ»·†ª]wÝÕÛºæs¾þúëêÒ¥‹FŽé-i8ÿÞΘ1C+V¬ÐqÇç­©n»o ,Ðüùó+îW^^ž{¯ìú{ôè¡Ýwß]»í¶[Å=«~íþ9çΫ™3gºÛÙ²m©ës`ë’’’tì±ÇzK-ÀjçѤVùрΟñ©º¶ï¦® *]—«„`±’ÚE´aö 3ÂJ̪¬¸Háh©ÊU¢ˆÂÎUDÜàit—}u@—ý´¶xÎV=Õ1¹>[ÿ¥rJ×+èü—𦑆+)˜¬-n·‚a•{aU(UÄyÁhP-û\9[òTXT¬MÎù–m\¡^S 4å?ï(1%©Ö !žl|úé§:øàƒõðÃë·¿ýmƒ«’¶Å>ì|“'OÖ+¯¼¢)S¦hùòåÞUµmÛV£FÒÏþsxâ‰êÚµ«»¼¦©&þùJKKõüóÏë‰'žÐ'Ÿ|â­ItÇ ys1{챇~ó›ßèì³ÏV›6mªœÏŽÕ¹sg÷>½ùæ›u†9uñyÆgè¹çžsÃ:{¿>ÿ¸L=òÈ#îµW¿O5]»]Û¯ýk]xá…êÛ·o•k÷¿žW\q…î¿ÿ~wYS©~€–C`µóØîÀÊ­¬²‰pDw-š£O‹‹µ×^*+[¯È† *Y—§ÌAÚ¸`•ÊŠ Ôf·6*)*P8XæVU)Ua¨@ÚõÕq=ÖÆ² EÊ•”¤ÎÉ´¼h¥¾Ý4ËΠä„Tí×q¸RܰªP¡hXåáÊ#awÚBˆH$ ¤Äd}¾â+­Þ¼V¥å!åj}´HK¿øF7îòK]zÙïë¨øÛX`5vìX=úè£:çœsª„MŪ“þüç?köìÙîü˜1c´ÿþû«OŸ>êСƒ[­“ŸŸïV}÷Ýwš:uªÖ¬Yã.ÿÃþà¶ŒŒŒm^›¿þí·ßÖ•W^©ï¿ÿÞ­Š:í´ÓtÀhÀ€nUUff¦{> Œ–,Y¢/¿üR'NÔÂ… ÝJ«|PGydÅñÊÊÊÜê³

;§Û‚0»ç¿üå/uñÅëÔSOU±óy·°ËÖûüím¹Ý@ë °ÚyÔX}ûÉäØÛàVËËÊtÉwŸi`·~Jç+X^ „„­Ÿ¾Xm÷h«R ?æ¬VÇ;«´¸X‘€UVYÐT®ô¤ýr—Ý.ÿ C…J &ªmR¬ªæ£õŸ©(\¤Ô„TíÝ~OwL«‚rgçzCÖA s½!gº,V8V4Pjbª¦­™¡U›×*äœ&¿¸P› ´²4OÑçëËGßS»ìHmüõŸ}ö™9äýóŸÿtƒ”êAGcÙñ­ºçšk®qCëÂîꫯvÿjª6V¹óá‡êž{îÑ{ï½çvÙ÷ /¨ÿþµ^Ÿÿ~î¼óNwp¶nݺéöÛo×)§œ¢ÔÔTo«ÚÙþ¯¾úª.¿ür­^½Ú­8;ï¼óÜuÕ«mÝÛÚø×nÁàË/¿ìž'>ˆ³¿\:è 7(züñÇu 'x{nÛôéÓÝ 1ëBð™gžq§†~--ëÕ«—&L˜ ßýîwÞRÀŽÈЬ×-ìø¶;uq#‰PDÿ]ð­É)j )\–¯P¹UQ+šÒæ…k”Ø) ¢M›MKZH`(E›} 2“Ú¨Ô´®¦ ¾ÞÖ…IIº°ÖÑjkÂAI:û-ov«ùf°x‚:h‚s&Oõù·­{dëÒ2¼V6IgW ­læ³zi‰7m&Mlàñ–èžáIªÈŸ~u›®îcÎò“þ¤øÌjæŸnq®Ø­½ö+wª5¸OÔý‡ûñ,€¨W+é³U?¨81 vI•—ç+.R(\¨²’"%eŽ–«`ÍF%¶ ªÎ¹ qšMÕ&1ݹ¨€æ}¯v‰m´gÛ!Jr–9Çs*§Ùö+‘rƒ*[ñ–‡•à¬‰ØØVÎA«² Úòˆ’ƒJvN’žÖFK36éÃÏ>r¯ßˆ¶ÕtOêh~@dÕMV-dãTýãÿpC[ç‡5í[½ù_3«ò1b„[©5oÞ<Ýu×]îr;¦5ÛΪ’.»ì2wŒ*ÛÎö÷ÏWý¸u5 lì˜Z}ýõ×úý龜V}ûíiÕ·a÷5ʽ†øuõiþµ{ì±îXWŸ|ò‰»Ü®½ú¶µ5Ûß4æü4F£Ñh4F£Ñh4­îæªayE«¾~[Ûog[ôæ ÒIG«o-ó­Ñ\5,µ#õPÙGº´oMë~š-v»j^×øæÖuô¿ÊÜ!s*Û¿t´»f’&þÇÛÞwô¹Z_UÙÖo tǰøãGõݳ/ÉÍ«Ž>zëãU4w…£®þ*þx_yᔳ×ÙÇé?î¶ÃtÇ W;[:–Ü£+ŽõÝxO,ësõ­úeű[¾mw H ¨OW-Tjr²×`¡ÊC ¹UV¥Š–—ªm¿6ÊûnÒ»¤iËŠÍJOKvª~mz«GJ7•Eʽêª$µMl«ÅÅ?(1 ½Ús.0¨âh±s&»ó7Ìr«¨6eA›ó&œfë­Ò*!ŒV‘Ro¹UÙva%$Jid%î’®·>~G^öТü`ÇÆž2÷ÝwŸ¤¸_ŒFVäXÕ•…Ogu–Ƨûï¿ß­¶²sùÙ#<â†V>ø`•1¡ÃxÒÓÓ½%•ï«%ø¡QcØufffªS§Núî»ï*–ØA|?Ac’“•ì¶1^µÐbM3HW!}qõ %_ôdµy+9z[ÙöoÇ´Òâ c¼åñÇŽyû¢d©Vš´pþº[?oΟ—sîd¹§4‹cçóçÝsŒù³nj’mj©æªrâߣwÜjºUßsl›¸u.ªv¼j¼kt·ßêÚìkä«Úzw?ÿøÞz{£oW›ÿQªÁ^X4oöV}ïÕÓL=ç•W}Ê«:%–XiÒÄÿÆ&¶iݱ .8ówÛã½à%Y“Î>^¶xæu^uUŸ«õÂ{ØT«©5±ˆOµêj¥ QÍÎ]¦ô„D•—lT$\¨p¸HáH±"*UYA¡: l§ÍKóälª¢œ¥&¤8-Y»gôWbÐÂ'¹ãSe&¶Õ†ò¼´oÜõ¼­×;OÇY}¾¯Ž>i”{ýíØò…ó‹¥Ùß/rç-ÔuÒ™úu“lS½šË½EUîQ•÷è?¾¬˜®z?*ï§­·°êXͶûgë瞤¯~ÌÝ=¶õæl?èj }ÝŽåÜ{]­s&Ä®5] ‡¾;–kèÕ4Æ?—Ô9÷üccë_?ÏyÇ*ùuo~î=õØš°(þ|MÓbo§æuÛÕÜ#×pìï*»ò8d˜·<6ïl]uÛÚZÅ1ÆëäÓ£:ýäñîÞšô¼W-UÙ|ñËbítUîöŸŠåÃþògç¨îRÝrÜq:Ù«®ÿç¿hX•ý[¾mw…ÕÊ‚ÍÚX²Y)ÁˆóÁÚ¤PÈ«bEÂ%ŠDJ*/SJ›D¥tJÑæ%- +RRÇävêšœ¥p4äVS¥Óq¾X6vÕÐŒAJ &©Ñm¶­W–ZÙ‹UåVQ9ÓP%;Ûn)ߤH´ÌÙ$â4ëò¯Üiμ…VáR%$5Z½.Ç}v#Z‚_íôÑG¹ã1~úéîüöT ùüj©1cÆ(++Ë ÄŒSÖý UWùçk©÷Û”ìYÊ~Î9ç¸÷ï±Çsß³½?»¯ ½‡—\r‰®¿þzoÀŽâ¼×Ô‘Þô‘Çž'}1_‹¼ùúˆß¿ß¥×é<=¦×ßñÄ;òA•–Vn»•w^×cç[¹>n¾ßnC¥Ùß»D‹¿Ÿ­¡C‡:—iW¹Xά[•ÕTÛÔ¤ÞïÑQëý´÷3ê=q©wŽ~—ê KkcÛ;g:Ö=X?]ú¡|Þ¾‹'éÅ/ÎÓëVÜ-çö¾®ó¾¸Z÷Æ]×y±íBœ#ÅÍ÷ÛMÎ;—ûÖw2“ÏIQJJ\Û÷ï±®üú\¥[énRiÉßµoü¶~;¾jåÔÌç^öŽ1ع/Ž_žâ…L“+«¥êa¨_êUÅ/õꓱ£-™<9vžñOêÕê×Ú ¶;°ú!g¹BÎÁ¨…SŠ„ŠbV¡E#åJHˆ¨<¿X}ÚU…k¶¨¬°D**W×¶YJŒ&*‰¸cWY—€ùå›Ô;u¥SU.SB ÖýŸ½&‚nx•hÍ™Xèâ´Ø«SÖ] 5iciž;†œfaUHk!瘉QE6”¨hy–­Y– p,\1Ÿþ¹û:räH÷µ±]óUgïÃB8@ß~û­Š™iÓ¦¹¯VaeüëØ™ø×|å•WºUi_|±nºé&mܸÑíRÑ¿‡vB!çkíU^ÕÆÖ7EP`G2Jû{“®þ8Ê2¡ÅÒ‘WêžQéX/$¸¸–€Ç÷ÎëU*Ž*ó¸xÁÏ¢ùÒÀcj”<-Òü/¼P§©¶ÙJï±, ³þ ã#17@«…»ý¨ÎÙjà\ü[­«~]Õ¯»úüÇø'KU:ÿ5®ƒ½™zîe7FRŸNóŽñKâUKMnHbU›_Þª«*²¬ñzrGH«µ&%ö°¿>mMÞ2•…Š*+Pyé•—(T^,«®’…Eå!%%”žž¬â…Z9c¹ÖÌZ­nm»©GÛJIHV’ó_T!uLl¯ô„´X7€–O8Ç·nþ,¨ DÎkÀ½`ë"Ь€ÂNs¶q¶³À*%äŽ]µ©tƒÝ<Ë‚ ç"eÎuXÅU¹ä¬/Y¶V iÅê¥î{ðÃÚZ¼šÖ×·Yèb¯‹/v»·Ûe—]Üùí=®ß¬ÒÈ^èVTY³ùY³f)--M}úôqç›ê|Õ›¯¦uiñÇ2öu²ñ§^yå·;Å;ï¼S»ï¾»®¾újM:Õí ÑX€å\¶¯Xñ!–5[ï=ÚüãÒh4F£Ñh4F£Ñh´&n5<{s–ÄÍW__m¾Ê¶~ó·é«K>(qÑÿµs­G: ®ÆÔÒ ÝÛzí±su̵Í÷Óî#giÁ¢EZ0kˆ1@C¾˜§…‹hÖÈÝÕ¯I·©Öê|N‹_¿ûéüQ1]±¬ÆãÇšóÇVËüæü±Õ2ç•ÓÕ»Õ|ܶMØLMË·¯¹‡u2ö™š^™iþìïªnï-·ª«éζ¶}•öÊé•Û~÷œ¼¼JKþ¾oEÖ9“cË4y¢þ[qlo™©XVÙfÏõ䨺n˜N=Á»Þ>ƒ5¤ÊºÖkÛ]Ú³!“ÊËJT^ºÙy-pZ‘Âå^w€¥¥JkŸ¨œïÖè©“ŸÒ÷-ÐÆÕõßkžÕŇ\ ûîû‡’JÔ&9]it¥&¤)-w/Êî³;v•s‘6f•[må,³€Ê9¸Óœå¶WY•èL§S”Wš«’ò- :ë£á2·YeU$ì7Õêåß+*•R¤UëÖZqVE¸ÑR6lØ ®]»*))É[Ò´zöìé¾'«>2+W®tÇ~jÓ¦;¿3²«0uëÖMo¼ñ†ž~úií¹çžºÿþûuÔQGi×]wÕ 'œ {î¹GŸ}ö™òóóÝ}-ÀòC,ÛŸÊ*àÇjZµnåiþ´­»Ö;òA æèî‘Óôâ¤*“¯Ù#ã*†ªÏ«ŸŽ>Iš?i’^”-ï¯#gëûI󥓎öª–šj›êê÷·%¾;BŸ[EU wûiµtÏØ Fnµ®q×µ³Úã/óäõ´§%ßO¿x66ÝP3Ÿ÷º¬ÕdÝzýLoº.35Ûù™ñ§Ä† ÚÑmw`•_X¤PY±ÊŠóUVZ Ó¡bEJKL kóŠúߟßsÖ•*!9¨¨"J´|Ñ Ýø§ô»ó/RÉÆB·[@ ­ž*tÃ*‹­¬²Ê«•©hK°¢6TÄYgჳ_ÀꯢZQ°DáH™Ê#%*—(ì´Py©ÛàŠÜZŸ¿FIIÉŠDÂÚRX` X‹VjÛ¶­7×tü÷á¿Úý4Vy´3‡UñüÐÉœ|òÉz÷ÝwµpáB=òÈ#nhe]!Þpà 7nœl=ZøÃôÚk¯¹A¡íoÝúÇðãòøqËïíï‹Óã#ïÖ•ÖµÞ;+5µr;îÒ´‘:éè­•Å“^¬UŸ7à<~Í5Þò~²<çůÐ4Õ6ÕÕúâÈ+u·®Ñoî÷#«wtï5±áejtä±:WWŒ•µøþƒ•ê÷«Øïh4òq×Ïb£¯k'vú+OzcMI“o½^õ‰•ªš©çý¾U%VE öòóÛ<ö³¿ØOw5^;I^U{`eôëÓTVIÑ••æ»V^¹Vi‘”Z®Å,Ra^Ó*-W8ä´pH©é)êÙ³‡ ¶lQaq±U‚uÿHtç$§-¬²pÊ‚ªˆuwg-¢ˆµ@Ø.Rˆ³Î™O ¦h]Éjå•ä¸óåáb•‡œ.uökÝæ´vãJ&ÇBª„€¢€s¬mw h­!÷d[-55ÕýpÕ´n{šÿ>|þrc]âùóÍÙLMËÚ|ñóÕ§ý÷degu–þõ¯¹áÕœ9sôŸÿüG—\r‰NM˜0A§žzªÛã¯ýkMŸ>Ý=F}¾î55_Mëh4F£Ñh4F£Ñh4Zã›÷à-n™¿È¦ûjüI#5íš!J½øíæcŸ{®t\jªûö¸Ùwkö—¨¯íÄzõÜÇ+Ö¥¹FC_ý@—ôëí‹Suðý‹œéEró©ñ}Ýå[Ï{íˆcäœJCÄ–÷(M›ßm`ÓlSy]±yi¤î~u î¨é=ºë5LÇš¿È¦­‹ÄW5ÔîŸ{¬;4ðnçJF¬èаê¹Ðv®ãbçrÍP½úÀqÇš­»gç«úuÅÎk±í·¾¶êóMÕb‡­yÝö´ U–Ÿ¦—Ÿ¨(³Ò©×ù]ÆÙ²ý¼ûS½ýâ¿ÎvÝöÑ/NwÜX;íäŠÄJÏ}[æ-Ðß÷«z<¿ ÁñO¼¬Óª'Öbë7PúÖiuaSÎ5Å*•‰hHßl}õÁ±k݆GßzVwÍyIýú÷RrÙf¥&G•’u»ßk×½–¾¾Rß=6WÉíU^\êFd‘°s.çœÖM[ç¬,ýý®»uÔG¨°¤D‰ÉA•FÊU.rZ±Š­R*ZæVM…œk Gà ÂÎ|ÈiδóÓ*IÓÖ®¼’<—«¨´P%åe* …´.o¥V­_¡üÂBçK‰›RTòm¾þô«[tÕy»ïÝ‚ê,аåֽܡ‡ª‡~XgŸ}¶;V”]{c?Þ V¾ÿþûÏÛXþuÝ{コþúë5{ölõë×OG}´fΜ©¥K—*1Ñ:OlzeeeîYp€&Nœè-m8÷Cè7¿ù[µlÙ2·:Ì–û]ùU¿÷þ:¿zª:«¬úè£ôÒK/éÅÿgqüíoÓe—]Vq¾mñ·[²d‰\±ÿö~4•wtIÚñÒ«Åzà'TÕÓ¤Þ¹DièMµ×wí\–/_î34­guBÚod™Ðø'Šõrµ ¦gOHÓoÜÀ¨®œ6W§>?X#ï­»£?;ÎͳýíÆë‰â—µuaTåyû\9MsO}^ƒGÞ[K‚µ#fæõÞ¹ú\©isÿ¢=¼å­) nÃk ¬¾œZ¿ÀêÕÞÑ•ïÞ«]FôSê– JJ)15â¼Õ±[¦–OZ«YO~¯¤¶A••«hs‘RÛ$)˜˜àWÖ=ßàAƒu×]Ó~Ç«¨¬Ø µÊ"e*Ž©8\¬’H±Ê#¥N )¬ˆV…œ)›+-˜®ï·Ì×ÂMß«,TªÂ²XXU\Z¤ÜMkµqKžŠJÊ”·y£Š JÞ¢Ò™…ºçòûõëãN²4¢ÆÐ">°:ì°ÃôÐCmW`å‡çŸ¾ž}öYýðÃÊÊÊòÖn¿øã¿òÊ+îñ­ëÁßýîwîxO ,p«‘êÒ4Dii©ŽY`õüóÏ7úþ~çž{nE`•‘‘á­­;Fmá–ýåtÍ5׸c`Y°öóŸÿ¼âë\ÿº,°2dˆî¼óN+`‡ò®.I·ÀªHá-BíÞ½DéÇÏÑ]³¦ê7Z¬ÆÓK'ÎÒÔØ‚…+V¨W¯^ÞvdÛ]ÞÓ«g_…¦/Öªé_ª4\¬H¤L%%…*/-Vyy‘J·«(¯X9KótèU£tÒ]G«ÈYV\èlª´´D³çÌÒ—_®W_]ɉÉJILQb QIÎÉÁ$w\«ØPU^°æ¼º‚3Ù6±Ö¯Ò²üÅÎ6!•‡J —©¸$_›òsTæ\G0êì–³}À}U(ª„h’ztëe½ºÇj ~ˆ²÷Þ{»Ó³fÍrçýåÛˈf̘¡VŒ“µ×^{¹¯ÖUžiŽ÷ëŸÛ/ «Œm¶¿MÇ_ë£>ê}ÛbûZˆäIv –ìÚ,I·cì¶Ûnnš-oÊ*7Ø)ñ€fÝ%ýaXºÒÓ­ýøÂ*ì\¶ûIý®={©} ÖM›§_£•¹Ë•ÊÆ©*Ê/PzÏõ9º«ö9c ºì¤aÇõÓEÏ¥ô)*-,q¶ ¹áÕܹsõ§?ýI·ßv»/úAm’2”žœ®`$¨` àKŠF°¦¨R‚ÉÊLj§µE+4wãL…Bå*)/Vqi¡ 7¨ h“žDœ­#±À" %F“) ¹]ãíÒ+VØØp¥¡ü`äÀtC”I“&¹óMÁw¬ŠÊîå˜1c¼5ÒèÑ£Ýu¯¿þº·¤é%''«C‡Ú¸q£·¤qü{dÝøYW€)))î¼]ÿ­·Þªûî»Ïo?À²cÛ¸Wöj•rÖ-£Ý+cǰ3;BQ]Õý.™ª"çžù° ­©Ö.§O©_¸ túo~­É3_Qê€t•´/QVvªzvËV»6•Ù±­2Ûg(%)YÑâ%†ÕwXÍzí{=wõ«n H°À( „Ä¥¥¦iРAî¸K¿½ð7JÎHѦ¢ *«,Rî\a¬‚§8T¤…ùßë§•…KTXZ -Åù*.+TQI‰JËËUZfÕ^åî˜Vù…N+(V¸0¨²Å%4Hïþë]¥:G´°¢¦ÐÊ*r,ܰ.?üp·KÀ³Î:k»»³ãZˆ´jÕ*wœ©ÌÌÌíÍükýãÿ¨x@ü±öÙgŸŠ ÆÎgÝáYU—Kf{ÎiǵæL樣ŽÒ¼yóܱ¹ü ©1ì½ :TíÛ·wï½oÿý÷wïýôéÓ½% çí,,<õÔSõŸÿüGÇ{ì6¿¦þgĺ´kûë_ÿJ—€°ƒ[¹r¥;Tv|Û]aeÝòí?j7”XtZ¢¶”hõÚ%Z›·X9kWhí²5Z¿v“JÊŠTžX®e?¬Pç!™ê;ª·FŸ=B¥Å%•©¬´L[ò·èë_é†ënÐ §ž¨™…Óµ¬Ä9NñZm*ß µE«5gÓwúpíûš»ñ–nÒ¦¢Ú\¼Q%åE*+/Sy¨Ü­Ü Gb¡Jĺ '8o6Éí 0ZÑžƒ‡+!–}mwXÔ~°ôûßÿÞ­"º÷Þ{Ýó[åOcùÇ´1«žxâ tÐAa•­³ã_qÅÚ´i“´Ø¼-å‡7~Xeç0{î¹§Ö¯_¯ï¾û®âÜ aûX³Ê' ×ìxÆ¿7ÖŸ…aëÖ­«Ø¶1l?ÿk^^^î¾úó å%¨m÷›c“ÞÃÿhTÙ2tÞ™§Åæ·)ª¶íÚëÙÿþW¡„RES¥pr@‰)A%$†¤HT‘@™ÂÑR•GCÎtXe¥%jÓ³~øt¥vÛO=†uÕ‚© •˜œä† ápDIɉúaÞbÍ[:W=~–¥y«æhIÁ"·­,\¦-¥›Ü. Ë Ý×ÒòçµÌ­¬ …ÂÎ1,航<Q¨< H(A¥eE‹" ç…u鯮Ҡž½ë =ü`ÃاŸ~Z?ûÙÏÜÅÃö³ãÚS|ð^xá·r¨oß¾ÝÕ5„O¶Oii©~ùË_º@ÿþ÷¿Õ­[·Š Ë?߇~¨W^yEÇ×€u>«rºñÆ5bÄ·ë>{_Ö- U,•••UT-5äøþ±ï¹çM›6Í­Û}÷ÝÝåVÅdǵëïÔ©“{϶ç~=ÿüónš‡Ý»w¯øZׯÿœX—‡?ü°;ì0í·ß~ÛõY4¯-[¶¨mÛ¶Þvd {Ú_‹AhŸ¡ûªtM™’J)‘ŠVVViÈºç ©¸´XEå…Ú\ºE[J7k]ÞjõÛQýë3ºv/üí^*sv²±¯ÂÖŸ3”¨/žûZÏÝòŠÔ5¢%´©d³ Ã%Ú.R~Ù”ºóV•„B*‹DQ@‘¨Ó¬À'jUUiŠF’éD•”ªk‡]4fŸ­Æ-šBRR’|X·w6ž’46®–±P¥®sÙ: J¬YS\\¬óÎ;Ïí>ÏÆy²@ʶ‰sl»G}T]»vu»5´°¦!çó·±}/^¬sÎ9G'NTAAAÅy8à·²ëÙgŸÕ;ï¼ãnkûÙuÖÅÖÛv¶ýŒ3ôøã«OŸ>:ôÐCÝõ„ -h³@ËÆêŠ?~]×oâϱvíZ=öØcêß¿¿öØcw}Cƒ/Ðt¶û)½HTgyŽ‚… Šnˆ*X,•FUXUiY©JJ‹U 9¯%*))Ra¨Xës7©í^é*),ÖôW¿Ó~7/¬H(,Ù˜V œ"nÕÕ÷ªWn~[eÃ*H(ÐÆÂMÊ·ã”[³°ªT¥ª8o'MT8tö :s©J´’/%«\ 6J–Â[ÊtÜ¡§¨mB,¬©OuŒmcÍ5¶wÌ";–½7ëâî™gžqîI‰;F–XªØñã¯Ë¶eük±öí·ßjüøñnå‘©d]ÿÙ¶ñûÛ´íkU\Ï=÷œRSSÝ}&L˜PïóùÛØØOV]d]öY`eP¶moÛüå/q·;÷ÜsÝmmY|äoëÛØzÛÎ7«³Áýì8î¶Æ¶·y Ý, ûùÏ®/¾ø¢âøu]¿ñϱhÑ"üñÊÍÍÕ]wÝå†añÛ€–·Ý]ÚÃ~‹ v8PoNzKk׬RbF¢Û5`(I &X·t6^RPÑ p¶£ Y·í“U¸¦DmT›aiê:2[¤$­ûb“ X0dÝ &kÅ«´æÛµš©Än '„TRRy(ª°…çàÑ$E"ÂVU•¢@$ÙY— Òòˆ ÊB*Ý´YmJÚèoÿ]SRêTX—€V5tÄGhèСnÀdûZØSŸf]×Y€ÜXÀbˬ’hܸqnøòßÿþ× žLVV–233ÝiÛ6>±ª¦©S§ê¶ÛnÓ5×\£Õ«WëÎ;ïÔµ×^ûzÄmÏÎ×£G7¬úꫯܰìµ×^s÷©ë|Ö ÞäÉ“Ý.ú,äéСƒÛõŸ…lþù¬ÙtïÞ½Ýîí¸hÙxT¶}—.]Üê&lëæï믿Öí·ßî¾—üü|wœ­_ÿú×[½›·ëß{ï½Ýã?òÈ#n¥UzzºÛM qÆ¿ŸSeãjY@g•hyyyn8hÁUõslËæÍ›õÿ÷î×lß}÷mðþ€–C—€;€º *•¢nÿy–jhHßl}ñÞ«±-êÁhÿÊÛoê¼ ÎTrïD•õ+šPR»¨2ÛHéi©JNKWrjš’’LLPÛžmµèÑJïÑF}NÝE%¹åêЯ½æ?²Ps”ŒtEñ")#E¥›Ê”˜–¤îc²Õqx{uØ;S ɉЖI ‘çÚÛkP¡TVVQi¹6•¨ ¤DÌÓ…c¯Òµ'^ªäà¶Ã*?d²±Ÿ¬¢Ç¦íƒm!T}ÙµÛq¬ À)S¦¸]ÚŇþ9¬ªÈ‚ RV­Zå®ëÕ«—Ûm]»víÜy w¬²iþüùnfN9å]yå•2dH½Âÿ|¶¿u½g!ŽÓì²Ë.îùüàÊ‚¹¥K—º¡;--M矾.¿üruîܹâXñük°1®þö·¿éÝwßu—Û1m-ë’Ðö±}srrÜc[ f>ø`ýáИ1cj}/þ9W¬X¡»ï¾[O=õTŲ~ýú¹÷Ì¿~{kÖ¬qC3 ÂŒ}¯¿þz7x¬éúkã_u‡¸×^{馛nÒÕW_í~¬r °ã±‚îÝ»{sØ‘ÕX}þ¿X¥O}Ùýh0 SÏø¥¦LK)ƒÒUÚ±\êTZ»ˆÚ¦%*µM%§§+)9YI JjŸ¢ùYªþç÷V›]Û*Rj×T»]ÛiÉS+4ûïó”Ù­¢åQ•å•+%3UÉmSÜjª.£³Ôï¬Þnˆ(³.á‚ε'*².ç*/«ÌÙ¯ ¤LJJµiÍõ,n¯7öÊ¢>,Ðñ»Ï³Ãö­/;‡moÕEV•í­©œ”––êÓO?uC²™3gjÙ²e*,,t×Ù1ìË‚Ÿ‘#GjìØ±nÅ‘iHø¿­U}òÉ'UÎg\ƺ˳ã[fãSÙù¬ZÊÔu¾ø{;kÖ,½ÿþûîØTöXu“±õ6~—U˜YÅ”U,ÙØ[f[_›øs[×~víYøeaŸ%æÆ¿_Â1½~ëÑ4ä~ųàËÆ ;æ˜cÜ€­!Ÿ#@˲¢ë ;¾& ¬ìÁýÊœu{ØÁÚ’ž§@¿$…:Fì$¥¥…Õ¦M¥¤¦)¹M¦RÚ¤(´±L+_£Á7ïëÆ/!Q Aç5Tfï,-zl‘=ò½ö¾}„’Û'kõk«µþ“ |õ`·"«ð‡REŠÝ³Káœ}Ce!•—ETЏÕU›¬Âªp“ çÍÕÿ]ü´ÛmçMWãiGQ[µŽÝ[SÓ5Û:k _s> zlù¶î_mlSÛñëó^êzßu]]û~\¬vMöÔÞ zdwÑÝwÝ«È:)asPÉʼn ”$©<œ¨Òr÷)Aá’¨“T¼(¬Œní”–Ú^‰eiJ ´UrB[¥$µWÑòv;wˆ†þ~o-úûbµíÑY#þq€ö¸a¸V?Ÿ§97,UBBºRÚ·uÞDš‚iR$Ù¹çÕY^MV‰sÎ’h¢6.ú^v©Æ®` 20i w¶·m‹Ù}´íプøð%~½-oløRßóù×ï=ñëjã_SmÇöaËm½mgêû^lÛÖß¿¦søšê~ùâ϶_‚Úv¿96é=€F•Ý!CçþúÔØ|X`áÀîvS›65uò{JÉNW05QJLPrJªÒ’Û)%˜®¶:hã‡j߯£Úõï¤`(UIÉJ ¦:-Y ‰© oªëA½”œ–¡ïïX ŽÃº«Ëèžê²w-,WîäJï’©Œ]:(\– Hy‚ÂJTi(ªÂ²ò£A­œ;]¿ØýÝxÚuJ Ôì©êüd{Z}mkû†o[šó|õÙw{Žo¶µÿö¿º¦< ùØ8Öûv|MX{˜D´ïðኆ“õùÔO”Ò9U ©IŠ$&+¥MG%'¤))­6}’¯®÷Rr›¶ m‚)JIJw^-´JUrbš"ù ÊÝKiÚjÅcËÔnP¥eeªÓ¾]•Ö¥­Ö¾•«’µ!eìÖA¡ÄD”¹aÕ¦ˆ´|Îßs?ÝwÁ½Êˆ†ÜwHÔÀOÕΣÖÀê7gœ›o7´r޳ÿÈ‘J ´Õ”IÿS°C‚’2SUIRrf;EÖGT¼¸T]ÆõR <Å «Ó•”¦€X©JHHQh³Ô~®JéÐV«Ÿ[¡6ƒ²¥Äd%uHWûý{hó²­øß•¥Iå]R´vsVÏüL§ö?D÷þö¥‡ËÝÊ/*cøé(,,TFF†7‡Y“WXùÜpÈ9Öˆ}öQÿžƒôñª8P äN©*d(LT´@ÊØ¥“RK4Éí0HvöMr^Sœe È™¶Ð*?ª6»wVBfšVNüAé»wT$9QÅEQ%ÎTiJD«Þ]«Õ_/PyÙ]=æl]û‹«•êVVEã5Ùp]`'`V;‡fMqÜÐ*ÑqG¥·žz[û§QÑ×9*\½T%κäƒ{*¿$ªâ² Êʃ*/OPY(Áy ª¤L*¦8-I¥å•´em‰Röè¤vGí¢ÍUîê|mŽ”hÍÒZ›^ ü=–©¯Bzæ´ ºèðs”ˆ…U:ØaÔmxÔ*¡8³Îk$¢!}³õÉÛ/ƶhÖ_0T¹‚zý½·õð¤µ8ºL>»*#kµMk«ôÔt¥&$*%Ñ*­’LNQBršሢ¡2·‹Á°µ2ç:Û%)÷Û<å¼¶@qéÚ¢\ußÒYœ¨3ø¥Ú”Y@åUŒ€Ÿ¤œœegg{sØ‘µH`eüÐÊNUª ^ýð-½øÉ šY²TåÛ+¡m¥´i¯ôôL¥¶é¨”´ŒX7~¡rE ‡U*SQq¡ 6oT8¡@IÓVh—é:áªStê¨ãÕ>!]Á{à§ŽÀjçQk`õñäb[4!«’²fÁ•s•‚ú~Í}4ï3}ýÃwšŸ·T›Ry› …RSÝk‰†BR8¤ÄHT©Ñ€2"íšÙI#z Ó˜=FkOç5¹,¬@0TÙñÝ®ÀOZnn®²²²¼9ìÈZ4°ò9g±d©"X ‡Š*—jÅúÕZ³q…òŠ7«¨´Ø½¬ÔäuLk«®z¨WVOe9Ó‘òˆ‚g¥7 —Uέ ¸¬vn`å†<^` ‡›=°hnV;@ ûˆ*V~`õѤ‰±-vBëׯWçν9ìȼõ€ÖQk…Õ‡o=ÛhFÁ¨…U@+¡K@´ª€º lªZ—€¼ùœ-šVhUVhUn—€ŠF+ºT$âv 8õgc[͈ +´*+´*+´ªZǰšòúc[͈ +´*+´ªZ»|ÿµÿĶšVhUVhUVhUAÆ*ÖÑØ ÐRÁîûF£g*V4u^#Ò7Kï½útl  yVÆ5ñÓ@ó »ŒF#)uþg¯a é›­õ‘•Þ&@ó Z7€@ ²Q]€ô^€VA`€V´n€ÖŒ:Tob+´ ‚Er››S9óäUh)Œa€VŒFc­a« «Ý Ñ% ZZZÕVUÔ{ZBPoÊ^ý´º@«"°@«"°@« *êM٫߀²u…Z] UX UX UX UX UX UX UX UX UX U€ÜÿìÕmÞ Pa€VE`€VŒF£Þ$Ðò¨°@«"°@«"°@«"°@« *õ&€–G…ZUPŠHѰóâ´¨3qš¨º@˼‰XH ª*—Í+ÈVhMŒa€VE`€VE`€VE`€VE`€VE`€V ¼) ÔXaF½) yÑ% ZUb*´&*¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª‚ŠF½I‡MÆÍÍm« «€×€–@—€hU[Vô €–T ®@ú@ £K@´*+´ª ] 5¹VѸ´$º@«"°@« *”§YvåM3°ZH0*`¹•½ºÁ•×€@—€hUVhUÁ¨7´*¬Ðª¬Ðª¬Ðª‚R@Ѹfó±4?7°ªRV å¥¨óâ7û3ö ´„jU|š_Ðý3¾W@z@ ŠV@+!°@« ¨ç¨¨¢Þ¸UшÓÂÒ;KëÃ+b[¨&A™ûöѱÇÔž=Ò•–žàý&XD%%Ú¸l•>™4KYª»¼f‰}{éçPà¥)š8Ã[ØÒ2;ꨋ÷W¯¹oéÿ^ó–¡Â¡·®w÷f´N/2Eï{s¨K¢úŸ6J¿ê½Z·üíoÔŽ + !RÛèð[××ì«ÑÚ*£"¬2Aguºº  “¯ù…îüëõNõVÅË쨱W¡;ï8Pc´Q²·¸E9ïcϳÖ©c÷ÎT›o9°]”}ÐP]úȉºò„^êÒ†r¨ç_Q*ÍùÃ[  R‚ö¾ôpýb`r=~ó+ ô~{貫{+Ñ[âpÖ:yT'¥·æ³ü£÷ÓGwWûêl—>úÕ¥Ã4¨#A€†á_@}eÐáÃ+K¦"ùkôú½¯ëÚ3ŸÕE§8í¼Wõàs+”ñ6p¤í1DÇö÷f@¬€ú:°»vû zñ¤ôö…Ê/ñäkÎËŸè¾·7x L;õÞÛ5 ¨çÈhÀy±®8-¬Á½³´>´<¶€˜Æé¡Óºx3RñÊ…šøÀ7šöCØ[² ûŒÐ_® ÞìV6,Ô?~÷•º36Ð ýâ„~•¦ôd¯ÛîP¹ ·jÑÔiú÷sT[êé¬39\£;Ææ6~ü?Ý»d .;¹‡²Ò‚Š”kÝŒ5*ÕW}c›Ô`^:eŠÞ÷æj3àÒcuÅA±÷º¿Uô„½tܸ]µkv’sõQ•hÅçßéé§V(ÇõªHTwŸÞêÕ9YÉ:ïoÓºµúâåo5éã…b:ª¾·È‚/uù‹âÖK£n8Ygîá÷qÒì'^ÐCo{³&{ˆ®}`íâÍ®y÷ ÝöX7W³Co;]'îîÍÔóÞÔ$m¯þ:ñäÚ³g†2œ¯…ýû«¬¨Xy ëõççé»:?CÎ}:m„N:°‡ºú÷I•lÌ×’Ù 5ù©EZ”ïnX¡Ê×G…úìÎ×õÌ oÖTû,/|îYýãeoÆûÚŒ?¨‡zÇþ"aiýœ¥šüJÕë®z¯¶¶õ9j–Ø·›ŽþÅ0 ’©Žmì³..Õ– yšûñ,½ôråg?Ñy/÷9ï%–%×ð^ûï©ï¬nÞ¬ÖÌÕ­¿ÿNk½Y³÷5'è·û¦ÄfÊVêßg|¬/œI÷ZNÝK£vo«ÌŠñêœ{_P¢ èÙç×}ïí{ãöõwí µï çþå¯Y¦Wÿ:My§Öð=tÚ(>¶«²;ØûvΓ“«Ï_ùB/¼_änÖéнtö/ú{ßc±ÏÀ‚÷?×ã7Uù^vF±Ÿ·£VUkªÊ)ÔoÒ¤õ ³î8Q·ýe„Æî›²ÕXU— A¥/¦={¤W†&1IÚkÏŽÔí·õW'oqMÝöÐågôrÃ*LNS•«žñZýÛèà¿§ËO ~îƒtPrz[õ;ô@ýñú®3µ½~V±Â8œ÷×¾G/uéÏuû »Æí·^ÓæzÓÎ)ûtÓo:&K»íÿHT½é˜Ä»¨§7-m֜꫚FºøÓqºëº}5z@[/¬2vÒÕmïaºàŽãuõ¯Û×üùéÙSçÜ¢®<¡v‰¿OÎ?åRÏÁ ƒöÕ•ŒÓá}ýX§)¤ëÐ[c_›AÕ?Á¥·i«]F:×}ûQ:m¿¦<¯ó5ÚoÝpû!:jd'eÅ…U&!-Åùlt×èÓŽÐm·V~¦B“–kqE7œê³Oo:&qŸÎ•a•éÒIC*{öttÖ~^Xå(›¿<Vùײw{µ¯«ŒsïÛØ×no÷ÞZù¡ÚZ°~þ§QÚÓÿ¾pî_f¦T˜ã®­äl7Þý:÷R77¬r*5»‹Æ^p´.;.]ƒÎ¯ë.÷=û ìyÒQºé⪟u`gt««,ŸŠo¶öÉ›„´ðÛ•Îkgö›ÊkÙ8ãÝlcÕù²þߤõ••ν?æìÞÞL Úgk@V\à k…ó÷È,o¶‚³ÝÀZ¿ÎIxê1ºèˆöJó–TP§ƒöÖøloØImóß |ùzý?ó´ªÆîí¤„¶íµçÑctý?OÑmÙK#«W½ÌøJןò¬þñqe¥P¬ ³gu‘³ü"¯;ÀQG÷©è60²`®ž|7Ö5^(7W¯O^åìáÛºŠh+%ëôú/¸Ç¿äŒwõêüEú‡ë¹uÞ1Ö]›{ ìòN‘2ý0é=]{f,X{oY|eÕ®sŸ½uÌIÞŒ³kþJ½è^ãD]{÷7šŸï‡u:`/î?ˆÿd…V¼ùDõÖÝ›–2÷ïRµŠÆtë¬a•4Ý5´_e²qáJ­ð¦›µ©üGW(__þk²{Üàãå5ʯ¨ JÒ€SÔÏâªu2O¡1Ý*Ãë‚òiïkyÕŸkFneHÌê§#~^g,Voûê\yÍ[VéÅ[^vSÿë³0?¬üUëôÕûŸéÁ?]¾¼£mó¥×¥¥gÁ—îõZÛfw€ûôTÿ¶Þ´ó‰_óÁGºþ¼Ø¾÷–žþt³ŠŠ·hù· õÚÃoë‘—K½mKõ霸qãºuÑðŠð¦ê×=&Q=wÏò¦«}v"yšÿ^X:jFø!Vd¦ÜçukYRªÿš£yqßÂÉ=³¶–káËoé*{§MÔ_Ÿ¬%4Žkös±í.»ö ͉/çL *Á9Ϊ÷?ð¾Ç>Ðq_Û«Ï>Þ4°“"° 4ý;ýíæOôÙò2Ud Õ¹UWƒtV]]½Õá‹Ûc¡„µKªÓ¤-å*ó&·-ª…¯~¨·4ÿè6[¦ª{þ•«ü’X°öò KµÉ[gÚeU– 8 {Ü8^ùúðž5Žưò¿œ¯ -ÒÆØJç^vÖžGúݵ­Ö×sýBÊè×Ý ´oõ*WG ð+iî­Ýý!T¢E߬÷¦›O|ðhçœñèÛzrÒ&÷¹ÁÇsèî—s*¿žÁNý ?ØsÞÓÞÙJöæY¯÷îüJŸ{_ËâKõ¯——icÑ-Ÿ6OOß;IO[ÐÒÔÖ­ÕGsJ½Ï`ìëóó&êÚ+¦è‰G—iΪæúl•kÙW«´ÑÏvòóõùÿ›¤«ÏzSwÞñ•Þ™êÝGOþ;«T9 sGív ÞíÓ]}*¾î•Ú÷íîUa¥è =*;žŒ,]­/í¸o¬Ë½ïÁ‹N›¢÷ãÎ%ç+æ|ùê-²à[Ýÿ\~µñæ¶¶ñÓOôÐ˱íB?,Ñ»ßÆÛÎYg¥¿=ºÆû[£ÿ~˜ë­1‰J©^ ìd¬€ ý°BÏ\ý’®¹ñ#½ýÍ&å—Uë&ÐçuõvþQÛWù’Ö£­†Œß]'_u„nù}¿¸d[6èûOš!ÄØJ©~½Ö›öLߨøÇéÁ€ÿOí¶K\‚°)G³ç{Ó¾«µ$îY}×Þ•¼}3+·2à阭aým¢‹úôô+‘ µ|™Ÿ&TVa Ø#Kg-\«o?ñ¦›Mµ1µ6¬Ð‡nýµÈ›¸HßÇ%vé¢X´ÿž+VëÓjã…Þÿ\ןý¦îüû·úü‹Â*Îöø~ÙæÊ0¶ÿ>ºçá#ô› zkÈ€´Zº¤k"ssãªÓ4êòtãM#täØŽê’µï¡œeú~7­€zŽ•ªeéXY­¸,OÖٟ˯ÂJí¥ÝzÅ™•s–¨Æú§Ì4uÕ[G\0J×>pˆFÖ”Öbå÷+ª†Î5*Õ’™UCÔ%ëªV+æW=N(TËß;ÀNŠÀ h¤â«ôú_'ëÚ3^е·|¤×>^­5[ª×]%ièø¡UÆÔ©Ä¾½tòMãuç3§éïÿø¹.>gÙIYi ù>¤’j!GópÎß}YÚªCE·oŽöýuéÄÓõP•v°ö‰Ë´’ÓS*«Ô>X¡…O;í¶JÕ*šÂ\½ó~e¨•±kWõU ë_yÀ¹Ëô7Ý|Ú©Sü˜Z¹›ªv•W¡PùÞ¤i›¦.îDºÚÆÝ+éi†ÑÇj´â™/5e¥?VZ@É:iÄ¡£uñ_Ž×ß'žª{¯K/í¯Ý·"5TÉ2=?qee7‰‰)ê6d€Ž»ðHÝôà)zà™uËÝ£tìØÌ‚³}9·ò%÷뮽«UÞ­œ9Có+B­Žê·¿órH7õ®ø–ÊÓ¬wâJ§RÛhäëÆÇœs?v¼n¼r´Ž?´vÉNª{L²jJ ëS޵õ÷Põ@*j‰ðh=VÀv +Î*½sÿ‡ºíÜuí ´&®jFÝ:iˆ7Y™G¨Ûï8Pc‡´Wf²UÙDT’“3è‘*»ËÛ–ÂbÅì³ó꘩>Þ¤JVhþ’Êù=wë¥^ûdWVѬX§o>X£e~è‘ÕYƒöÖnƒ…´dÖjo5*ÉÕËW¾ª{Ÿ[¨Å9åΧ;^P©ÚkÐAûê÷÷¯?—Õà./ë’÷æÇºáºj¬\ &'+«wuáÏt×#ꀸñ¾ÌŠ/×U~oddiÈ>=µ{¿J­@K¿[¯Y‹üª¥€zíÖ]{˪ìvqÍ:}í¼Ù½uÁ?×Y‡vW·Ì÷Îa?Ëí~ñ#M¯÷7V©¶äy“êD`ÔK_]ö\\ÐÝC¼®Ûª +ÿ£zó» rSEWxr/eú?©—¬Ó+×¾¨+/y76fЦTY”–+¾xgÇP¢¢ø[³a¡þáT[ûÝWqÕIa}øMNE—uÁ>»è¤ÝÛysÒÊ…«œS¬Õ²uÞuÔÀ_uUE¶Q¶V3Þö¦›ÕfåÅâ•ÕÞo«º e¶ñ&Í–bÅ.½H[â{„ËÌhp•Þö iÑË_éï—¼¨KÏ|Y·Üû™Þþx…­*R‰ß/]0Y½Ž8XçîÍ7‘Ðk¼ÊÅçtÕïè±ÿÎÓWsó”[®øº'tì¥Ó¯¬V¹8c©æUIêó‹~êã§Q…ëµ`¦´páÆÊê»~uH?|4iͬÅò;¶vÆ>Ú3ӻʵðÅ7t…Ÿåv¿èéU ©>~Ú¬€zY¥Å+¼IÓ»ŸŽß¯¶ŽÁ2Õ¿Wåƒp••«êh4uا§úÇu™·ñË™úßq!Ub@q#í„ ´de\bÕ±‹öèM×Sè“ÕZî'É]4 ·7­Íúþs;vA•Jš~»gWüÃ'²d¾ò¦›W®¾_kt쥃ÞúóÒé”þÚ­¢ÄGZ·h…×õß:ç>ÅUuëªýªU){ ®~êxÝø—Q:y|u¨9Au¤(ÓÆkª »Å÷W¸ %¥Z÷Å2½~ÿ'º÷Š×tå}‹T™Å%i—½é¦W¼jƒf¼ú­ž¸ù]ÝtöKzm‘·Âì™]­rq½¾û¾r ¯n»w©·¬lñêX7ñÕwÎgo@E…Z2Ãw;kÏÝR½idž¥zsbA\HPIM޳€z)ÕÇŸ¯«¨Î° ŽQ—ÿ\—žÝC»TŒå“¨£úëœ{ÐØ¸Ò²ïWÔ’¤¨KÿtçÕÙ·OÜXMž@°j<5`d75 j¨·Î½¬k·eöI«a| ¦õÍç«TYt’©ƒ¯>DGíë½÷ÌLíÍ1ºï©ŸëÚ«öÒÁcÛ+3.;på,Ñœøðз!G³¼@cáÌÜB¨³¤Õ1ÕuщUÆÚª¹]qBlë¯>^÷>SµÏG霣½÷“š¢ÝO;Dל]Ù%]Ù:}òŠ?SX_~“÷yë¨#þ´¿öß=ö IÌÊÒ±WUß´4uÐGcϧ›.«Hî´d]ü»OÔàcöÕ^ö9µóž=N§ï¨VaŸ.Úÿ‚Qºöuïýjì¨ÊÏDbV{íp×*Õ…%Å•!ÑV²:hó~³2êÔ<™iê;v Î¸i¼îxêýá‚êß[ƒ´w|hWC<ëëµ5~Ý—Í]›,Y!çÛqkVkÚ oº:ç{°Ê÷å>½µ{s|?qV@=å¿ü…ÞXPîÍ9Ó5èè1ºöÁS¼°âdýåÊ}µoÏ$oGÉ:½ñÄÒ*!ÉÂUñõ%ªßIÇÅöýã0õ™‘«Uqã_µßwo°W¢4ª ðkFb2ÚU¯·¥ùUÆÂêpÀaš0ñÝù·ý5Ú[Öl>™¥wãîc0³›Ž½æçüÎ=|ìgúõ¾m”œÖV»Œ¤S/A¿?¡[e×ÖíœóùzßCÉ‘ÿòWúhMe•U0kWýú¶“ÝÏÚ„ÓQ}ã>g‘ÍúèÅeÞŒsîëµÆ›6Á¬þ:ß>§vÞ£;×J¦öÔ·ŒÓ¯í£]²“•Ú¥—N¾òxýÝ ã&<8ÞýúT\¶sÞ9ŸÄž7)7~|§Žýu©ó~'Ì[V‹^§ŒÕ•î­ÑCÚ«}ZŠv=´ú÷Ö0í^Ï_¾uüá2-Ø*±Êײ™þ×½T_/ØìMWÚòýʸn'×kÑʸïØö»ê¸ßttîY‚2÷ª«/í_1fš«Mš:y“/D:Í}:¯U¶à+ÒûyOo-.«K§.‘Â<½÷À‡zß+î¨ðÉj-­éîƒïezþåu*ö)¹“»îd/hÈVz0¢²²ÊŸÙ“³;¨—7Ý 3VjQc뤪]o²ÙØ}üP­ÛÆ]Œ”iÅ»êŸoo2å¾®J S¥ŠÆµR –Tû·ÍŠÕú4.j~¥úðŽ·õÜ7Eª3&sÞço¼§û_.òøòõòSõÙ6ïS±f?ó^žïÍ›E³õâǵ~N‹¬sîP J–éŸÌÕŠÂzü»°¦óVë–/^›ŽñƒummÅcèÙmÝ+Oñʹzìže5TË­ÖìÅÕ–ÆUÞ™µ3rª„µöuZøµ?zUÌÿúF +ÞF¢v9êHýÝÝk†©oF@á²Êñ´”œ©^ ìÖÀÖ¨°¢d“ÞúÓ«ºîî/õÙœMÚTP^å{¸¸T›V­Ög/ [/|W/O¯áñ{Î|Ýç7š—S¹o¤¬L¹ËÖËê†ò^þP{lžW_¿p¡^¸ã%ýyR^åÃò®}tØÞtƒ¬ÕÓùDŸ--V™°P¹síyZí÷JלJrõÜ¥/éÞç:ï³T%CTeEEZ3gžž¾é5ýõ±Üš»ð[´Xsª$Vô}•ê©°¾ü>¾ÔGZ>s‘7>T *)ÐG}M¸Ãû¼û7Û{ŸßÌÒ£×½ª{žÞTóûÌ_§gì>½¼DËsÊ*¿VÎ' ¤`‹–O³ýßÐCoV»ÂšwÿdÝ÷ò ­É÷ÃgŸœ<}õò;ºáÆå•¡h5¡éß鯾©G'Ù9KUnû¼Ò¬‡þ§§>^¯üŠýœ}6nÒò•qÕf5*Ò§ñ÷ªÚ÷–}¸ß[Ï9×åwšWKO„_|µ6®+E©pñê¸ê)ÇŒÕZ_…U¸F_èMûV.Òý7¢© ·T~6#aå¬sÏÿ‡+gVŽ£¦L8:®PP÷ý¢Š:ÿ°æü£É~Ò7[ëÃ5uì 4-*¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª¬Ðª‚ 8úÍø¯@ *à¥UöêN’X åÐ% ZZZU°rü*¿yk€@…ZZZZU0 €ókî 3ió@ó ºÿ‹bÍ‚+ç5bÍ.ЪÜÀ*°®ÝyW4õ¦€æ´°*aZR\…ãV å1†Z•XY7€t€ÖŒÊþSE] cuU^u•eUn#´@Ë` +´ªZ+¯â hf±Àʺ¤@ Nþ÷\­þ‘žø™· ÞÏ&hæô¹z÷2o¾¹´Ôyè”»>rîÝŸÚ¯íÏÿ®åÞÕÁŽÛ°÷zÞÝïÏöhø=h8÷ë7y‚Nñæ›Çñzbò\ͼëxo¾~Zâýh}t 4Hg}Is?ØßÉül‚n8¤³f>3X]÷¬#&xËã]ö‚.èM×—wÜŸ´ºÿ0F]Ç_¦‰ÞüƒÏð“A`4T§ÃtC«D@í¬€†È{O“æKÙ‡üJöÕè²´vú U·©ÖŸß ÛŸíÕëNÏïrÐ]ç/«©«¶ž±cùÛÔÔeZ¬ C¿UëŽÏ®Ï9îþ6uuç]wűⷵãÜt˜²É=Ψù8î{9cˆ3ÕYGßß%\¬û¾ÊkŒ»_ÕûïkbËUß—Óêºö­ÔÔe`¬«ºøsľ~uŸ£ÎûëžÇYv—o}õ{Yý3¯Ž{Påóá´mw³ç½Ç¸}âïÿYtߣ{Îõ^VõZÝsT¹þªï¹Ê1|î}¬~oâlu?⮫₩Ï?€ Ð@oŸù¤fjˆ.Š8«Óaº¨ënWz]÷³ãÆB ñËœm&T;ׇ쥯n‰uÁ×õ™9îýø‡ö¦\4pŽraÛ¬s[åÁ¾sÜ£õdl}mÝÁy¡>¸Î»žë4IÎõøÁÄ„“Õõ–÷”ãLº]Öp·»9ç¥õšä\óxÕ *ÎÑó½ó;í¡ùÎ=õœêÇ=ón[{_Yïé2oŸÚîÏv±÷|F÷Z«¼ç¸sÔëþÚ×òyÛŒÑoä¼gç^®õºN¬xϵnu܃ Îq+®ÏÙF‡ÜQGheaÕ::·ò^Ç>3uIvígtÓ‹×i!íÎg!~™}VëܶÅ>ÕîÇe¬¯¼®ZÞ¿…UÕßWçóßб±ìX¬€»[}°^xNTv¬×¤çcâí¸ŸÌ·×9zÈ{8_±,«W•P#çƒ{õ›·¼™ '»Âã++dNhùOÖ­îŽêÛ¸âÏ]“ãõÄø!Òü'c!“ëUýæ÷”Óé0·ïýϧ¦ì¼÷tYÅû”nõ‚À“j ®Ñö¾&LJb5ߟíqJÏ.Οë´Ô¿¿öžÇW&õ¿¿öuúOå6ýº)Û¹ç+{óŽ[ÏtŽÛ±£*Î=¦òëÿÖeºÝù<Ö^õ7@=;9ײv¡7ï°0ÈB´Š÷¸µøk¿õ+ «¾çز.ÚµÖЫn§¼—ûx,n̳‰~«uVÏ~Þ‚­\£óé\õó¿Í÷`g@`4ÂÄ?Ü«IyÖUÙvT˜¸âƒiþÚõRÞYS»õúêC?@ŠqÃNÝ4ЙvƒÍÑ'qA€‰ß&¦ê¹·VCÐaÞš¢¯ì½hlUÓñÚ5ËyÉ]Q-¨‰…OÙÃÆÕ>Ý­#ö¬#Ü÷UÙàE•o¨IÄB«öª¹«¹úß_iíʸ¯Ó„ét®ª!ô2þ5XcˆèÝW«ª­š«U®}ñçø[Ÿw{¸•w^XWÑÅŸ×`­.ÛO{Ôðù½ÿƇgZÐ(^¥QSu ØäbKü8?±q¤®JpÑ„¶ Âê¡rܨs´‡Uh¹]Óy+›Ê[—i·{F $ýóUï>¯1÷×·ëÜ Ó ¼ý^¥·­ qkVÉeÝíY7üëmíÏ­Û-dìZ&Ò9ÖíŸ×`Ýb¡Ÿÿܶ­  À/¨€óg|P?^WdxŒž¨µ ³–ëÆ.^ÜøJUZ\7võÔµgÍÕ@ œâewàMU³Uå•§¢;<ï½4¤+½‹UsÅî™?¶X|5]cï¯×½ »m,¼ª{,©šÔVITw”[Ñä]§^ <§UÇ}ªèÒ»¦Xå\}ÄÆBóßKe«»‹C;¶X…UÔk$Ö5`g}FMÕ‚·;·¦°õ?»v®èJpâÊuΟ[‡n·k èNZ¨•V T=XúÙ8è´=•W¯ji®ó²Õ¸S±1ªj ÂÜûW½+¾Ø> U5„‹u}X»»u„[ù»§Mw-¼Š…aµÙTÛ5ßÖÛǺ)¬å•…WV™VkhØXÕºDÜ:Hõź…Ì™5¥Jè{u¨åýë²´vúövÏ  5c™•_^eÓþ<€m󻬯{°>â`?¹Fï6²K¾šT©Ê¹ìw§™“½Š£ 'ë¡ùÕ*‚~6A7X·kþ6õâ¼·ÉsªUâ¯'.‰UÆV­ÞºL/ίöõ÷ÎóÁj©îŠ÷U¥šÊ¯VûênoÁö‹yqãhy×U³Xh™}ȯ¶º‡¦¶ª>¿ª±jUZì{«ö÷`gt逽xA•;M`Ô›"Taã =3'n¬¢c´ò–ظHÛo½&=ó­FøãøœÑÅí"-¾K5³è¡ùqã,Ýt˜Ö>Ón×<NvÇRÅû¸CGç>Ùðîø&ü'V‰f×l!•Ýëjoà9Þqçê¢,ë.®K½ŠpÆYo•K[ÝSg=ëÞ®ÖnòªóªšâÆr:iíuUÆÁ²ê£Ë>èReŒª‹ÎÑCqï¹Q÷×îå3몌¿4á9_»:º¬~œE±ñ¨TyïÜ{Ôô¹Ý>©µq÷ÍöÑ×5üóPçýÙ×¢bܯ›ºéÅ:ƤºõLë1þ¼ï‘ŠÊ¯Þìë÷þ§Ÿ£®Î{©ýýØÔûਢg2*E"΂ˆïÒQë˗ĶšQPѨ7†•7•½0 Zˆõ´š­«¨[i´ŒX—€@+¡K@´*+´ªX—€‘He“3O7ðÿÛ»ûX;ÎúNà¿™V}Ù 6vIÒ¼@pâÅnkJ–¶^bEiBKVZ§U‰@®B¬äª‹¢ÉB+Ô&¢U-µª Â"Ô‘ …¼(²[UÚD$àD„KÚ$4ÎÊŽcÒ@’U[)žgæ9÷¼Ük_ÇõÇq>ŸsŸ3oçÌ™3÷ü÷Õï÷0º ¨ FUû<9„V ÈVUOuœ0€z¶#`×RUgþ×&šTRu8¢éÇE?sFzþ±þ@¸çÁ¼ÀñZ½ñ¢¼ÓÌa@Q+ŠXP”À €¢VU7q8ú1z·`ùÕM»XlÀòÓ€¢V%° (E ¬(J`@Q+ŠXP”À €¢VUWU³£}ʇ`y©° ¨ºiš˜íS> ËK…E ¬(J`@QuUU1;Ú§|–— +ŠXPTÝ4M4‡ûíúü€Ô}8Õ‡T}hÕ€!h @Q+ŠXP”À €¢V%° ¨U“—0„:ª¼––£Ñ€¢Vz0 VUG“JªÚ‘–ÝjÞ€Ô}H•G"¯`@ZP”À €¢V%° (EÕQU1?’ÉuXfu4M^€áÕ+ÊY0‡•n€ ©-¨°€! ¬(ªŠ×ü—&š*¢iÚq¸Ýq8.:gez~_~ ,VU§"+(E…E ¬(ªŽ¦‰ùÑÊ D1“PI¬–€%° (E ¬(J`@Q+ŠXP”À €¢VUGTy†WG5SdU °NM“W`xæ° (E ¬(J`@Q+8F×ßü`¸}{\·§\¹=î¿çÁ¸s[Þ>FWßøµðž«âÓ·?÷ßxUÞ^~/ìú–°â-qí–ËcCÞä$vÞåñ-[b󊼭¹xK\{ñʼõ"Öý·Æ–óúÍô½>ðK¯ï7€"VPÊ•Ûã#›^•7NB'ôúVÆæŸ_Oß{GìÍ{x±YëVG<ú½'óö©cÿ}{bïi—ÌXÀðVÀ²[sñ¦Øsñwä¼­ˆWžöL<ùTÞ<¥<»æöÇÙkßkò`XUüôÆ&š&ºiy8Ö»2=¿¯ÐI-ß¿rWlûåmqKÞ7/µ¼asøìEqÙöé}«òfrÿèø¶qàšuýÎdnG¬~×MÝjj÷}¢²éàžÇú~±]K-?oz`G|ã [ãŠ3úãñý#\SÖoõ·â¶•›û÷Œ>ë]ßü{Žhel¾âíqî¯Ä'ïËÕ9©åÜ#v휨¸JmÚ.MUX;bg¶6üÒÖØã×äó?wW|â«ßÍÙ×Ý£3ãÑÝ;c×éùÞ±yâ»L^Wo‰{”LÝgcïÃÏĆó_{Ó猪ôš³_Ë1ÜÃéïÛžwò|™kkß=õ›Xêxw Çpòoëyó±‡çâôó§k£ÏŠ÷‚ +XÖêýضçP¬¿ækñé+ÛãÛ·Äêíj |FaP Ŷoz"þ,¿gõÆq`Óǧæ­Zµikœy{>žÎqÆæøÈRóZ­ÝozàÃý{&ªz}}XqÛGóûÚ׬¾f‰yµV¼6Î=íÙÜJ® ;N›‹ÏïÜŸHc÷\ÄùoŸhÛ–ÃŒƒwõÇ۱빵ñ³ód¶¶ÝίIJr¤0&ŸwçWbo´ï;âFÁQþœOÜ»?Î~ãÌO«.éB«©s^1®ØYð}vÞµ×Öî“ñí϶׺b\áÓÝ·v9¹ïôŸŠWÄd•ӚؼöóçÜÕþÃÎ~ãä÷?†{”ƒ§òt¯Ùýxœ{þD•m8«};ɰêè÷°«RÀ”_sï3±áÒñ¼Qýèzuœ“*³±êå/‹xîS÷gi¹âhÕ%ñ5ÉÊX·º=ïTx“ô!Ð+^>Yú4–íÿÞã] ±yËDµÏQåsžÿöøÀDÅÔ³×òÔ?Å£ÏEœ~z W¾;çöTõ´µý^3íy4‹—Å+Oï7Ó}{lîþxz>|ɡרʩs´ ðXîQÆMŸ3‡g“RµW<ßΟµÔ=ìCÊýñÐLk½½ûöGt\¾¶É@rÊ"e'_ûê×NüŽ~Òy~xàŸ¦ÏóôÚë_¨ Ç!0,‡Ôr/W_¥ùžº¶z3¡Ö➈流–Óq_ß«âŠú÷Í¥‚®ãÔUÛt•0}0’žQhåcyL…@‹é*µR¥Nj7zßL{¿{¿šÚÕ¥ê›ÔN/¿çˆ-—ZäõŸuIœ*‡rûº±>Œé[Ò¥p*>ý¾.ôZ±"N_$ZÒÑîQwÎEÌ:)€ŠÉÐç˜îáÄÿm4&ç¼jMU­-b©ãK빞z*r±Ø"^+ò[–‡À –Áõ¿¶¹k¹7ªÆšoá·¤#W*HÇ}‡ÆóWM_· <‘ºÖ{ýÜD]x5?çS61¿ÑÔ8b{¿‘¾â©} ^^.]¬’k¬oW׿§ ¯V]×Nµ¦›5–Ì·ÈËŸ™æÒʇ&Í·¤KAR®JKûREц®…Þ ­Tkí)¸éæÊKÕ^O?=;ÙR÷pbþª©1n8] ·Ð±2kÖSñ/ÏåÕIG ê:G«Ø–‹À N¸«âœ•ø›®åÞH7oT^_ÔÃûãèsH('øú¶íŒ÷ì<âV}³X›µ™J–™dGîÈUNiŽ¡'ãÉD,˜ohel¾bëAÒ¬ïÆÎÝiÞ£c¯¬IáUªŽš TV;xu¡È³ñè÷žÌßm¶:ªoñ7©kµwÚ™ñÖ7Œ+šFs[m\ý²…­íŽêXîQèôU]cýU#£j¯¼¹¨é{Ø·\x?×\¼%WÉéÚFŽt¼¿gÇ^yÕŸgº…`뿵î{O(ü‡ ¬à„ûb¤ŒbÕ¦wŽCœ+·ÇG6½ª[]}æUÝr[·Åæ"Ö_3þ\Ÿ¾ýÁ8póuyûD8þëûý=‡ÚëûZ|z¾ 캸óšuqpÏçâcyϬ~¾£™ð¢k9÷²87%g×Ç–©vq}¨2ÝvïõñÖóÇ¡ÍÞ¯ÞÍT\­¹xSl8mÜsßl5ÐXšÌÌ‹µá kãÏçhšÖÏ95‚*¦¦æ~Z›ç¯¥½þŸoÏyðþØ•ÎÙ}ß5±qâ~é’8;­L†yݼW/‹³WMT4å¹­^qZ¿^€¥ïÑ“±k®½›«.ÏEÕ~···÷yÞyçÆÙ3ó`-y¹#vœ©¸Êç}l®¯.ÛûÀ\ü°½¶·OÞ×ó.oÏÛ·Ÿ¼öþžýÿ;káçÌþÖÆúùÖŽµz 8‘ªøéM4Mt#Òòp¬;wez~_ÿ  sýÍÆûWîŠm¿¼mª2©“愺asøì¨½^ š>WœÑm¥Vz_Ž3oØëçvÄêwÝÔííι¶]Iíùòy¯¾ñkݼRóæ_ߟóM|8Öð‹ý±ÖQ¯«Õï ßš9~â®ïàžéëY(…Oos|%>94¤pb>8x6öî¾?^yé%÷îˆ]5Oÿ¾ “s¥övSíþR˜”ƒŸNjC7n9×FLïk¥Àå7&C™Ù÷-0û9?|xü}ÒüT›O›‹½Ï­ £ôiöZ§¾o«=þùgÖ·×íwßÙ[­î\«&¯'߇˜‹ÏO¶\ì»­xK\{éÚxzþ&KÜ£döñð3±áü—w×õís¶ÄÛcÏôÿ®u,÷°ÿ.y£•Z"ޝ+™½¶ô;ß‹ÇÓÜ_Çsò¾QUÕcÏÅéç/~ŸÆ¿?`H+`ÙuáÆêǧÆSÈ(°:U¿ßKB ¿ÖþÀÿ ÑXvûïÛ{cm¼uÔvN*+cóÚ5óí €á ¬€<»þa.Nãô¼Gp2èæõzî.­  *^óæ¦JÝs;Àhž‹ÎÑ€a¨° (E ¬(J`@Q+ŠXPTX53†RGÕ>ψ–€UÅ™onâpnØîƺsVÆ¡ç÷õ¯âÀ=æ5Ž×êå5˜¦Â €¢êTXÕÉEVóÛ0V%° (E ¬(J`@Q+ŠXPTMû<Éä:,³ºjŸf eÑÀ* ‚9¬(J`@Q+Šª›8ã‘ý†PÇ|8•–“ë°ü´ (E ¬(ªžŸºjrÀ@r`Õ>µ£jWG† % EMVMÓDzÀP­°J`uô“X-2`ù™Ã €¢ênÞªnä=0 © «\À´Z0$sXP”À €¢êªª¢‘—í D…E ¬(J`@Q+ŠXP”À €¢V%° (E ¬(J`@Q+ŠXP”À €¢V%° (E ¬(J`@Qu‡£éѯÀPªXý³M4Mt#…UÍáXwîê8Ôìï_ËHK@ŠXPTXUU5í£]éÀr뫦IÓXåÑ>úù¬`ùi @QuWM5;` *¬(ªŽªŠ¢Â €¢êh"ª™Ñ>w`¹Õ‹ESâ*†R7MÝ£]ޤm‚9¬(j*°š¬²€!¨° ¨•*+†¤Â €¢ê8Ü>nRiUTí¢J{Y0º ¨ z¾˜ªê «W0¤<‡UZ¤‘ê­Ô\0œºÏ¨FAÕä€å—«Ü °[‹¹þæãÀíÛãê¼=åÊíqÿ=ÆÛòö rõ_;á瀓Mn (¬€“ΕÛã#›^•7àÔ•+(cXuVééðhø¹.î¼çÁ80?vÆõùÈH×fpâ5÷ßxU`ÛÎ8pÃæXÕ®®¿¦=vóuý~8-¬°êæ´êW€ãÔÍiµ5ÖÏíˆÕ/êÆŸÍ­‹÷O„V)¬zÿÊ]±-_ýÑ]›>ÞÏYµ}K·}°]½ÿ³í±wÝÔ½NE «T\¥À wÆæØ>Q5?r5ÔÈõ¿ÖnWl›š>ö®q¬‹ÿÑUQ]ç¬lOî‹[º£­[·ÅúÅeÛó6¼DÔÒ)xR5ªˆš¹ª·HÕ¹)þn.bÕÞWÇãŽE¬Ý‹µ €—’…VÀ qðÀ?æµÅÝòÁ_ŒÕŸýv»–ZæJ­Û·ÇÕýaxɨû+}àD[µúuymÆdåUš«jT¥•«ÔrðæëòAxi¨«T53U•—Àqøb|ïÉv±ò¬™j©ëâ­kRyµ}KlÛsh‘÷À©MK@Xû?»âàLµÔõ7oõñíøÂ¿Øn]Ÿ¾ýÁ80UMu]¼gÓ«âà33÷œÚú–€ó#WYM[ÇáÖm±~㎸íÖ~nªv¼宨¶qK|¬{Áã7ùÃqÛÊññ÷lõs;b}hµÚs|a.bý5æ¶àÔVÅÿ¹™O¬Ò¢jbÝykâPìï^Ëi¦%`®ºËO`@Q}`•æ®êF^€ÔÓÕT£Ðªß€å6XÀ°fæ°€aÕQµÏ£««ªŠªŽhíh×Ó DK@ŠXP”À €¢VUU+×5鯇ÛÑ®_tÞš8T=Ñ¿ˆ÷<˜×8^«7^”×`š +ŠXP”À €¢ê&Í]…¨° (E ¬(ª ¬Ò,úÕ[â©vý›îŒêǯojwì»%îx©HÀ V/usŸŠÏ|²¯¡ŠMŠ­ïèW“‹ÿâθñ¦7ç-–ÝÚ÷Äïä°ðÆ¿¸4ï€S_+.l"Ú¿4š4Ǻ׾&UûW0ˆ|îOòÚÀ¾ô»ñÁëîî×7}èAIjø¾Ø³/oNêÞ±ã‚?Œïä]coŽ_è÷ââ¼uß{/‹¿Ü“ÖÖĦ¿¾!âöçïÔû'^ŸªÈú`n÷øºÏº:~{÷Û⛋~ÏtÞÏÄkófjÝ—+ÒºïåžþÜí9®¹üëñÙ^xíÕñÄ'óëZ+®ýóøëbú^vŸûžöZ³çMÿ‹©}WǦ‡o™¸¾…÷g|gå^àïü­¼ ©°`lÏa©óâŠÝ›ÎÊ›]ø1[ 4±ï¡Ñk\t¾«ý±çWÇ¡ÍO\ù™øík»È¦3nK¸xÀÒµ0ì§$Í~æy±úü´L‹sýÚþ‡ëWZß¹5Ï5÷h<ѯŊËßÖ‡FSçÌm»ë}wÜ–Ï5%ݳÁYï;wD¼;'W©=õÉ÷µ÷÷£Úîûë«cEÚ¹ï–øÌMtÇ—´çëý{úP\Øíhïïüc“aÕøÑ_?œÜV/uïØ:Dõ¾sÝe]pµxxµ˜KcëT¸t^\±mÔJðîØ»àÓ¡ÐdÂ¥íŽ;F- Ïú…ø¹QÕSªõUP_9úìýñÄwÓò‘øæ\?Ú‡<ßýç\ý´&ÖÿÊyír|Ž‘‹ÿW–ÚwÜÿåE‚¥T •¿Ç»ß+óîäÂm¹rêõ?“Ï‘ª¬nèÏ¿öÜxu¿+žºãoæC§£Úô®|m—ƆQµïŸû÷Î}*îÌ•U+®ÝZ¬’ އÀ à%o¶zjZ ¯Ž-´ê+|FAבªŽN¨}·Ä§Ïš¨2ê¼cS®@Šxâ¡2=O¤j®ÔR/}Ï}_oÎMV]«'Bª®‚kô=FíøNZ}Ùþ/}þ:_}A ßàÅC`@+…V㊧Éö|Éw¶ÏB³Ò`Ù¬X`ÍuŸyAAÍ}4ªBZ›þ4·Á[Nïø½>\[ŠÝwvóA?wy¾Š}ÿßÌ•T©òhÔ.ð;·îè«®Z^ÙÏõÿ¦›»`+¹ð¦ÅçÏN<ÀK\j·hË¿ùù"V\þ¶Xçåꤣ™n­÷B¬¹àì¼ö1¸jÏ÷+¿·»cO®˜ÚæÊÍ'µçîN­‰W¿¾[™°Ø¾“ÛqÝ?8I¬è橚žꑸmûhª7Çe×õs"­yݨvêîØ;r-Ü?ùþc4 ’Zß¹uw^[LjÛ÷î¸m.o¶î»uáµÆÚsãÕýZײַé+¿Ö¾-ÖOÎ×uÖ/ÄÏåmúìû¿œ*µ&«ÇNrïØ:?Ù¸…ãîØ›Ú4ÀIN`ð—Úÿýú¦ve~¨4Þ{öE¬¸öÏãÆ‡Æ­ñæ_ÛêB®ôÚ÷î^dÿG#.sX­}OüΨRjÏæëÍI5kìùÕüùíÏ5ÙÆïÒØ¯)é«Ä’éJ±ñþÖ;~o~þ®§>ù¾îÜ{_÷b™Ã*ÍCö¡¸0­Îÿ/Û3qàdUÅŠ ›ˆö/&ñ‰CÕÁþ âŸû“¼'Ê#qÛ¥}øØz»˜_ì>ñÎßÊk° +8EÜ÷ÞËânê[v¾´£«Zn+VÀRVp µ2ìÆuin¯5±é¯ïŒ­ïèÀÉHK@€“„–€œÊ´àhTXP”À €¢V%° (E ¬(J`@Q+ŠXœ$þý_ÿ-¯Á©Åo€¥¬Nß|^ƒS‹ß6KXœ$¾qÛßæ58µøm°ÀIâ¡»¿÷Þ¶'oÁ©!ý¦ÓoŽæGâ'Wþ>5±jÅ+âÿUÏåm†ò½æâûÿ÷@¼âŒWÆÿ§ŸŒùÑÍGàÅ#ÍYuð{ÇžÏþUÜ{»€¥U±âÂ&…TÝhÒ8ë^ûš8Tì_ËHK@ŠXP”À €¢V%° (E ¬(J`@Q+ŠXP”À €¢V%° (E ¬(J`@Q+ŠXP”À €¢VUGÓäU^U^€ê¨ëö¹Š¨F#€˜Ã €¢V©Ê RWUã‘ò*Ãé*¬ªü€¡Õ}f•ª4&×`ùÕ“•UÝz“7`]KÀ¦R=n8£¶€°üº +(E`@Q]`UUU7`h¹Âª™0ŒzaX5°üÌa@Qu‡£ÉÕU ­nšÃ1?òChÀP´ ¨:š&º‘ªªæ×`3Vá  ¬dTb+Šª#ª¼š¤õÑ€å§Â €¢êJ1©° ¨.°ªªªæ®`` *¬RpCÑ€¢V%° ¨:œU”SG4y†§% EMVMz4*®Nò©R ª(AK@ŠXP”À €¢êªŠ¨Ú§4`hSVUz®–€UG“× €VM#Á`8ZP”À €¢V%° (E ¬(J`@Q+Šª›¦‰ùÑ>`H*¬(J`@Q+ŠXP”À €¢V%° (E ¬(J`@QuDÓ.°üTXP”À €¢V%° (E ¬(ªŽ¨ÚÅhÀ°TXPÔL`¥Ò €a©° (EÕ] ÀÉN€ÝR[@†ÑWX5yÀÀrKÀÉ+NUʬV”QWU1)´ê–0ŒÜÊXPTX¥¶€Ý#/`(3Vy+¡©›öivÀPêéj*V «ŽªŠ…#€e63‡ K`@Q+ŠXP”À €¢V%° (E ¬(ªŽª}®º§î†¤Â €¢V%° ¨#V&³`*¬(J`@Q]`U¥GÕÒ‚ +¡CÒ€¢V%° (E ¬(ª®ª*¯Àðê¦}š0”:RÕb`+Šª£©báÈG`™Õ‹÷L–Ÿ–€µx`¥À €tUUUí-¥U GK@ŠXP”À €¢ê4yUÓ®LJUû<9’Ñ–™–€%° ¨zºàä€åWG4í"fr ËoAK@µU ÉV%° ¨Ucþ*TGʧRH5ZÀ€ú «.¬êÖ`Pµ¤ €’ú–€óF¥VB,†Ñ·œ×DTÂ*†3XÀ°úÀ*UU*«·KEV ¤®ªˆù‘wÀPꮜ*UT©ª sXPTX¥V€ÚPÂ*¬ô`µÊ*J2‡EÍV© v€ G…EÕMÓÄx¤]ª¬NÝDz<Mó|»)¨`XZP”À €¢V%° (E ¬(J`@Q+ŠXP”À €¢ºÀªJªêv¤­~ÀòSa@QG¬š¼€åÕVMz4B*†·H…•à €á˜Ã €¢¦+mØâVr+Rwᔀ €BÌa@Qu>ÜWXMH]µO³†RÏW)°`Hæ° ¨zA?ÀÑ€ôVó•¤ €aÕ}f•G•«´.¸`)€bŽX©°`*¬(J`@Qµî”4¬ÒrrÀêhòZZN@ÝOc5;”X0Œ”N@1+Šª£JíÿÚ‘–ó£?ËM…E ¬(J`@Q+ŠZXUU•×`ù©° ¨©À*UW5M“·`ùÕ)¤êG«œ–€%° (EÕiÞª~D7— iªÂ*WB+†¤% EÕ‘*ªºÑnuÕUyPWuU]ÏaCÒ€¢V%° (E ¬(J`@Q+ŠXP”À €¢V%° (EÕMÑ´O“†¢Â €¢V%° (E ¬(J`@Qu4ML-`ùMVíÖ|hÃЀ¢V%° (E ¬((âÿÙNW„°Î$ŒIEND®B`‚locust-1.4.3/docs/increase-performance.rst000066400000000000000000000047461400440205700206110ustar00rootroot00000000000000.. _increase-performance: ============================================================== Increase Locust's performance with a faster HTTP client ============================================================== Locust's default HTTP client uses `python-requests `_. The reason for this is that requests is a very well-maintained python package, that provides a really nice API, that many python developers are familiar with. Therefore, in many cases, we recommend that you use the default :py:class:`HttpUser ` which uses requests. However, if you're planning to run really large scale tests, Locust comes with an alternative HTTP client, :py:class:`FastHttpUser ` which uses `geventhttpclient `_ instead of requests. This client is significantly faster, and we've seen 5x-6x performance increases for making HTTP-requests. This does not necessarily mean that the number of users one can simulate per CPU core will automatically increase 5x-6x, since it also depends on what else the load testing script does. However, if your locust scripts are spending most of their CPU time in making HTTP-requests, you are likely to see significant performance gains. It is impossible to say what your particular hardware can handle, but in a *best case* scenario you should be able to do close to 5000 requests per second per core, instead of around 850 for the normal HttpUser (tested on a 2018 MacBook Pro i7 2.6GHz) How to use FastHttpUser =========================== Subclass FastHttpUser instead of HttpUser:: from locust import task, between from locust.contrib.fasthttp import FastHttpUser class MyUser(FastHttpUser): wait_time = between(2, 5) @task def index(self): response = self.client.get("/") .. note:: Because FastHttpUser uses a different client implementation with a slightly different API, it may not always work as a drop-in replacement for HttpUser. API === FastHttpUser class -------------------- .. autoclass:: locust.contrib.fasthttp.FastHttpUser :members: network_timeout, connection_timeout, max_redirects, max_retries, insecure FastHttpSession class --------------------- .. autoclass:: locust.contrib.fasthttp.FastHttpSession :members: request, get, post, delete, put, head, options, patch .. autoclass:: locust.contrib.fasthttp.FastResponse :members: content, text, json, headers locust-1.4.3/docs/index.rst000066400000000000000000000024331400440205700156170ustar00rootroot00000000000000===================== Locust Documentation ===================== .. sidebar:: About locust Locust is a scalable load testing framework written in Python * **Website**: `https://locust.io/ `_ * **Source code**: `https://github.com/locustio/locust `_ * **Twitter**: `@locustio `_ Getting started --------------- .. toctree :: :maxdepth: 4 what-is-locust installation quickstart Writing Locust tests -------------------- .. toctree :: :maxdepth: 2 writing-a-locustfile Running your Locust tests ------------------------- .. toctree :: :maxdepth: 1 configuration running-locust-distributed running-locust-docker running-locust-without-web-ui increase-performance Other functionalities --------------------- .. toctree :: :maxdepth: 2 generating-custom-load-shape retrieving-stats testing-other-systems extending-locust logging use-as-lib Further reading / knowledgebase ------------------------------- .. toctree :: :maxdepth: 1 developing-locust-itself further-reading API --- .. toctree :: :maxdepth: 4 api Changelog --------- .. toctree :: :maxdepth: 2 changelog locust-1.4.3/docs/installation.rst000066400000000000000000000012611400440205700172070ustar00rootroot00000000000000.. _installation: Installation ============ `Install Python `_ 3.6 or later. Install Locust using pip. .. code-block:: console $ pip3 install locust Validate your installation and show the Locust version number: .. code-block:: console $ locust -V If everything worked, move on to :ref:`quickstart`. If it did not, check out `the wiki `_ for some solutions. Bleeding edge version --------------------- If you need some feature or fix not yet part of a release: .. code-block:: console $ pip3 install -e git://github.com/locustio/locust.git@master#egg=locustlocust-1.4.3/docs/logging.rst000066400000000000000000000047641400440205700161470ustar00rootroot00000000000000.. _logging: ======= Logging ======= Locust uses Python's `built in logging framework `_ for handling logging. The default logging configuration that Locust applies, writes log messages directly to stderr. ``--loglevel`` and ``--logfile`` can be used to change the verbosity and/or make the log go to a file instead. The default logging configuration installs handlers for the ``root`` logger as well as the ``locust.*`` loggers, so using the root logger in your own test scripts will put the message into the log file if ``--logfile`` is used: .. code-block:: python import logging logging.info("this log message will go wherever the other locust log messages go") It's also possible to control the whole logging configuration in your own test scripts by using the ``--skip-log-setup`` option. You will then have to `configure the logging `_ yourself. Options ======= ``--skip-log-setup`` -------------------- Disable Locust's logging setup. Instead, the configuration is provided by the Locust test or Python defaults. ``--loglevel`` -------------- Choose between DEBUG/INFO/WARNING/ERROR/CRITICAL. Default is INFO. The short-hand version is ``-L``. ``--logfile`` ------------- Path to log file. If not set, log will go to stdout/stderr. Locust loggers ============== Here's a table of the loggers used within Locust (for reference when configuring logging settings manually): +------------------------+--------------------------------------------------------------------------------------+ | Logger name | Purpose | +------------------------+--------------------------------------------------------------------------------------+ | locust | The locust namespace is used for all loggers such as ``locust.main``, | | | ``locust.runners``, etc. | +------------------------+--------------------------------------------------------------------------------------+ | locust.stats_logger | This logger is used to periodically print the current stats to the console. The | | | stats does *not* go into the log file when ``--logfile`` is used by default. | +------------------------+--------------------------------------------------------------------------------------+ locust-1.4.3/docs/quickstart.rst000066400000000000000000000136641400440205700167120ustar00rootroot00000000000000.. _quickstart: ============= Quick start ============= In Locust you define your user behaviour in Python code. You then use the ``locust`` command and (optionally) its web interface to spawn and simulate a number of those users while gathering request statistics. Example locustfile.py ===================== .. code-block:: python import time from locust import HttpUser, task, between class QuickstartUser(HttpUser): wait_time = between(1, 2.5) @task def hello_world(self): self.client.get("/hello") self.client.get("/world") @task(3) def view_items(self): for item_id in range(10): self.client.get(f"/item?id={item_id}", name="/item") time.sleep(1) def on_start(self): self.client.post("/login", json={"username":"foo", "password":"bar"}) .. rubric:: Let's break it down .. code-block:: python import time from locust import HttpUser, task, between A locust file is just a normal Python module, it can import code from other files or packages. .. code-block:: python class QuickstartUser(HttpUser): Here we define a class for the users that we will be simulating. It inherits from :py:class:`HttpUser ` which gives each user a ``client`` attribute, which is an instance of :py:class:`HttpSession `, that can be used to make HTTP requests to the target system that we want to load test. When a test starts, locust will create an instance of this class for every user that it simulates, and each of these users will start running within their own green gevent thread. .. code-block:: python wait_time = between(1, 2.5) Our class defines a ``wait_time`` that will make the simulated users wait between 1 and 2.5 seconds after each task (see below) is executed. For more info see :ref:`wait-time`. .. code-block:: python @task def hello_world(self): ... Methods decorated with ``@task`` are the core of your locust file. For every running user, Locust creates a greenlet (micro-thread), that will call those methods. .. code-block:: python @task def hello_world(self): self.client.get("/hello") self.client.get("/world") @task(3) def view_items(self): ... We've declared two tasks by decorating two methods with ``@task``, one of which has been given a higher weight (3). When our ``QuickstartUser`` runs it'll pick one of the declared tasks - in this case either ``hello_world`` or ``view_items`` - and execute it. Tasks are picked at random, but you can give them different weighting. The above configuration will make Locust three times more likely to pick ``view_items`` than ``hello_world``. When a task has finished executing, the User will then sleep during it's wait time (in this case between 1 and 2.5 seconds). After it's wait time it'll pick a new task and keep repeating that. Note that only methods decorated with ``@task`` will be picked, so you can define your own internal helper methods any way you like. .. code-block:: python self.client.get("/hello") The ``self.client`` attribute makes it possible to make HTTP calls that will be logged by Locust. For information on how to make other kinds of requests, validate the response, etc, see `Using the HTTP Client `_. .. code-block:: python :emphasize-lines: 4,4 @task(3) def view_items(self): for item_id in range(10) self.client.get(f"/item?id={item_id}", name="/item") time.sleep(1) In the ``view_items`` task we load 10 different URLs by using a variable query parameter. In order to not get 10 separate entries in Locust's statistics - since the stats is grouped on the URL - we use the :ref:`name parameter ` to group all those requests under an entry named ``"/item"`` instead. .. code-block:: python def on_start(self): self.client.post("/login", json={"username":"foo", "password":"bar"}) Additionally we've declared an `on_start` method. A method with this name will be called for each simulated user when they start. For more info see :ref:`on-start-on-stop`. Start Locust ============ Put the above code in a file named *locustfile.py* in your current directory and run: .. code-block:: console $ locust If your Locust file is located somewhere else, you can specify it using ``-f`` .. code-block:: console $ locust -f locust_files/my_locust_file.py .. note:: To see all available options type: ``locust --help`` or check :ref:`configuration` Locust's web interface ============================== Once you've started Locust using one of the above command lines, you should open up a browser and point it to http://127.0.0.1:8089. Then you should be greeted with something like this: .. image:: images/webui-splash-screenshot.png Fill out the form and try it out! (but note that if you don't change your locust file to match your actual target system you'll mostly get error responses) .. image:: images/webui-running-statistics.png .. image:: images/webui-running-charts.png More options ============ To run Locust distributed across multiple Python processes or machines, you can start a single Locust master process with the ``--master`` command line parameter, and then any number of Locust worker processes using the ``--worker`` command line parameter. See :ref:`running-locust-distributed` for more info. To start tests directly, without using the web interface, use ``--headless``. Parameters can also be set through :ref:`environment variables `, or in a :ref:`config file `. To add/remove users during a headless run press w or W (1, 10) to spawn users and s or S to stop(1, 10). How to write a *real* locust file? """""""""""""""""""""""""""""""""" The above example was just a small introduction, see :ref:`writing-a-locustfile` for more info. locust-1.4.3/docs/requirements.txt000066400000000000000000000002041400440205700172340ustar00rootroot00000000000000sphinx==3.0.4 sphinx-rtd-theme==0.4.3 -e git+https://github.com/readthedocs/readthedocs-sphinx-search#egg=readthedocs-sphinx-search locust-1.4.3/docs/retrieving-stats.rst000066400000000000000000000031511400440205700200200ustar00rootroot00000000000000====================================== Retrieve test statistics in CSV format ====================================== You may wish to consume your Locust results via a CSV file. In this case, there are two ways to do this. First, when running Locust with the web UI, you can retrieve CSV files under the Download Data tab. Secondly, you can run Locust with a flag which will periodically save three CSV files. This is particularly useful if you plan on running Locust in an automated way with the ``--headless`` flag: .. code-block:: console $ locust -f examples/basic.py --csv=example --headless -t10m The files will be named ``example_stats.csv``, ``example_failures.csv`` and ``example_history.csv`` (when using ``--csv=example``). The first two files will contain the stats and failures for the whole test run, with a row for every stats entry (URL endpoint) and an aggregated row. The ``example_history.csv`` will get new rows with the *current* (10 seconds sliding window) stats appended during the whole test run. By default only the Aggregate row is appended regularly to the history stats, but if Locust is started with the ``--csv-full-history`` flag, a row for each stats entry (and the Aggregate) is appended every time the stats are written (once every 2 seconds by default). You can also customize how frequently this is written if you desire faster (or slower) writing: .. code-block:: python import locust.stats locust.stats.CSV_STATS_INTERVAL_SEC = 5 # default is 1 second locust.stats.CSV_STATS_FLUSH_INTERVAL_SEC = 60 # Determines how often the data is flushed to disk, default is 10 seconds locust-1.4.3/docs/running-locust-distributed.rst000066400000000000000000000072071400440205700220230ustar00rootroot00000000000000.. _running-locust-distributed: =========================== Running Locust distributed =========================== Once a single machine isn't enough to simulate the number of users that you need, Locust supports running load tests distributed across multiple machines. To do this, you start one instance of Locust in master mode using the ``--master`` flag. This is the instance that will be running Locust's web interface where you start the test and see live statistics. The master node doesn't simulate any users itself. Instead you have to start one or -most likely-multiple worker Locust nodes using the ``--worker`` flag, together with the ``--master-host`` (to specify the IP/hostname of the master node). A common set up is to run a single master on one machine, and then run **one worker instance per processor core** on the worker machines. .. note:: Both the master and each worker machine, must have a copy of the locust test scripts when running Locust distributed. .. note:: It's recommended that you start a number of simulated users that are greater than ``number of user classes * number of workers`` when running Locust distributed. Otherwise - due to the current implementation - you might end up with a distribution of the User classes that doesn't correspond to the User classes' ``weight`` attribute. And if the spawn rate is lower than the number of worker nodes, the spawning would occur in "bursts" where all worker nodes would spawn a single user and then sleep for multiple seconds, spawn another user, sleep and repeat. Example ======= To start locust in master mode:: locust -f my_locustfile.py --master And then on each worker (replace ``192.168.0.14`` with the IP of the master machine, or leave out the parameter altogether if your workers are on the same machine as the master):: locust -f my_locustfile.py --worker --master-host=192.168.0.14 Options ======= ``--master`` ------------ Sets locust in master mode. The web interface will run on this node. ``--worker`` ------------ Sets locust in worker mode. ``--master-host=X.X.X.X`` ------------------------- Optionally used together with ``--worker`` to set the hostname/IP of the master node (defaults to 127.0.0.1) ``--master-port=5557`` ---------------------- Optionally used together with ``--worker`` to set the port number of the master node (defaults to 5557). ``--master-bind-host=X.X.X.X`` ------------------------------ Optionally used together with ``--master``. Determines what network interface that the master node will bind to. Defaults to * (all available interfaces). ``--master-bind-port=5557`` ------------------------------ Optionally used together with ``--master``. Determines what network ports that the master node will listen to. Defaults to 5557. ``--expect-workers=X`` ---------------------- Used when starting the master node with ``--headless``. The master node will then wait until X worker nodes has connected before the test is started. Running distributed with Docker ============================================= See :ref:`running-locust-docker` Running Locust distributed without the web UI ============================================= See :ref:`running-locust-distributed-without-web-ui` Generating a custom load shape using a `LoadTestShape` class ============================================================ See :ref:`generating-custom-load-shape` Increase Locust's performance ============================= If you're planning to run large-scale load tests you might be interested to use the alternative HTTP client that's shipped with Locust. You can read more about it here: :ref:`increase-performance` locust-1.4.3/docs/running-locust-docker.rst000066400000000000000000000031411400440205700207410ustar00rootroot00000000000000.. _running-locust-docker: ================================= Running Locust with Docker ================================= The official Docker image is currently found at `locustio/locust `_. The docker image can be used like this (assuming that the ``locustfile.py`` exists in the current working directory):: docker run -p 8089:8089 -v $PWD:/mnt/locust locustio/locust -f /mnt/locust/locustfile.py Docker Compose ============== Here's an example Docker Compose file that could be used to start both a master node, and worker nodes: .. literalinclude:: ../examples/docker-compose/docker-compose.yml :language: yaml The above compose configuration could be used to start a master node and 4 workers using the following command:: docker-compose up --scale worker=4 Use docker image as a base image ================================ It's very common to have test scripts that rely on third party python packages. In those cases you can use the official Locust docker image as a base image:: FROM locustio/locust RUN pip3 install some-python-package Running a distributed load test on Kubernetes ============================================= The easiest way to run Locust on Kubernetes is to use a Helm chart. A Helm chart will package all settings and kubernetes resources together into an easy to manage way. Currently the most up to date Helm chart is here: `github.com/deliveryhero/helm-charts `_ Note: this Helm chart is not maintained or supported directly by Locust maintainers. locust-1.4.3/docs/running-locust-without-web-ui.rst000066400000000000000000000062601400440205700223700ustar00rootroot00000000000000.. _running-locust-without-web-ui: ================================= Running Locust without the web UI ================================= You can run locust without the web UI - for example if you want to run it in some automated flow, like a CI server - by using the ``--headless`` flag together with ``-u`` and ``-r``: .. code-block:: console $ locust -f locust_files/my_locust_file.py --headless -u 1000 -r 100 ``-u`` specifies the number of Users to spawn, and ``-r`` specifies the spawn rate (number of users to start per second). Setting a time limit for the test --------------------------------- If you want to specify the run time for a test, you can do that with ``--run-time`` or ``-t``: .. code-block:: console $ locust -f --headless -u 1000 -r 100 --run-time 1h30m Locust will shutdown once the time is up. Allow tasks to finish their iteration on shutdown ------------------------------------------------- By default, locust will stop your tasks immediately (without even waiting for requests to finish). If you want to allow your tasks to finish their iteration, you can use ``--stop-timeout ``. .. code-block:: console $ locust -f --headless -u 1000 -r 100 --run-time 1h30m --stop-timeout 99 .. _running-locust-distributed-without-web-ui: Running Locust distributed without the web UI --------------------------------------------- If you want to :ref:`run Locust distributed ` without the web UI, you should specify the ``--expect-workers`` option when starting the master node, to specify the number of worker nodes that are expected to connect. It will then wait until that many worker nodes have connected before starting the test. Controlling the exit code of the Locust process ----------------------------------------------- When running Locust in a CI environment, you might want to control the exit code of the Locust process. You can do that in your test scripts by setting the :py:attr:`process_exit_code ` of the :py:class:`Environment ` instance. Below is an example that'll set the exit code to non zero if any of the following conditions are met: * More than 1% of the requests failed * The average response time is longer than 200 ms * The 95th percentile for response time is larger than 800 ms .. code-block:: python import logging from locust import events @events.quitting.add_listener def _(environment, **kw): if environment.stats.total.fail_ratio > 0.01: logging.error("Test failed due to failure ratio > 1%") environment.process_exit_code = 1 elif environment.stats.total.avg_response_time > 200: logging.error("Test failed due to average response time ratio > 200 ms") environment.process_exit_code = 1 elif environment.stats.total.get_response_time_percentile(0.95) > 800: logging.error("Test failed due to 95th percentile response time > 800 ms") environment.process_exit_code = 1 else: environment.process_exit_code = 0 (this code could go into the locustfile.py or in any other file that is imported in the locustfile) locust-1.4.3/docs/tasksets.rst000066400000000000000000000140221400440205700163460ustar00rootroot00000000000000.. _tasksets: TaskSet class ============= If you are performance testing a website that is structured in a hierarchical way, with sections and sub-sections, it may be useful to structure your load test the same way. For this purpose, Locust provides the TaskSet class. It is a collection of tasks that will be executed much like the ones declared directly on a User class. .. note:: TaskSets are an advanced feature and only rarely useful. A lot of the time, you're better off using regular Python loops and control statements to achieve the same thing. There are a few gotchas as well, the most frequent one being forgetting to call self.interrupt() .. code-block:: python from locust import User, TaskSet, constant class ForumSection(TaskSet): wait_time = constant(1) @task(10) def view_thread(self): pass @task def create_thread(self): pass @task def stop(self): self.interrupt() class LoggedInUser(User): wait_time = constant(5) tasks = {ForumSection:2} @task def my_task(self): pass A TaskSet can also be inlined directly under a User/TaskSet class using the @task decorator: .. code-block:: python class MyUser(User): @task class MyTaskSet(TaskSet): ... The tasks of a TaskSet class can be other TaskSet classes, allowing them to be nested any number of levels. This allows us to define a behaviour that simulates users in a more realistic way. For example we could define TaskSets with the following structure:: - Main user behaviour - Index page - Forum page - Read thread - Reply - New thread - View next page - Browse categories - Watch movie - Filter movies - About page When a running User thread picks a TaskSet class for execution an instance of this class will be created and execution will then go into this TaskSet. What happens then is that one of the TaskSet's tasks will be picked and executed, and then the thread will sleep for a duration specified by the User's wait_time function (unless a ``wait_time`` function has been declared directly on the TaskSet class, in which case it'll use that function instead), then pick a new task from the TaskSet's tasks, wait again, and so on. The TaskSet instance contains a reference to the User - ``self.user``. It also has a shortcut to its User's client attribute. So you can make a request using ``self.client.request()``, just like if your task was defined directly on an HttpUser. Interrupting a TaskSet ---------------------- One important thing to know about TaskSets is that they will never stop executing their tasks, and hand over execution back to their parent User/TaskSet, by themselves. This has to be done by the developer by calling the :py:meth:`TaskSet.interrupt() ` method. .. autofunction:: locust.TaskSet.interrupt :noindex: In the following example, if we didn't have the stop task that calls ``self.interrupt()``, the simulated user would never stop running tasks from the Forum taskset once it has went into it: .. code-block:: python class RegisteredUser(User): @task class Forum(TaskSet): @task(5) def view_thread(self): pass @task(1) def stop(self): self.interrupt() @task def frontpage(self): pass Using the interrupt function, we can - together with task weighting - define how likely it is that a simulated user leaves the forum. Differences between tasks in TaskSet and User classes ------------------------------------------------------- One difference for tasks residing under a TaskSet, compared to tasks residing directly under a User, is that the argument that they are passed when executed (``self`` for tasks declared as methods with the :py:func:`@task ` decorator) is a reference to the TaskSet instance, instead of the User instance. The User instance can be accessed from within a TaskSet instance through the :py:attr:`TaskSet.user `. TaskSets also contains a convenience :py:attr:`client ` attribute that refers to the client attribute on the User instance. Referencing the User instance, or the parent TaskSet instance --------------------------------------------------------------- A TaskSet instance will have the attribute :py:attr:`user ` point to its User instance, and the attribute :py:attr:`parent ` point to its parent TaskSet instance. Tags and TaskSets ------------------ You can tag TaskSets using the :py:func:`@tag ` decorator in a similar way to normal tasks, but there are some nuances worth mentioning. Tagging a TaskSet will automatically apply the tag(s) to all of the TaskSet's tasks. Furthermore, if you tag a task within a nested TaskSet, Locust will execute that task even if the TaskSet isn't tagged. .. _sequential-taskset: SequentialTaskSet class ======================= :py:class:`SequentialTaskSet ` is a TaskSet whose tasks will be executed in the order that they are declared. It is possible to nest SequentialTaskSets within a TaskSet and vice versa. For example, the following code will request URLs /1-/4 in order, and then repeat. .. code-block:: python def function_task(taskset): taskset.client.get("/3") class SequenceOfTasks(SequentialTaskSet): @task def first_task(self): self.client.get("/1") self.client.get("/2") # you can still use the tasks property to specify a list of tasks tasks = [function_task] @task def last_task(self): self.client.get("/4") Note that you dont need SequentialTaskSets to just do some requests in order. It is often easier to just do a whole user flow in a single task. locust-1.4.3/docs/testing-other-systems.rst000066400000000000000000000044161400440205700210140ustar00rootroot00000000000000.. _testing-other-systems: =========================================== Testing other systems using custom clients =========================================== Locust was built with HTTP as its main target. However, it can easily be extended to load test any request/response based system, by writing a custom client that triggers :py:attr:`request_success ` and :py:attr:`request_failure ` events. .. note:: Any protocol libraries that you use must be gevent-friendly (use the Python ``socket`` module or some other standard library function like ``subprocess``), or your calls will block the whole Locust process. Some C libraries cannot be monkey patched by gevent, but allow for other workarounds. For example, if you want to use psycopg2 to performance test PostgreSQL, can use `psycogreen `_. Sample XML-RPC User client ============================ Here is an example of a User class, **XmlRpcUser**, which provides an XML-RPC client, **XmlRpcUser**, and tracks all requests made: .. literalinclude:: ../examples/custom_xmlrpc_client/xmlrpc_locustfile.py If you've written Locust tests before, you'll recognize the class called ``ApiUser`` which is a normal User class that has a couple of tasks declared. However, the ``ApiUser`` inherits from ``XmlRpcUser`` that you can see right above ``ApiUser``. The ``XmlRpcUser`` is marked as abstract using ``abstract = True`` which means that Locust will not try to create simulated users from that class (only of classes that extend it). ``XmlRpcUser`` provides an instance of XmlRpcClient under the ``client`` attribute. The ``XmlRpcClient`` is a wrapper around the standard library's :py:class:`xmlrpc.client.ServerProxy`. It basically just proxies the function calls, but with the important addition of firing :py:attr:`locust.event.Events.request_success` and :py:attr:`locust.event.Events.request_failure` events, which will record all calls in Locust's statistics. Here's an implementation of an XML-RPC server that would work as a server for the code above: .. literalinclude:: ../examples/custom_xmlrpc_client/server.py For more examples, see `locust-plugins `_ locust-1.4.3/docs/use-as-lib.rst000066400000000000000000000026561400440205700164600ustar00rootroot00000000000000.. _use-as-lib: ========================== Using Locust as a library ========================== It's possible to use Locust as a library, instead of running Locust using the ``locust`` command. To run Locust as a library you need to create an :py:class:`Environment ` instance: .. code-block:: python from locust.env import Environment env = Environment(user_classes=[MyTestUser]) The :py:class:`Environment ` instance's :py:meth:`create_local_runner `, :py:meth:`create_master_runner ` or :py:meth:`create_worker_runner ` can then be used to start a :py:class:`Runner ` instance, which can be used to start a load test: .. code-block:: python env.create_local_runner() env.runner.start(5000, spawn_rate=20) env.runner.greenlet.join() We could also use the :py:class:`Environment ` instance's :py:meth:`create_web_ui ` method to start a Web UI that can be used to view the stats, and to control the runner (e.g. start and stop load tests): .. code-block:: python env.create_local_runner() env.create_web_ui() env.web_ui.greenlet.join() Full example ============ .. literalinclude:: ../examples/use_as_lib.py :language: python locust-1.4.3/docs/what-is-locust.rst000066400000000000000000000076241400440205700174020ustar00rootroot00000000000000=============================== What is Locust? =============================== Locust is an easy to use, scriptable and scalable performance testing tool. You define the behaviour of your users in regular Python code, instead of using a clunky UI or domain specific language. This makes Locust infinitely expandable and very developer friendly. To start using Locust, go to :ref:`installation` Features ======== * **Write user test scenarios in plain-old Python** If you want your users to loop, perform some conditional behaviour or do some calculations, you just use the regular programming constructs provided by Python. Locust runs every user inside its own greenlet (a lightweight process/coroutine). This enables you to write your tests like normal (blocking) Python code instead of having to use callbacks or some other mechanism. Because your scenarios are "just python" you can use your regular IDE, and version control your tests as regular code (as opposed to some other tools that use XML or binary formats) * **Distributed & Scalable - supports hundreds of thousands of users** Locust makes it easy to run load tests distributed over multiple machines. It is event-based (using `gevent `_), which makes it possible for a single process to handle many thousands concurrent users. While there may be other tools that are capable of doing more requests per second on a given hardware, the low overhead of each Locust user makes it very suitable for testing highly concurrent workloads. * **Web-based UI** Locust has a user friendly web interface that shows the progress of your test in real-time. You can even change the load while the test is running. It can also be run without the UI, making it easy to use for CI/CD testing. * **Can test any system** Even though Locust primarily works with web sites/services, it can be used to test almost any system or protocol. Just :ref:`write a client ` for what you want to test, or `explore some created by the community `_. * **Hackable** Locust is small and very flexible and we intend to keep it that way. If you want to `send reporting data to that database & graphing system you like `_, wrap calls to a REST API to handle the particulars of your system or run a :ref:`totally custom load pattern `, there is nothing stopping you! Name & background ================= Locust was born out of a frustration with existing solutions. No existing load testing tool was well equipped to generate realistic load against a dynamic website where most pages had different content for different users. Existing tools used clunky interfaces or verbose configuration files to declare the tests. In Locust we took a different approach. Instead of configuration formats or UIs you'd get a python framework that would let you define the behaviour of your users using Python code. `Locust `_ takes its name from the grasshopper species, known for their swarming behaviour. Previous versions of Locust used terminology borrowed from nature (swarming, hatching, attacking etc), but now employs more industry standard naming. :ref:`history` Authors ======= - `Jonatan Heyman `_ (`@jonatanheyman `_ on Twitter) - Lars Holmberg (`@cyberw `_ on Github) - Carl Byström (`@cgbystrom `_ on Twitter) - Joakim Hamrén (`@Jahaaja `_ on Twitter) - Hugo Heyman (`@hugoheyman `_ on Twitter) Many thanks to our other great `contributors `_! License ======= Open source licensed under the MIT license (see LICENSE file for details). locust-1.4.3/docs/writing-a-locustfile.rst000066400000000000000000000377741400440205700206000ustar00rootroot00000000000000.. _writing-a-locustfile: ====================== Writing a locustfile ====================== A locustfile is a normal python file. The only requirement is that it declares at least one class that inherits from the class :py:class:`User `. User class ========== A user class represents one user (or a swarming locust if you will). Locust will spawn one instance of the User class for each user that is being simulated. There are some common attributes that a User class may define. .. _wait-time: wait_time attribute ------------------- A User's :py:attr:`wait_time ` method is an optional attribute used to determine how long a simulated user should wait between executing tasks. If no :py:attr:`wait_time ` is specified, a new task will be executed as soon as one finishes. There are three built in wait time functions: * :py:attr:`constant ` for a fixed amount of time * :py:attr:`between ` for a random time between a min and max value * :py:attr:`constant_pacing ` for an adaptive time that ensures the task runs (at most) once every X seconds For example, to make each user wait between 0.5 and 10 seconds between every task execution: .. code-block:: python from locust import User, task, between class MyUser(User): @task def my_task(self): print("executing my_task") wait_time = between(0.5, 10) It's also possible to declare your own wait_time method directly on your class. For example, the following User class would sleep for one second, then two, then three, etc. .. code-block:: python class MyUser(User): last_wait_time = 0 def wait_time(self): self.last_wait_time += 1 return self.last_wait_time ... weight attribute ---------------- If more than one user class exists in the file, and no user classes are specified on the command line, Locust will spawn an equal number of each of the user classes. You can also specify which of the user classes to use from the same locustfile by passing them as command line arguments: .. code-block:: console $ locust -f locust_file.py WebUser MobileUser If you wish to simulate more users of a certain type you can set a weight attribute on those classes. Say for example, web users are three times more likely than mobile users: .. code-block:: python class WebUser(User): weight = 3 ... class MobileUser(User): weight = 1 ... host attribute -------------- The host attribute is a URL prefix (i.e. "http://google.com") to the host that is to be loaded. Usually, this is specified in Locust's web UI or on the command line, using the :code:`--host` option, when locust is started. If one declares a host attribute in the user class, it will be used in the case when no :code:`--host` is specified on the command line or in the web request. tasks attribute --------------- A User class can have tasks declared as methods under it using the :py:func:`@task ` decorator, but one can also specify tasks using the *tasks* attribute which is described in more details :ref:`below `. environment attribute --------------------- A reference to the :py:attr:`environment ` in which the user is running. Use this to interact with the environment, or the :py:attr:`runner ` which it contains. E.g. to stop the runner from a task method: .. code-block:: python self.environment.runner.quit() If run on a standalone locust instance, this will stop the entire run. If run on worker node, it will stop that particular node. .. _on-start-on-stop: on_start and on_stop methods ---------------------------- Users (and :ref:`TaskSets `) can declare an :py:meth:`on_start ` method and/or :py:meth:`on_stop ` method. A User will call its :py:meth:`on_start ` method when it starts running, and its :py:meth:`on_stop ` method when it stops running. For a TaskSet, the :py:meth:`on_start ` method is called when a simulated user starts executing that TaskSet, and :py:meth:`on_stop ` is called when the simulated user stops executing that TaskSet (when :py:meth:`interrupt() ` is called, or the user is killed). Tasks ===== When a load test is started, an instance of a User class will be created for each simulated user and they will start running within their own green thread. When these users run they pick tasks that they execute, sleep for awhile, and then pick a new task and so on. The tasks are normal python callables and - if we were load-testing an auction website - they could do stuff like "loading the start page", "searching for some product", "making a bid", etc. @task decorator --------------- The easiest way to add a task for a User is by using the :py:meth:`task ` decorator. .. code-block:: python from locust import User, task, constant class MyUser(User): wait_time = constant(1) @task def my_task(self): print("User instance (%r) executing my_task" % self) **@task** takes an optional weight argument that can be used to specify the task's execution ratio. In the following example *task2* will have twice the chance of being picked as *task1*: .. code-block:: python from locust import User, task, between class MyUser(User): wait_time = between(5, 15) @task(3) def task1(self): pass @task(6) def task2(self): pass .. _tasks-attribute: tasks attribute --------------- Another way to define the tasks of a User is by setting the :py:attr:`tasks ` attribute. The *tasks* attribute is either a list of Tasks, or a ** dict, where Task is either a python callable or a :ref:`TaskSet ` class. If the task is a normal python function they receive a single argument which is the User instance that is executing the task. Here is an example of a User task declared as a normal python function: .. code-block:: python from locust import User, constant def my_task(user): pass class MyUser(User): tasks = [my_task] wait_time = constant(1) If the tasks attribute is specified as a list, each time a task is to be performed, it will be randomly chosen from the *tasks* attribute. If however, *tasks* is a dict - with callables as keys and ints as values - the task that is to be executed will be chosen at random but with the int as ratio. So with a task that looks like this:: {my_task: 3, another_task: 1} *my_task* would be 3 times more likely to be executed than *another_task*. Internally the above dict will actually be expanded into a list (and the ``tasks`` attribute is updated) that looks like this:: [my_task, my_task, my_task, another_task] and then Python's ``random.choice()`` is used pick tasks from the list. .. _tagging-tasks: @tag decorator -------------- By tagging tasks using the :py:func:`@tag ` decorator, you can be picky about what tasks are executed during the test using the :code:`--tags` and :code:`--exclude-tags` arguments. Consider the following example: .. code-block:: python from locust import User, constant, task, tag class MyUser(User): wait_time = constant(1) @tag('tag1') @task def task1(self): pass @tag('tag1', 'tag2') @task def task2(self): pass @tag('tag3') @task def task3(self): pass @task def task4(self): pass If you started this test with :code:`--tags tag1`, only *task1* and *task2* would be executed during the test. If you started it with :code:`--tags tag2 tag3`, only *task2* and *task3* would be executed. :code:`--exclude-tags` will behave in the exact opposite way. So, if you start the test with :code:`--exclude-tags tag3`, only *task1*, *task2*, and *task4* will be executed. Exclusion always wins over inclusion, so if a task has a tag you've included and a tag you've excluded, it will not be executed. Events ====== If you want to run some setup code as part of your test, it is often enough to put it at the module level of your locustfile, but sometimes you need to do things at particular times in the run. For this need, Locust provides event hooks. test_start and test_stop ------------------------ If you need to run some code at the start or stop of a load test, you should use the :py:attr:`test_start ` and :py:attr:`test_stop ` events. You can set up listeners for these events at the module level of your locustfile: .. code-block:: python from locust import events @events.test_start.add_listener def on_test_start(environment, **kwargs): print("A new test is starting") @events.test_stop.add_listener def on_test_stop(environment, **kwargs): print("A new test is ending") When running Locust distributed the ``test_start`` and ``test_stop`` events will only be fired in the master node. init ---- The ``init`` event is triggered at the beginning of each Locust process. This is especially useful in distributed mode where each worker process (not each user) needs a chance to do some initialization. For example, let's say you have some global state that all users spawned from this process will need: .. code-block:: python from locust import events from locust.runners import MasterRunner @events.init.add_listener def on_locust_init(environment, **kwargs): if isinstance(environment.runner, MasterRunner): print("I'm on master node") else: print("I'm on a worker or standalone node") other events ------------ see :ref:`extending locust using event hooks ` for other events and more examples of how to use them. HttpUser class ============== :py:class:`HttpUser ` is the most commonly used :py:class:`User `. It adds a :py:attr:`client ` attribute which is used to make HTTP requests. .. code-block:: python from locust import HttpUser, task, between class MyUser(HttpUser): wait_time = between(5, 15) @task(4) def index(self): self.client.get("/") @task(1) def about(self): self.client.get("/about/") client attribute / HttpSession ------------------------------ :py:attr:`client ` is an instance of :py:class:`HttpSession `. HttpSession is a subclass/wrapper for :py:class:`requests.Session`, so its features are well documented and should be familiar to many. What HttpSession adds is mainly reporting of the request results into Locust (success/fail, response time, response length, name). It contains methods for all HTTP methods: :py:meth:`get `, :py:meth:`post `, :py:meth:`put `, ... Just like :py:class:`requests.Session`, it preserves cookies between requests so it can easily be used to log in to websites. .. code-block:: python :caption: Make a POST request, look at the response and implicitly reuse any session cookies we got for a second request response = self.client.post("/login", {"username":"testuser", "password":"secret"}) print("Response status code:", response.status_code) print("Response text:", response.text) response = self.client.get("/my-profile") HttpSession catches any :py:class:`requests.RequestException` thrown by Session (caused by connection errors, timeouts or similar), instead returning a dummy Response object with *status_code* set to 0 and *content* set to None. .. _catch-response: Validating responses -------------------- Requests are considered successful if the HTTP response code is OK (<400), but it is often useful to do some additional validation of the response. You can mark a request as failed by using the *catch_response* argument, a *with*-statement and a call to *response.failure()* .. code-block:: python with self.client.get("/", catch_response=True) as response: if response.text != "Success": response.failure("Got wrong response") elif response.elapsed.total_seconds() > 0.5: response.failure("Request took too long") You can also mark a request as successful, even if the response code was bad: .. code-block:: python with self.client.get("/does_not_exist/", catch_response=True) as response: if response.status_code == 404: response.success() You can even avoid logging a request at all by throwing an exception and then catching it outside the with-block. Or you can throw a :ref:`locust exception `, like in the example below, and let Locust catch it. .. code-block:: python from locust.exception import RescheduleTask ... with self.client.get("/does_not_exist/", catch_response=True) as response: if response.status_code == 404: raise RescheduleTask() .. _name-parameter: Grouping requests to URLs with dynamic parameters ------------------------------------------------- It's very common for websites to have pages whose URLs contain some kind of dynamic parameter(s). Often it makes sense to group these URLs together in User's statistics. This can be done by passing a *name* argument to the :py:class:`HttpSession's ` different request methods. Example: .. code-block:: python # Statistics for these requests will be grouped under: /blog/?id=[id] for i in range(10): self.client.get("/blog?id=%i" % i, name="/blog?id=[id]") HTTP Proxy settings ------------------- To improve performance, we configure requests to not look for HTTP proxy settings in the environment by setting requests.Session's trust_env attribute to ``False``. If you don't want this you can manually set ``locust_instance.client.trust_env`` to ``True``. For further details, refer to the `documentation of requests `_. TaskSets ================================ TaskSets is a way to structure tests of hierarchial web sites/systems. You can :ref:`read more about it here ` How to structure your test code ================================ It's important to remember that the locustfile.py is just an ordinary Python module that is imported by Locust. From this module you're free to import other python code just as you normally would in any Python program. The current working directory is automatically added to python's ``sys.path``, so any python file/module/packages that resides in the working directory can be imported using the python ``import`` statement. For small tests, keeping all of the test code in a single ``locustfile.py`` should work fine, but for larger test suites, you'll probably want to split the code into multiple files and directories. How you structure the test source code is of course entirely up to you, but we recommend that you follow Python best practices. Here's an example file structure of an imaginary Locust project: * Project root * ``common/`` * ``__init__.py`` * ``auth.py`` * ``config.py`` * ``locustfile.py`` * ``requirements.txt`` (External Python dependencies is often kept in a requirements.txt) A project with multiple different locustfiles could also keep them in a separate subdirectory: * Project root * ``common/`` * ``__init__.py`` * ``auth.py`` * ``config.py`` * ``locustfiles/`` * ``api.py`` * ``website.py`` * ``requirements.txt`` With any of the above project structure, your locustfile can import common libraries using: .. code-block:: python import common.auth locust-1.4.3/examples/000077500000000000000000000000001400440205700146425ustar00rootroot00000000000000locust-1.4.3/examples/add_command_line_argument.py000066400000000000000000000011701400440205700223520ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task, between from locust import events @events.init_command_line_parser.add_listener def _(parser): parser.add_argument("--my-argument", type=str, env_var="LOCUST_MY_ARGUMENT", default="", help="It's working") @events.init.add_listener def _(environment, **kw): print("Custom argument supplied: %s" % environment.parsed_options.my_argument) class WebsiteUser(HttpUser): """ User class that does requests to the locust web server running on localhost """ host = "http://127.0.0.1:8089" wait_time = between(2, 5) @task def my_task(self): pass locust-1.4.3/examples/basic.py000066400000000000000000000011151400440205700162730ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task, between def index(l): l.client.get("/") def stats(l): l.client.get("/stats/requests") class UserTasks(TaskSet): # one can specify tasks like this tasks = [index, stats] # but it might be convenient to use the @task decorator @task def page404(self): self.client.get("/does_not_exist") class WebsiteUser(HttpUser): """ User class that does requests to the locust web server running on localhost """ host = "http://127.0.0.1:8089" wait_time = between(2, 5) tasks = [UserTasks] locust-1.4.3/examples/browse_docs_sequence_test.py000066400000000000000000000027611400440205700224620ustar00rootroot00000000000000# This locust test script example will simulate a user # browsing the Locust documentation on https://docs.locust.io/ import random from locust import HttpUser, SequentialTaskSet, task, between from pyquery import PyQuery class BrowseDocumentationSequence(SequentialTaskSet): def on_start(self): self.urls_on_current_page = self.toc_urls = None # assume all users arrive at the index page @task def index_page(self): r = self.client.get("/") pq = PyQuery(r.content) link_elements = pq(".toctree-wrapper a.internal") self.toc_urls = [l.attrib["href"] for l in link_elements] # it is fine to do multiple requests in a single task, you dont need SequentialTaskSet for that self.client.get("/favicon.ico") @task def load_page(self, url=None): url = random.choice(self.toc_urls) r = self.client.get(url) pq = PyQuery(r.content) link_elements = pq("a.internal") self.urls_on_current_page = [l.attrib["href"] for l in link_elements] @task def load_sub_page(self): url = random.choice(self.urls_on_current_page) r = self.client.get(url) class AwesomeUser(HttpUser): tasks = [BrowseDocumentationSequence] host = "https://docs.locust.io/en/latest/" # we assume someone who is browsing the Locust docs, # generally has a quite long waiting time (between # 20 and 600 seconds), since there's a bunch of text # on each page wait_time = between(20, 600) locust-1.4.3/examples/browse_docs_test.py000066400000000000000000000025401400440205700205650ustar00rootroot00000000000000# This locust test script example will simulate a user # browsing the Locust documentation on https://docs.locust.io/ import random from locust import HttpUser, TaskSet, task, between from pyquery import PyQuery class BrowseDocumentation(TaskSet): def on_start(self): # assume all users arrive at the index page self.index_page() self.urls_on_current_page = self.toc_urls @task(10) def index_page(self): r = self.client.get("/") pq = PyQuery(r.content) link_elements = pq(".toctree-wrapper a.internal") self.toc_urls = [l.attrib["href"] for l in link_elements] @task(50) def load_page(self, url=None): url = random.choice(self.toc_urls) r = self.client.get(url) pq = PyQuery(r.content) link_elements = pq("a.internal") self.urls_on_current_page = [l.attrib["href"] for l in link_elements] @task(30) def load_sub_page(self): url = random.choice(self.urls_on_current_page) r = self.client.get(url) class AwesomeUser(HttpUser): tasks = [BrowseDocumentation] host = "https://docs.locust.io/en/latest/" # we assume someone who is browsing the Locust docs, # generally has a quite long waiting time (between # 20 and 600 seconds), since there's a bunch of text # on each page wait_time = between(20, 600) locust-1.4.3/examples/custom_shape/000077500000000000000000000000001400440205700173345ustar00rootroot00000000000000locust-1.4.3/examples/custom_shape/double_wave.py000066400000000000000000000023641400440205700222070ustar00rootroot00000000000000import math from locust import HttpUser, TaskSet, task, constant from locust import LoadTestShape class UserTasks(TaskSet): @task def get_root(self): self.client.get("/") class WebsiteUser(HttpUser): wait_time = constant(0.5) tasks = [UserTasks] class DoubleWave(LoadTestShape): """ A shape to immitate some specific user behaviour. In this example, midday and evening meal times. Settings: min_users -- minimum users peak_one_users -- users in first peak peak_two_users -- users in second peak time_limit -- total length of test """ min_users = 20 peak_one_users = 60 peak_two_users = 40 time_limit = 600 def tick(self): run_time = round(self.get_run_time()) if run_time < self.time_limit: user_count = ( (self.peak_one_users - self.min_users) * math.e ** -(((run_time / (self.time_limit / 10 * 2 / 3)) - 5) ** 2) + (self.peak_two_users - self.min_users) * math.e ** -(((run_time / (self.time_limit / 10 * 2 / 3)) - 10) ** 2) + self.min_users ) return (round(user_count), round(user_count)) else: return None locust-1.4.3/examples/custom_shape/stages.py000066400000000000000000000027231400440205700212000ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task, constant from locust import LoadTestShape class UserTasks(TaskSet): @task def get_root(self): self.client.get("/") class WebsiteUser(HttpUser): wait_time = constant(0.5) tasks = [UserTasks] class StagesShape(LoadTestShape): """ A simply load test shape class that has different user and spawn_rate at different stages. Keyword arguments: stages -- A list of dicts, each representing a stage with the following keys: duration -- When this many seconds pass the test is advanced to the next stage users -- Total user count spawn_rate -- Number of users to start/stop per second stop -- A boolean that can stop that test at a specific stage stop_at_end -- Can be set to stop once all stages have run. """ stages = [ {"duration": 60, "users": 10, "spawn_rate": 10}, {"duration": 100, "users": 50, "spawn_rate": 10}, {"duration": 180, "users": 100, "spawn_rate": 10}, {"duration": 220, "users": 30, "spawn_rate": 10}, {"duration": 230, "users": 10, "spawn_rate": 10}, {"duration": 240, "users": 1, "spawn_rate": 1}, ] def tick(self): run_time = self.get_run_time() for stage in self.stages: if run_time < stage["duration"]: tick_data = (stage["users"], stage["spawn_rate"]) return tick_data return None locust-1.4.3/examples/custom_shape/step_load.py000066400000000000000000000016251400440205700216640ustar00rootroot00000000000000import math from locust import HttpUser, TaskSet, task, constant from locust import LoadTestShape class UserTasks(TaskSet): @task def get_root(self): self.client.get("/") class WebsiteUser(HttpUser): wait_time = constant(0.5) tasks = [UserTasks] class StepLoadShape(LoadTestShape): """ A step load shape Keyword arguments: step_time -- Time between steps step_load -- User increase amount at each step spawn_rate -- Users to stop/start per second at every step time_limit -- Time limit in seconds """ step_time = 30 step_load = 10 spawn_rate = 10 time_limit = 600 def tick(self): run_time = self.get_run_time() if run_time > self.time_limit: return None current_step = math.floor(run_time / self.step_time) + 1 return (current_step * self.step_load, self.spawn_rate) locust-1.4.3/examples/custom_wait_function.py000066400000000000000000000025301400440205700214570ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task import random def index(l): l.client.get("/") def stats(l): l.client.get("/stats/requests") class UserTasks(TaskSet): # one can specify tasks like this tasks = [index, stats] # but it might be convenient to use the @task decorator @task def page404(self): self.client.get("/does_not_exist") class WebsiteUser(HttpUser): """ User class that does requests to the locust web server running on localhost """ host = "http://127.0.0.1:8089" # Most task inter-arrival times approximate to exponential distributions # We will model this wait time as exponentially distributed with a mean of 1 second wait_time = lambda self: random.expovariate(1) tasks = [UserTasks] def strictExp(min_wait, max_wait, mu=1): """ Returns an exponentially distributed time strictly between two bounds. """ while True: x = random.expovariate(mu) increment = (max_wait - min_wait) / (mu * 6.0) result = min_wait + (x * increment) if result < max_wait: break return result class StrictWebsiteUser(HttpUser): """ User class that makes exponential requests but strictly between two bounds. """ host = "http://127.0.0.1:8089" wait_time = lambda self: strictExp(3, 7) tasks = [UserTasks] locust-1.4.3/examples/custom_xmlrpc_client/000077500000000000000000000000001400440205700210775ustar00rootroot00000000000000locust-1.4.3/examples/custom_xmlrpc_client/server.py000066400000000000000000000007261400440205700227640ustar00rootroot00000000000000import random import time from xmlrpc.server import SimpleXMLRPCServer def get_time(): time.sleep(random.random()) return time.time() def get_random_number(low, high): time.sleep(random.random()) return random.randint(low, high) server = SimpleXMLRPCServer(("localhost", 8877)) print("Listening on port 8877...") server.register_function(get_time, "get_time") server.register_function(get_random_number, "get_random_number") server.serve_forever() locust-1.4.3/examples/custom_xmlrpc_client/xmlrpc_locustfile.py000066400000000000000000000040741400440205700252140ustar00rootroot00000000000000import time from xmlrpc.client import ServerProxy, Fault from locust import User, task, between class XmlRpcClient(ServerProxy): """ Simple, sample XML RPC client implementation that wraps xmlrpclib.ServerProxy and fires locust events on request_success and request_failure, so that all requests gets tracked in locust's statistics. """ _locust_environment = None def __getattr__(self, name): func = ServerProxy.__getattr__(self, name) def wrapper(*args, **kwargs): start_time = time.time() try: result = func(*args, **kwargs) except Fault as e: total_time = int((time.time() - start_time) * 1000) self._locust_environment.events.request_failure.fire( request_type="xmlrpc", name=name, response_time=total_time, exception=e ) else: total_time = int((time.time() - start_time) * 1000) self._locust_environment.events.request_success.fire( request_type="xmlrpc", name=name, response_time=total_time, response_length=0 ) # In this example, I've hardcoded response_length=0. If we would want the response length to be # reported correctly in the statistics, we would probably need to hook in at a lower level return wrapper class XmlRpcUser(User): """ This is the abstract User class which should be subclassed. It provides an XML-RPC client that can be used to make XML-RPC requests that will be tracked in Locust's statistics. """ abstract = True def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.client = XmlRpcClient(self.host) self.client._locust_environment = self.environment class ApiUser(XmlRpcUser): host = "http://127.0.0.1:8877/" wait_time = between(0.1, 1) @task(10) def get_time(self): self.client.get_time() @task(5) def get_random_number(self): self.client.get_random_number(0, 100) locust-1.4.3/examples/docker-compose/000077500000000000000000000000001400440205700175545ustar00rootroot00000000000000locust-1.4.3/examples/docker-compose/docker-compose.yml000066400000000000000000000005341400440205700232130ustar00rootroot00000000000000version: '3' services: master: image: locustio/locust ports: - "8089:8089" volumes: - ./:/mnt/locust command: -f /mnt/locust/locustfile.py --master -H http://master:8089 worker: image: locustio/locust volumes: - ./:/mnt/locust command: -f /mnt/locust/locustfile.py --worker --master-host master locust-1.4.3/examples/dynamice_user_credentials.py000066400000000000000000000011771400440205700224260ustar00rootroot00000000000000# locustfile.py from locust import HttpUser, TaskSet, task, between USER_CREDENTIALS = [ ("user1", "password"), ("user2", "password"), ("user3", "password"), ] class UserBehaviour(TaskSet): def on_start(self): if len(USER_CREDENTIALS) > 0: user, passw = USER_CREDENTIALS.pop() self.client.post("/login", {"username": user, "password": passw}) @task def some_task(self): # user should be logged in here (unless the USER_CREDENTIALS ran out) self.client.get("/protected/resource") class User(HttpUser): tasks = [UserBehaviour] wait_time = between(5, 60) locust-1.4.3/examples/events.py000066400000000000000000000044571400440205700165320ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This is an example of a locustfile that uses Locust's built in event hooks to track the sum of the content-length header in all successful HTTP responses """ from locust import HttpUser, TaskSet, task, web, between from locust import events class MyTaskSet(TaskSet): @task(2) def index(l): l.client.get("/") @task(1) def stats(l): l.client.get("/stats/requests") class WebsiteUser(HttpUser): host = "http://127.0.0.1:8089" wait_time = between(2, 5) tasks = [MyTaskSet] stats = {"content-length": 0} @events.init.add_listener def locust_init(environment, **kwargs): """ We need somewhere to store the stats. On the master node stats will contain the aggregated sum of all content-lengths, while on the worker nodes this will be the sum of the content-lengths since the last stats report was sent to the master """ if environment.web_ui: # this code is only run on the master node (the web_ui instance doesn't exist on workers) @environment.web_ui.app.route("/content-length") def total_content_length(): """ Add a route to the Locust web app, where we can see the total content-length """ return "Total content-length received: %i" % stats["content-length"] @events.request_success.add_listener def on_request_success(request_type, name, response_time, response_length): """ Event handler that get triggered on every successful request """ stats["content-length"] += response_length @events.report_to_master.add_listener def on_report_to_master(client_id, data): """ This event is triggered on the worker instances every time a stats report is to be sent to the locust master. It will allow us to add our extra content-length data to the dict that is being sent, and then we clear the local stats in the worker. """ data["content-length"] = stats["content-length"] stats["content-length"] = 0 @events.worker_report.add_listener def on_worker_report(client_id, data): """ This event is triggered on the master instance when a new stats report arrives from a worker. Here we just add the content-length to the master's aggregated stats dict. """ stats["content-length"] += data["content-length"] locust-1.4.3/examples/extend_web_ui/000077500000000000000000000000001400440205700174635ustar00rootroot00000000000000locust-1.4.3/examples/extend_web_ui/extend.py000066400000000000000000000111651400440205700213300ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ This is an example of a locustfile that uses Locust's built in event and web UI extension hooks to track the sum of the content-length header in all successful HTTP responses and display them in the web UI. """ import os from time import time from html import escape from locust import HttpUser, TaskSet, task, web, between, events from flask import Blueprint, render_template, jsonify, make_response class MyTaskSet(TaskSet): @task(2) def index(l): l.client.get("/") @task(1) def stats(l): l.client.get("/stats/requests") class WebsiteUser(HttpUser): host = "http://127.0.0.1:8089" wait_time = between(2, 5) tasks = [MyTaskSet] stats = {} path = os.path.dirname(os.path.abspath(__file__)) extend = Blueprint( "extend", "extend_web_ui", static_folder=f"{path}/static/", static_url_path="/extend/static/", template_folder=f"{path}/templates/", ) @events.init.add_listener def locust_init(environment, **kwargs): """ We need somewhere to store the stats. On the master node stats will contain the aggregated sum of all content-lengths, while on the worker nodes this will be the sum of the content-lengths since the last stats report was sent to the master """ if environment.web_ui: # this code is only run on the master node (the web_ui instance doesn't exist on workers) @extend.route("/content-length") def total_content_length(): """ Add a route to the Locust web app where we can see the total content-length for each endpoint Locust users are hitting. This is also used by the Content Length tab in the extended web UI to show the stats. See `updateContentLengthStats()` and `renderContentLengthTable()` in extend.js. """ report = {"stats": []} if stats: stats_tmp = [] for name, inner_stats in stats.items(): content_length = inner_stats["content-length"] stats_tmp.append( {"name": name, "safe_name": escape(name, quote=False), "content_length": content_length} ) # Truncate the total number of stats and errors displayed since a large number of rows will cause the app # to render extremely slowly. report = {"stats": stats_tmp[:500]} return jsonify(report) return jsonify(stats) @extend.route("/extend") def extend_web_ui(): """ Add route to access the extended web UI with our new tab. """ # ensure the template_args are up to date before using them environment.web_ui.update_template_args() return render_template("extend.html", **environment.web_ui.template_args) @extend.route("/content-length/csv") def request_content_length_csv(): """ Add route to enable downloading of content-length stats as CSV """ response = make_response(content_length_csv()) file_name = "content_length{0}.csv".format(time()) disposition = "attachment;filename={0}".format(file_name) response.headers["Content-type"] = "text/csv" response.headers["Content-disposition"] = disposition return response def content_length_csv(): """Returns the content-length stats as CSV.""" rows = [ ",".join( [ '"Name"', '"Total content-length"', ] ) ] if stats: for url, inner_stats in stats.items(): rows.append( '"%s",%.2f' % ( url, inner_stats["content-length"], ) ) return "\n".join(rows) # register our new routes and extended UI with the Locust web UI environment.web_ui.app.register_blueprint(extend) @events.request_success.add_listener def on_request_success(request_type, name, response_time, response_length): """ Event handler that get triggered on every successful request """ stats.setdefault(name, {"content-length": 0}) stats[name]["content-length"] += response_length @events.reset_stats.add_listener def on_reset_stats(): """ Event handler that get triggered on click of web UI Reset Stats button """ global stats stats = {} locust-1.4.3/examples/extend_web_ui/static/000077500000000000000000000000001400440205700207525ustar00rootroot00000000000000locust-1.4.3/examples/extend_web_ui/static/extend.js000066400000000000000000000045771400440205700226140ustar00rootroot00000000000000var contentLengthStats; var contentLengthCharts = {}; // Used for sorting var contentLengthDesc = false; var contentLengthSortAttribute = "name"; // Trigger sorting of stats when a table label is clicked $("#content-length .stats_label").click(function (event) { event.preventDefault(); contentLengthSortAttribute = $(this).attr("data-sortkey"); contentLengthDesc = !contentLengthDesc; renderContentLengthTable(window.content_length_report); }); // Render and sort Content Length table function renderContentLengthTable(content_length_report) { $('#content-length tbody').empty(); window.alternate = false; $('#content-length tbody').jqoteapp($('#content-length-template'), (content_length_report.stats).sort(sortBy(contentLengthSortAttribute, contentLengthDesc))); } // Get and repeatedly update Content Length stats and table function updateContentLengthStats() { $.get('./content-length', function (content_length_report) { window.content_length_report = content_length_report $('#content-length tbody').empty(); if (JSON.stringify(content_length_report) !== JSON.stringify({})) { renderContentLengthTable(content_length_report); // Make a separate chart for each URL for (let index = 0; index < content_length_report.stats.length; index++) { const url_stats = content_length_report.stats[index]; // If a chart already exists, just add the new value if (contentLengthCharts.hasOwnProperty(url_stats.safe_name)) { contentLengthCharts[url_stats.safe_name].addValue([url_stats.content_length]); } else { // If a chart doesn't already exist, create the chart first then add the value contentLengthCharts[url_stats.safe_name] = new LocustLineChart($(".content-length-chart-container"), `Content Length for ${url_stats.safe_name}`, ["content-length"], "bytes"); // Add newly created chart to Locust web UI's array of charts charts.push(contentLengthCharts[url_stats.safe_name]) contentLengthCharts[url_stats.safe_name].addValue([url_stats.content_length]); } } } // Schedule a repeat of updating stats in 2 seconds setTimeout(updateContentLengthStats, 2000); }); } updateContentLengthStats(); locust-1.4.3/examples/extend_web_ui/templates/000077500000000000000000000000001400440205700214615ustar00rootroot00000000000000locust-1.4.3/examples/extend_web_ui/templates/extend.html000066400000000000000000000034501400440205700236400ustar00rootroot00000000000000{% extends "index.html" %} {% block extended_tabs %}

  • Content Length
  • {% endblock extended_tabs %} {% block extended_panes %}
    Name Total content length

    Note: There is no persistence of these charts, if you refresh this page, new charts will be created.

    Download content length statistics CSV
    {% endblock extended_panes %} {% block extended_script %} {% endblock extended_script %}locust-1.4.3/examples/fast_http_locust.py000066400000000000000000000012071400440205700206010ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task, between from locust.contrib.fasthttp import FastHttpUser class WebsiteUser(FastHttpUser): """ User class that does requests to the locust web server running on localhost, using the fast HTTP client """ host = "http://127.0.0.1:8089" wait_time = between(2, 5) # some things you can configure on FastHttpUser # connection_timeout = 60.0 # insecure = True # max_redirects = 5 # max_retries = 1 # network_timeout = 60.0 @task def index(self): self.client.get("/") @task def stats(self): self.client.get("/stats/requests") locust-1.4.3/examples/locustfile.py000066400000000000000000000007561400440205700173750ustar00rootroot00000000000000import time from locust import HttpUser, task, between class QuickstartUser(HttpUser): wait_time = between(1, 2) @task def hello_world(self): self.client.get("/hello") self.client.get("/world") @task(3) def view_item(self): for item_id in range(10): self.client.get(f"/item?id={item_id}", name="/item") time.sleep(1) def on_start(self): self.client.post("/login", json={"username": "foo", "password": "bar"}) locust-1.4.3/examples/manual_stats_reporting.py000066400000000000000000000041251400440205700220020ustar00rootroot00000000000000""" Example of a manual_report() function that can be used either as a context manager (with statement), or a decorator, to manually add entries to Locust's statistics. Usage as a context manager: with manual_report("stats entry name"): # Run time of this block will be reported under a stats entry called "stats entry name" # do stuff here, if an Exception is raised, it'll be reported as a failure Usage as a decorator: @task @manual_report def my_task(self): # The run time of this task will be reported under a stats entry called "my task" (type "manual"). # If an Exception is raised, it'll be reported as a failure """ import random from contextlib import contextmanager, ContextDecorator from time import time, sleep from locust import User, task, constant, events @contextmanager def _manual_report(name): start_time = time() try: yield except Exception as e: events.request_failure.fire( request_type="manual", name=name, response_time=(time() - start_time) * 1000, response_length=0, exception=e, ) raise else: events.request_success.fire( request_type="manual", name=name, response_time=(time() - start_time) * 1000, response_length=0, ) def manual_report(name_or_func): if callable(name_or_func): # used as decorator without name argument specified return _manual_report(name_or_func.__name__)(name_or_func) else: return _manual_report(name_or_func) class MyUser(User): wait_time = constant(1) @task def successful_task(self): with manual_report("successful_task"): sleep(random.random()) @task @manual_report def decorator_test(self): if random.random() > 0.5: raise Exception("decorator_task failed") sleep(random.random()) @task def failing_task(self): with manual_report("failing_task"): sleep(random.random()) raise Exception("Oh nooes!") locust-1.4.3/examples/multiple_hosts.py000066400000000000000000000014241400440205700202700ustar00rootroot00000000000000import os from locust import HttpUser, TaskSet, task, between from locust.clients import HttpSession class MultipleHostsUser(HttpUser): abstract = True def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.api_client = HttpSession(base_url=os.environ["API_HOST"]) class UserTasks(TaskSet): # but it might be convenient to use the @task decorator @task def index(self): self.user.client.get("/") @task def index_other_host(self): self.user.api_client.get("/stats/requests") class WebsiteUser(MultipleHostsUser): """ User class that does requests to the locust web server running on localhost """ host = "http://127.0.0.1:8089" wait_time = between(2, 5) tasks = [UserTasks] locust-1.4.3/examples/nested_inline_tasksets.py000066400000000000000000000011051400440205700217520ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task, between class WebsiteUser(HttpUser): """ Example of the ability of inline nested TaskSet classes """ host = "http://127.0.0.1:8089" wait_time = between(2, 5) @task class TopLevelTaskSet(TaskSet): @task class IndexTaskSet(TaskSet): @task(10) def index(self): self.client.get("/") @task(1) def stop(self): self.interrupt() @task def stats(self): self.client.get("/stats/requests") locust-1.4.3/examples/semaphore_wait.py000066400000000000000000000011571400440205700202270ustar00rootroot00000000000000from locust import HttpUser, TaskSet, task, events, between from gevent.lock import Semaphore all_users_spawned = Semaphore() all_users_spawned.acquire() @events.init.add_listener def _(environment, **kw): @environment.events.spawning_complete.add_listener def on_spawning_complete(**kw): all_users_spawned.release() class UserTasks(TaskSet): def on_start(self): all_users_spawned.wait() self.wait() @task def index(self): self.client.get("/") class WebsiteUser(HttpUser): host = "http://127.0.0.1:8089" wait_time = between(2, 5) tasks = [UserTasks] locust-1.4.3/examples/stop_on_threshold.py000066400000000000000000000020171400440205700207510ustar00rootroot00000000000000# An example of how to stop locust if a threshold (in this case the fail ratio) is exceeded from locust import task, HttpUser, events from locust.runners import STATE_STOPPING, STATE_STOPPED, STATE_CLEANUP, WorkerRunner import time import gevent class MyUser(HttpUser): host = "http://www.google.com" @task def my_task(self): for _ in range(10): self.client.get("/") time.sleep(1) for _ in range(5): self.client.get("/error") time.sleep(1) def checker(environment): while not environment.runner.state in [STATE_STOPPING, STATE_STOPPED, STATE_CLEANUP]: time.sleep(1) if environment.runner.stats.total.fail_ratio > 0.2: print(f"fail ratio was {environment.runner.stats.total.fail_ratio}, quitting") environment.runner.quit() return @events.init.add_listener def on_locust_init(environment, **_kwargs): if not isinstance(environment.runner, WorkerRunner): gevent.spawn(checker, environment) locust-1.4.3/examples/use_as_lib.py000066400000000000000000000020351400440205700173210ustar00rootroot00000000000000import gevent from locust import HttpUser, task, between from locust.env import Environment from locust.stats import stats_printer, stats_history from locust.log import setup_logging setup_logging("INFO", None) class User(HttpUser): wait_time = between(1, 3) host = "https://docs.locust.io" @task def my_task(self): self.client.get("/") @task def task_404(self): self.client.get("/non-existing-path") # setup Environment and Runner env = Environment(user_classes=[User]) env.create_local_runner() # start a WebUI instance env.create_web_ui("127.0.0.1", 8089) # start a greenlet that periodically outputs the current stats gevent.spawn(stats_printer(env.stats)) # start a greenlet that save current stats to history gevent.spawn(stats_history, env.runner) # start the test env.runner.start(1, spawn_rate=10) # in 60 seconds stop the runner gevent.spawn_later(60, lambda: env.runner.quit()) # wait for the greenlets env.runner.greenlet.join() # stop the web server for good measures env.web_ui.stop() locust-1.4.3/examples/vagrant/000077500000000000000000000000001400440205700163045ustar00rootroot00000000000000locust-1.4.3/examples/vagrant/README.md000066400000000000000000000000001400440205700175510ustar00rootroot00000000000000locust-1.4.3/examples/vagrant/supervisord.conf000066400000000000000000000030411400440205700215360ustar00rootroot00000000000000[inet_http_server] ; inet (TCP) server disabled by default port=*:9001 ; (ip_address:port specifier, *:port for all iface) ;username=user ; (default is no username (open server)) ;password=123 ; (default is no password (open server)) [supervisord] logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log) logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB) logfile_backups=10 ; (num of main logfile rotation backups;default 10) loglevel=info ; (log level;default info; others: debug,warn,trace) pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid) nodaemon=false ; (start in foreground if true;default false) minfds=1024 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) [supervisorctl] serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [program:locustmaster] command=locust --master -f examples/basic.py ; TODO host should perhaps be configurable through the web UI process_name=master autostart=true directory=/vagrant priority=1 [program:locustworkers] command=locust --worker -f examples/basic.py ; TODO host should perhaps be configurable through the web UI process_name=worker_%(process_num)s numprocs=2 numprocs_start=1 autostart=true priority=2 directory=/vagrantlocust-1.4.3/examples/vagrant/vagrant.sh000066400000000000000000000007461400440205700203110ustar00rootroot00000000000000#!/bin/bash # NOTICE: # # This file must be saved with unix-style line endings or it will fail. # # Update and install some dependencies apt-get -y update apt-get -y install build-essential python-pip python-dev libev-dev libzmq-dev supervisor cd /vagrant pip install --use-mirrors pyzmq supervisor # Checkout and install latest Locust from Github python setup.py develop # Starting supervisor which is configured to start Locust supervisord -c examples/vagrant/supervisord.conf locust-1.4.3/generate_changelog.py000066400000000000000000000010511400440205700171740ustar00rootroot00000000000000import subprocess import os github_api_token = ( os.getenv("CHANGELOG_GITHUB_TOKEN") if os.getenv("CHANGELOG_GITHUB_TOKEN") else input("Enter Github API token: ") ) version = input("Enter Locust version number (--future-release argument): ") cmd = [ "github_changelog_generator", "-t", github_api_token, "-u", "locustio", "-p", "locust", "--exclude-labels", "duplicate,question,invalid,wontfix,cantfix", "--future-release", version, ] print("Running command: %s\n" % " ".join(cmd)) subprocess.run(cmd) locust-1.4.3/locust/000077500000000000000000000000001400440205700143355ustar00rootroot00000000000000locust-1.4.3/locust/__init__.py000066400000000000000000000014041400440205700164450ustar00rootroot00000000000000from gevent import monkey monkey.patch_all() from .user.sequential_taskset import SequentialTaskSet from .user import wait_time from .user.task import task, tag, TaskSet from .user.users import HttpUser, User from .user.wait_time import between, constant, constant_pacing from .shape import LoadTestShape from .event import Events events = Events() __version__ = "1.4.3" __all__ = ( "SequentialTaskSet", "wait_time", "task", "tag", "TaskSet", "HttpUser", "User", "between", "constant", "constant_pacing", "events", ) # Used for raising a DeprecationWarning if old Locust/HttpLocust is used from .util.deprecation import DeprecatedLocustClass as Locust from .util.deprecation import DeprecatedHttpLocustClass as HttpLocust locust-1.4.3/locust/__main__.py000066400000000000000000000000371400440205700164270ustar00rootroot00000000000000from .main import main main() locust-1.4.3/locust/argument_parser.py000066400000000000000000000367051400440205700201200ustar00rootroot00000000000000import argparse import os import sys import textwrap import configargparse import locust version = locust.__version__ DEFAULT_CONFIG_FILES = ["~/.locust.conf", "locust.conf"] def _is_package(path): """ Is the given path a Python package? """ return os.path.isdir(path) and os.path.exists(os.path.join(path, "__init__.py")) def find_locustfile(locustfile): """ Attempt to locate a locustfile, either explicitly or by searching parent dirs. """ # Obtain env value names = [locustfile] # Create .py version if necessary if not names[0].endswith(".py"): names.append(names[0] + ".py") # Does the name contain path elements? if os.path.dirname(names[0]): # If so, expand home-directory markers and test for existence for name in names: expanded = os.path.expanduser(name) if os.path.exists(expanded): if name.endswith(".py") or _is_package(expanded): return os.path.abspath(expanded) else: # Otherwise, start in cwd and work downwards towards filesystem root path = os.path.abspath(".") while True: for name in names: joined = os.path.join(path, name) if os.path.exists(joined): if name.endswith(".py") or _is_package(joined): return os.path.abspath(joined) parent_path = os.path.dirname(path) if parent_path == path: # we've reached the root path which has been checked this iteration break path = parent_path # Implicit 'return None' if nothing was found def get_empty_argument_parser(add_help=True, default_config_files=DEFAULT_CONFIG_FILES): parser = configargparse.ArgumentParser( default_config_files=default_config_files, add_env_var_help=False, add_config_file_help=False, add_help=add_help, formatter_class=argparse.RawDescriptionHelpFormatter, usage=argparse.SUPPRESS, description=textwrap.dedent( """ Usage: locust [OPTIONS] [UserClass ...] """ ), # epilog="", ) parser.add_argument( "-f", "--locustfile", default="locustfile", help="Python module file to import, e.g. '../other.py'. Default: locustfile", env_var="LOCUST_LOCUSTFILE", ) parser.add_argument("--config", is_config_file_arg=True, help="Config file path") return parser def parse_locustfile_option(args=None): """ Construct a command line parser that is only used to parse the -f argument so that we can import the test scripts in case any of them adds additional command line arguments to the parser """ parser = get_empty_argument_parser(add_help=False) parser.add_argument( "-h", "--help", action="store_true", default=False, ) parser.add_argument( "--version", "-V", action="store_true", default=False, ) options, _ = parser.parse_known_args(args=args) locustfile = find_locustfile(options.locustfile) if not locustfile: if options.help or options.version: # if --help or --version is specified we'll call parse_options which will print the help/version message parse_options(args=args) sys.stderr.write( "Could not find any locustfile! Ensure file ends in '.py' and see --help for available options.\n" ) sys.exit(1) if locustfile == "locust.py": sys.stderr.write("The locustfile must not be named `locust.py`. Please rename the file and try again.\n") sys.exit(1) return locustfile def setup_parser_arguments(parser): """ Setup command-line options Takes a configargparse.ArgumentParser as argument and calls it's add_argument for each of the supported arguments """ parser._optionals.title = "Common options" parser.add_argument( "-H", "--host", help="Host to load test in the following format: http://10.21.32.33", env_var="LOCUST_HOST", ) parser.add_argument( "-u", "--users", type=int, dest="num_users", help="Number of concurrent Locust users. Primarily used together with --headless. Can be changed during a test by inputs w, W(spawn 1, 10 users) and s, S(stop 1, 10 users)", env_var="LOCUST_USERS", ) parser.add_argument( "-r", "--spawn-rate", type=float, help="The rate per second in which users are spawned. Primarily used together with --headless", env_var="LOCUST_SPAWN_RATE", ) parser.add_argument( "--hatch-rate", env_var="LOCUST_HATCH_RATE", type=float, default=0, help=configargparse.SUPPRESS, ) parser.add_argument( "-t", "--run-time", help="Stop after the specified amount of time, e.g. (300s, 20m, 3h, 1h30m, etc.). Only used together with --headless. Defaults to run forever.", env_var="LOCUST_RUN_TIME", ) parser.add_argument( "-l", "--list", action="store_true", dest="list_commands", help="Show list of possible User classes and exit", ) web_ui_group = parser.add_argument_group("Web UI options") web_ui_group.add_argument( "--web-host", default="", help="Host to bind the web interface to. Defaults to '*' (all interfaces)", env_var="LOCUST_WEB_HOST", ) web_ui_group.add_argument( "--web-port", "-P", type=int, default=8089, help="Port on which to run web host", env_var="LOCUST_WEB_PORT", ) web_ui_group.add_argument( "--headless", action="store_true", help="Disable the web interface, and instead start the load test immediately. Requires -u and -t to be specified.", env_var="LOCUST_HEADLESS", ) # Override --headless parameter (useful because you cant disable a store_true-parameter like headless once it has been set in a config file) web_ui_group.add_argument( "--headful", action="store_true", help=configargparse.SUPPRESS, env_var="LOCUST_HEADFUL", ) web_ui_group.add_argument( "--web-auth", type=str, dest="web_auth", default=None, help="Turn on Basic Auth for the web interface. Should be supplied in the following format: username:password", env_var="LOCUST_WEB_AUTH", ) web_ui_group.add_argument( "--tls-cert", default="", help="Optional path to TLS certificate to use to serve over HTTPS", env_var="LOCUST_TLS_CERT", ) web_ui_group.add_argument( "--tls-key", default="", help="Optional path to TLS private key to use to serve over HTTPS", env_var="LOCUST_TLS_KEY", ) master_group = parser.add_argument_group( "Master options", "Options for running a Locust Master node when running Locust distributed. A Master node need Worker nodes that connect to it before it can run load tests.", ) # if locust should be run in distributed mode as master master_group.add_argument( "--master", action="store_true", help="Set locust to run in distributed mode with this process as master", env_var="LOCUST_MODE_MASTER", ) master_group.add_argument( "--master-bind-host", default="*", help="Interfaces (hostname, ip) that locust master should bind to. Only used when running with --master. Defaults to * (all available interfaces).", env_var="LOCUST_MASTER_BIND_HOST", ) master_group.add_argument( "--master-bind-port", type=int, default=5557, help="Port that locust master should bind to. Only used when running with --master. Defaults to 5557.", env_var="LOCUST_MASTER_BIND_PORT", ) master_group.add_argument( "--expect-workers", type=int, default=1, help="How many workers master should expect to connect before starting the test (only when --headless used).", env_var="LOCUST_EXPECT_WORKERS", ) master_group.add_argument( "--expect-slaves", action="store_true", help=configargparse.SUPPRESS, ) worker_group = parser.add_argument_group( "Worker options", textwrap.dedent( """ Options for running a Locust Worker node when running Locust distributed. Only the LOCUSTFILE (-f option) need to be specified when starting a Worker, since other options such as -u, -r, -t are specified on the Master node. """ ), ) # if locust should be run in distributed mode as worker worker_group.add_argument( "--worker", action="store_true", help="Set locust to run in distributed mode with this process as worker", env_var="LOCUST_MODE_WORKER", ) worker_group.add_argument( "--slave", action="store_true", help=configargparse.SUPPRESS, ) # master host options worker_group.add_argument( "--master-host", default="127.0.0.1", help="Host or IP address of locust master for distributed load testing. Only used when running with --worker. Defaults to 127.0.0.1.", env_var="LOCUST_MASTER_NODE_HOST", metavar="MASTER_NODE_HOST", ) worker_group.add_argument( "--master-port", type=int, default=5557, help="The port to connect to that is used by the locust master for distributed load testing. Only used when running with --worker. Defaults to 5557.", env_var="LOCUST_MASTER_NODE_PORT", metavar="MASTER_NODE_PORT", ) tag_group = parser.add_argument_group( "Tag options", "Locust tasks can be tagged using the @tag decorator. These options let specify which tasks to include or exclude during a test.", ) tag_group.add_argument( "-T", "--tags", nargs="*", metavar="TAG", env_var="LOCUST_TAGS", help="List of tags to include in the test, so only tasks with any matching tags will be executed", ) tag_group.add_argument( "-E", "--exclude-tags", nargs="*", metavar="TAG", env_var="LOCUST_EXCLUDE_TAGS", help="List of tags to exclude from the test, so only tasks with no matching tags will be executed", ) stats_group = parser.add_argument_group("Request statistics options") stats_group.add_argument( "--csv", # Name repeated in 'parse_options' dest="csv_prefix", help="Store current request stats to files in CSV format. Setting this option will generate three files: [CSV_PREFIX]_stats.csv, [CSV_PREFIX]_stats_history.csv and [CSV_PREFIX]_failures.csv", env_var="LOCUST_CSV", ) stats_group.add_argument( "--csv-full-history", # Name repeated in 'parse_options' action="store_true", default=False, dest="stats_history_enabled", help="Store each stats entry in CSV format to _stats_history.csv file. You must also specify the '--csv' argument to enable this.", env_var="LOCUST_CSV_FULL_HISTORY", ) stats_group.add_argument( "--print-stats", action="store_true", help="Print stats in the console", env_var="LOCUST_PRINT_STATS", ) stats_group.add_argument( "--only-summary", action="store_true", help="Only print the summary stats", env_var="LOCUST_ONLY_SUMMARY", ) stats_group.add_argument( "--reset-stats", action="store_true", help="Reset statistics once spawning has been completed. Should be set on both master and workers when running in distributed mode", env_var="LOCUST_RESET_STATS", ) stats_group.add_argument( "--html", dest="html_file", help="Store HTML report file", env_var="LOCUST_HTML", ) log_group = parser.add_argument_group("Logging options") log_group.add_argument( "--skip-log-setup", action="store_true", dest="skip_log_setup", default=False, help="Disable Locust's logging setup. Instead, the configuration is provided by the Locust test or Python defaults.", env_var="LOCUST_SKIP_LOG_SETUP", ) log_group.add_argument( "--loglevel", "-L", default="INFO", help="Choose between DEBUG/INFO/WARNING/ERROR/CRITICAL. Default is INFO.", env_var="LOCUST_LOGLEVEL", ) log_group.add_argument( "--logfile", help="Path to log file. If not set, log will go to stdout/stderr", env_var="LOCUST_LOGFILE", ) step_load_group = parser.add_argument_group("Step load options") step_load_group.add_argument("--step-load", action="store_true", help=configargparse.SUPPRESS) step_load_group.add_argument("--step-users", type=int, help=configargparse.SUPPRESS) step_load_group.add_argument("--step-clients", action="store_true", help=configargparse.SUPPRESS) step_load_group.add_argument("--step-time", help=configargparse.SUPPRESS) other_group = parser.add_argument_group("Other options") other_group.add_argument( "--show-task-ratio", action="store_true", help="Print table of the User classes' task execution ratio" ) other_group.add_argument( "--show-task-ratio-json", action="store_true", help="Print json data of the User classes' task execution ratio" ) # optparse gives you --version but we have to do it ourselves to get -V too other_group.add_argument( "--version", "-V", action="version", help="Show program's version number and exit", version="%(prog)s {}".format(version), ) other_group.add_argument( "--exit-code-on-error", type=int, default=1, help="Sets the process exit code to use when a test result contain any failure or error", env_var="LOCUST_EXIT_CODE_ON_ERROR", ) other_group.add_argument( "-s", "--stop-timeout", action="store", type=int, dest="stop_timeout", default=None, help="Number of seconds to wait for a simulated user to complete any executing task before exiting. Default is to terminate immediately. This parameter only needs to be specified for the master process when running Locust distributed.", env_var="LOCUST_STOP_TIMEOUT", ) user_classes_group = parser.add_argument_group("User classes") user_classes_group.add_argument( "user_classes", nargs="*", metavar="UserClass", help="Optionally specify which User classes that should be used (available User classes can be listed with -l or --list)", ) def get_parser(default_config_files=DEFAULT_CONFIG_FILES): # get a parser that is only able to parse the -f argument parser = get_empty_argument_parser(add_help=True, default_config_files=default_config_files) # add all the other supported arguments setup_parser_arguments(parser) # fire event to provide a hook for locustscripts and plugins to add command line arguments locust.events.init_command_line_parser.fire(parser=parser) return parser def parse_options(args=None): parser = get_parser() parsed_opts = parser.parse_args(args=args) if parsed_opts.stats_history_enabled and (parsed_opts.csv_prefix is None): parser.error("'--csv-full-history' requires '--csv'.") return parsed_opts locust-1.4.3/locust/clients.py000066400000000000000000000302341400440205700163520ustar00rootroot00000000000000import re import time import requests from requests import Request, Response from requests.auth import HTTPBasicAuth from requests.exceptions import InvalidSchema, InvalidURL, MissingSchema, RequestException from urllib.parse import urlparse, urlunparse from .exception import CatchResponseError, ResponseError absolute_http_url_regexp = re.compile(r"^https?://", re.I) class LocustResponse(Response): def raise_for_status(self): if hasattr(self, "error") and self.error: raise self.error Response.raise_for_status(self) class HttpSession(requests.Session): """ Class for performing web requests and holding (session-) cookies between requests (in order to be able to log in and out of websites). Each request is logged so that locust can display statistics. This is a slightly extended version of `python-request `_'s :py:class:`requests.Session` class and mostly this class works exactly the same. However the methods for making requests (get, post, delete, put, head, options, patch, request) can now take a *url* argument that's only the path part of the URL, in which case the host part of the URL will be prepended with the HttpSession.base_url which is normally inherited from a User class' host property. Each of the methods for making requests also takes two additional optional arguments which are Locust specific and doesn't exist in python-requests. These are: :param name: (optional) An argument that can be specified to use as label in Locust's statistics instead of the URL path. This can be used to group different URL's that are requested into a single entry in Locust's statistics. :param catch_response: (optional) Boolean argument that, if set, can be used to make a request return a context manager to work as argument to a with statement. This will allow the request to be marked as a fail based on the content of the response, even if the response code is ok (2xx). The opposite also works, one can use catch_response to catch a request and then mark it as successful even if the response code was not (i.e 500 or 404). """ def __init__(self, base_url, request_success, request_failure, *args, **kwargs): super().__init__(*args, **kwargs) self.base_url = base_url self.request_success = request_success self.request_failure = request_failure # Check for basic authentication parsed_url = urlparse(self.base_url) if parsed_url.username and parsed_url.password: netloc = parsed_url.hostname if parsed_url.port: netloc += ":%d" % parsed_url.port # remove username and password from the base_url self.base_url = urlunparse( (parsed_url.scheme, netloc, parsed_url.path, parsed_url.params, parsed_url.query, parsed_url.fragment) ) # configure requests to use basic auth self.auth = HTTPBasicAuth(parsed_url.username, parsed_url.password) def _build_url(self, path): """ prepend url with hostname unless it's already an absolute URL """ if absolute_http_url_regexp.match(path): return path else: return "%s%s" % (self.base_url, path) def request(self, method, url, name=None, catch_response=False, **kwargs): """ Constructs and sends a :py:class:`requests.Request`. Returns :py:class:`requests.Response` object. :param method: method for the new :class:`Request` object. :param url: URL for the new :class:`Request` object. :param name: (optional) An argument that can be specified to use as label in Locust's statistics instead of the URL path. This can be used to group different URL's that are requested into a single entry in Locust's statistics. :param catch_response: (optional) Boolean argument that, if set, can be used to make a request return a context manager to work as argument to a with statement. This will allow the request to be marked as a fail based on the content of the response, even if the response code is ok (2xx). The opposite also works, one can use catch_response to catch a request and then mark it as successful even if the response code was not (i.e 500 or 404). :param params: (optional) Dictionary or bytes to be sent in the query string for the :class:`Request`. :param data: (optional) Dictionary or bytes to send in the body of the :class:`Request`. :param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`. :param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`. :param files: (optional) Dictionary of ``'filename': file-like-objects`` for multipart encoding upload. :param auth: (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth. :param timeout: (optional) How long in seconds to wait for the server to send data before giving up, as a float, or a (`connect timeout, read timeout `_) tuple. :type timeout: float or tuple :param allow_redirects: (optional) Set to True by default. :type allow_redirects: bool :param proxies: (optional) Dictionary mapping protocol to the URL of the proxy. :param stream: (optional) whether to immediately download the response content. Defaults to ``False``. :param verify: (optional) if ``True``, the SSL cert will be verified. A CA_BUNDLE path can also be provided. :param cert: (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. """ # prepend url with hostname unless it's already an absolute URL url = self._build_url(url) # store meta data that is used when reporting the request to locust's statistics request_meta = {} # set up pre_request hook for attaching meta data to the request object request_meta["method"] = method request_meta["start_time"] = time.monotonic() response = self._send_request_safe_mode(method, url, **kwargs) # record the consumed time request_meta["response_time"] = (time.monotonic() - request_meta["start_time"]) * 1000 request_meta["name"] = name or (response.history and response.history[0] or response).request.path_url # get the length of the content, but if the argument stream is set to True, we take # the size from the content-length header, in order to not trigger fetching of the body if kwargs.get("stream", False): request_meta["content_size"] = int(response.headers.get("content-length") or 0) else: request_meta["content_size"] = len(response.content or b"") if catch_response: response.locust_request_meta = request_meta return ResponseContextManager( response, request_success=self.request_success, request_failure=self.request_failure ) else: if name: # Since we use the Exception message when grouping failures, in order to not get # multiple failure entries for different URLs for the same name argument, we need # to temporarily override the response.url attribute orig_url = response.url response.url = name try: response.raise_for_status() except RequestException as e: self.request_failure.fire( request_type=request_meta["method"], name=request_meta["name"], response_time=request_meta["response_time"], response_length=request_meta["content_size"], exception=e, ) else: self.request_success.fire( request_type=request_meta["method"], name=request_meta["name"], response_time=request_meta["response_time"], response_length=request_meta["content_size"], ) if name: response.url = orig_url return response def _send_request_safe_mode(self, method, url, **kwargs): """ Send an HTTP request, and catch any exception that might occur due to connection problems. Safe mode has been removed from requests 1.x. """ try: return super().request(method, url, **kwargs) except (MissingSchema, InvalidSchema, InvalidURL): raise except RequestException as e: r = LocustResponse() r.error = e r.status_code = 0 # with this status_code, content returns None r.request = Request(method, url).prepare() return r class ResponseContextManager(LocustResponse): """ A Response class that also acts as a context manager that provides the ability to manually control if an HTTP request should be marked as successful or a failure in Locust's statistics This class is a subclass of :py:class:`Response ` with two additional methods: :py:meth:`success ` and :py:meth:`failure `. """ _manual_result = None def __init__(self, response, request_success, request_failure): # copy data from response to this object self.__dict__ = response.__dict__ self._request_success = request_success self._request_failure = request_failure def __enter__(self): return self def __exit__(self, exc, value, traceback): if self._manual_result is not None: if self._manual_result is True: self._report_success() elif isinstance(self._manual_result, Exception): self._report_failure(self._manual_result) # if the user has already manually marked this response as failure or success # we can ignore the default behaviour of letting the response code determine the outcome return exc is None if exc: if isinstance(value, ResponseError): self._report_failure(value) else: # we want other unknown exceptions to be raised return False else: try: self.raise_for_status() except requests.exceptions.RequestException as e: self._report_failure(e) else: self._report_success() return True def _report_success(self): self._request_success.fire( request_type=self.locust_request_meta["method"], name=self.locust_request_meta["name"], response_time=self.locust_request_meta["response_time"], response_length=self.locust_request_meta["content_size"], ) def _report_failure(self, exc): self._request_failure.fire( request_type=self.locust_request_meta["method"], name=self.locust_request_meta["name"], response_time=self.locust_request_meta["response_time"], response_length=self.locust_request_meta["content_size"], exception=exc, ) def success(self): """ Report the response as successful Example:: with self.client.get("/does/not/exist", catch_response=True) as response: if response.status_code == 404: response.success() """ self._manual_result = True def failure(self, exc): """ Report the response as a failure. if exc is anything other than a python exception (like a string) it will be wrapped inside a CatchResponseError. Example:: with self.client.get("/", catch_response=True) as response: if response.content == b"": response.failure("No data") """ if not isinstance(exc, Exception): exc = CatchResponseError(exc) self._manual_result = exc locust-1.4.3/locust/contrib/000077500000000000000000000000001400440205700157755ustar00rootroot00000000000000locust-1.4.3/locust/contrib/__init__.py000066400000000000000000000000001400440205700200740ustar00rootroot00000000000000locust-1.4.3/locust/contrib/fasthttp.py000066400000000000000000000463501400440205700202140ustar00rootroot00000000000000import re import socket import json import json as unshadowed_json # some methods take a named parameter called json from base64 import b64encode from urllib.parse import urlparse, urlunparse from ssl import SSLError from timeit import default_timer from http.cookiejar import CookieJar import gevent from gevent.timeout import Timeout from geventhttpclient._parser import HTTPParseError from geventhttpclient.useragent import UserAgent, CompatRequest, CompatResponse, ConnectionError from geventhttpclient.response import HTTPConnectionClosed from locust.user import User from locust.exception import LocustError, CatchResponseError, ResponseError from locust.env import Environment from locust.util.deprecation import DeprecatedFastHttpLocustClass as FastHttpLocust # Monkey patch geventhttpclient.useragent.CompatRequest so that Cookiejar works with Python >= 3.3 # More info: https://github.com/requests/requests/pull/871 CompatRequest.unverifiable = False # Workaround for AttributeError: 'CompatRequest' object has no attribute 'type' in Cookiejar # https://github.com/locustio/locust/issues/1138 # Might allow secure cookies over non-secure connections but that is a minor concern in a load testing tool CompatRequest.type = "https" # Regexp for checking if an absolute URL was specified absolute_http_url_regexp = re.compile(r"^https?://", re.I) # List of exceptions that can be raised by geventhttpclient when sending an HTTP request, # and that should result in a Locust failure FAILURE_EXCEPTIONS = ( ConnectionError, ConnectionRefusedError, ConnectionResetError, socket.error, SSLError, Timeout, HTTPConnectionClosed, ) def _construct_basic_auth_str(username, password): """Construct Authorization header value to be used in HTTP Basic Auth""" if isinstance(username, str): username = username.encode("latin1") if isinstance(password, str): password = password.encode("latin1") return "Basic " + b64encode(b":".join((username, password))).strip().decode("ascii") def insecure_ssl_context_factory(): context = gevent.ssl.create_default_context() context.check_hostname = False context.verify_mode = gevent.ssl.CERT_NONE return context class FastHttpSession: auth_header = None def __init__(self, environment: Environment, base_url: str, insecure=True, **kwargs): self.environment = environment self.base_url = base_url self.cookiejar = CookieJar() if insecure: ssl_context_factory = insecure_ssl_context_factory else: ssl_context_factory = gevent.ssl.create_default_context self.client = LocustUserAgent( cookiejar=self.cookiejar, ssl_context_factory=ssl_context_factory, insecure=insecure, **kwargs, ) # Check for basic authentication parsed_url = urlparse(self.base_url) if parsed_url.username and parsed_url.password: netloc = parsed_url.hostname if parsed_url.port: netloc += ":%d" % parsed_url.port # remove username and password from the base_url self.base_url = urlunparse( (parsed_url.scheme, netloc, parsed_url.path, parsed_url.params, parsed_url.query, parsed_url.fragment) ) # store authentication header (we construct this by using _basic_auth_str() function from requests.auth) self.auth_header = _construct_basic_auth_str(parsed_url.username, parsed_url.password) def _build_url(self, path): """ prepend url with hostname unless it's already an absolute URL """ if absolute_http_url_regexp.match(path): return path else: return "%s%s" % (self.base_url, path) def _send_request_safe_mode(self, method, url, **kwargs): """ Send an HTTP request, and catch any exception that might occur due to either connection problems, or invalid HTTP status codes """ try: return self.client.urlopen(url, method=method, **kwargs) except FAILURE_EXCEPTIONS as e: if hasattr(e, "response"): r = e.response else: r = ErrorResponse() r.error = e return r def request( self, method: str, path: str, name: str = None, data: str = None, catch_response: bool = False, stream: bool = False, headers: dict = None, auth=None, json: dict = None, allow_redirects=True, **kwargs, ): """ Send and HTTP request Returns :py:class:`locust.contrib.fasthttp.FastResponse` object. :param method: method for the new :class:`Request` object. :param path: Path that will be concatenated with the base host URL that has been specified. Can also be a full URL, in which case the full URL will be requested, and the base host is ignored. :param name: (optional) An argument that can be specified to use as label in Locust's statistics instead of the URL path. This can be used to group different URL's that are requested into a single entry in Locust's statistics. :param catch_response: (optional) Boolean argument that, if set, can be used to make a request return a context manager to work as argument to a with statement. This will allow the request to be marked as a fail based on the content of the response, even if the response code is ok (2xx). The opposite also works, one can use catch_response to catch a request and then mark it as successful even if the response code was not (i.e 500 or 404). :param data: (optional) String/bytes to send in the body of the request. :param json: (optional) Dictionary to send in the body of the request. Automatically sets Content-Type and Accept headers to "application/json". Only used if data is not set. :param headers: (optional) Dictionary of HTTP Headers to send with the request. :param auth: (optional) Auth (username, password) tuple to enable Basic HTTP Auth. :param stream: (optional) If set to true the response body will not be consumed immediately and can instead be consumed by accessing the stream attribute on the Response object. Another side effect of setting stream to True is that the time for downloading the response content will not be accounted for in the request time that is reported by Locust. """ # prepend url with hostname unless it's already an absolute URL url = self._build_url(path) # store meta data that is used when reporting the request to locust's statistics request_meta = {} # set up pre_request hook for attaching meta data to the request object request_meta["method"] = method request_meta["start_time"] = default_timer() request_meta["name"] = name or path headers = headers or {} if auth: headers["Authorization"] = _construct_basic_auth_str(auth[0], auth[1]) elif self.auth_header: headers["Authorization"] = self.auth_header if "Accept-Encoding" not in headers and "accept-encoding" not in headers: headers["Accept-Encoding"] = "gzip, deflate" if not data and json is not None: data = unshadowed_json.dumps(json) if "Content-Type" not in headers and "content-type" not in headers: headers["Content-Type"] = "application/json" if "Accept" not in headers and "accept" not in headers: headers["Accept"] = "application/json" if not allow_redirects: old_redirect_response_codes = self.client.redirect_resonse_codes self.client.redirect_resonse_codes = [] # send request, and catch any exceptions response = self._send_request_safe_mode(method, url, payload=data, headers=headers, **kwargs) if not allow_redirects: self.client.redirect_resonse_codes = old_redirect_response_codes # get the length of the content, but if the argument stream is set to True, we take # the size from the content-length header, in order to not trigger fetching of the body if stream: request_meta["content_size"] = int(response.headers.get("content-length") or 0) else: try: request_meta["content_size"] = len(response.content or "") except HTTPParseError as e: request_meta["response_time"] = int((default_timer() - request_meta["start_time"]) * 1000) self.environment.events.request_failure.fire( request_type=request_meta["method"], name=request_meta["name"], response_time=request_meta["response_time"], response_length=0, exception=e, ) return response # Record the consumed time # Note: This is intentionally placed after we record the content_size above, since # we'll then trigger fetching of the body (unless stream=True) request_meta["response_time"] = int((default_timer() - request_meta["start_time"]) * 1000) if catch_response: response.locust_request_meta = request_meta return ResponseContextManager(response, environment=self.environment) else: try: response.raise_for_status() except FAILURE_EXCEPTIONS as e: self.environment.events.request_failure.fire( request_type=request_meta["method"], name=request_meta["name"], response_time=request_meta["response_time"], response_length=request_meta["content_size"], exception=e, ) else: self.environment.events.request_success.fire( request_type=request_meta["method"], name=request_meta["name"], response_time=request_meta["response_time"], response_length=request_meta["content_size"], ) return response def delete(self, path, **kwargs): return self.request("DELETE", path, **kwargs) def get(self, path, **kwargs): """Sends a GET request""" return self.request("GET", path, **kwargs) def head(self, path, **kwargs): """Sends a HEAD request""" return self.request("HEAD", path, **kwargs) def options(self, path, **kwargs): """Sends a OPTIONS request""" return self.request("OPTIONS", path, **kwargs) def patch(self, path, data=None, **kwargs): """Sends a POST request""" return self.request("PATCH", path, data=data, **kwargs) def post(self, path, data=None, **kwargs): """Sends a POST request""" return self.request("POST", path, data=data, **kwargs) def put(self, path, data=None, **kwargs): """Sends a PUT request""" return self.request("PUT", path, data=data, **kwargs) class FastHttpUser(User): """ FastHttpUser uses a different HTTP client (geventhttpclient) compared to HttpUser (python-requests). It's significantly faster, but not as capable. The behaviour of this user is defined by it's tasks. Tasks can be declared either directly on the class by using the :py:func:`@task decorator ` on the methods, or by setting the :py:attr:`tasks attribute `. This class creates a *client* attribute on instantiation which is an HTTP client with support for keeping a user session between requests. """ client: FastHttpSession = None """ Instance of HttpSession that is created upon instantiation of User. The client support cookies, and therefore keeps the session between HTTP requests. """ # Below are various UserAgent settings. Change these in your subclass to alter FastHttpUser's behaviour. # It needs to be done before FastHttpUser is instantiated, changing them later will have no effect network_timeout: float = 60.0 """Parameter passed to FastHttpSession""" connection_timeout: float = 60.0 """Parameter passed to FastHttpSession""" max_redirects: int = 5 """Parameter passed to FastHttpSession. Default 5, meaning 4 redirects.""" max_retries: int = 1 """Parameter passed to FastHttpSession. Default 1, meaning zero retries.""" insecure: bool = True """Parameter passed to FastHttpSession. Default True, meaning no SSL verification.""" abstract = True """Dont register this as a User class that can be run by itself""" def __init__(self, environment): super().__init__(environment) if self.host is None: raise LocustError( "You must specify the base host. Either in the host attribute in the User class, or on the command line using the --host option." ) if not re.match(r"^https?://[^/]+", self.host, re.I): raise LocustError("Invalid host (`%s`), must be a valid base URL. E.g. http://example.com" % self.host) self.client = FastHttpSession( self.environment, base_url=self.host, network_timeout=self.network_timeout, connection_timeout=self.connection_timeout, max_redirects=self.max_redirects, max_retries=self.max_retries, insecure=self.insecure, ) class FastResponse(CompatResponse): headers = None """Dict like object containing the response headers""" _response = None encoding: str = None """In some cases setting the encoding explicitly is needed. If so, do it before calling .text""" @property def text(self) -> str: """ Returns the text content of the response as a decoded string """ if self.content is None: return None if self.encoding is None: if self.headers is None: self.encoding = "utf-8" else: self.encoding = self.headers.get("content-type", "").partition("charset=")[2] or "utf-8" return str(self.content, self.encoding, errors="replace") def json(self) -> dict: """ Parses the response as json and returns a dict """ return json.loads(self.text) def raise_for_status(self): """Raise any connection errors that occurred during the request""" if hasattr(self, "error") and self.error: raise self.error @property def status_code(self) -> int: """ We override status_code in order to return None if no valid response was returned. E.g. in the case of connection errors """ return self._response is not None and self._response.get_code() or 0 def _content(self): if self.headers is None: return None return super()._content() class ErrorResponse: """ This is used as a dummy response object when geventhttpclient raises an error that doesn't have a real Response object attached. E.g. a socket error or similar """ headers = None content = None status_code = 0 error = None text = None def raise_for_status(self): raise self.error class LocustUserAgent(UserAgent): response_type = FastResponse valid_response_codes = frozenset([200, 201, 202, 203, 204, 205, 206, 207, 208, 226, 301, 302, 303, 307]) def __init__(self, **kwargs): super().__init__(**kwargs) def _urlopen(self, request): """Override _urlopen() in order to make it use the response_type attribute""" client = self.clientpool.get_client(request.url_split) resp = client.request( request.method, request.url_split.request_uri, body=request.payload, headers=request.headers ) return self.response_type(resp, request=request, sent_request=resp._sent_request) class ResponseContextManager(FastResponse): """ A Response class that also acts as a context manager that provides the ability to manually control if an HTTP request should be marked as successful or a failure in Locust's statistics This class is a subclass of :py:class:`FastResponse ` with two additional methods: :py:meth:`success ` and :py:meth:`failure `. """ _manual_result = None def __init__(self, response, environment): # copy data from response to this object self.__dict__ = response.__dict__ self._cached_content = response.content # store reference to locust Environment self.environment = environment def __enter__(self): return self def __exit__(self, exc, value, traceback): if self._manual_result is not None: if self._manual_result is True: self._report_success() elif isinstance(self._manual_result, Exception): self._report_failure(self._manual_result) # if the user has already manually marked this response as failure or success # we can ignore the default behaviour of letting the response code determine the outcome return exc is None if exc: if isinstance(value, ResponseError): self._report_failure(value) else: return False else: try: self.raise_for_status() except FAILURE_EXCEPTIONS as e: self._report_failure(e) else: self._report_success() return True def _report_success(self): self.environment.events.request_success.fire( request_type=self.locust_request_meta["method"], name=self.locust_request_meta["name"], response_time=self.locust_request_meta["response_time"], response_length=self.locust_request_meta["content_size"], ) def _report_failure(self, exc): self.environment.events.request_failure.fire( request_type=self.locust_request_meta["method"], name=self.locust_request_meta["name"], response_time=self.locust_request_meta["response_time"], response_length=self.locust_request_meta["content_size"], exception=exc, ) def success(self): """ Report the response as successful Example:: with self.client.get("/does/not/exist", catch_response=True) as response: if response.status_code == 404: response.success() """ self._manual_result = True def failure(self, exc): """ Report the response as a failure. if exc is anything other than a python exception (like a string) it will be wrapped inside a CatchResponseError. Example:: with self.client.get("/", catch_response=True) as response: if response.content == "": response.failure("No data") """ if not isinstance(exc, Exception): exc = CatchResponseError(exc) self._manual_result = exc locust-1.4.3/locust/env.py000066400000000000000000000150231400440205700155000ustar00rootroot00000000000000from .event import Events from .exception import RunnerAlreadyExistsError from .stats import RequestStats from .runners import Runner, LocalRunner, MasterRunner, WorkerRunner from .web import WebUI from .user import User from .user.task import filter_tasks_by_tags from .shape import LoadTestShape from typing import List class Environment: events: Events = None """ Event hooks used by Locust internally, as well as to extend Locust's functionality See :ref:`events` for available events. """ user_classes: List[User] = [] """User classes that the runner will run""" shape_class: LoadTestShape = None """A shape class to control the shape of the load test""" tags = None """If set, only tasks that are tagged by tags in this list will be executed""" exclude_tags = None """If set, only tasks that aren't tagged by tags in this list will be executed""" stats: RequestStats = None """Reference to RequestStats instance""" runner: Runner = None """Reference to the :class:`Runner ` instance""" web_ui: WebUI = None """Reference to the WebUI instance""" host: str = None """Base URL of the target system""" reset_stats = False """Determines if stats should be reset once all simulated users have been spawned""" stop_timeout = None """ If set, the runner will try to stop the running users gracefully and wait this many seconds before killing them hard. """ catch_exceptions = True """ If True exceptions that happen within running users will be caught (and reported in UI/console). If False, exceptions will be raised. """ process_exit_code: int = None """ If set it'll be the exit code of the Locust process """ parsed_options = None """Optional reference to the parsed command line options (used to pre-populate fields in Web UI)""" def __init__( self, *, user_classes=[], shape_class=None, tags=None, exclude_tags=None, events=None, host=None, reset_stats=False, stop_timeout=None, catch_exceptions=True, parsed_options=None, ): if events: self.events = events else: self.events = Events() self.user_classes = user_classes self.shape_class = shape_class self.tags = tags self.exclude_tags = exclude_tags self.stats = RequestStats() self.host = host self.reset_stats = reset_stats self.stop_timeout = stop_timeout self.catch_exceptions = catch_exceptions self.parsed_options = parsed_options self._filter_tasks_by_tags() def _create_runner(self, runner_class, *args, **kwargs): if self.runner is not None: raise RunnerAlreadyExistsError("Environment.runner already exists (%s)" % self.runner) self.runner = runner_class(self, *args, **kwargs) return self.runner def create_local_runner(self): """ Create a :class:`LocalRunner ` instance for this Environment """ return self._create_runner(LocalRunner) def create_master_runner(self, master_bind_host="*", master_bind_port=5557): """ Create a :class:`MasterRunner ` instance for this Environment :param master_bind_host: Interface/host that the master should use for incoming worker connections. Defaults to "*" which means all interfaces. :param master_bind_port: Port that the master should listen for incoming worker connections on """ return self._create_runner( MasterRunner, master_bind_host=master_bind_host, master_bind_port=master_bind_port, ) def create_worker_runner(self, master_host, master_port): """ Create a :class:`WorkerRunner ` instance for this Environment :param master_host: Host/IP of a running master node :param master_port: Port on master node to connect to """ # Create a new RequestStats with use_response_times_cache set to False to save some memory # and CPU cycles, since the response_times_cache is not needed for Worker nodes self.stats = RequestStats(use_response_times_cache=False) return self._create_runner( WorkerRunner, master_host=master_host, master_port=master_port, ) def create_web_ui( self, host="", port=8089, auth_credentials=None, tls_cert=None, tls_key=None, stats_csv_writer=None, delayed_start=False, ): """ Creates a :class:`WebUI ` instance for this Environment and start running the web server :param host: Host/interface that the web server should accept connections to. Defaults to "" which means all interfaces :param port: Port that the web server should listen to :param auth_credentials: If provided (in format "username:password") basic auth will be enabled :param tls_cert: An optional path (str) to a TLS cert. If this is provided the web UI will be served over HTTPS :param tls_key: An optional path (str) to a TLS private key. If this is provided the web UI will be served over HTTPS :param stats_csv_writer: `StatsCSV ` instance. :param delayed_start: Whether or not to delay starting web UI until `start()` is called. Delaying web UI start allows for adding Flask routes or Blueprints before accepting requests, avoiding errors. """ self.web_ui = WebUI( self, host, port, auth_credentials=auth_credentials, tls_cert=tls_cert, tls_key=tls_key, stats_csv_writer=stats_csv_writer, delayed_start=delayed_start, ) return self.web_ui def _filter_tasks_by_tags(self): """ Filter the tasks on all the user_classes recursively, according to the tags and exclude_tags attributes """ if self.tags is not None: self.tags = set(self.tags) if self.exclude_tags is not None: self.exclude_tags = set(self.exclude_tags) for user_class in self.user_classes: filter_tasks_by_tags(user_class, self.tags, self.exclude_tags) locust-1.4.3/locust/event.py000066400000000000000000000127211400440205700160330ustar00rootroot00000000000000import logging from . import log import traceback from .exception import StopUser, RescheduleTask, RescheduleTaskImmediately, InterruptTaskSet class EventHook: """ Simple event class used to provide hooks for different types of events in Locust. Here's how to use the EventHook class:: my_event = EventHook() def on_my_event(a, b, **kw): print("Event was fired with arguments: %s, %s" % (a, b)) my_event.add_listener(on_my_event) my_event.fire(a="foo", b="bar") If reverse is True, then the handlers will run in the reverse order that they were inserted """ def __init__(self): self._handlers = [] def add_listener(self, handler): self._handlers.append(handler) return handler def remove_listener(self, handler): self._handlers.remove(handler) def fire(self, *, reverse=False, **kwargs): if reverse: handlers = reversed(self._handlers) else: handlers = self._handlers for handler in handlers: try: handler(**kwargs) except (StopUser, RescheduleTask, RescheduleTaskImmediately, InterruptTaskSet): # These exceptions could be thrown by, for example, a request_failure handler, # in which case they are entirely appropriate and should not be caught raise except Exception: logging.error("Uncaught exception in event handler: \n%s", traceback.format_exc()) log.unhandled_greenlet_exception = True class Events: request_success = EventHook """ Fired when a request is completed successfully. This event is typically used to report requests when writing custom clients for locust. Event arguments: :param request_type: Request type method used :param name: Path to the URL that was called (or override name if it was used in the call to the client) :param response_time: Response time in milliseconds :param response_length: Content-length of the response """ request_failure = EventHook """ Fired when a request fails. This event is typically used to report failed requests when writing custom clients for locust. Event arguments: :param request_type: Request type method used :param name: Path to the URL that was called (or override name if it was used in the call to the client) :param response_time: Time in milliseconds until exception was thrown :param response_length: Content-length of the response :param exception: Exception instance that was thrown """ user_error = EventHook """ Fired when an exception occurs inside the execution of a User class. Event arguments: :param user_instance: User class instance where the exception occurred :param exception: Exception that was thrown :param tb: Traceback object (from e.__traceback__) """ report_to_master = EventHook """ Used when Locust is running in --worker mode. It can be used to attach data to the dicts that are regularly sent to the master. It's fired regularly when a report is to be sent to the master server. Note that the keys "stats" and "errors" are used by Locust and shouldn't be overridden. Event arguments: :param client_id: The client id of the running locust process. :param data: Data dict that can be modified in order to attach data that should be sent to the master. """ worker_report = EventHook """ Used when Locust is running in --master mode and is fired when the master server receives a report from a Locust worker server. This event can be used to aggregate data from the locust worker servers. Event arguments: :param client_id: Client id of the reporting worker :param data: Data dict with the data from the worker node """ spawning_complete = EventHook """ Fired when all simulated users has been spawned. Event arguments: :param user_count: Number of users that were spawned """ quitting = EventHook """ Fired when the locust process is exiting Event arguments: :param environment: Environment instance """ init = EventHook """ Fired when Locust is started, once the Environment instance and locust runner instance have been created. This hook can be used by end-users' code to run code that requires access to the Environment. For example to register listeners to request_success, request_failure or other events. Event arguments: :param environment: Environment instance """ init_command_line_parser = EventHook """ Event that can be used to add command line options to Locust Event arguments: :param parser: ArgumentParser instance """ test_start = EventHook """ Fired when a new load test is started. It's not fired again if the number of users change during a test. When running locust distributed the event is only fired on the master node and not on each worker node. """ test_stop = EventHook """ Fired when a load test is stopped. When running locust distributed the event is only fired on the master node and not on each worker node. """ reset_stats = EventHook """ Fired when the Reset Stats button is clicked in the web UI. """ def __init__(self): for name, value in vars(type(self)).items(): if value == EventHook: setattr(self, name, value()) locust-1.4.3/locust/exception.py000066400000000000000000000026331400440205700167110ustar00rootroot00000000000000class LocustError(Exception): pass class ResponseError(Exception): pass class CatchResponseError(Exception): pass class MissingWaitTimeError(LocustError): pass class InterruptTaskSet(Exception): """ Exception that will interrupt a User when thrown inside a task """ def __init__(self, reschedule=True): """ If *reschedule* is True and the InterruptTaskSet is raised inside a nested TaskSet, the parent TaskSet would immediately reschedule another task. """ self.reschedule = reschedule class StopUser(Exception): pass class RescheduleTask(Exception): """ When raised in a task it's equivalent of a return statement. Also used internally by TaskSet. When raised within the task control flow of a TaskSet, but not inside a task, the execution should be handed over to the parent TaskSet. """ class RescheduleTaskImmediately(Exception): """ When raised in a User task, another User task will be rescheduled immediately (without calling wait_time first) """ class RPCError(Exception): """ Exception that shows bad or broken network. When raised from zmqrpc, RPC should be reestablished. """ class AuthCredentialsError(ValueError): """ Exception when the auth credentials provided are not in the correct format """ pass class RunnerAlreadyExistsError(Exception): pass locust-1.4.3/locust/html.py000066400000000000000000000051421400440205700156550ustar00rootroot00000000000000from jinja2 import Environment, FileSystemLoader import os import pathlib import datetime from itertools import chain from .stats import sort_stats def render_template(file, **kwargs): templates_path = os.path.join(pathlib.Path(__file__).parent.absolute(), "templates") env = Environment(loader=FileSystemLoader(templates_path), extensions=["jinja2.ext.do"]) template = env.get_template(file) return template.render(**kwargs) def get_html_report(environment, show_download_link=True): stats = environment.runner.stats start_ts = stats.start_time start_time = datetime.datetime.fromtimestamp(start_ts).strftime("%Y-%m-%d %H:%M:%S") end_ts = stats.last_request_timestamp if end_ts: end_time = datetime.datetime.fromtimestamp(end_ts).strftime("%Y-%m-%d %H:%M:%S") else: end_time = start_time host = None if environment.host: host = environment.host elif environment.runner.user_classes: all_hosts = set([l.host for l in environment.runner.user_classes]) if len(all_hosts) == 1: host = list(all_hosts)[0] requests_statistics = list(chain(sort_stats(stats.entries), [stats.total])) failures_statistics = sort_stats(stats.errors) exceptions_statistics = [] for exc in environment.runner.exceptions.values(): exc["nodes"] = ", ".join(exc["nodes"]) exceptions_statistics.append(exc) history = stats.history static_js = [] js_files = ["jquery-1.11.3.min.js", "echarts.common.min.js", "vintage.js", "chart.js"] for js_file in js_files: path = os.path.join(os.path.dirname(__file__), "static", js_file) static_js.append("// " + js_file) with open(path, encoding="utf8") as f: static_js.append(f.read()) static_js.extend(["", ""]) static_css = [] css_files = ["tables.css"] for css_file in css_files: path = os.path.join(os.path.dirname(__file__), "static", "css", css_file) static_css.append("/* " + css_file + " */") with open(path, encoding="utf8") as f: static_css.append(f.read()) static_css.extend(["", ""]) res = render_template( "report.html", int=int, round=round, requests_statistics=requests_statistics, failures_statistics=failures_statistics, exceptions_statistics=exceptions_statistics, start_time=start_time, end_time=end_time, host=host, history=history, static_js="\n".join(static_js), static_css="\n".join(static_css), show_download_link=show_download_link, ) return res locust-1.4.3/locust/input_events.py000066400000000000000000000056571400440205700174470ustar00rootroot00000000000000import gevent import logging import os import sys if os.name == "nt": from win32api import STD_INPUT_HANDLE from win32console import ( GetStdHandle, KEY_EVENT, ENABLE_ECHO_INPUT, ENABLE_LINE_INPUT, ENABLE_PROCESSED_INPUT, ) else: import select import termios import tty class InitError(Exception): pass class UnixKeyPoller: def __init__(self): if sys.stdin.isatty(): self.stdin = sys.stdin.fileno() self.tattr = termios.tcgetattr(self.stdin) tty.setcbreak(self.stdin, termios.TCSANOW) else: raise InitError("Terminal was not a tty. Keyboard input disabled") def cleanup(self): termios.tcsetattr(self.stdin, termios.TCSANOW, self.tattr) def poll(_self): dr, dw, de = select.select([sys.stdin], [], [], 0) if not dr == []: return sys.stdin.read(1) return None class WindowsKeyPoller: def __init__(self): if sys.stdin.isatty(): self.read_handle = GetStdHandle(STD_INPUT_HANDLE) self.read_handle.SetConsoleMode(ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT | ENABLE_PROCESSED_INPUT) self.cur_event_length = 0 self.cur_keys_length = 0 self.captured_chars = [] else: raise InitError("Terminal was not a tty. Keyboard input disabled") def cleanup(self): pass def poll(self): if self.captured_chars: return self.captured_chars.pop(0) events_peek = self.read_handle.PeekConsoleInput(10000) if not events_peek: return None if not len(events_peek) == self.cur_event_length: for cur_event in events_peek[self.cur_event_length :]: if cur_event.EventType == KEY_EVENT: if ord(cur_event.Char) and cur_event.KeyDown: cur_char = str(cur_event.Char) self.captured_chars.append(cur_char) self.cur_event_length = len(events_peek) if self.captured_chars: return self.captured_chars.pop(0) else: return None def get_poller(): if os.name == "nt": return WindowsKeyPoller() else: return UnixKeyPoller() def input_listener(key_to_func_map): def input_listener_func(): try: poller = get_poller() except InitError as e: logging.info(e) return try: while True: input = poller.poll() if input: for key in key_to_func_map: if input == key: key_to_func_map[key]() else: gevent.sleep(0.2) except Exception as e: logging.warning(f"Exception in keyboard input poller: {e}") finally: poller.cleanup() return input_listener_func locust-1.4.3/locust/log.py000066400000000000000000000045331400440205700154750ustar00rootroot00000000000000import logging import logging.config import socket HOSTNAME = socket.gethostname() # Global flag that we set to True if any unhandled exception occurs in a greenlet # Used by main.py to set the process return code to non-zero unhandled_greenlet_exception = False def setup_logging(loglevel, logfile=None): loglevel = loglevel.upper() LOGGING_CONFIG = { "version": 1, "disable_existing_loggers": False, "formatters": { "default": { "format": "[%(asctime)s] {0}/%(levelname)s/%(name)s: %(message)s".format(HOSTNAME), }, "plain": { "format": "%(message)s", }, }, "handlers": { "console": { "class": "logging.StreamHandler", "formatter": "default", }, "console_plain": { "class": "logging.StreamHandler", "formatter": "plain", }, }, "loggers": { "locust": { "handlers": ["console"], "level": loglevel, "propagate": False, }, "locust.stats_logger": { "handlers": ["console_plain"], "level": "INFO", "propagate": False, }, }, "root": { "handlers": ["console"], "level": loglevel, }, } if logfile: # if a file has been specified add a file logging handler and set # the locust and root loggers to use it LOGGING_CONFIG["handlers"]["file"] = { "class": "logging.FileHandler", "filename": logfile, "formatter": "default", } LOGGING_CONFIG["loggers"]["locust"]["handlers"] = ["file"] LOGGING_CONFIG["root"]["handlers"] = ["file"] logging.config.dictConfig(LOGGING_CONFIG) def greenlet_exception_logger(logger, level=logging.CRITICAL): """ Return a function that can be used as argument to Greenlet.link_exception() that will log the unhandled exception to the given logger. """ def exception_handler(greenlet): logger.log(level, "Unhandled exception in greenlet: %s", greenlet, exc_info=greenlet.exc_info) global unhandled_greenlet_exception unhandled_greenlet_exception = True return exception_handler locust-1.4.3/locust/main.py000066400000000000000000000400371400440205700156370ustar00rootroot00000000000000import inspect import logging import os import importlib import signal import socket import sys import time import gevent import locust from . import log from .argument_parser import parse_locustfile_option, parse_options from .env import Environment from .log import setup_logging, greenlet_exception_logger from . import stats from .stats import print_error_report, print_percentile_stats, print_stats, stats_printer, stats_history from .stats import StatsCSV, StatsCSVFileWriter from .user import User from .user.inspectuser import get_task_ratio_dict, print_task_ratio from .util.timespan import parse_timespan from .exception import AuthCredentialsError from .shape import LoadTestShape from .input_events import input_listener from .html import get_html_report version = locust.__version__ def is_user_class(item): """ Check if a variable is a runnable (non-abstract) User class """ return bool(inspect.isclass(item) and issubclass(item, User) and item.abstract is False) def is_shape_class(item): """ Check if a class is a LoadTestShape """ return bool( inspect.isclass(item) and issubclass(item, LoadTestShape) and item.__dict__["__module__"] != "locust.shape" ) def load_locustfile(path): """ Import given locustfile path and return (docstring, callables). Specifically, the locustfile's ``__doc__`` attribute (a string) and a dictionary of ``{'name': callable}`` containing all callables which pass the "is a Locust" test. """ # Start with making sure the current working dir is in the sys.path sys.path.insert(0, os.getcwd()) # Get directory and locustfile name directory, locustfile = os.path.split(path) # If the directory isn't in the PYTHONPATH, add it so our import will work added_to_path = False index = None if directory not in sys.path: sys.path.insert(0, directory) added_to_path = True # If the directory IS in the PYTHONPATH, move it to the front temporarily, # otherwise other locustfiles -- like Locusts's own -- may scoop the intended # one. else: i = sys.path.index(directory) if i != 0: # Store index for later restoration index = i # Add to front, then remove from original position sys.path.insert(0, directory) del sys.path[i + 1] # Perform the import source = importlib.machinery.SourceFileLoader(os.path.splitext(locustfile)[0], path) imported = source.load_module() # Remove directory from path if we added it ourselves (just to be neat) if added_to_path: del sys.path[0] # Put back in original index if we moved it if index is not None: sys.path.insert(index + 1, directory) del sys.path[0] # Return our two-tuple user_classes = {name: value for name, value in vars(imported).items() if is_user_class(value)} # Find shape class, if any, return it shape_classes = [value for name, value in vars(imported).items() if is_shape_class(value)] if shape_classes: shape_class = shape_classes[0]() else: shape_class = None return imported.__doc__, user_classes, shape_class def create_environment(user_classes, options, events=None, shape_class=None): """ Create an Environment instance from options """ return Environment( user_classes=user_classes, shape_class=shape_class, tags=options.tags, exclude_tags=options.exclude_tags, events=events, host=options.host, reset_stats=options.reset_stats, stop_timeout=options.stop_timeout, parsed_options=options, ) def main(): # find specified locustfile and make sure it exists, using a very simplified # command line parser that is only used to parse the -f option locustfile = parse_locustfile_option() # import the locustfile docstring, user_classes, shape_class = load_locustfile(locustfile) # parse all command line options options = parse_options() if options.headful: options.headless = False if options.slave or options.expect_slaves: sys.stderr.write("The --slave/--expect-slaves parameters have been renamed --worker/--expect-workers\n") sys.exit(1) if options.step_time or options.step_load or options.step_users or options.step_clients: sys.stderr.write( "The step load feature was removed in Locust 1.3. You can achieve similar results using a LoadTestShape class. See https://docs.locust.io/en/stable/generating-custom-load-shape.html\n" ) sys.exit(1) if options.hatch_rate: sys.stderr.write("[DEPRECATED] The --hatch-rate parameter has been renamed --spawn-rate\n") options.spawn_rate = options.hatch_rate # setup logging if not options.skip_log_setup: if options.loglevel.upper() in ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]: setup_logging(options.loglevel, options.logfile) else: sys.stderr.write("Invalid --loglevel. Valid values are: DEBUG/INFO/WARNING/ERROR/CRITICAL\n") sys.exit(1) logger = logging.getLogger(__name__) greenlet_exception_handler = greenlet_exception_logger(logger) if options.list_commands: print("Available Users:") for name in user_classes: print(" " + name) sys.exit(0) if not user_classes: logger.error("No User class found!") sys.exit(1) # make sure specified User exists if options.user_classes: missing = set(options.user_classes) - set(user_classes.keys()) if missing: logger.error("Unknown User(s): %s\n" % (", ".join(missing))) sys.exit(1) else: names = set(options.user_classes) & set(user_classes.keys()) user_classes = [user_classes[n] for n in names] else: # list() call is needed to consume the dict_view object in Python 3 user_classes = list(user_classes.values()) if os.name != "nt" and not options.master: try: import resource minimum_open_file_limit = 10000 current_open_file_limit = resource.getrlimit(resource.RLIMIT_NOFILE)[0] if current_open_file_limit < minimum_open_file_limit: # Increasing the limit to 10000 within a running process should work on at least MacOS. # It does not work on all OS:es, but we should be no worse off for trying. resource.setrlimit(resource.RLIMIT_NOFILE, [minimum_open_file_limit, resource.RLIM_INFINITY]) except BaseException: logger.warning( ( f"System open file limit '{current_open_file_limit}' is below minimum setting '{minimum_open_file_limit}'. " "It's not high enough for load testing, and the OS didn't allow locust to increase it by itself. " "See https://github.com/locustio/locust/wiki/Installation#increasing-maximum-number-of-open-files-limit for more info." ) ) # create locust Environment environment = create_environment(user_classes, options, events=locust.events, shape_class=shape_class) if shape_class and (options.num_users or options.spawn_rate): logger.warning( "The specified locustfile contains a shape class but a conflicting argument was specified: users or spawn-rate. Ignoring arguments" ) if options.show_task_ratio: print("\n Task ratio per User class") print("-" * 80) print_task_ratio(user_classes) print("\n Total task ratio") print("-" * 80) print_task_ratio(user_classes, total=True) sys.exit(0) if options.show_task_ratio_json: from json import dumps task_data = { "per_class": get_task_ratio_dict(user_classes), "total": get_task_ratio_dict(user_classes, total=True), } print(dumps(task_data)) sys.exit(0) if options.master: if options.worker: logger.error("The --master argument cannot be combined with --worker") sys.exit(-1) runner = environment.create_master_runner( master_bind_host=options.master_bind_host, master_bind_port=options.master_bind_port, ) elif options.worker: try: runner = environment.create_worker_runner(options.master_host, options.master_port) logger.debug("Connected to locust master: %s:%s", options.master_host, options.master_port) except socket.error as e: logger.error("Failed to connect to the Locust master: %s", e) sys.exit(-1) else: runner = environment.create_local_runner() # main_greenlet is pointing to runners.greenlet by default, it will point the web greenlet later if in web mode main_greenlet = runner.greenlet if options.run_time: if not options.headless: logger.error("The --run-time argument can only be used together with --headless") sys.exit(1) if options.worker: logger.error("--run-time should be specified on the master node, and not on worker nodes") sys.exit(1) try: options.run_time = parse_timespan(options.run_time) except ValueError: logger.error("Valid --run-time formats are: 20, 20s, 3m, 2h, 1h20m, 3h30m10s, etc.") sys.exit(1) if options.csv_prefix: stats_csv_writer = StatsCSVFileWriter( environment, stats.PERCENTILES_TO_REPORT, options.csv_prefix, options.stats_history_enabled ) else: stats_csv_writer = StatsCSV(environment, stats.PERCENTILES_TO_REPORT) # start Web UI if not options.headless and not options.worker: # spawn web greenlet protocol = "https" if options.tls_cert and options.tls_key else "http" try: if options.web_host == "*": # special check for "*" so that we're consistent with --master-bind-host web_host = "" else: web_host = options.web_host if web_host: logger.info("Starting web interface at %s://%s:%s" % (protocol, web_host, options.web_port)) else: logger.info( "Starting web interface at %s://0.0.0.0:%s (accepting connections from all network interfaces)" % (protocol, options.web_port) ) web_ui = environment.create_web_ui( host=web_host, port=options.web_port, auth_credentials=options.web_auth, tls_cert=options.tls_cert, tls_key=options.tls_key, stats_csv_writer=stats_csv_writer, delayed_start=True, ) except AuthCredentialsError: logger.error("Credentials supplied with --web-auth should have the format: username:password") sys.exit(1) else: web_ui = None # Fire locust init event which can be used by end-users' code to run setup code that # need access to the Environment, Runner or WebUI. environment.events.init.fire(environment=environment, runner=runner, web_ui=web_ui) if web_ui: web_ui.start() main_greenlet = web_ui.greenlet if options.headless: # headless mode if options.master: # wait for worker nodes to connect while len(runner.clients.ready) < options.expect_workers: logging.info( "Waiting for workers to be ready, %s of %s connected", len(runner.clients.ready), options.expect_workers, ) time.sleep(1) if not options.worker: # apply headless mode defaults if options.num_users is None: options.num_users = 1 if options.spawn_rate is None: options.spawn_rate = 1 # start the test if environment.shape_class: environment.runner.start_shape() else: runner.start(options.num_users, options.spawn_rate) def spawn_run_time_limit_greenlet(): def timelimit_stop(): logger.info("Time limit reached. Stopping Locust.") runner.quit() gevent.spawn_later(options.run_time, timelimit_stop).link_exception(greenlet_exception_handler) if options.run_time: logger.info("Run time limit set to %s seconds" % options.run_time) spawn_run_time_limit_greenlet() elif options.headless and not options.worker and not environment.shape_class: logger.info("No run time limit set, use CTRL+C to interrupt.") else: pass # dont log anything - not having a time limit is normal when not running headless input_listener_greenlet = None if not options.worker: # spawn input listener greenlet input_listener_greenlet = gevent.spawn( input_listener( { "w": lambda: runner.spawn_users(1, 100) if runner.state != "spawning" else logging.warning("Already spawning users, can't spawn more right now"), "W": lambda: runner.spawn_users(10, 100) if runner.state != "spawning" else logging.warning("Already spawning users, can't spawn more right now"), "s": lambda: runner.stop_users(1) if runner.state != "spawning" else logging.warning("Spawning users, can't stop right now"), "S": lambda: runner.stop_users(10) if runner.state != "spawning" else logging.warning("Spawning users, can't stop right now"), } ) ) input_listener_greenlet.link_exception(greenlet_exception_handler) stats_printer_greenlet = None if not options.only_summary and (options.print_stats or (options.headless and not options.worker)): # spawn stats printing greenlet stats_printer_greenlet = gevent.spawn(stats_printer(runner.stats)) stats_printer_greenlet.link_exception(greenlet_exception_handler) if options.csv_prefix: gevent.spawn(stats_csv_writer.stats_writer).link_exception(greenlet_exception_handler) gevent.spawn(stats_history, runner) def shutdown(): """ Shut down locust by firing quitting event, printing/writing stats and exiting """ logger.info("Running teardowns...") if input_listener_greenlet is not None: input_listener_greenlet.kill(block=False) environment.events.quitting.fire(environment=environment, reverse=True) # determine the process exit code if log.unhandled_greenlet_exception: code = 2 elif environment.process_exit_code is not None: code = environment.process_exit_code elif len(runner.errors) or len(runner.exceptions): code = options.exit_code_on_error else: code = 0 logger.info("Shutting down (exit code %s), bye." % code) if stats_printer_greenlet is not None: stats_printer_greenlet.kill(block=False) logger.info("Cleaning up runner...") if runner is not None: runner.quit() if not isinstance(runner, locust.runners.WorkerRunner): print_stats(runner.stats, current=False) print_percentile_stats(runner.stats) print_error_report(runner.stats) sys.exit(code) # install SIGTERM handler def sig_term_handler(): logger.info("Got SIGTERM signal") shutdown() gevent.signal_handler(signal.SIGTERM, sig_term_handler) try: logger.info("Starting Locust %s" % version) main_greenlet.join() if options.html_file: html_report = get_html_report(environment, show_download_link=False) with open(options.html_file, "w", encoding="utf-8") as file: file.write(html_report) shutdown() except KeyboardInterrupt: shutdown() locust-1.4.3/locust/rpc/000077500000000000000000000000001400440205700151215ustar00rootroot00000000000000locust-1.4.3/locust/rpc/__init__.py000066400000000000000000000000721400440205700172310ustar00rootroot00000000000000from . import zmqrpc as rpc from .protocol import Message locust-1.4.3/locust/rpc/protocol.py000066400000000000000000000007571400440205700173450ustar00rootroot00000000000000import msgpack class Message: def __init__(self, message_type, data, node_id): self.type = message_type self.data = data self.node_id = node_id def __repr__(self): return "" % (self.type, self.node_id) def serialize(self): return msgpack.dumps((self.type, self.data, self.node_id)) @classmethod def unserialize(cls, data): msg = cls(*msgpack.loads(data, raw=False, strict_map_key=False)) return msg locust-1.4.3/locust/rpc/zmqrpc.py000066400000000000000000000044701400440205700170140ustar00rootroot00000000000000import zmq.green as zmq from .protocol import Message from locust.util.exception_handler import retry from locust.exception import RPCError import zmq.error as zmqerr import msgpack.exceptions as msgerr class BaseSocket: def __init__(self, sock_type): context = zmq.Context() self.socket = context.socket(sock_type) self.socket.setsockopt(zmq.TCP_KEEPALIVE, 1) self.socket.setsockopt(zmq.TCP_KEEPALIVE_IDLE, 30) @retry() def send(self, msg): try: self.socket.send(msg.serialize(), zmq.NOBLOCK) except zmqerr.ZMQError as e: raise RPCError("ZMQ sent failure") from e @retry() def send_to_client(self, msg): try: self.socket.send_multipart([msg.node_id.encode(), msg.serialize()]) except zmqerr.ZMQError as e: raise RPCError("ZMQ sent failure") from e def recv(self): try: data = self.socket.recv() msg = Message.unserialize(data) except msgerr.ExtraData as e: raise RPCError("ZMQ interrupted message") from e except zmqerr.ZMQError as e: raise RPCError("ZMQ network broken") from e return msg def recv_from_client(self): try: data = self.socket.recv_multipart() addr = data[0].decode() msg = Message.unserialize(data[1]) except (UnicodeDecodeError, msgerr.ExtraData) as e: raise RPCError("ZMQ interrupted message") from e except zmqerr.ZMQError as e: raise RPCError("ZMQ network broken") from e return addr, msg def close(self): self.socket.close() class Server(BaseSocket): def __init__(self, host, port): BaseSocket.__init__(self, zmq.ROUTER) if port == 0: self.port = self.socket.bind_to_random_port("tcp://%s" % host) else: try: self.socket.bind("tcp://%s:%i" % (host, port)) self.port = port except zmqerr.ZMQError as e: raise RPCError("Socket bind failure: %s" % (e)) class Client(BaseSocket): def __init__(self, host, port, identity): BaseSocket.__init__(self, zmq.DEALER) self.socket.setsockopt(zmq.IDENTITY, identity.encode()) self.socket.connect("tcp://%s:%i" % (host, port)) locust-1.4.3/locust/runners.py000066400000000000000000001031751400440205700164120ustar00rootroot00000000000000# -*- coding: utf-8 -*- import logging import random import socket import sys import traceback import warnings from uuid import uuid4 from time import time import gevent import greenlet import psutil from gevent.pool import Group from . import User from .log import greenlet_exception_logger from .rpc import Message, rpc from .stats import RequestStats, setup_distributed_stats_event_listeners from .exception import RPCError from .user.task import LOCUST_STATE_STOPPING logger = logging.getLogger(__name__) STATE_INIT, STATE_SPAWNING, STATE_RUNNING, STATE_CLEANUP, STATE_STOPPING, STATE_STOPPED, STATE_MISSING = [ "ready", "spawning", "running", "cleanup", "stopping", "stopped", "missing", ] WORKER_REPORT_INTERVAL = 3.0 CPU_MONITOR_INTERVAL = 5.0 HEARTBEAT_INTERVAL = 1 HEARTBEAT_LIVENESS = 3 FALLBACK_INTERVAL = 5 greenlet_exception_handler = greenlet_exception_logger(logger) class Runner: """ Orchestrates the load test by starting and stopping the users. Use one of the :meth:`create_local_runner `, :meth:`create_master_runner ` or :meth:`create_worker_runner ` methods on the :class:`Environment ` instance to create a runner of the desired type. """ def __init__(self, environment): self.environment = environment self.user_greenlets = Group() self.greenlet = Group() self.state = STATE_INIT self.spawning_greenlet = None self.shape_greenlet = None self.shape_last_state = None self.current_cpu_usage = 0 self.cpu_warning_emitted = False self.greenlet.spawn(self.monitor_cpu).link_exception(greenlet_exception_handler) self.exceptions = {} self.target_user_count = None # set up event listeners for recording requests def on_request_success(request_type, name, response_time, response_length, **kwargs): self.stats.log_request(request_type, name, response_time, response_length) def on_request_failure(request_type, name, response_time, response_length, exception, **kwargs): self.stats.log_request(request_type, name, response_time, response_length) self.stats.log_error(request_type, name, exception) self.environment.events.request_success.add_listener(on_request_success) self.environment.events.request_failure.add_listener(on_request_failure) self.connection_broken = False # register listener that resets stats when spawning is complete def on_spawning_complete(user_count): self.update_state(STATE_RUNNING) if environment.reset_stats: logger.info("Resetting stats\n") self.stats.reset_all() self.environment.events.spawning_complete.add_listener(on_spawning_complete) def __del__(self): # don't leave any stray greenlets if runner is removed if self.greenlet and len(self.greenlet) > 0: self.greenlet.kill(block=False) @property def user_classes(self): return self.environment.user_classes @property def stats(self) -> RequestStats: return self.environment.stats @property def errors(self): return self.stats.errors @property def user_count(self): """ :returns: Number of currently running users """ return len(self.user_greenlets) def update_state(self, new_state): """ Updates the current state """ # I (cyberwiz) commented out this logging, because it is too noisy even for debug level # Uncomment it if you are specifically debugging state transitions # logger.debug("Updating state to '%s', old state was '%s'" % (new_state, self.state)) self.state = new_state def cpu_log_warning(self): """Called at the end of the test to repeat the warning & return the status""" if self.cpu_warning_emitted: logger.warning( "CPU usage was too high at some point during the test! See https://docs.locust.io/en/stable/running-locust-distributed.html for how to distribute the load over multiple CPU cores or machines" ) return True return False def weight_users(self, amount): """ Distributes the amount of users for each WebLocust-class according to it's weight returns a list "bucket" with the weighted users """ bucket = [] weight_sum = sum([user.weight for user in self.user_classes]) residuals = {} for user in self.user_classes: if self.environment.host is not None: user.host = self.environment.host # create users depending on weight percent = user.weight / float(weight_sum) num_users = int(round(amount * percent)) bucket.extend([user for x in range(num_users)]) # used to keep track of the amount of rounding was done if we need # to add/remove some instances from bucket residuals[user] = amount * percent - round(amount * percent) if len(bucket) < amount: # We got too few User classes in the bucket, so we need to create a few extra users, # and we do this by iterating over each of the User classes - starting with the one # where the residual from the rounding was the largest - and creating one of each until # we get the correct amount for user in [l for l, r in sorted(residuals.items(), key=lambda x: x[1], reverse=True)][ : amount - len(bucket) ]: bucket.append(user) elif len(bucket) > amount: # We've got too many users due to rounding errors so we need to remove some for user in [l for l, r in sorted(residuals.items(), key=lambda x: x[1])][: len(bucket) - amount]: bucket.remove(user) return bucket def spawn_users(self, spawn_count, spawn_rate, wait=False): bucket = self.weight_users(spawn_count) spawn_count = len(bucket) if self.state == STATE_INIT or self.state == STATE_STOPPED: self.update_state(STATE_SPAWNING) existing_count = len(self.user_greenlets) logger.info( "Spawning %i users at the rate %g users/s (%i users already running)..." % (spawn_count, spawn_rate, existing_count) ) occurrence_count = dict([(l.__name__, 0) for l in self.user_classes]) def spawn(): sleep_time = 1.0 / spawn_rate while True: if not bucket: logger.info( "All users spawned: %s (%i total running)" % ( ", ".join(["%s: %d" % (name, count) for name, count in occurrence_count.items()]), len(self.user_greenlets), ) ) self.environment.events.spawning_complete.fire(user_count=len(self.user_greenlets)) return user_class = bucket.pop(random.randint(0, len(bucket) - 1)) occurrence_count[user_class.__name__] += 1 new_user = user_class(self.environment) new_user.start(self.user_greenlets) if len(self.user_greenlets) % 10 == 0: logger.debug("%i users spawned" % len(self.user_greenlets)) if bucket: gevent.sleep(sleep_time) spawn() if wait: self.user_greenlets.join() logger.info("All users stopped\n") def stop_users(self, user_count, stop_rate=None): """ Stop `user_count` weighted users at a rate of `stop_rate` """ if user_count == 0 or stop_rate == 0: return bucket = self.weight_users(user_count) user_count = len(bucket) to_stop = [] for g in self.user_greenlets: for l in bucket: user = g.args[0] if isinstance(user, l): to_stop.append(user) bucket.remove(l) break if not to_stop: return if stop_rate is None or stop_rate >= user_count: sleep_time = 0 logger.info("Stopping %i users" % (user_count)) else: sleep_time = 1.0 / stop_rate logger.info("Stopping %i users at rate of %g users/s" % (user_count, stop_rate)) async_calls_to_stop = Group() stop_group = Group() while True: user_to_stop: User = to_stop.pop(random.randint(0, len(to_stop) - 1)) logger.debug("Stopping %s" % user_to_stop._greenlet.name) if user_to_stop._greenlet is greenlet.getcurrent(): # User called runner.quit(), so dont block waiting for killing to finish" user_to_stop._group.killone(user_to_stop._greenlet, block=False) elif self.environment.stop_timeout: async_calls_to_stop.add(gevent.spawn_later(0, User.stop, user_to_stop, force=False)) stop_group.add(user_to_stop._greenlet) else: async_calls_to_stop.add(gevent.spawn_later(0, User.stop, user_to_stop, force=True)) if to_stop: gevent.sleep(sleep_time) else: break async_calls_to_stop.join() if not stop_group.join(timeout=self.environment.stop_timeout): logger.info( "Not all users finished their tasks & terminated in %s seconds. Stopping them..." % self.environment.stop_timeout ) stop_group.kill(block=True) logger.info("%i Users have been stopped, %g still running" % (user_count, len(self.user_greenlets))) def monitor_cpu(self): process = psutil.Process() while True: self.current_cpu_usage = process.cpu_percent() if self.current_cpu_usage > 90 and not self.cpu_warning_emitted: logging.warning( "CPU usage above 90%! This may constrain your throughput and may even give inconsistent response time measurements! See https://docs.locust.io/en/stable/running-locust-distributed.html for how to distribute the load over multiple CPU cores or machines" ) self.cpu_warning_emitted = True gevent.sleep(CPU_MONITOR_INTERVAL) def start(self, user_count, spawn_rate, wait=False): """ Start running a load test :param user_count: Total number of users to start :param spawn_rate: Number of users to spawn per second :param wait: If True calls to this method will block until all users are spawned. If False (the default), a greenlet that spawns the users will be started and the call to this method will return immediately. """ if self.state != STATE_RUNNING and self.state != STATE_SPAWNING: self.stats.clear_all() self.exceptions = {} self.cpu_warning_emitted = False self.worker_cpu_warning_emitted = False self.target_user_count = user_count if self.state != STATE_INIT and self.state != STATE_STOPPED: logger.debug( "Updating running test with %d users, %.2f spawn rate and wait=%r" % (user_count, spawn_rate, wait) ) self.update_state(STATE_SPAWNING) if self.user_count > user_count: # Stop some users stop_count = self.user_count - user_count self.stop_users(stop_count, spawn_rate) elif self.user_count < user_count: # Spawn some users spawn_count = user_count - self.user_count self.spawn_users(spawn_count=spawn_count, spawn_rate=spawn_rate) else: self.environment.events.spawning_complete.fire(user_count=self.user_count) else: self.spawn_rate = spawn_rate self.spawn_users(user_count, spawn_rate=spawn_rate, wait=wait) def start_shape(self): if self.shape_greenlet: logger.info("There is an ongoing shape test running. Editing is disabled") return logger.info("Shape test starting. User count and spawn rate are ignored for this type of load test") self.update_state(STATE_INIT) self.shape_greenlet = self.greenlet.spawn(self.shape_worker) self.shape_greenlet.link_exception(greenlet_exception_handler) self.environment.shape_class.reset_time() def shape_worker(self): logger.info("Shape worker starting") while self.state == STATE_INIT or self.state == STATE_SPAWNING or self.state == STATE_RUNNING: new_state = self.environment.shape_class.tick() if new_state is None: logger.info("Shape test stopping") if self.environment.parsed_options and self.environment.parsed_options.headless: self.quit() else: self.stop() elif self.shape_last_state == new_state: gevent.sleep(1) else: user_count, spawn_rate = new_state logger.info("Shape test updating to %d users at %.2f spawn rate" % (user_count, spawn_rate)) self.start(user_count=user_count, spawn_rate=spawn_rate) self.shape_last_state = new_state def stop(self): """ Stop a running load test by stopping all running users """ logger.debug("Stopping all users") self.update_state(STATE_CLEANUP) # if we are currently spawning users we need to kill the spawning greenlet first if self.spawning_greenlet and not self.spawning_greenlet.ready(): self.spawning_greenlet.kill(block=True) self.stop_users(self.user_count) self.update_state(STATE_STOPPED) self.cpu_log_warning() def quit(self): """ Stop any running load test and kill all greenlets for the runner """ self.stop() self.greenlet.kill(block=True) def log_exception(self, node_id, msg, formatted_tb): key = hash(formatted_tb) row = self.exceptions.setdefault(key, {"count": 0, "msg": msg, "traceback": formatted_tb, "nodes": set()}) row["count"] += 1 row["nodes"].add(node_id) self.exceptions[key] = row class LocalRunner(Runner): """ Runner for running single process load test """ def __init__(self, environment): """ :param environment: Environment instance """ super().__init__(environment) # register listener thats logs the exception for the local runner def on_user_error(user_instance, exception, tb): formatted_tb = "".join(traceback.format_tb(tb)) self.log_exception("local", str(exception), formatted_tb) self.environment.events.user_error.add_listener(on_user_error) def start(self, user_count, spawn_rate, wait=False): self.target_user_count = user_count if spawn_rate > 100: logger.warning( "Your selected spawn rate is very high (>100), and this is known to sometimes cause issues. Do you really need to ramp up that fast?" ) if self.state != STATE_RUNNING and self.state != STATE_SPAWNING: # if we're not already running we'll fire the test_start event self.environment.events.test_start.fire(environment=self.environment) if self.spawning_greenlet: # kill existing spawning_greenlet before we start a new one self.spawning_greenlet.kill(block=True) self.spawning_greenlet = self.greenlet.spawn( lambda: super(LocalRunner, self).start(user_count, spawn_rate, wait=wait) ) self.spawning_greenlet.link_exception(greenlet_exception_handler) def stop(self): if self.state == STATE_STOPPED: return super().stop() self.environment.events.test_stop.fire(environment=self.environment) class DistributedRunner(Runner): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) setup_distributed_stats_event_listeners(self.environment.events, self.stats) class WorkerNode: def __init__(self, id, state=STATE_INIT, heartbeat_liveness=HEARTBEAT_LIVENESS): self.id = id self.state = state self.user_count = 0 self.heartbeat = heartbeat_liveness self.cpu_usage = 0 self.cpu_warning_emitted = False class MasterRunner(DistributedRunner): """ Runner used to run distributed load tests across multiple processes and/or machines. MasterRunner doesn't spawn any user greenlets itself. Instead it expects :class:`WorkerRunners ` to connect to it, which it will then direct to start and stop user greenlets. Stats sent back from the :class:`WorkerRunners ` will aggregated. """ def __init__(self, environment, master_bind_host, master_bind_port): """ :param environment: Environment instance :param master_bind_host: Host/interface to use for incoming worker connections :param master_bind_port: Port to use for incoming worker connections """ super().__init__(environment) self.worker_cpu_warning_emitted = False self.master_bind_host = master_bind_host self.master_bind_port = master_bind_port class WorkerNodesDict(dict): def get_by_state(self, state): return [c for c in self.values() if c.state == state] @property def all(self): return self.values() @property def ready(self): return self.get_by_state(STATE_INIT) @property def spawning(self): return self.get_by_state(STATE_SPAWNING) @property def running(self): return self.get_by_state(STATE_RUNNING) @property def missing(self): return self.get_by_state(STATE_MISSING) self.clients = WorkerNodesDict() try: self.server = rpc.Server(master_bind_host, master_bind_port) except RPCError as e: if e.args[0] == "Socket bind failure: Address already in use": port_string = master_bind_host + ":" + master_bind_port if master_bind_host != "*" else master_bind_port logger.error( f"The Locust master port ({port_string}) was busy. Close any applications using that port - perhaps an old instance of Locust master is still running? ({e.args[0]})" ) sys.exit(1) else: raise self.greenlet.spawn(self.heartbeat_worker).link_exception(greenlet_exception_handler) self.greenlet.spawn(self.client_listener).link_exception(greenlet_exception_handler) # listener that gathers info on how many users the worker has spawned def on_worker_report(client_id, data): if client_id not in self.clients: logger.info("Discarded report from unrecognized worker %s", client_id) return self.clients[client_id].user_count = data["user_count"] self.environment.events.worker_report.add_listener(on_worker_report) # register listener that sends quit message to worker nodes def on_quitting(environment, **kw): self.quit() self.environment.events.quitting.add_listener(on_quitting) @property def user_count(self): return sum([c.user_count for c in self.clients.values()]) def cpu_log_warning(self): warning_emitted = Runner.cpu_log_warning(self) if self.worker_cpu_warning_emitted: logger.warning("CPU usage threshold was exceeded on workers during the test!") warning_emitted = True return warning_emitted def start(self, user_count, spawn_rate): self.target_user_count = user_count num_workers = len(self.clients.ready) + len(self.clients.running) + len(self.clients.spawning) if not num_workers: logger.warning( "You are running in distributed mode but have no worker servers connected. " "Please connect workers prior to swarming." ) return self.spawn_rate = spawn_rate worker_num_users = user_count // (num_workers or 1) worker_spawn_rate = float(spawn_rate) / (num_workers or 1) remaining = user_count % num_workers logger.info( "Sending spawn jobs of %d users and %.2f spawn rate to %d ready clients" % (worker_num_users, worker_spawn_rate, num_workers) ) if worker_spawn_rate > 100: logger.warning( "Your selected spawn rate is very high (>100/worker), and this is known to sometimes cause issues. Do you really need to ramp up that fast?" ) if self.state != STATE_RUNNING and self.state != STATE_SPAWNING: self.stats.clear_all() self.exceptions = {} self.environment.events.test_start.fire(environment=self.environment) for client in self.clients.ready + self.clients.running + self.clients.spawning: data = { "spawn_rate": worker_spawn_rate, "num_users": worker_num_users, "host": self.environment.host, "stop_timeout": self.environment.stop_timeout, } if remaining > 0: data["num_users"] += 1 remaining -= 1 logger.debug("Sending spawn message to client %s" % (client.id)) self.server.send_to_client(Message("spawn", data, client.id)) self.update_state(STATE_SPAWNING) def stop(self): if self.state not in [STATE_INIT, STATE_STOPPED, STATE_STOPPING]: logger.debug("Stopping...") self.update_state(STATE_STOPPING) if self.environment.shape_class: self.shape_last_state = None for client in self.clients.all: logger.debug("Sending stop message to client %s" % (client.id)) self.server.send_to_client(Message("stop", None, client.id)) self.environment.events.test_stop.fire(environment=self.environment) def quit(self): self.stop() logger.debug("Quitting...") for client in self.clients.all: logger.debug("Sending quit message to client %s" % (client.id)) self.server.send_to_client(Message("quit", None, client.id)) gevent.sleep(0.5) # wait for final stats report from all workers self.greenlet.kill(block=True) def check_stopped(self): if ( not self.state == STATE_INIT and not self.state == STATE_STOPPED and all(map(lambda x: x.state != STATE_RUNNING and x.state != STATE_SPAWNING, self.clients.all)) ): self.update_state(STATE_STOPPED) def heartbeat_worker(self): while True: gevent.sleep(HEARTBEAT_INTERVAL) if self.connection_broken: self.reset_connection() continue for client in self.clients.all: if client.heartbeat < 0 and client.state != STATE_MISSING: logger.info("Worker %s failed to send heartbeat, setting state to missing." % str(client.id)) client.state = STATE_MISSING client.user_count = 0 if self.worker_count - len(self.clients.missing) <= 0: logger.info("The last worker went missing, stopping test.") self.stop() self.check_stopped() else: client.heartbeat -= 1 def reset_connection(self): logger.info("Reset connection to worker") try: self.server.close() self.server = rpc.Server(self.master_bind_host, self.master_bind_port) except RPCError as e: logger.error("Temporary failure when resetting connection: %s, will retry later." % (e)) def client_listener(self): while True: try: client_id, msg = self.server.recv_from_client() except RPCError as e: logger.error("RPCError found when receiving from client: %s" % (e)) self.connection_broken = True gevent.sleep(FALLBACK_INTERVAL) continue self.connection_broken = False msg.node_id = client_id if msg.type == "client_ready": id = msg.node_id self.clients[id] = WorkerNode(id, heartbeat_liveness=HEARTBEAT_LIVENESS) logger.info( "Client %r reported as ready. Currently %i clients ready to swarm." % (id, len(self.clients.ready + self.clients.running + self.clients.spawning)) ) if self.state == STATE_RUNNING or self.state == STATE_SPAWNING: # balance the load distribution when new client joins self.start(self.target_user_count, self.spawn_rate) # emit a warning if the worker's clock seem to be out of sync with our clock # if abs(time() - msg.data["time"]) > 5.0: # warnings.warn("The worker node's clock seem to be out of sync. For the statistics to be correct the different locust servers need to have synchronized clocks.") elif msg.type == "client_stopped": del self.clients[msg.node_id] logger.info("Removing %s client from running clients" % (msg.node_id)) elif msg.type == "heartbeat": if msg.node_id in self.clients: c = self.clients[msg.node_id] c.heartbeat = HEARTBEAT_LIVENESS c.state = msg.data["state"] c.cpu_usage = msg.data["current_cpu_usage"] if not c.cpu_warning_emitted and c.cpu_usage > 90: self.worker_cpu_warning_emitted = True # used to fail the test in the end c.cpu_warning_emitted = True # used to suppress logging for this node logger.warning( "Worker %s exceeded cpu threshold (will only log this once per worker)" % (msg.node_id) ) elif msg.type == "stats": self.environment.events.worker_report.fire(client_id=msg.node_id, data=msg.data) elif msg.type == "spawning": self.clients[msg.node_id].state = STATE_SPAWNING elif msg.type == "spawning_complete": self.clients[msg.node_id].state = STATE_RUNNING self.clients[msg.node_id].user_count = msg.data["count"] if len(self.clients.spawning) == 0: count = sum(c.user_count for c in self.clients.values()) self.environment.events.spawning_complete.fire(user_count=count) elif msg.type == "quit": if msg.node_id in self.clients: del self.clients[msg.node_id] logger.info( "Client %r quit. Currently %i clients connected." % (msg.node_id, len(self.clients.ready)) ) if self.worker_count - len(self.clients.missing) <= 0: logger.info("The last worker quit, stopping test.") self.stop() if self.environment.parsed_options and self.environment.parsed_options.headless: self.quit() elif msg.type == "exception": self.log_exception(msg.node_id, msg.data["msg"], msg.data["traceback"]) self.check_stopped() @property def worker_count(self): return len(self.clients.ready) + len(self.clients.spawning) + len(self.clients.running) class WorkerRunner(DistributedRunner): """ Runner used to run distributed load tests across multiple processes and/or machines. WorkerRunner connects to a :class:`MasterRunner` from which it'll receive instructions to start and stop user greenlets. The WorkerRunner will periodically take the stats generated by the running users and send back to the :class:`MasterRunner`. """ def __init__(self, environment, master_host, master_port): """ :param environment: Environment instance :param master_host: Host/IP to use for connection to the master :param master_port: Port to use for connecting to the master """ super().__init__(environment) self.worker_state = STATE_INIT self.client_id = socket.gethostname() + "_" + uuid4().hex self.master_host = master_host self.master_port = master_port self.client = rpc.Client(master_host, master_port, self.client_id) self.greenlet.spawn(self.heartbeat).link_exception(greenlet_exception_handler) self.greenlet.spawn(self.worker).link_exception(greenlet_exception_handler) self.client.send(Message("client_ready", None, self.client_id)) self.greenlet.spawn(self.stats_reporter).link_exception(greenlet_exception_handler) # register listener for when all users have spawned, and report it to the master node def on_spawning_complete(user_count): self.client.send(Message("spawning_complete", {"count": user_count}, self.client_id)) self.worker_state = STATE_RUNNING self.environment.events.spawning_complete.add_listener(on_spawning_complete) # register listener that adds the current number of spawned users to the report that is sent to the master node def on_report_to_master(client_id, data): data["user_count"] = self.user_count self.environment.events.report_to_master.add_listener(on_report_to_master) # register listener that sends quit message to master def on_quitting(environment, **kw): self.client.send(Message("quit", None, self.client_id)) self.environment.events.quitting.add_listener(on_quitting) # register listener thats sends user exceptions to master def on_user_error(user_instance, exception, tb): formatted_tb = "".join(traceback.format_tb(tb)) self.client.send(Message("exception", {"msg": str(exception), "traceback": formatted_tb}, self.client_id)) self.environment.events.user_error.add_listener(on_user_error) def heartbeat(self): while True: try: self.client.send( Message( "heartbeat", {"state": self.worker_state, "current_cpu_usage": self.current_cpu_usage}, self.client_id, ) ) except RPCError as e: logger.error("RPCError found when sending heartbeat: %s" % (e)) self.reset_connection() gevent.sleep(HEARTBEAT_INTERVAL) def reset_connection(self): logger.info("Reset connection to master") try: self.client.close() self.client = rpc.Client(self.master_host, self.master_port, self.client_id) except RPCError as e: logger.error("Temporary failure when resetting connection: %s, will retry later." % (e)) def worker(self): while True: try: msg = self.client.recv() except RPCError as e: logger.error("RPCError found when receiving from master: %s" % (e)) continue if msg.type == "spawn": self.worker_state = STATE_SPAWNING self.client.send(Message("spawning", None, self.client_id)) job = msg.data self.spawn_rate = job["spawn_rate"] self.target_user_count = job["num_users"] self.environment.host = job["host"] self.environment.stop_timeout = job["stop_timeout"] if self.spawning_greenlet: # kill existing spawning greenlet before we launch new one self.spawning_greenlet.kill(block=True) self.spawning_greenlet = self.greenlet.spawn( lambda: self.start(user_count=job["num_users"], spawn_rate=job["spawn_rate"]) ) self.spawning_greenlet.link_exception(greenlet_exception_handler) elif msg.type == "stop": self.stop() self.client.send(Message("client_stopped", None, self.client_id)) self.client.send(Message("client_ready", None, self.client_id)) self.worker_state = STATE_INIT elif msg.type == "quit": logger.info("Got quit message from master, shutting down...") self.stop() self._send_stats() # send a final report, in case there were any samples not yet reported self.greenlet.kill(block=True) def stats_reporter(self): while True: try: self._send_stats() except RPCError as e: logger.error("Temporary connection lost to master server: %s, will retry later." % (e)) gevent.sleep(WORKER_REPORT_INTERVAL) def _send_stats(self): data = {} self.environment.events.report_to_master.fire(client_id=self.client_id, data=data) self.client.send(Message("stats", data, self.client_id)) locust-1.4.3/locust/shape.py000066400000000000000000000016461400440205700160160ustar00rootroot00000000000000import time from typing import Optional, Tuple class LoadTestShape: """ A simple load test shape class used to control the shape of load generated during a load test. """ def __init__(self): self.start_time = time.monotonic() def reset_time(self): """ Resets start time back to 0 """ self.start_time = time.monotonic() def get_run_time(self): """ Calculates run time in seconds of the load test """ return time.monotonic() - self.start_time def tick(self) -> Optional[Tuple[int, float]]: """ Returns a tuple with 2 elements to control the running load test: user_count -- Total user count spawn_rate -- Number of users to start/stop per second when changing number of users If `None` is returned then the running load test will be stopped. """ return None locust-1.4.3/locust/static/000077500000000000000000000000001400440205700156245ustar00rootroot00000000000000locust-1.4.3/locust/static/chart.js000066400000000000000000000107551400440205700172730ustar00rootroot00000000000000(function() { class LocustLineChart { /** * lines should be an array of line names */ constructor(container, title, lines, unit, colors) { this.container = $(container); this.title = title; this.lines = lines; this.element = $('
    ').css("width", "100%").appendTo(container); this.data = []; this.dates = []; var seriesData = []; for (var i=0; i 0 && params.some(param => !!param.value)) { var str = params[0].name; for (var i=0; i' + param.seriesName + ': ' + param.data.value + ''; } if(param.data.users != undefined){ str += '
    Users: ' + param.data.users + ''; } return str; } else { return "No data"; } }, axisPointer: { animation: true }, textStyle: { color: '#b3c3bc', fontSize: 13, }, backgroundColor: 'rgba(21,35,28, 0.93)', borderWidth: 0, extraCssText: "z-index:1;", }, xAxis: { type: 'category', splitLine: { show: false }, axisLine: { lineStyle: { color: '#5b6f66', }, }, data: this.dates, }, yAxis: { type: 'value', boundaryGap: [0, '5%'], splitLine: { show: false }, axisLine: { lineStyle: { color: '#5b6f66', }, }, }, series: seriesData, grid: {x:60, y:70, x2:40, y2:40}, color: colors, toolbox: { feature: { saveAsImage: { name: this.title.replace(/\s+/g, '_').toLowerCase() + '_' + Date.parse(new Date()) / 1000, title: "Download as PNG" } } } }) } addValue(values, user_count=0) { this.dates.push(new Date().toLocaleTimeString()); var seriesData = []; for (var i=0; i li { display: block; float: left; font-size: 16px; } .main nav.menu ul.tabs > li a { padding: 14px 10px; display: inline-block; color: #b3c3bc; position: relative; font-weight: 600; font-size: 14px; } .main nav.menu ul.tabs > li a:hover { background: #10211a; } .main nav.menu ul.tabs > li a.current { color: #fff; } .main nav.menu ul.tabs > li a.current:after { content: ""; display: block; position: absolute; left: 0; bottom: 0; right: 0; height: 3px; background: #fff; } .main .panes { margin-top: 30px; } .main .panes > div { overflow: hidden; } .main #errors td, .main #errors th { text-align: left; } .main #errors td th.error_count, .main #errors th th.error_count { width: 70px; } .main #exceptions th.exception_occurrences { width: 110px; text-align: center; } .main #exceptions th.exception_traceback { text-align: left; } .main #exceptions td.occurrences { text-align: center; } .main #exceptions td.traceback { font-size: 12px; line-height: 18px; font-family: monospace; white-space: pre; } .main #charts { width: 100%; } .main #charts .chart { height: 350px; margin-bottom: 30px; box-sizing: border-box; border: 1px solid #11271e; border-radius: 3px; } .main #charts .note { color: #b3c3bc; margin-bottom: 30px; border-radius: 3px; background: #132b21; padding: 10px; display: inline-block; } .about { width: 398px; position: absolute; left: 50%; top: 5px; margin-left: -169px; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border: 3px solid #eee; background: #132b21; box-shadow: 0 0 60px rgba(0, 0, 0, 0.3); z-index: 1; } .about a.close_link { position: absolute; right: 10px; top: 10px; } .about .padder { padding: 30px; padding-top: 0px; } .footer { position: absolute; bottom: 0; padding: 12px 0; background: #132b21; width: 100%; text-align: right; box-sizing: border-box; height: 40px; } .footer a { margin-right: 10px; color: #48a584; } /*# sourceMappingURL=application.css.map */ locust-1.4.3/locust/static/css/application.css.map000066400000000000000000000150051400440205700222060ustar00rootroot00000000000000{ "version": 3, "mappings": "AAAA,IAAI;EACA,MAAM,EAAE,IAAI;;AAEhB,IAAI;EACA,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,4BAA4B;EACzC,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,UAAU;EACtB,UAAU,EAAE,IAAI;EAChB,sBAAsB,EAAE,WAAW;;AAEvC,EAAE;EACE,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;;AAEpB,CAAC;EACG,KAAK,EAAE,OAAO;EACd,eAAe,EAAE,IAAI;EACrB,OAAO;IACH,KAAK,EAAE,OAAO;;ACxBtB,WAAW;EACP,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,cAAc,EAAE,CAAC;EACjB,aAAa,EAAE,IAAI;EAEnB,iBAAK;IAED,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,OAAO;IAEd,oBAAE;MACE,UAAU,EAAE,OAAO;MACnB,oCAAiB;QACb,UAAU,EAAE,OAAO;MACvB,0BAAO;QACH,UAAU,EAAE,OAAO;IAC3B,oBAAE;MACE,WAAW,EAAE,IAAI;MACjB,MAAM,EAAE,OAAO;MACf,2BAAQ;QACJ,WAAW,EAAE,MAAM;MACvB,kCAAe;QACX,MAAM,EAAE,OAAO;EAEvB,oBAAO;IACH,UAAU,EAAE,OAAO;EAEvB,oCAAM;IACF,OAAO,EAAE,IAAI;IACb,MAAM,EAAE,CAAC;IACT,UAAU,EAAE,IAAI;IAEhB,4DAAa;MACT,YAAY,EAAE,IAAI;IACtB,0DAAY;MACR,aAAa,EAAE,IAAI;IAEvB,oDAAS;MACL,UAAU,EAAE,KAAK;EACzB,iBAAE;IACE,SAAS,EAAE,KAAK;IAChB,QAAQ,EAAE,MAAM;IAChB,SAAS,EAAE,UAAU;IACrB,WAAW,EAAE,OAAO;IACpB,aAAa,EAAE,QAAQ;IChDjC,0BAA8B;MD2CxB,iBAAE;QAOM,SAAS,EAAE,KAAK;EAExB,8BAAiB;IACb,UAAU,EAAE,OAAO;IACnB,oCAAO;MACH,UAAU,EAAE,OAAO;EAC3B,oBAAO;IACH,UAAU,EAAE,OAAO;IACnB,uBAAE;MACE,WAAW,EAAE,IAAI;;AExDjC,IAAI;EACA,UAAU,EAAE,oDAAmD;EAC/D,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,OAAO,EAAE,CAAC;EACV,MAAC;IACG,KAAK,EAAE,OAAO;EAClB,iBAAY;IACR,WAAW,EAAE,IAAI;IAEjB,uBAAK;MACD,KAAK,EAAE,IAAI;MACX,KAAK,EAAE,KAAK;MACZ,MAAM,EAAE,IAAI;MACZ,UAAU,EAAE,GAAG;IAEnB,wBAAM;MACF,KAAK,EAAE,KAAK;MACZ,qCAAY;QACR,OAAO,EAAE,IAAI;QACb,uGAA+B;UAC3B,OAAO,EAAE,KAAK;QAClB,uGAA+B;UAC3B,OAAO,EAAE,KAAK;MAElB,iGAA+B;QAC3B,OAAO,EAAE,IAAI;MACrB,iCAAQ;QACJ,KAAK,EAAE,IAAI;QACX,WAAW,EAAE,iBAAiB;QAC9B,YAAY,EAAE,IAAI;QAClB,aAAa,EAAE,IAAI;QACnB,MAAM,EAAE,IAAI;QACZ,6CAAa;UACT,MAAM,EAAE,IAAI;QAChB,wCAAM;UACF,KAAK,EAAE,OAAO;UACd,SAAS,EAAE,IAAI;UACf,WAAW,EAAE,IAAI;QACrB,wCAAM;UACF,KAAK,EAAE,IAAI;UACX,SAAS,EAAE,IAAI;UACf,WAAW,EAAE,IAAI;UACjB,SAAS,EAAE,KAAK;UAChB,SAAS,EAAE,UAAU;QACzB,gDAAgB;UACZ,SAAS,EAAE,IAAI;UACf,WAAW,EAAE,MAAM;QACvB,sGAAsC;UAClC,SAAS,EAAE,IAAI;QACnB,iDAAiB;UACb,SAAS,EAAE,IAAI;QAEf,mDAAM;UACF,cAAc,EAAE,SAAS;QAC7B,sDAAS;UACL,OAAO,EAAE,IAAI;UACb,yIAA+B;YAC3B,OAAO,EAAE,KAAK;QACtB,uDAAU;UACN,OAAO,EAAE,IAAI;UACb,2IAA+B;YAC3B,OAAO,EAAE,MAAM;QAC3B,8CAAY;UACR,OAAO,EAAE,KAAK;UACd,KAAK,EAAE,IAAI;UACX,UAAU,EAAE,OAAO;UACnB,aAAa,EAAE,GAAG;UAClB,KAAK,EAAE,IAAI;UACX,OAAO,EAAE,QAAQ;UACjB,UAAU,EAAE,MAAM;UAClB,SAAS,EAAE,IAAI;UACf,WAAW,EAAE,IAAI;UACjB,YAAY,EAAE,IAAI;UAClB,oDAAO;YACH,UAAU,EAAE,OAAO;UACvB,gDAAC;YACG,OAAO,EAAE,KAAK;YACd,UAAU,EAAE,IAAI;YAChB,KAAK,EAAE,IAAI;YACX,MAAM,EAAE,IAAI;YACZ,WAAW,EAAE,IAAI;YACjB,YAAY,EAAE,IAAI;YAClB,aAAa,EAAE,GAAG;YAClB,UAAU,EAAE,iCAA+B;QACnD,+CAAa;UACT,OAAO,EAAE,KAAK;UACd,KAAK,EAAE,IAAI;UACX,UAAU,EAAE,OAAO;UACnB,aAAa,EAAE,GAAG;UAClB,KAAK,EAAE,IAAI;UACX,OAAO,EAAE,SAAS;UAClB,WAAW,EAAE,KAAK;UAClB,UAAU,EAAE,MAAM;UAClB,SAAS,EAAE,IAAI;UACf,WAAW,EAAE,IAAI;UACjB,qDAAO;YACH,UAAU,EAAE,OAAO;;AAE3C,UAAU;EACN,SAAS,EAAE,MAAM;EACjB,SAAS,EAAE,MAAM;EACjB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAClB,UAAU,EAAE,UAAU;EACtB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;;AAEvB,QAAQ;EACJ,QAAQ,EAAE,QAAQ;EAClB,gBAAO;IACH,KAAK,EAAE,KAAK;IACZ,QAAQ,EAAE,QAAQ;IAClB,IAAI,EAAE,GAAG;IACT,GAAG,EAAE,IAAI;IACT,WAAW,EAAE,MAAM;IACnB,OAAO,EAAE,CAAC;IAEV,wBAAO;MACH,OAAO,EAAE,IAAI;MACb,WAAW,EAAE,GAAG;IAEpB,mBAAE;MACE,KAAK,EAAE,OAAO;MACd,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,IAAI;IAErB,sBAAK;MACD,OAAO,EAAE,KAAK;MACd,aAAa,EAAE,IAAI;MACnB,UAAU,EAAE,IAAI;MAChB,SAAS,EAAE,IAAI;IAGf,0BAAK;MACD,MAAM,EAAE,IAAI;MACZ,UAAU,EAAE,IAAI;MAChB,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,KAAK;MACZ,SAAS,EAAE,IAAI;MACf,YAAY,EAAE,IAAI;IACtB,mCAAc;MACV,MAAM,EAAE,IAAI;MACZ,UAAU,EAAE,OAAO;MACnB,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,KAAK;MACZ,SAAS,EAAE,IAAI;MACf,YAAY,EAAE,IAAI;IAE1B,uBAAM;MACF,UAAU,EAAE,IAAI;MAChB,KAAK,EAAE,KAAK;MACZ,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,IAAI;MACjB,UAAU,EAAE,OAAO;MACnB,OAAO,EAAE,SAAS;MAClB,YAAY,EAAE,IAAI;MAClB,aAAa,EAAE,GAAG;MAClB,MAAM,EAAE,OAAO;MACf,6BAAO;QACH,UAAU,EAAE,OAAO;EAG3B,0BAAY;IACR,OAAO,EAAE,KAAK;IACd,sCAAW;MACP,OAAO,EAAE,IAAI;EACrB,2DAA+B;IAC3B,OAAO,EAAE,IAAI;IACb,aAAa,EAAE,GAAG;IAClB,kBAAkB,EAAE,GAAG;IACvB,qBAAqB,EAAE,GAAG;IAC1B,MAAM,EAAE,cAAc;IACtB,UAAU,EAAE,OAAO;IACnB,UAAU,EAAE,2BAAwB;EACxC,2DAA+B;IAC3B,OAAO,EAAE,IAAI;EAEjB,yBAAY;IACR,OAAO,EAAE,IAAI;EACjB,yDAA+B;IAC3B,OAAO,EAAE,IAAI;EACjB,yDAA+B;IAC3B,OAAO,EAAE,IAAI;IACb,aAAa,EAAE,GAAG;IAClB,kBAAkB,EAAE,GAAG;IACvB,qBAAqB,EAAE,GAAG;IAC1B,MAAM,EAAE,cAAc;IACtB,UAAU,EAAE,OAAO;IACnB,UAAU,EAAE,2BAAwB;;AAEhD,KAAK;EACD,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,gBAAY;IACR,OAAO,EAAE,IAAI;EACjB,cAAQ;IACJ,UAAU,EAAE,OAAO;IAEnB,sBAAO;MACH,QAAQ,EAAE,MAAM;MAEhB,2BAAI;QACA,OAAO,EAAE,KAAK;QACd,KAAK,EAAE,IAAI;QACX,SAAS,EAAE,IAAI;QAEf,6BAAC;UACG,OAAO,EAAE,SAAS;UAClB,OAAO,EAAE,YAAY;UACrB,KAAK,EAAE,OAAO;UACd,QAAQ,EAAE,QAAQ;UAClB,WAAW,EAAE,GAAG;UAChB,SAAS,EAAE,IAAI;UACf,mCAAO;YACH,UAAU,EAAE,OAAO;UACvB,qCAAS;YACL,KAAK,EAAE,IAAI;YACX,2CAAO;cACH,OAAO,EAAE,EAAE;cACX,OAAO,EAAE,KAAK;cACd,QAAQ,EAAE,QAAQ;cAClB,IAAI,EAAE,CAAC;cACP,MAAM,EAAE,CAAC;cACT,KAAK,EAAE,CAAC;cACR,MAAM,EAAE,GAAG;cACX,UAAU,EAAE,IAAI;EAExC,YAAM;IACF,UAAU,EAAE,IAAI;IAChB,kBAAK;MACD,QAAQ,EAAE,MAAM;EAExB,kCAAsB;IAClB,UAAU,EAAE,IAAI;IAChB,gEAAc;MACV,KAAK,EAAE,IAAI;EAGf,0CAAwB;IACpB,KAAK,EAAE,KAAK;IACZ,UAAU,EAAE,MAAM;EACtB,wCAAsB;IAClB,UAAU,EAAE,IAAI;EACpB,gCAAc;IACV,UAAU,EAAE,MAAM;EACtB,8BAAY;IACR,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;IACjB,WAAW,EAAE,SAAS;IACtB,WAAW,EAAE,GAAG;EAExB,aAAO;IACH,KAAK,EAAE,IAAI;IACX,oBAAM;MACF,MAAM,EAAE,KAAK;MACb,aAAa,EAAE,IAAI;MACnB,UAAU,EAAE,UAAU;MACtB,MAAM,EAAE,iBAAiB;MACzB,aAAa,EAAE,GAAG;IAEtB,mBAAK;MACD,KAAK,EAAE,OAAO;MACd,aAAa,EAAE,IAAI;MACnB,aAAa,EAAE,GAAG;MAClB,UAAU,EAAE,OAAO;MACnB,OAAO,EAAE,IAAI;MACb,OAAO,EAAE,YAAY;;AAEjC,MAAM;EACF,KAAK,EAAE,KAAK;EACZ,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,GAAG;EACR,WAAW,EAAE,MAAM;EACnB,aAAa,EAAE,GAAG;EAClB,kBAAkB,EAAE,GAAG;EACvB,qBAAqB,EAAE,GAAG;EAC1B,MAAM,EAAE,cAAc;EACtB,UAAU,EAAE,OAAO;EACnB,UAAU,EAAE,2BAAwB;EACpC,OAAO,EAAE,CAAC;EAEV,mBAAY;IACR,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,GAAG,EAAE,IAAI;EACb,cAAO;IACH,OAAO,EAAE,IAAI;IACb,WAAW,EAAE,GAAG;;AAExB,OAAO;EACH,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,MAAM;EACf,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,KAAK;EACjB,UAAU,EAAE,UAAU;EACtB,MAAM,EAAE,IAAI;EAEZ,SAAC;IACG,YAAY,EAAE,IAAI;IAClB,KAAK,EAAE,OAAO", "sources": ["../sass/_base.sass","../sass/tables.sass","../sass/_mixins.sass","../sass/application.sass"], "names": [], "file": "application.css" }locust-1.4.3/locust/static/css/tables.css000066400000000000000000000030311400440205700203750ustar00rootroot00000000000000table.stats { width: 100%; border-radius: 3px; border: 2px solid #11251c; border-spacing: 0; margin-bottom: 30px; } table.stats thead { padding: 0; margin: 0; color: #a9c5ba; } table.stats thead tr { background: #11251c; } table.stats thead tr:nth-child(even) { background: #11251c; } table.stats thead tr:hover { background: #11251c; } table.stats thead th { font-weight: bold; cursor: default; } table.stats thead th.nowrap { white-space: nowrap; } table.stats thead th[data-sortkey] { cursor: pointer; } table.stats tr:hover { background: #1d4434; } table.stats tr td, table.stats tr th { padding: 10px; margin: 0; text-align: left; } table.stats tr td:first-child, table.stats tr th:first-child { padding-left: 16px; } table.stats tr td:last-child, table.stats tr th:last-child { padding-right: 16px; } table.stats tr td.numeric, table.stats tr th.numeric { text-align: right; } table.stats tr td { max-width: 450px; overflow: hidden; word-wrap: break-word; white-space: no-wrap; text-overflow: ellipsis; } @media (max-width: 1100px) { table.stats tr td { max-width: 350px; } } table.stats tr:nth-child(even) { background: #153126; } table.stats tr:nth-child(even):hover { background: #1d4434; } table.stats tr.total { background: #11251c; } table.stats tr.total td { font-weight: bold; } /*# sourceMappingURL=tables.css.map */ locust-1.4.3/locust/static/css/tables.css.map000066400000000000000000000017701400440205700211610ustar00rootroot00000000000000{ "version": 3, "mappings": "AAEA,WAAW;EACP,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,cAAc,EAAE,CAAC;EACjB,aAAa,EAAE,IAAI;EAEnB,iBAAK;IAED,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,OAAO;IAEd,oBAAE;MACE,UAAU,EAAE,OAAO;MACnB,oCAAiB;QACb,UAAU,EAAE,OAAO;MACvB,0BAAO;QACH,UAAU,EAAE,OAAO;IAC3B,oBAAE;MACE,WAAW,EAAE,IAAI;MACjB,MAAM,EAAE,OAAO;MACf,2BAAQ;QACJ,WAAW,EAAE,MAAM;MACvB,kCAAe;QACX,MAAM,EAAE,OAAO;EAEvB,oBAAO;IACH,UAAU,EAAE,OAAO;EAEvB,oCAAM;IACF,OAAO,EAAE,IAAI;IACb,MAAM,EAAE,CAAC;IACT,UAAU,EAAE,IAAI;IAEhB,4DAAa;MACT,YAAY,EAAE,IAAI;IACtB,0DAAY;MACR,aAAa,EAAE,IAAI;IAEvB,oDAAS;MACL,UAAU,EAAE,KAAK;EACzB,iBAAE;IACE,SAAS,EAAE,KAAK;IAChB,QAAQ,EAAE,MAAM;IAChB,SAAS,EAAE,UAAU;IACrB,WAAW,EAAE,OAAO;IACpB,aAAa,EAAE,QAAQ;IChDjC,0BAA8B;MD2CxB,iBAAE;QAOM,SAAS,EAAE,KAAK;EAExB,8BAAiB;IACb,UAAU,EAAE,OAAO;IACnB,oCAAO;MACH,UAAU,EAAE,OAAO;EAC3B,oBAAO;IACH,UAAU,EAAE,OAAO;IACnB,uBAAE;MACE,WAAW,EAAE,IAAI", "sources": ["../sass/tables.sass","../sass/_mixins.sass"], "names": [], "file": "tables.css" }locust-1.4.3/locust/static/echarts.common.min.js000066400000000000000000022736521400440205700217050ustar00rootroot00000000000000 /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t=t||self).echarts={})}(this,function(t){"use strict";var i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function l(t,e){function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var h=function(){return(h=Object.assign||function(t){for(var e,n=1,i=arguments.length;n>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",i[l]+":0",r[u]+":0",i[1-l]+":auto",r[1-u]+":auto",""].join("!important;"),t.appendChild(a),n.push(a)}return n}(e,o),o,r);if(r)return r(t,n,i),!0}return!1}function Wt(t){return"CANVAS"===t.nodeName.toUpperCase()}var Ut="undefined"!=typeof window&&!!window.addEventListener,Xt=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Yt=[];function Zt(t,e,n,i){return n=n||{},i||!w.canvasSupported?jt(t,e,n):w.browser.firefox&&null!=e.layerX&&e.layerX!==e.offsetX?(n.zrX=e.layerX,n.zrY=e.layerY):null!=e.offsetX?(n.zrX=e.offsetX,n.zrY=e.offsetY):jt(t,e,n),n}function jt(t,e,n){if(w.domSupported&&t.getBoundingClientRect){var i=e.clientX,r=e.clientY;if(Wt(t)){e=t.getBoundingClientRect();return n.zrX=i-e.left,void(n.zrY=r-e.top)}if(Gt(Yt,t,i,r))return n.zrX=Yt[0],void(n.zrY=Yt[1])}n.zrX=n.zrY=0}function qt(t){return t||window.event}function Kt(t,e,n){if(null!=(e=qt(e)).zrX)return e;var i=e.type;i&&0<=i.indexOf("touch")?(i=("touchend"!==i?e.targetTouches:e.changedTouches)[0])&&Zt(t,i,e,n):(Zt(t,e,e,n),r=function(t){var e=t.wheelDelta;if(e)return e;var n=t.deltaX,t=t.deltaY;return null!=n&&null!=t?3*(0!==t?Math.abs(t):Math.abs(n))*(0t.getWidth()||n<0||n>t.getHeight()}function ge(){return[1,0,0,1,0,0]}function ye(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function me(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t}function ve(t,e,n){var i=e[0]*n[0]+e[2]*n[1],r=e[1]*n[0]+e[3]*n[1],o=e[0]*n[2]+e[2]*n[3],a=e[1]*n[2]+e[3]*n[3],s=e[0]*n[4]+e[2]*n[5]+e[4],e=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=i,t[1]=r,t[2]=o,t[3]=a,t[4]=s,t[5]=e,t}function _e(t,e,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4]+n[0],t[5]=e[5]+n[1],t}function xe(t,e,n){var i=e[0],r=e[2],o=e[4],a=e[1],s=e[3],l=e[5],e=Math.sin(n),n=Math.cos(n);return t[0]=i*n+a*e,t[1]=-i*e+a*n,t[2]=r*n+s*e,t[3]=-r*e+n*s,t[4]=n*o+e*l,t[5]=n*l-e*o,t}function be(t,e,n){var i=n[0],n=n[1];return t[0]=e[0]*i,t[1]=e[1]*n,t[2]=e[2]*i,t[3]=e[3]*n,t[4]=e[4]*i,t[5]=e[5]*n,t}function we(t,e){var n=e[0],i=e[2],r=e[4],o=e[1],a=e[3],s=e[5],e=n*a-o*i;return e?(e=1/e,t[0]=a*e,t[1]=-o*e,t[2]=-i*e,t[3]=n*e,t[4]=(i*s-a*r)*e,t[5]=(o*r-n*s)*e,t):null}E(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(a){pe.prototype[a]=function(t){var e,n,i=t.zrX,r=t.zrY,o=fe(this,i,r);if("mouseup"===a&&o||(n=(e=this.findHover(i,r)).target),"mousedown"===a)this._downEl=n,this._downPoint=[t.zrX,t.zrY],this._upEl=n;else if("mouseup"===a)this._upEl=n;else if("click"===a){if(this._downEl!==this._upEl||!this._downPoint||4=this._maxSize&&0>4|(3840&o)>>8,240&o|(240&o)>>4,15&o|(15&o)<<4,5===r?parseInt(i.slice(4),16)/15:1),$e(t,e),e):void Ze(e,0,0,0,1):7===r||9===r?0<=(o=parseInt(i.slice(1,7),16))&&o<=16777215?(Ze(e,(16711680&o)>>16,(65280&o)>>8,255&o,9===r?parseInt(i.slice(7),16)/255:1),$e(t,e),e):void Ze(e,0,0,0,1):void 0;var n=i.indexOf("("),o=i.indexOf(")");if(-1!==n&&o+1===r){r=i.substr(0,n),o=i.substr(n+1,o-(n+1)).split(","),n=1;switch(r){case"rgba":if(4!==o.length)return 3===o.length?Ze(e,+o[0],+o[1],+o[2],1):Ze(e,0,0,0,1);n=Ue(o.pop());case"rgb":return 3!==o.length?void Ze(e,0,0,0,1):(Ze(e,We(o[0]),We(o[1]),We(o[2]),n),$e(t,e),e);case"hsla":return 4!==o.length?void Ze(e,0,0,0,1):(o[3]=Ue(o[3]),Qe(o,e),$e(t,e),e);case"hsl":return 3!==o.length?void Ze(e,0,0,0,1):(Qe(o,e),$e(t,e),e);default:return}}Ze(e,0,0,0,1)}}function Qe(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=Ue(t[1]),r=Ue(t[2]),i=r<=.5?r*(i+1):r+i-r*i,r=2*r-i;return Ze(e=e||[],He(255*Xe(r,i,n+1/3)),He(255*Xe(r,i,n)),He(255*Xe(r,i,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function tn(t,e){var n=Je(t);if(n){for(var i=0;i<3;i++)n[i]=e<0?n[i]*(1-e)|0:(255-n[i])*e+n[i]|0,255=this.maxTime?this.maxTime=t:this._needsSort=!0;var n=this.keyframes,i=n.length;if(this.interpolable)if(P(e)){var r,o=P((o=e)&&o[0])?2:1;if(0e);u++);u=Math.min(u-1,o-2)}var h,c,p,d,f,g,y,m=r[u+1],v=r[u];v&&m&&(this._lastFrame=u,this._lastFramePercent=e,0!=(g=m.percent-v.percent)&&(h=(e-v.percent)/g,c=n?this._additiveValue:l?_n:t[a],(0=n.x&&t<=n.x+n.width&&e>=n.y&&e<=n.y+n.height},En.prototype.clone=function(){return new En(this.x,this.y,this.width,this.height)},En.prototype.copy=function(t){En.copy(this,t)},En.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},En.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},En.prototype.isZero=function(){return 0===this.width||0===this.height},En.create=function(t){return new En(t.x,t.y,t.width,t.height)},En.copy=function(t,e){t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height},En.applyTransform=function(t,e,n){if(n){if(n[1]<1e-5&&-1e-5>>1])<0?l=o:s=1+o;var u=i-s;switch(u){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;0>>1);0>>1);o(t,e[n+h])<0?l=h:a=h+1}return l}function gi(f,g){var o,a,y=hi,s=0,m=(f.length,[]);function e(t){var e=o[t],n=a[t],i=o[t+1],r=a[t+1];a[t]=n+r,t===s-3&&(o[t+1]=o[t+2],a[t+1]=a[t+2]),s--;t=fi(f[i],f,e,n,0,g);e+=t,0!=(n-=t)&&0!==(r=di(f[e+n-1],f,i,r,r-1,g))&&(n<=r?function(t,e,n,i){var r=0;for(r=0;ra[t+1])break;e(t)}},forceMergeRuns:function(){for(;1>=1;return t+e}(r);do{}while((o=ci(t,n,i,e))this._ux||Yr(e-this._yi)>this._uy||this._len<5;return this.addData(Rr.L,t,e),this._ctx&&n&&(this._needsDash?this._dashedLineTo(t,e):this._ctx.lineTo(t,e)),n&&(this._xi=t,this._yi=e),this},to.prototype.bezierCurveTo=function(t,e,n,i,r,o){return this.addData(Rr.C,t,e,n,i,r,o),this._ctx&&(this._needsDash?this._dashedBezierTo(t,e,n,i,r,o):this._ctx.bezierCurveTo(t,e,n,i,r,o)),this._xi=r,this._yi=o,this},to.prototype.quadraticCurveTo=function(t,e,n,i){return this.addData(Rr.Q,t,e,n,i),this._ctx&&(this._needsDash?this._dashedQuadraticTo(t,e,n,i):this._ctx.quadraticCurveTo(t,e,n,i)),this._xi=n,this._yi=i,this},to.prototype.arc=function(t,e,n,i,r,o){Kr[0]=i,Kr[1]=r,Jr(Kr,o),i=Kr[0];var a=(r=Kr[1])-i;return this.addData(Rr.A,t,e,n,n,i,a,0,o?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,o),this._xi=Wr(r)*n+t,this._yi=Ur(r)*n+e,this},to.prototype.arcTo=function(t,e,n,i,r){return this._ctx&&this._ctx.arcTo(t,e,n,i,r),this},to.prototype.rect=function(t,e,n,i){return this._ctx&&this._ctx.rect(t,e,n,i),this.addData(Rr.R,t,e,n,i),this},to.prototype.closePath=function(){this.addData(Rr.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&(this._needsDash&&this._dashedLineTo(e,n),t.closePath()),this._xi=e,this._yi=n,this},to.prototype.fill=function(t){t&&t.fill(),this.toStatic()},to.prototype.stroke=function(t){t&&t.stroke(),this.toStatic()},to.prototype.setLineDash=function(t){if(t instanceof Array){this._lineDash=t;for(var e=this._dashIdx=0,n=0;nu.length&&(this._expandData(),u=this.data);for(var h=0;hn||Yr(y)>i||c===e-1)&&(f=Math.sqrt(C*C+y*y),r=g,o=_);break;case Rr.C:var m=t[c++],v=t[c++],g=t[c++],_=t[c++],x=t[c++],b=t[c++],f=function(t,e,n,i,r,o,a,s,l){for(var u=t,h=e,c=0,p=1/l,d=1;d<=l;d++){var f=d*p,g=pr(t,n,r,a,f),y=pr(e,i,o,s,f),m=g-u,f=y-h;c+=Math.sqrt(m*m+f*f),u=g,h=y}return c}(r,o,m,v,g,_,x,b,10),r=x,o=b;break;case Rr.Q:f=function(t,e,n,i,r,o,a){for(var s=t,l=e,u=0,h=1/a,c=1;c<=a;c++){var p=c*h,d=vr(t,n,r,p),f=vr(e,i,o,p),g=d-s,p=f-l;u+=Math.sqrt(g*g+p*p),s=d,l=f}return u}(r,o,m=t[c++],v=t[c++],g=t[c++],_=t[c++],10),r=g,o=_;break;case Rr.A:var w=t[c++],S=t[c++],M=t[c++],T=t[c++],p=t[c++],x=t[c++],b=x+p;c+=1;t[c++];d&&(a=Wr(p)*M+w,s=Ur(p)*T+S),f=Gr(M,T)*Hr(jr,Math.abs(x)),r=Wr(b)*M+w,o=Ur(b)*T+S;break;case Rr.R:a=r=t[c++],s=o=t[c++];f=2*t[c++]+2*t[c++];break;case Rr.Z:var C=a-r,y=s-o;f=Math.sqrt(C*C+y*y),r=a,o=s}0<=f&&(u+=l[h++]=f)}return this._pathLen=u},to.prototype.rebuildPath=function(t,e){var n,i,r,o,a,s,l,u,h=this.data,c=this._ux,p=this._uy,d=this._len,f=e<1,g=0,y=0;if(!f||(this._pathSegLen||this._calculateLength(),l=this._pathSegLen,u=e*this._pathLen))t:for(var m=0;mc||Yr(s-o)>p||m===d-1){if(f){if(u=uo[i=0]+t&&a<=uo[1]+t?l:0}rMath.PI/2&&c<1.5*Math.PI&&(l=-l),u+=l))}return u}(y,m,_,x,x+b,f,g,r);u=Math.cos(x+b)*v+y,h=Math.sin(x+b)*_+m;break;case ao.R:c=u=a[d++],p=h=a[d++];if(w=c+a[d++],S=p+a[d++],n){if(eo(c,p,w,p,e,i,r)||eo(w,p,w,S,e,i,r)||eo(w,S,c,S,e,i,r)||eo(c,S,c,p,e,i,r))return!0}else l+=oo(w,p,w,S,i,r),l+=oo(c,S,c,p,i,r);break;case ao.Z:if(n){if(eo(u,h,c,p,e,i,r))return!0}else l+=oo(u,h,c,p,i,r);u=c,h=p}}return n||(o=h,t=p,Math.abs(o-t)=e.maxIterations){t+=e.ellipsis;break}var a=0===o?function(t,e,n,i){for(var r=0,o=0,a=t.length;oo){0i.width&&(o=e.split("\n"),p=!0),i.accumWidth=s):(s=_s(e,c,i.width,i.breakAll,i.accumWidth),i.accumWidth=s.accumWidth+n,a=s.linesWidths,o=s.lines)):o=e.split("\n");for(var d=0;di.len()&&(uthis._sleepAfterStill&&this.animation.stop())},Rl.prototype.setSleepAfterStill=function(t){this._sleepAfterStill=t},Rl.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},Rl.prototype.addHover=function(t){},Rl.prototype.removeHover=function(t){},Rl.prototype.clearHover=function(){},Rl.prototype.refreshHover=function(){this._needsRefreshHover=!0},Rl.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover()},Rl.prototype.resize=function(t){t=t||{},this.painter.resize(t.width,t.height),this.handler.resize()},Rl.prototype.clearAnimation=function(){this.animation.clear()},Rl.prototype.getWidth=function(){return this.painter.getWidth()},Rl.prototype.getHeight=function(){return this.painter.getHeight()},Rl.prototype.pathToImage=function(t,e){if(this.painter.pathToImage)return this.painter.pathToImage(t,e)},Rl.prototype.setCursorStyle=function(t){this.handler.setCursorStyle(t)},Rl.prototype.findHover=function(t,e){return this.handler.findHover(t,e)},Rl.prototype.on=function(t,e,n){return this.handler.on(t,e,n),this},Rl.prototype.off=function(t,e){this.handler.off(t,e)},Rl.prototype.trigger=function(t,e){this.handler.trigger(t,e)},Rl.prototype.clear=function(){for(var t=this.storage.getRoots(),e=0;e=e[1])return n[1]}else{if(t>=e[0])return n[0];if(t<=e[1])return n[1]}else{if(t===e[0])return n[0];if(t===e[1])return n[1]}return(t-e[0])/r*o+n[0]}function Vl(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return"string"==typeof t?t.replace(/^\s+|\s+$/g,"").match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?NaN:+t}function Fl(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function Hl(t){return t.sort(function(t,e){return t-e}),t}function Gl(t){if(t=+t,isNaN(t))return 0;for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}function Wl(t){var e=t.toString(),t=e.indexOf("e");if(0u&&(u=l[c],h=c);++a[h],l[h]=0,++s}return a[e]/r}function Yl(t){var e=2*Math.PI;return(t%e+e)%e}function Zl(t){return-zlMath.abs(r[1])?0"'])/g,Sp={"&":"&","<":"<",">":">",'"':""","'":"'"};function Mp(t){return null==t?"":(t+"").replace(wp,function(t,e){return Sp[e]})}function Tp(t,e,n){function i(t){return t&&rt(t)?t:"-"}function r(t){return null!=t&&!isNaN(t)&&isFinite(t)}var o="time"===e,a=t instanceof Date;if(o||a){o=o?ql(t):t;if(!isNaN(+o))return ip(o,"yyyy-MM-dd hh:mm:ss",n);if(a)return"-"}if("ordinal"===e)return G(t)?i(t):W(t)&&r(t)?t+"":"-";e=Ql(t);return r(e)?_p(e):G(t)?i(t):"-"}function Cp(t,e){return"{"+t+(null==e?"":e)+"}"}var Ip=["a","b","c","d","e","f","g"];function Ap(t,e,n){V(e)||(e=[e]);var i=e.length;if(!i)return"";for(var r=e[0].$vars||[],o=0;o':'':{renderMode:t,content:"{"+(n.markerId||"markerX")+"|} ",style:"subItem"===r?{width:4,height:4,borderRadius:2,backgroundColor:i}:{width:10,height:10,borderRadius:5,backgroundColor:i}}:""}function kp(t,e){return e=e||"transparent",H(t)?t:U(t)&&t.colorStops&&(t.colorStops[0]||{}).color||e}function Lp(t,e){var n;"_blank"===e||"blank"===e?((n=window.open()).opener=null,n.location.href=t):window.open(t,e)}var Pp=Object.freeze({__proto__:null,addCommas:_p,toCamelCase:xp,normalizeCssArray:bp,encodeHTML:Mp,makeValueReadable:Tp,formatTpl:Ap,formatTplSimple:function(n,t,i){return E(t,function(t,e){n=n.replace("{"+e+"}",i?Mp(t):t)}),n},getTooltipMarker:Dp,formatTime:function(t,e,n){"week"!==t&&"month"!==t&&"quarter"!==t&&"half-year"!==t&&"year"!==t||(t="MM-dd\nyyyy");var i=ql(e),r=i["get"+(l=n?"UTC":"")+"FullYear"](),o=i["get"+l+"Month"]()+1,a=i["get"+l+"Date"](),s=i["get"+l+"Hours"](),e=i["get"+l+"Minutes"](),n=i["get"+l+"Seconds"](),l=i["get"+l+"Milliseconds"]();return t=t.replace("MM",ep(o,2)).replace("M",o).replace("yyyy",r).replace("yy",r%100+"").replace("dd",ep(a,2)).replace("d",a).replace("hh",ep(s,2)).replace("h",s).replace("mm",ep(e,2)).replace("m",e).replace("ss",ep(n,2)).replace("s",n).replace("SSS",ep(l,3))},capitalFirst:function(t){return t&&t.charAt(0).toUpperCase()+t.substr(1)},convertToColorString:kp,windowOpen:Lp,truncateText:hs,getTextRect:function(t,e,n,i,r,o,a,s){return ou(),new Ss({style:{text:t,font:e,align:n,verticalAlign:i,padding:r,rich:o,overflow:a?"truncate":null,lineHeight:s}}).getBoundingRect()}}),Op=E,Rp=["left","right","top","bottom","width","height"],Ep=[["width","left","right"],["height","top","bottom"]];function Np(a,s,l,u,h){var c=0,p=0;null==u&&(u=1/0),null==h&&(h=1/0);var d=0;s.eachChild(function(t,e){var n,i,r=t.getBoundingRect(),o=s.childAt(e+1),e=o&&o.getBoundingRect();d="horizontal"===a?(o=r.width+(e?-e.x+r.x:0),u<(n=c+o)||t.newline?(c=0,n=o,p+=d+l,r.height):Math.max(d,r.height)):(e=r.height+(e?-e.y+r.y:0),h<(i=p+e)||t.newline?(c+=d+l,p=0,i=e,r.width):Math.max(d,r.width)),t.newline||(t.x=c,t.y=p,t.markRedraw(),"horizontal"===a?c=n+l:p=i+l)})}var zp=Np;B(Np,"vertical"),B(Np,"horizontal");function Bp(t,e,n){n=bp(n||0);var i=e.width,r=e.height,o=Vl(t.left,i),a=Vl(t.top,r),s=Vl(t.right,i),l=Vl(t.bottom,r),u=Vl(t.width,i),h=Vl(t.height,r),c=n[2]+n[0],p=n[1]+n[3],e=t.aspect;switch(isNaN(u)&&(u=i-s-p-o),isNaN(h)&&(h=r-l-c-a),null!=e&&(isNaN(u)&&isNaN(h)&&(i/re)return t[i];return t[n-1]}(i,a):n;if((a=a||n)&&a.length){n=a[t];return r&&(o[r]=n),e.paletteIdx=(t+1)%a.length,n}}var Td,Cd="\0_ec_inner",Id=(l(Ad,Td=Ec),Ad.prototype.init=function(t,e,n,i,r,o){i=i||{},this.option=null,this._theme=new Ec(i),this._locale=new Ec(r),this._optionManager=o},Ad.prototype.setOption=function(t,e,n){it(!(Cd in t),"please use chart.getOption()");e=Ld(e);this._optionManager.setOption(t,n,e),this._resetOption(null,e)},Ad.prototype.resetOption=function(t,e){return this._resetOption(t,Ld(e))},Ad.prototype._resetOption=function(t,e){var n,i=!1,r=this._optionManager;return t&&"recreate"!==t||(n=r.mountOption("recreate"===t),this.option&&"recreate"!==t?(this.restoreData(),this._mergeOption(n,e)):vd(this,n),i=!0),"timeline"!==t&&"media"!==t||this.restoreData(),t&&"recreate"!==t&&"timeline"!==t||(n=r.getTimelineOption(this))&&(i=!0,this._mergeOption(n,e)),t&&"recreate"!==t&&"media"!==t||(r=r.getMediaOption(this)).length&&E(r,function(t){i=!0,this._mergeOption(t,e)},this),i},Ad.prototype.mergeOption=function(t){this._mergeOption(t,null)},Ad.prototype._mergeOption=function(i,t){var r=this.option,u=this._componentsMap,h=this._componentsCount,n=[],o=ht(),c=t&&t.replaceMergeMainTypeMap;ud(this).datasetMap=ht(),E(i,function(t,e){null!=t&&(qp.hasClass(e)?e&&(n.push(e),o.set(e,!0)):r[e]=null==r[e]?I(t):b(r[e],t,!0))}),c&&c.each(function(t,e){qp.hasClass(e)&&!o.get(e)&&(n.push(e),o.set(e,!0))}),qp.topologicalTravel(n,qp.getAllClassMainTypes(),function(o){var t=function(t,e,n){return(e=gd.get(e))&&(t=e(t))?n.concat(t):n}(this,o,uu(i[o])),e=u.get(o),n=e?c&&c.get(o)?"replaceMerge":"normalMerge":"replaceAll",n=du(e,t,n);_u(n,o,qp),r[o]=null,u.set(o,null),h.set(o,0);var a=[],s=[],l=0;E(n,function(t,e){var n,i=t.existing,r=t.newOption;r?(n=qp.getClass(o,t.keyInfo.subType,!0),i&&i.constructor===n?(i.name=t.keyInfo.name,i.mergeOption(r,this),i.optionUpdated(r,!1)):(e=A({componentIndex:e},t.keyInfo),A(i=new n(r,this,this,e),e),t.brandNew&&(i.__requireNewView=!0),i.init(r,this,this),i.optionUpdated(null,!0))):i&&(i.mergeOption({},this),i.optionUpdated({},!1)),i?(a.push(i.option),s.push(i),l++):(a.push(void 0),s.push(void 0))},this),r[o]=a,u.set(o,s),h.set(o,l),"series"===o&&yd(this)},this),this._seriesIndices||yd(this)},Ad.prototype.getOption=function(){var a=I(this.option);return E(a,function(t,e){if(qp.hasClass(e)){for(var n=uu(t),i=n.length,r=!1,o=i-1;0<=o;o--)n[o]&&!vu(n[o])?r=!0:(n[o]=null,r||i--);n.length=i,a[e]=n}}),delete a[Cd],a},Ad.prototype.getTheme=function(){return this._theme},Ad.prototype.getLocaleModel=function(){return this._locale},Ad.prototype.getLocale=function(t){return this.getLocaleModel().get(t)},Ad.prototype.setUpdatePayload=function(t){this._payload=t},Ad.prototype.getUpdatePayload=function(){return this._payload},Ad.prototype.getComponent=function(t,e){var n=this._componentsMap.get(t);if(n){t=n[e||0];if(t)return t;if(null==e)for(var i=0;i'+Mp(e)+""+o,n)}},nameValue:{planLayout:function(t){t.__gapLevelBetweenSubBlocks=0},build:function(t,e,n){var i=t.renderMode,r=e.noName,o=e.noValue,a=!e.markerType,s=e.name,l=e.value,u=t.useUTC;if(!r||!o){var h=a?"":t.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||"#333",i),c=r?"":Tp(s,"ordinal",u),p=e.valueType,d=o?[]:V(l)?O(l,function(t,e){return Tp(t,V(p)?p[e]:p,u)}):[Tp(l,V(p)?p[0]:p,u)],f=!a||!r,s=!a&&r;return"richText"===i?(a?"":h)+(r?"":gg(t,c))+(o?"":(e=t,l=d,i=[og],t=(t=s)?10:20,f&&i.push({padding:[0,0,0,t],align:"right"}),e.markupStyleCreator.wrapRichTextStyle(l.join(" "),i))):fg((a?"":h)+(r?"":''+Mp(c)+"")+(o?"":function(t,e,n){n=n?"10px":"20px";return''+O(t,Mp).join("  ")+""}(d,f,s)),n)}}}};function pg(t,e,n,i,r){if(t){var o=hg(t);o.planLayout(t);e={useUTC:r,renderMode:n,orderMode:i,markupStyleCreator:e};return o.build(e,t,0)}}function dg(t){t=t.__gapLevelBetweenSubBlocks;return{html:sg[t],richText:lg[t]}}function fg(t,e){return'
    '+t+'
    '}function gg(t,e){return t.markupStyleCreator.wrapRichTextStyle(e,rg)}function yg(t,e){t=t.get("padding");return null!=t?t:"richText"===e?[8,10]:10}var mg=(vg.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},vg.prototype.makeTooltipMarker=function(t,e,n){var i="richText"===n?this._generateStyleName():null,n=Dp({color:e,type:t,renderMode:n,markerId:i});return H(n)?n:(this.richTextStyles[i]=n.style,n.content)},vg.prototype.wrapRichTextStyle=function(t,e){var n={};V(e)?E(e,function(t){return A(n,t)}):A(n,e);e=this._generateStyleName();return this.richTextStyles[e]=n,"{"+e+"|"+t+"}"},vg);function vg(){this.richTextStyles={},this._nextStyleNameId=eu()}function _g(t){var e,n,i,r,o,a,s,l,u,h,c,p,d=t.series,f=t.dataIndex,g=t.multipleSeries,y=d.getData(),m=y.mapDimensionsAll("defaultedTooltip"),v=m.length,_=d.getRawValue(f),x=V(_),t=(e=f,kp((t=d).getData().getItemVisual(e,"style")[t.visualDrawType]));function b(t,e){e=l.getDimensionInfo(e);e&&!1!==e.otherDims.tooltip&&(u?p.push(ug("nameValue",{markerType:"subItem",markerColor:s,name:e.displayName,value:t,valueType:e.type})):(h.push(t),c.push(e.type)))}1this.getShallow("animationThreshold")&&(t=!1),!!t},Mg.prototype.restoreData=function(){this.dataTask.dirty()},Mg.prototype.getColorFromPalette=function(t,e,n){var i=this.ecModel;return bd.prototype.getColorFromPalette.call(this,t,e,n)||i.getColorFromPalette(t,e,n)},Mg.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},Mg.prototype.getProgressive=function(){return this.get("progressive")},Mg.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},Mg.prototype.select=function(t,e){this._innerSelect(this.getData(e),t)},Mg.prototype.unselect=function(t,e){var n=this.option.selectedMap;if(n)for(var i=this.getData(e),r=0;re.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function Dg(e,n){E(a(e.CHANGABLE_METHODS,e.DOWNSAMPLE_METHODS),function(t){e.wrapMethod(t,B(kg,n))})}function kg(t,e){t=Lg(t);return t&&t.setOutputEnd((e||this).count()),e}function Lg(t){var e=(t.ecModel||{}).scheduler,n=e&&e.getPipeline(t.uid);if(n){e=n.currentTask;return!e||(n=e.agentStubMap)&&(e=n.get(t.uid)),e}}T(Sg,Ca),T(Sg,bd),Ru(Sg,qp);var Pg=(Og.prototype.init=function(t,e){},Og.prototype.render=function(t,e,n,i){},Og.prototype.dispose=function(t,e){},Og.prototype.updateView=function(t,e,n,i){},Og.prototype.updateLayout=function(t,e,n,i){},Og.prototype.updateVisual=function(t,e,n,i){},Og.prototype.blurSeries=function(t,e){},Og);function Og(){this.group=new Ho,this.uid=Bc("viewComponent")}function Rg(){var o=bu();return function(t){var e=o(t),n=t.pipelineContext,i=!!e.large,r=!!e.progressiveRender,t=e.large=!(!n||!n.large),n=e.progressiveRender=!(!n||!n.progressiveRender);return!(i==t&&r==n)&&"reset"}}Ou(Pg),Bu(Pg,{registerWhenExtend:!0});var Eg=bu(),Ng=Rg(),zg=(Bg.prototype.init=function(t,e){},Bg.prototype.render=function(t,e,n,i){},Bg.prototype.highlight=function(t,e,n,i){Fg(t.getData(),i,"emphasis")},Bg.prototype.downplay=function(t,e,n,i){Fg(t.getData(),i,"normal")},Bg.prototype.remove=function(t,e){this.group.removeAll()},Bg.prototype.dispose=function(t,e){},Bg.prototype.updateView=function(t,e,n,i){this.render(t,e,n,i)},Bg.prototype.updateLayout=function(t,e,n,i){this.render(t,e,n,i)},Bg.prototype.updateVisual=function(t,e,n,i){this.render(t,e,n,i)},Bg.markUpdateMethod=function(t,e){Eg(t).updateMethod=e},Bg.protoInitialize=void(Bg.prototype.type="chart"),Bg);function Bg(){this.group=new Ho,this.uid=Bc("viewChart"),this.renderTask=Df({plan:Hg,reset:Gg}),this.renderTask.context={view:this}}function Vg(t,e,n){t&&("emphasis"===e?xh:bh)(t,n)}function Fg(e,t,n){var i,r=xu(e,t),o=t&&null!=t.highlightKey?(i=t.highlightKey,null==(t=Uu[i])&&Wu<=32&&(t=Uu[i]=Wu++),t):null;null!=r?E(uu(r),function(t){Vg(e.getItemGraphicEl(t),n,o)}):e.eachItemGraphicEl(function(t){Vg(t,n,o)})}function Hg(t){return Ng(t.model)}function Gg(t){var e=t.model,n=t.ecModel,i=t.api,r=t.payload,o=e.pipelineContext.progressiveRender,a=t.view,t=r&&Eg(r).updateMethod,t=o?"incrementalPrepareRender":t&&a[t]?t:"render";return"render"!==t&&a[t](e,n,i,r),Wg[t]}Ou(zg),Bu(zg,{registerWhenExtend:!0});var Wg={incrementalPrepareRender:{progress:function(t,e){e.view.incrementalRender(t,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(t,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},Ug="\0__throttleOriginMethod",Xg="\0__throttleRate",Yg="\0__throttleType";function Zg(t,r,o){var a,s,l,u,h,c=0,p=0,d=null;function f(){p=(new Date).getTime(),d=null,t.apply(l,u||[])}r=r||0;function e(){for(var t=[],e=0;en.blockIndex?n.step:null,i=i&&i.modDataCount;return{step:n,modBy:null!=i?Math.ceil(i/n):null,modDataCount:i}}},iy.prototype.getPipeline=function(t){return this._pipelineMap.get(t)},iy.prototype.updateStreamModes=function(t,e){var n=this._pipelineMap.get(t.uid),i=t.getData().count(),r=n.progressiveEnabled&&e.incrementalPrepareRender&&i>=n.threshold,e=t.get("large")&&i>=t.get("largeThreshold"),i="mod"===t.get("progressiveChunkMode")?i:null;t.pipelineContext=n.context={progressiveRender:r,modDataCount:i,large:e}},iy.prototype.restorePipelines=function(t){var i=this,r=i._pipelineMap=ht();t.eachSeries(function(t){var e=t.getProgressive(),n=t.uid;r.set(n,{id:n,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:e&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(e||700),count:0}),i._pipe(t,t.dataTask)})},iy.prototype.prepareStageTasks=function(){var i=this._stageTaskMap,r=this.api.getModel(),o=this.api;E(this._allHandlers,function(t){var e=i.get(t.uid)||i.set(t.uid,{}),n="";it(!(t.reset&&t.overallReset),n),t.reset&&this._createSeriesStageTask(t,e,r,o),t.overallReset&&this._createOverallStageTask(t,e,r,o)},this)},iy.prototype.prepareView=function(t,e,n,i){var r=t.renderTask,o=r.context;o.model=e,o.ecModel=n,o.api=i,r.__block=!t.incrementalPrepareRender,this._pipe(e,r)},iy.prototype.performDataProcessorTasks=function(t,e){this._performStageTasks(this._dataProcessorHandlers,t,e,{block:!0})},iy.prototype.performVisualTasks=function(t,e,n){this._performStageTasks(this._visualHandlers,t,e,n)},iy.prototype._performStageTasks=function(t,s,l,u){u=u||{};var h=!1,c=this;function p(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}E(t,function(i,t){var e,n,r,o,a;u.visualType&&u.visualType!==i.visualType||(e=(o=c._stageTaskMap.get(i.uid)).seriesTaskMap,(n=o.overallTask)?((o=n.agentStubMap).each(function(t){p(u,t)&&(t.dirty(),r=!0)}),r&&n.dirty(),c.updatePayload(n,l),a=c.getPerformArgs(n,u.block),o.each(function(t){t.perform(a)}),n.perform(a)&&(h=!0)):e&&e.each(function(t,e){p(u,t)&&t.dirty();var n=c.getPerformArgs(t,u.block);n.skip=!i.performRawSeries&&s.isSeriesFiltered(t.context.model),c.updatePayload(t,l),t.perform(n)&&(h=!0)}))}),this.unfinished=h||this.unfinished},iy.prototype.performSeriesTasks=function(t){var e;t.eachSeries(function(t){e=t.dataTask.perform()||e}),this.unfinished=e||this.unfinished},iy.prototype.plan=function(){this._pipelineMap.each(function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}}while(e=e.getUpstream())})},iy.prototype.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)},iy.prototype._createSeriesStageTask=function(n,t,i,r){var o=this,a=t.seriesTaskMap,s=t.seriesTaskMap=ht(),e=n.seriesType,t=n.getTargetSeries;function l(t){var e=t.uid,e=s.set(e,a&&a.get(e)||Df({plan:ly,reset:uy,count:py}));e.context={model:t,ecModel:i,api:r,useClearVisual:n.isVisual&&!n.isLayout,plan:n.plan,reset:n.reset,scheduler:o},o._pipe(t,e)}n.createOnAllSeries?i.eachRawSeries(l):e?i.eachRawSeriesByType(e,l):t&&t(i,r).each(l)},iy.prototype._createOverallStageTask=function(t,e,n,i){var r=this,o=e.overallTask=e.overallTask||Df({reset:ry});o.context={ecModel:n,api:i,overallReset:t.overallReset,scheduler:r};var a=o.agentStubMap,s=o.agentStubMap=ht(),l=t.seriesType,u=t.getTargetSeries,h=!0,c=!1,e="";function p(t){var e=t.uid,e=s.set(e,a&&a.get(e)||(c=!0,Df({reset:oy,onDirty:sy})));e.context={model:t,overallProgress:h},e.agent=o,e.__block=h,r._pipe(t,e)}it(!t.createOnAllSeries,e),l?n.eachRawSeriesByType(l,p):u?u(n,i).each(p):(h=!1,E(n.getSeries(),p)),c&&o.dirty()},iy.prototype._pipe=function(t,e){t=t.uid,t=this._pipelineMap.get(t);t.head||(t.head=e),t.tail&&t.tail.pipe(e),(t.tail=e).__idxInPipeline=t.count++,e.__pipeline=t},iy.wrapStageHandler=function(t,e){return F(t)&&(t={overallReset:t,seriesType:function(t){dy=null;try{t(fy,gy)}catch(t){}return dy}(t)}),t.uid=Bc("stageHandler"),e&&(t.visualType=e),t},iy);function iy(t,e,n,i){this._stageTaskMap=ht(),this.ecInstance=t,this.api=e,n=this._dataProcessorHandlers=n.slice(),i=this._visualHandlers=i.slice(),this._allHandlers=n.concat(i)}function ry(t){t.overallReset(t.ecModel,t.api,t.payload)}function oy(t){return t.overallProgress&&ay}function ay(){this.agent.dirty(),this.getDownstream().dirty()}function sy(){this.agent&&this.agent.dirty()}function ly(t){return t.plan?t.plan(t.model,t.ecModel,t.api,t.payload):null}function uy(t){t.useClearVisual&&t.data.clearAllVisual();t=t.resetDefines=uu(t.reset(t.model,t.ecModel,t.api,t.payload));return 1=l}}for(var o,a=this.__startIndex;ar[0]){for(l=0;lt);l++);s=i[r[l]]}r.splice(l+1,0,t),(i[t]=e).virtual||(s?(s=s.dom).nextSibling?a.insertBefore(e.dom,s.nextSibling):a.appendChild(e.dom):a.firstChild?a.insertBefore(e.dom,a.firstChild):a.appendChild(e.dom)),e.__painter=this}else x("Layer of zlevel "+t+" is not valid")},Nm.prototype.eachLayer=function(t,e){for(var n=this._zlevelList,i=0;i'+t.dom+""}),f.painter.getSvgRoot().innerHTML=g,i.connectedBackgroundColor&&f.painter.setBackgroundColor(i.connectedBackgroundColor),f.refreshImmediately(),f.painter.toDataURL()}return i.connectedBackgroundColor&&f.add(new oa({shape:{x:0,y:0,width:t,height:n},style:{fill:i.connectedBackgroundColor}})),$m(p,function(t){t=new Yo({style:{x:t.left*e-l,y:t.top*e-u,image:t.dom}});f.add(t)}),f.refreshImmediately(),d.toDataURL("image/"+(i&&i.type||"png"))}return this.getDataURL(i)}},Rv.prototype.convertToPixel=function(t,e){return gv(this,"convertToPixel",t,e)},Rv.prototype.convertFromPixel=function(t,e){return gv(this,"convertFromPixel",t,e)},Rv.prototype.containPixel=function(t,r){var o;if(!this._disposed)return E(Su(this._model,t),function(t,i){0<=i.indexOf("Models")&&E(t,function(t){var e,n=t.coordinateSystem;n&&n.containPoint?o=o||!!n.containPoint(r):"seriesModels"===i&&(e=this._chartsMap[t.__viewId])&&e.containPoint&&(o=o||e.containPoint(r,t))},this)},this),!!o;Fv(this.id)},Rv.prototype.getVisual=function(t,e){var n=Su(this._model,t,{defaultMainType:"series"}),t=n.seriesModel;t=t.getData(),n=n.hasOwnProperty("dataIndexInside")?n.dataIndexInside:n.hasOwnProperty("dataIndex")?t.indexOfRawIndex(n.dataIndex):null;return null!=n?function(t,e,n){switch(n){case"color":return t.getItemVisual(e,"style")[t.getVisual("drawType")];case"opacity":return t.getItemVisual(e,"style").opacity;case"symbol":case"symbolSize":case"liftZ":return t.getItemVisual(e,n);default:0}}(t,n,e):Ay(t,e)},Rv.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},Rv.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},Rv.prototype._initEvents=function(){var t,e,n,s=this;$m(Vv,function(a){function t(t){var n,e,i=s.getModel(),r=t.target,o="globalout"===a;o?n={}:r&&zm(r,function(t){var e=Gu(t);if(e&&null!=e.dataIndex){t=e.dataModel||i.getSeriesByIndex(e.seriesIndex);return n=t&&t.getDataParams(e.dataIndex,e.dataType)||{},1}return e.eventData&&(n=A({},e.eventData),1)},!0),n&&(e=n.componentType,o=n.componentIndex,"markLine"!==e&&"markPoint"!==e&&"markArea"!==e||(e="series",o=n.seriesIndex),o=(e=e&&null!=o&&i.getComponent(e,o))&&s["series"===e.mainType?"_chartsMap":"_componentsMap"][e.__viewId],n.event=t,n.type=a,s._$eventProcessor.eventInfo={targetEl:r,packedEvent:n,model:e,view:o},s.trigger(a,n))}t.zrEventfulCallAtLast=!0,s._zr.on(a,t,s)}),$m(Gv,function(t,e){s._messageCenter.on(e,function(t){this.trigger(e,t)},s)}),$m(["selectchanged"],function(e){s._messageCenter.on(e,function(t){this.trigger(e,t)},s)}),t=this._messageCenter,n=(e=this)._model,t.on("selectchanged",function(t){t.isFromClick?(am("map","selectchanged",e,n,t),am("pie","selectchanged",e,n,t)):"select"===t.fromAction?(am("map","selected",e,n,t),am("pie","selected",e,n,t)):"unselect"===t.fromAction&&(am("map","unselected",e,n,t),am("pie","unselected",e,n,t))})},Rv.prototype.isDisposed=function(){return this._disposed},Rv.prototype.clear=function(){this._disposed?Fv(this.id):this.setOption({series:[]},!0)},Rv.prototype.dispose=function(){var e,n;this._disposed?Fv(this.id):(this._disposed=!0,Iu(this.getDom(),t_,""),e=this._api,n=this._model,$m(this._componentsViews,function(t){t.dispose(n,e)}),$m(this._chartsViews,function(t){t.dispose(n,e)}),this._zr.dispose(),delete Kv[this.id])},Rv.prototype.resize=function(t){var e;this._disposed?Fv(this.id):(this._zr.resize(t),e=this._model,this._loadingFX&&this._loadingFX.resize(),e&&(e=e.resetOption("media"),t=t&&t.silent,this[tv]=!0,e&&cv(this),fv.update.call(this,{type:"resize",animation:{duration:0}}),this[tv]=!1,vv.call(this,t),_v.call(this,t)))},Rv.prototype.showLoading=function(t,e){this._disposed?Fv(this.id):(Qm(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),qv[t]&&(t=qv[t](this._api,e),e=this._zr,this._loadingFX=t,e.add(t)))},Rv.prototype.hideLoading=function(){this._disposed?Fv(this.id):(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},Rv.prototype.makeActionFromEvent=function(t){var e=A({},t);return e.type=Gv[t.type],e},Rv.prototype.dispatchAction=function(t,e){var n;this._disposed?Fv(this.id):(Qm(e)||(e={silent:!!e}),Hv[t.type]&&this._model&&(this[tv]?this._pendingActions.push(t):(n=e.silent,mv.call(this,t,n),(e=e.flush)?this._zr.flush():!1!==e&&w.browser.weChat&&this._throttledZrFlush(),vv.call(this,n),_v.call(this,n))))},Rv.prototype.updateLabelLayout=function(){var t=this._labelManager;t.updateLayoutConfig(this._api),t.layout(this._api),t.processLabelsOverall()},Rv.prototype.appendData=function(t){var e;this._disposed?Fv(this.id):(e=t.seriesIndex,this.getModel().getSeriesByIndex(e).appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp())},Rv.internalField=(cv=function(t){var e=t._scheduler;e.restorePipelines(t._model),e.prepareStageTasks(),pv(t,!0),pv(t,!1),e.plan()},pv=function(t,r){for(var o=t._model,a=t._scheduler,s=r?t._componentsViews:t._chartsViews,l=r?t._componentsMap:t._chartsMap,u=t._zr,h=t._api,e=0;ee.get("hoverLayerThreshold")&&!w.node&&!w.worker&&e.eachSeries(function(t){t.preventUsingHoverLayer||(t=n._chartsMap[t.__viewId]).__alive&&t.group.traverse(function(t){t.states.emphasis&&(t.states.emphasis.hoverLayer=!0)})})},Cv=function(e,n){$m(Yv,function(t){t(e,n)})},kv=function(t){t[nv]=!0,t.getZr().wakeUp()},Lv=function(t){t[nv]&&(t.getZr().storage.traverse(function(t){Qh(t)||Ev(t)}),t[nv]=!1)},Iv=function(n){return l(t,e=Pd),t.prototype.getCoordinateSystems=function(){return n._coordSysMgr.getCoordinateSystems()},t.prototype.getComponentByElement=function(t){for(;t;){var e=t.__ecComponentInfo;if(null!=e)return n._model.getComponent(e.mainType,e.index);t=t.parent}},t.prototype.enterEmphasis=function(t,e){xh(t,e),kv(n)},t.prototype.leaveEmphasis=function(t,e){bh(t,e),kv(n)},t.prototype.enterBlur=function(t){wh(t),kv(n)},t.prototype.leaveBlur=function(t){Sh(t),kv(n)},t.prototype.enterSelect=function(t){Mh(t),kv(n)},t.prototype.leaveSelect=function(t){Th(t),kv(n)},t.prototype.getModel=function(){return n.getModel()},t.prototype.getViewOfComponentModel=function(t){return n.getViewOfComponentModel(t)},t.prototype.getViewOfSeriesModel=function(t){return n.getViewOfSeriesModel(t)},new t(n);function t(){return null!==e&&e.apply(this,arguments)||this}var e},Av=function(i){function r(t,e){for(var n=0;nm[1]&&(m[1]=y)}e&&(this._nameList[d]=e[f],this._dontMakeIdFromName||T_(this,d))}this._rawCount=this._count=s,this._extent={},v_(this)},G_.prototype._initDataFromProvider=function(t,e,n){if(!(e<=t)){for(var i=this._rawData,r=this._storage,o=this.dimensions,a=o.length,s=this._dimensionInfos,l=this._nameList,u=this._idList,h=this._rawExtent,c=i.getSource().sourceFormat===td,p=0;px[1]&&(x[1]=b)}c&&!i.pure&&y&&(v=y.name,null==l[m]&&null!=v&&(l[m]=yu(v,null)),v=y.id,null==u[m]&&null!=v&&(u[m]=yu(v,null))),this._dontMakeIdFromName||T_(this,m)}!i.persistent&&i.clean&&i.clean(),this._rawCount=this._count=e,this._extent={},v_(this)}},G_.prototype.count=function(){return this._count},G_.prototype.getIndices=function(){var t=this._indices;if(t){var e=t.constructor,n=this._count;if(e===Array){r=new e(n);for(var i=0;i=this._rawCount||t<0)return-1;if(!this._indices)return t;var e=this._indices,n=e[t];if(null!=n&&nt))return o;r=o-1}}return-1},G_.prototype.indicesOfNearest=function(t,e,n){var i=this._storage[t],r=[];if(!i)return r;null==n&&(n=1/0);for(var o=1/0,a=-1,s=0,l=0,u=this.count();lt[T][1])&&(S=!1)}S&&(s[l++]=this.getRawIndex(y))}return l_[1]&&(_[1]=v)}}}return t},G_.prototype.downSample=function(t,e,n,i){for(var r=I_(this,[t]),o=r._storage,a=[],s=P_(1/e),l=o[t],u=this.count(),h=r._rawExtent[t],c=new(__(this))(u),p=0,d=0;dh[1]&&(h[1]=y),c[p++]=m}return r._count=p,r._indices=c,r.getRawIndex=w_,r},G_.prototype.lttbDownSample=function(t,e){var n,i=I_(this,[]),r=i._storage[t],o=this.count(),a=new(__(this))(o),s=0,l=P_(1/e),u=this.getRawIndex(0);a[s++]=u;for(var h=1;he[1]&&(e[1]=t[1])},ex.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},ex.prototype.getExtent=function(){return this._extent.slice()},ex.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e)},ex.prototype.isInExtentRange=function(t){return this._extent[0]<=t&&this._extent[1]>=t},ex.prototype.isBlank=function(){return this._isBlank},ex.prototype.setBlank=function(t){this._isBlank=t},ex);function ex(t){this._setting=t||{},this._extent=[1/0,-1/0]}Bu(tx,{registerWhenExtend:!0});var nx=(ix.createByAxisModel=function(t){var e=t.option,t=e.data,t=t&&O(t,rx);return new ix({categories:t,needCollect:!t,deduplication:!1!==e.dedplication})},ix.prototype.getOrdinal=function(t){return this._getOrCreateMap().get(t)},ix.prototype.parseAndCollect=function(t){var e=this._needCollect;if("string"!=typeof t&&!e)return t;if(e&&!this._deduplication)return n=this.categories.length,this.categories[n]=t,n;var n,i=this._getOrCreateMap();return null==(n=i.get(t))&&(e?(n=this.categories.length,this.categories[n]=t,i.set(t,n)):n=NaN),n},ix.prototype._getOrCreateMap=function(){return this._map||(this._map=ht(this.categories))},ix);function ix(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication}function rx(t){return U(t)&&null!=t.value?t.value:t+""}var ox=Fl;function ax(t,e,n,i){var r={},o=t[1]-t[0],e=r.interval=Jl(o/e,!0);null!=n&&ei[1]&&(i[0]=i[1]),r}function sx(t){return Wl(t)+2}function lx(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function ux(t,e){return t>=e[0]&&t<=e[1]}function hx(t,e){return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])}function cx(t,e){return t*(e[1]-e[0])+e[0]}var px,dx=(l(fx,px=tx),fx.prototype.parse=function(t){return"string"==typeof t?this._ordinalMeta.getOrdinal(t):Math.round(t)},fx.prototype.contain=function(t){return ux(t=this.parse(t),this._extent)&&null!=this._ordinalMeta.categories[t]},fx.prototype.normalize=function(t){return hx(t=this.getCategoryIndex(this.parse(t)),this._extent)},fx.prototype.scale=function(t){return t=this.getCategoryIndex(t),Math.round(cx(t,this._extent))},fx.prototype.getTicks=function(){for(var t=[],e=this._extent,n=e[0];n<=e[1];)t.push({value:this.getCategoryIndex(n)}),n++;return t},fx.prototype.getMinorTicks=function(t){},fx.prototype.setCategorySortInfo=function(t){this._categorySortInfo=t},fx.prototype.getCategorySortInfo=function(){return this._categorySortInfo},fx.prototype.getCategoryIndex=function(t){return this._categorySortInfo.length?this._categorySortInfo[t].beforeSortIndex:t},fx.prototype.getRawIndex=function(t){return this._categorySortInfo.length?this._categorySortInfo[t].ordinalNumber:t},fx.prototype.getLabel=function(t){if(!this.isBlank()){t=this.getRawIndex(t.value),t=this._ordinalMeta.categories[t];return null==t?"":t+""}},fx.prototype.count=function(){return this._extent[1]-this._extent[0]+1},fx.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},fx.prototype.isInExtentRange=function(t){return t=this.getCategoryIndex(t),this._extent[0]<=t&&this._extent[1]>=t},fx.prototype.getOrdinalMeta=function(){return this._ordinalMeta},fx.prototype.niceTicks=function(){},fx.prototype.niceExtent=function(){},fx.type="ordinal",fx);function fx(t){var e=px.call(this,t)||this;e.type="ordinal";t=e.getSetting("ordinalMeta");return V(t=t||new nx({}))&&(t=new nx({categories:O(t,function(t){return U(t)?t.value:t})})),e._ordinalMeta=t,e._categorySortInfo=[],e._extent=e.getSetting("extent")||[0,t.categories.length-1],e}tx.registerClass(dx);var gx,yx=Fl,mx=(l(vx,gx=tx),vx.prototype.parse=function(t){return t},vx.prototype.contain=function(t){return ux(t,this._extent)},vx.prototype.normalize=function(t){return hx(t,this._extent)},vx.prototype.scale=function(t){return cx(t,this._extent)},vx.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=parseFloat(t)),isNaN(e)||(n[1]=parseFloat(e))},vx.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1]),this.setExtent(e[0],e[1])},vx.prototype.getInterval=function(){return this._interval},vx.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=sx(t)},vx.prototype.getTicks=function(t){var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=[];if(!e)return o;n[0]s&&(t?o.push({value:yx(s+e,r)}):o.push({value:n[1]})),o},vx.prototype.getMinorTicks=function(t){for(var e=this.getTicks(!0),n=[],i=this.getExtent(),r=1;ri[0]&&h=g[0]&&y<=g[1]&&a++)}h=(g[1]-g[0])/d;if(1.5*h=g[0]&&t.value<=g[1]&&!t.notAdd})}),function(t){return 0n&&(this._approxInterval=n);n=Ox.length,n=Math.min(function(t,e,n,i){for(;n>>1;t[r][1]e[1]&&(e[1]=t[1])})}var ub=(hb.prototype.getNeedCrossZero=function(){return!this.option.scale},hb.prototype.getCoordSysModel=function(){},hb);function hb(){}Tc={isDimensionStacked:$_,enableDataStack:K_,getStackedDimension:J_};var Qa=Object.freeze({__proto__:null,createList:function(t){return Q_(t.getSource(),t)},getLayoutRect:Bp,dataStack:Tc,createScale:function(t,e){var n=e;return e instanceof Ec||(n=new Ec(e)),(e=eb(n)).setExtent(t[0],t[1]),tb(e,n),e},mixinAxisModelCommonMethods:function(t){T(t,ub)},getECData:Gu,createDimensions:Y_,createSymbol:Um}),cb=1e-8;function pb(t,e){return Math.abs(t-e)>1^-(1&s),l=(l=t.charCodeAt(a+1)-64)>>1^-(1&l),r=s+=r,o=l+=o;i.push([s/n,l/n])}return i}function mb(t,r){return O(R((t=function(t){if(!t.UTF8Encoding)return t;var e=(t=t).UTF8Scale;null==e&&(e=1024);for(var n=t.features,i=0;ia[1];u(e[0].coord,a[0])&&(i?e[0].coord=a[0]:e.shift());i&&u(a[0],e[0].coord)&&e.unshift({coord:a[0]});u(a[1],o.coord)&&(i?o.coord=a[1]:e.pop());i&&u(o.coord,a[1])&&e.push({coord:a[1]});function u(t,e){return t=Fl(t),e=Fl(e),l?ei)return!1;return!0}(n,e))){var r=e.mapDimension(n.dim),o={};return E(n.getViewLabels(),function(t){o[t.tickValue]=1}),function(t){return!o.hasOwnProperty(e.get(r,t))}}}}function bw(t){for(var e,n,i=t.length/2;0l[u-1].coord&&(l.reverse(),h.reverse());var c=l[0].coord-10,e=l[u-1].coord+10,p=e-c;if(p<.001)return"transparent";E(l,function(t){t.offset=(t.coord-c)/p}),l.push({offset:u?l[u-1].offset:.5,color:h[1]||"transparent"}),l.unshift({offset:u?l[0].offset:.5,color:h[0]||"transparent"});l=new Da(0,0,0,0,l,!0);return l[o]=c,l[o+"2"]=e,l}}}(a,r)||a.getVisual("style")[a.getVisual("drawType")],y=t.get(["emphasis","focus"]),M=t.get(["emphasis","blurScope"]);d.useStyle(D(s.getLineStyle(),{fill:"none",stroke:w,lineJoin:"bevel"})),Ph(d,t,"lineStyle"),0e&&(e=t[n]);return isFinite(e)?e:NaN},min:function(t){for(var e=1/0,n=0;nl[1]?-1:1,o=["start"===u?l[0]-o*s:"end"===u?l[1]+o*s:(l[0]+l[1])/2,Gw(u)?t.labelOffset+a*s:0],null!=(s=e.get("nameRotate"))&&(s=s*Nw/180),Gw(u)?c=zw.innerTextLayout(t.rotation,null!=s?s:t.rotation,a):(c=function(t,e,n,i){var r,t=Yl(n-t),i=i[0]>i[1],i="start"===e&&!i||"start"!==e&&i;i=Zl(t-Nw/2)?(r=i?"bottom":"top","center"):Zl(t-1.5*Nw)?(r=i?"top":"bottom","center"):(r="middle",t<1.5*Nw&&Nw/2l[1]&&l.reverse(),(null==r||r>l[1])&&(r=l[1]),rt[1]&&(t[1]=e)}Pg.registerClass(lS),Pg.registerClass($i),o_(g.PROCESSOR.FILTER+10,{getTargetSeries:function(t){var e=ht();return t.eachSeries(function(t){Qw(t)&&e.set(t.uid,t)}),e},overallReset:function(t,e){var l,u,C,n=[],i=ht();l=i,u=n,t.eachSeries(function(t){var e,n,i,r,o,a,s;Qw(t)&&(e=(s=tS(t)).xAxisModel,n=s.yAxisModel,i=e.axis,r=n.axis,o=i.scale.rawExtentInfo,a=r.scale.rawExtentInfo,s=t.getData(),o&&o.frozen||a&&a.frozen||(u.push({seriesModel:t,xAxisModel:e,yAxisModel:n}),lb(pS(l,e).condExtent,s,i.dim),lb(pS(l,n).condExtent,s,r.dim)))}),C=i,E(n,function(t){var e=t.xAxisModel,n=t.yAxisModel,i=e.axis,r=n.axis,o=pS(C,e),a=pS(C,n);o.rawExtentInfo=$x(i.scale,e,o.condExtent),a.rawExtentInfo=$x(r.scale,n,a.condExtent),o.rawExtentResult=o.rawExtentInfo.calculate(),a.rawExtentResult=a.rawExtentInfo.calculate();var s,l,u=t.seriesModel.getData(),h={},c={};function p(e,t){var n=t.condExtent,t=t.rawExtentResult;"category"===e.type&&(n[0]e.min&&t.modifyDataMinMax("min",n[0]),!e.maxFixed&&n[1]e[1]&&e.reverse(),e},IS.prototype.pointToData=function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},IS.prototype.setCategorySortInfo=function(t){if("category"!==this.type)return!1;this.model.option.categorySortInfo=t,this.scale.setCategorySortInfo(t)},IS);function IS(t,e,n,i,r){n=TS.call(this,t,e,n)||this;return n.index=0,n.type=i||"value",n.position=r||"bottom",n}AS.prototype.getRect=function(){return this._rect},AS.prototype.update=function(t,e){var n=this._axesMap;this._updateScale(t,this.model),E(n.x,function(t){tb(t.scale,t.model)}),E(n.y,function(t){tb(t.scale,t.model)});var i={};E(n.x,function(t){kS(n,"y",t,i)}),E(n.y,function(t){kS(n,"x",t,i)}),this.resize(this.model,e)},AS.prototype.resize=function(t,e,n){var i=t.getBoxLayoutParams(),t=!n&&t.get("containLabel"),a=Bp(i,{width:e.getWidth(),height:e.getHeight()});this._rect=a;var r=this._axesList;function o(){E(r,function(t){var e,n,i=t.isHorizontal(),r=i?[0,a.width]:[0,a.height],o=t.inverse?1:0;t.setExtent(r[o],r[1-o]),t=t,e=i?a.x:a.y,i=t.getExtent(),n=i[0]+i[1],t.toGlobalCoord="x"===t.dim?function(t){return t+e}:function(t){return n-t+e},t.toLocalCoord="x"===t.dim?function(t){return t-e}:function(t){return n-t+e}})}o(),t&&(E(r,function(t){var e,n,i;t.model.get(["axisLabel","inside"])||(e=rb(t))&&(n=t.isHorizontal()?"height":"width",i=t.model.get(["axisLabel","margin"]),a[n]-=e[n]+i,"top"===t.position?a.y+=e.height+i:"left"===t.position&&(a.x+=e.width+i))}),o()),E(this._coordsList,function(t){t.calcAffineTransform()})},AS.prototype.getAxis=function(t,e){t=this._axesMap[t];if(null!=t)return t[e||0]},AS.prototype.getAxes=function(){return this._axesList.slice()},AS.prototype.getCartesian=function(t,e){if(null!=t&&null!=e){var n="x"+t+"y"+e;return this._coordsMap[n]}U(t)&&(e=t.yAxisIndex,t=t.xAxisIndex);for(var i=0,r=this._coordsList;ih?s:a,(i=Math.abs(e.label.y-h))>n.maxY&&(o=(r=e.label.x-u-e.len2*p)<(o=c+e.len)?Math.sqrt(i*i/(1-r*r/o/o)):o,n.rB=o,n.maxY=i),n.list.push(e))}d(a),d(s)}(t)}function d(t){for(var e=t.rB,n=e*e,i=0;i=n.r0}},vM.type="pie",vM);function vM(){var t=null!==mM&&mM.apply(this,arguments)||this;return t.ignoreLabelLineUpdate=!0,t}zg.registerClass(Yh);var _M,xM,bM=2*Math.PI,wM=Math.PI/180;xM=a_,E([[(_M="pie")+"ToggleSelect","toggleSelect"],[_M+"Select","select"],[_M+"UnSelect","unselect"]],function(r){xM(r[0],function(t,e,n){var i;t=A({},t),n.dispatchAction(A(t,{type:r[1],seriesIndex:(t=t,i=[],e.eachComponent({mainType:"series",subType:_M,query:t},function(t){i.push(t.seriesIndex)}),i)}))})}),s_(B(function(t,e,I){e.eachSeriesByType(t,function(t){var r=t.getData(),e=r.mapDimension("value"),n=(l=I,Bp(t.getBoxLayoutParams(),{width:l.getWidth(),height:l.getHeight()})),i=t.get("center"),o=t.get("radius");V(o)||(o=[0,o]),V(i)||(i=[i,i]);var a=Vl(n.width,I.getWidth()),s=Vl(n.height,I.getHeight()),l=Math.min(a,s),u=Vl(i[0],a)+n.x,h=Vl(i[1],s)+n.y,c=Vl(o[0],l/2),p=Vl(o[1],l/2),d=-t.get("startAngle")*wM,f=t.get("minAngle")*wM,g=0;r.each(e,function(t){isNaN(t)||g++});var y=r.getSum(e),m=Math.PI/(y||g)*2,v=t.get("clockwise"),_=t.get("roseType"),x=t.get("stillShowZeroSum"),b=r.getDataExtent(e);b[0]=0;var w,S=bM,M=0,T=d,C=v?1:-1;r.setLayout({viewRect:n,r:p}),r.each(e,function(t,e){var n,i;isNaN(t)?r.setItemLayout(e,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:v,cx:u,cy:h,r0:c,r:_?NaN:p}):((n="area"!==_?0===y&&x?m:t*m:bM/g)n)return!0;if(e){t=Yw(t).seriesDataCount,i=i.getExtent();return Math.abs(i[0]-i[1])/t>n}return!1},sT.prototype.makeElOption=function(t,e,n,i,r){},sT.prototype.createPointerEl=function(t,e,n,i){var r=e.pointer;r&&(e=rT(t).pointerEl=new lc[r.type](oT(e.pointer)),t.add(e))},sT.prototype.createLabelEl=function(t,e,n,i){e.label&&(e=rT(t).labelEl=new Ss(oT(e.label)),t.add(e),uT(e,i))},sT.prototype.updatePointerEl=function(t,e,n){t=rT(t).pointerEl;t&&e.pointer&&(t.setStyle(e.pointer.style),n(t,{shape:e.pointer.shape}))},sT.prototype.updateLabelEl=function(t,e,n,i){t=rT(t).labelEl;t&&(t.setStyle(e.label.style),n(t,{x:e.label.x,y:e.label.y}),uT(t,i))},sT.prototype._renderHandle=function(t){if(!this._dragging&&this.updateHandleTransform){var e,n=this._axisPointerModel,i=this._api.getZr(),r=this._handle,o=n.getModel("handle"),a=n.get("status");if(!o.get("show")||!a||"hide"===a)return r&&i.remove(r),void(this._handle=null);this._handle||(e=!0,r=this._handle=ac(o.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){Jt(t.event)},onmousedown:aT(this._onHandleDragMove,this,0,0),drift:aT(this._onHandleDragMove,this),ondragend:aT(this._onHandleDragEnd,this)}),i.add(r)),cT(r,n,!1),r.setStyle(o.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));n=o.get("size");V(n)||(n=[n,n]),r.scaleX=n[0]/2,r.scaleY=n[1]/2,jg(this,"_doDispatchAxisPointer",o.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},sT.prototype._moveHandleToValue=function(t,e){lT(this._axisPointerModel,!e&&this._moveAnimation,this._handle,hT(this.getHandleTransform(t,this._axisModel,this._axisPointerModel)))},sT.prototype._onHandleDragMove=function(t,e){var n=this._handle;n&&(this._dragging=!0,e=this.updateHandleTransform(hT(n),[t,e],this._axisModel,this._axisPointerModel),this._payloadInfo=e,n.stopAnimation(),n.attr(hT(e)),rT(n).lastProp=null,this._doDispatchAxisPointer())},sT.prototype._doDispatchAxisPointer=function(){var t,e;this._handle&&(t=this._payloadInfo,e=this._axisModel,this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:e.axis.dim,axisIndex:e.componentIndex}]}))},sT.prototype._onHandleDragEnd=function(){var t;this._dragging=!1,this._handle&&(t=this._axisPointerModel.get("value"),this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"}))},sT.prototype.clear=function(t){this._lastValue=null,this._lastStatus=null;var e=t.getZr(),n=this._group,t=this._handle;e&&n&&(this._lastGraphicKey=null,n&&e.remove(n),t&&e.remove(t),this._group=null,this._handle=null,this._payloadInfo=null)},sT.prototype.doClear=function(){},sT.prototype.buildLabel=function(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}},sT);function sT(){this._dragging=!1,this.animationThreshold=15}function lT(t,e,n,i){!function n(i,t){{if(U(i)&&U(t)){var r=!0;return E(t,function(t,e){r=r&&n(i[e],t)}),!!r}return i===t}}(rT(n).lastProp,i)&&(rT(n).lastProp=i,e?jh(n,i,t):(n.stopAnimation(),n.attr(i)))}function uT(t,e){t[e.get(["label","show"])?"show":"hide"]()}function hT(t){return{x:t.x||0,y:t.y||0,rotation:t.rotation||0}}function cT(t,e,n){var i=e.get("z"),r=e.get("zlevel");t&&t.traverse(function(t){"group"!==t.type&&(null!=i&&(t.z=i),null!=r&&(t.zlevel=r),t.silent=n)})}function pT(t,e,n,i,r){var o=dT(n.get("value"),e.axis,e.ecModel,n.get("seriesDataIndices"),{precision:n.get(["label","precision"]),formatter:n.get(["label","formatter"])}),a=n.getModel("label"),s=bp(a.get("padding")||0),l=a.getFont(),u=Wn(o,l),h=r.position,c=u.width+s[1]+s[3],n=u.height+s[0]+s[2],u=r.align;"right"===u&&(h[0]-=c),"center"===u&&(h[0]-=c/2);u=r.verticalAlign;"bottom"===u&&(h[1]-=n),"middle"===u&&(h[1]-=n/2),r=h,u=c,c=n,i=(n=i).getWidth(),n=n.getHeight(),r[0]=Math.min(r[0]+u,i)-u,r[1]=Math.min(r[1]+c,n)-c,r[0]=Math.max(r[0],0),r[1]=Math.max(r[1],0);r=a.get("backgroundColor");r&&"auto"!==r||(r=e.get(["axisLine","lineStyle","color"])),t.label={x:h[0],y:h[1],style:fc(a,{text:o,font:l,fill:a.getTextColor(),padding:s,backgroundColor:r}),z2:10}}function dT(t,e,n,i,r){t=e.scale.parse(t);var o,a=e.scale.getLabel({value:t},{precision:r.precision}),r=r.formatter;return r&&(o={value:ib(e,{value:t}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]},E(i,function(t){var e=n.getSeriesByIndex(t.seriesIndex),t=t.dataIndexInside,t=e&&e.getDataParams(t);t&&o.seriesData.push(t)}),H(r)?a=r.replace("{value}",a):F(r)&&(a=r(o))),a}function fT(t,e,n){var i=ge();return xe(i,i,n.rotation),_e(i,i,n.position),ec([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}var gT,Yh=(l(yT,gT=Yh),yT.prototype.makeElOption=function(t,e,n,i,r){var o,a,s=n.axis,l=s.grid,u=i.get("type"),h=mT(l,s).getOtherAxis(s).getGlobalExtent(),c=s.toGlobalCoord(s.dataToCoord(e,!0));u&&"none"!==u&&(a=(o=i).get("type"),o=o.getModel(a+"Style"),"line"===a?(p=o.getLineStyle()).fill=null:"shadow"===a&&((p=o.getAreaStyle()).stroke=null),o=p,(p=vT[u](s,c,h)).style=o,t.graphicKey=p.type,t.pointer=p);var p=Jw(l.model,n);l=e,e=t,t=p,p=n,n=i,i=r,r=zw.innerTextLayout(t.rotation,0,t.labelDirection),t.labelMargin=n.get(["label","margin"]),pT(e,p,n,i,{position:fT(p.axis,l,t),align:r.textAlign,verticalAlign:r.textVerticalAlign})},yT.prototype.getHandleTransform=function(t,e,n){var i=Jw(e.axis.grid.model,e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);t=fT(e.axis,t,i);return{x:t[0],y:t[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},yT.prototype.updateHandleTransform=function(t,e,n,i){var r=n.axis,o=r.grid,a=r.getGlobalExtent(!0),n=mT(o,r).getOtherAxis(r).getGlobalExtent(),o="x"===r.dim?0:1,r=[t.x,t.y];r[o]+=e[o],r[o]=Math.min(a[1],r[o]),r[o]=Math.max(a[0],r[o]);n=(n[1]+n[0])/2,n=[n,n];n[o]=r[o];return{x:r[0],y:r[1],rotation:t.rotation,cursorPoint:n,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][o]}},yT);function yT(){return null!==gT&&gT.apply(this,arguments)||this}function mT(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}var vT={line:function(t,e,n){var i;return{type:"Line",subPixelOptimize:!0,shape:(i=[e,n[0]],n=[e,n[1]],t=_T(t),{x1:i[t=t||0],y1:i[1-t],x2:n[t],y2:n[1-t]})}},shadow:function(t,e,n){var i=Math.max(1,t.getBandWidth()),r=n[1]-n[0];return{type:"Rect",shape:(n=[e-i/2,n[0]],r=[i,r],t=_T(t),{x:n[t=t||0],y:n[1-t],width:r[t],height:r[1-t]})}}};function _T(t){return"x"===t.dim?0:1}nl.registerAxisPointerClass("CartesianAxisPointer",Yh);var xT,nl=(l(bT,xT=qp),bT.type="axisPointer",bT.defaultOption={show:"auto",zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#B9BEC9",width:1,type:"dashed"},shadowStyle:{color:"rgba(210,219,238,0.2)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}},bT);function bT(){var t=null!==xT&&xT.apply(this,arguments)||this;return t.type=bT.type,t}qp.registerClass(nl),r_(function(t){var e;t&&(t.axisPointer&&0!==t.axisPointer.length||(t.axisPointer={}),(e=t.axisPointer.link)&&!V(e)&&(t.axisPointer.link=[e]))}),o_(g.PROCESSOR.STATISTIC,function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=Uw(t,e)}),a_({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},function(t,e,n){var i=t.currTrigger,o=[t.x,t.y],r=t,a=t.dispatchAction||z(n.dispatchAction,n),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){qM(o)&&(o=WM({seriesIndex:r.seriesIndex,dataIndex:r.dataIndex},e).point);var l=qM(o),u=r.axesInfo,h=s.axesInfo,c="leave"===i||qM(o),p={},d={},r={list:[],map:{}},f={showPointer:B(YM,d),showTooltip:B(ZM,r)};E(s.coordSysMap,function(t,e){var r=l||t.containPoint(o);E(s.coordSysAxesInfo[e],function(t,e){var n=t.axis,i=function(t,e){for(var n=0;n<(t||[]).length;n++){var i=t[n];if(e.axis.dim===i.axisDim&&e.axis.model.componentIndex===i.axisIndex)return i}}(u,t);c||!r||u&&!i||(null!=(i=i&&i.value)||l||(i=n.pointToData(o)),null!=i&&XM(t,i,f,!1,p))})});var g,y,m={};return E(h,function(n,t){var i=n.linkGroup;i&&!d[t]&&E(i.axesInfo,function(t,e){e=d[e];t!==n&&e&&(e=e.value,i.mapper&&(e=n.axis.scale.parse(i.mapper(e,jM(t),jM(n)))),m[n.key]=e)})}),E(m,function(t,e){XM(h[e],t,f,!0,p)}),g=d,i=h,y=p.axesInfo=[],E(i,function(t,e){var n=t.axisPointerModel.option,e=g[e];e?(t.useHandle||(n.status="show"),n.value=e.value,n.seriesDataIndices=(e.payloadBatch||[]).slice()):t.useHandle||(n.status="hide"),"show"===n.status&&y.push({axisDim:t.axis.dim,axisIndex:t.axis.model.componentIndex,value:n.value})}),function(t,e,n,i){if(qM(e)||!t.list.length)return i({type:"hideTip"});var r=((t.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};i({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:r.dataIndexInside,dataIndex:r.dataIndex,seriesIndex:r.seriesIndex,dataByCoordSys:t.list})}(r,o,t,a),function(t,e){var n=e.getZr(),i="axisPointerLastHighlights",r=UM(n)[i]||{},o=UM(n)[i]={};E(t,function(t,e){t=t.axisPointerModel.option;"show"===t.status&&E(t.seriesDataIndices,function(t){var e=t.seriesIndex+" | "+t.dataIndex;o[e]=t})});var a=[],s=[];E(r,function(t,e){o[e]||s.push(t)}),E(o,function(t,e){r[e]||a.push(t)}),s.length&&e.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:s}),a.length&&e.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:a})}(h,n),p}});var wT,Yh=(l(ST,wT=qp),ST.type="tooltip",ST.dependencies=["axisPointer"],ST.defaultOption={zlevel:0,z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,displayMode:"single",renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,enterable:!1,backgroundColor:"#fff",shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderColor:"#333",borderRadius:4,borderWidth:1,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:"#999",width:1,type:"dashed",textStyle:{}}},textStyle:{color:"#666",fontSize:14}},ST);function ST(){var t=null!==wT&&wT.apply(this,arguments)||this;return t.type=ST.type,t}function MT(t){var e=t.get("confine");return null!=e?e:"richText"===t.get("renderMode")}qp.registerClass(Yh);var TT=["-ms-","-moz-","-o-","-webkit-",""];function CT(i,t,e){var n,r=[],o=i.get("transitionDuration"),a=i.get("backgroundColor"),s=i.get("shadowBlur"),l=i.get("shadowColor"),u=i.get("shadowOffsetX"),h=i.get("shadowOffsetY"),c=i.getModel("textStyle"),p=yg(i,"html"),l=u+"px "+h+"px "+s+"px "+l;return r.push("box-shadow:"+l),t&&o&&r.push((n="opacity "+(t=o)/2+"s "+(o="cubic-bezier(0.23, 1, 0.32, 1)")+",visibility "+t/2+"s "+o,e||(n+=",left "+t+"s "+o+",top "+t+"s "+o),O(TT,function(t){return t+"transition:"+n}).join(";"))),a&&(w.canvasSupported?r.push("background-Color:"+a):(r.push("background-Color:#"+en(a)),r.push("filter:alpha(opacity=70)"))),E(["width","color","radius"],function(t){var e="border-"+t,n=xp(e),n=i.get(n);null!=n&&r.push(e+":"+n+("color"===t?"":"px"))}),r.push(function(n){var i=[],t=n.get("fontSize");(o=n.getTextColor())&&i.push("color:"+o),i.push("font:"+n.getFont()),t&&i.push("line-height:"+Math.round(3*t/2)+"px");var e=n.get("textShadowColor"),r=n.get("textShadowBlur")||0,o=n.get("textShadowOffsetX")||0,t=n.get("textShadowOffsetY")||0;return e&&r&&i.push("text-shadow:"+o+"px "+t+"px "+r+"px "+e),E(["decoration","align"],function(t){var e=n.get(t);e&&i.push("text-"+t+":"+e)}),i.join(";")}(c)),null!=p&&r.push("padding:"+bp(p).join("px ")+"px"),r.join(";")+";"}function IT(t,e,n,i,r){var o,a,s=e&&e.painter;n?(a=s&&s.getViewportRoot())&&(o=t,n=a,a=document.body,Gt(Ht,n,i,r,!0)&&Gt(o,a,Ht[0],Ht[1])):(t[0]=i,t[1]=r,(s=s&&s.getViewportRootOffset())&&(t[0]+=s.offsetLeft,t[1]+=s.offsetTop)),t[2]=t[0]/e.getWidth(),t[3]=t[1]/e.getHeight()}var AT=(DT.prototype.update=function(t){var e=this._container,n=e.currentStyle||document.defaultView.getComputedStyle(e),e=e.style;"absolute"!==e.position&&"absolute"!==n.position&&(e.position="relative"),t.get("alwaysShowContent")&&this._moveIfResized(),this.el.className=t.get("className")||""},DT.prototype.show=function(t,e){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,i=this._styleCoord,r=n.offsetHeight/2;e=kp(e),n.style.cssText="position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;"+CT(t,!this._firstShow,this._longHide)+";left:"+i[0]+"px;top:"+(i[1]-r)+"px;border-color: "+e+";"+(t.get("extraCssText")||""),n.style.display=n.innerHTML?"block":"none",n.style.pointerEvents=this._enterable?"auto":"none",this._show=!0,this._firstShow=!1,this._longHide=!1},DT.prototype.setContent=function(t,e,n,i,r){if(null!=t){var o=this.el;if(H(r)&&"item"===n.get("trigger")&&!MT(n)&&(t+=function(t,e,n){if(!H(n)||"inside"===n)return"";e=kp(e);var n=i="left"===(i=n)?"right":"right"===i?"left":"top"===i?"bottom":"top",i="",r="",r=-1'}(n.get("backgroundColor"),i,r)),H(t))o.innerHTML=t;else if(t){o.innerHTML="",V(t)||(t=[t]);for(var a=0;a",a=p.join(e);this._showOrMove(r,function(){this._updateContentNotChangedOnAxis(t)?this._updatePosition(r,o,i[0],i[1],this._tooltipContent,h):this._showTooltipContent(r,a,h,Math.random()+"",i[0],i[1],o,null,d)})},FT.prototype._showSeriesItemTooltip=function(t,e,n){var i,r,o,a,s=zm(e,function(t){return null!=Gu(t).dataIndex}),l=this._ecModel,u=Gu(s),h=u.seriesIndex,c=l.getSeriesByIndex(h),p=u.dataModel||c,d=u.dataIndex,e=u.dataType,s=p.getData(e),u=this._renderMode,f=HT([s.getItemModel(d),p,c&&(c.coordinateSystem||{}).model,this._tooltipModel]),c=f.get("trigger");null!=c&&"item"!==c||(i=p.getDataParams(d,e),r=new mg,i.marker=r.makeTooltipMarker("item",kp(i.color),u),c=Af(p.formatTooltip(d,!1,e)),e=f.get("order"),o=c.markupFragment?pg(c.markupFragment,r,u,e,l.get("useUTC")):c.markupText,a="item_"+p.name+"_"+d,this._showOrMove(f,function(){this._showTooltipContent(f,o,i,a,t.offsetX,t.offsetY,t.position,t.target,r)}),n({type:"showTip",dataIndexInside:d,dataIndex:s.getRawIndex(d),seriesIndex:h,from:this.uid}))},FT.prototype._showComponentItemTooltip=function(t,e,n){var i=e.tooltip;H(i)&&(i={content:i,formatter:i});var r=new Ec(i,this._tooltipModel,this._ecModel),o=r.get("content"),a=Math.random()+"",s=new mg;this._showOrMove(r,function(){this._showTooltipContent(r,o,r.get("formatterParams")||{},a,t.offsetX,t.offsetY,t.position,e,s)}),n({type:"showTip",from:this.uid})},FT.prototype._showTooltipContent=function(n,t,i,e,r,o,a,s,l){var u,h,c,p,d;this._ticket="",n.get("showContent")&&n.get("show")&&(u=this._tooltipContent,h=n.get("formatter"),a=a||n.get("position"),p=t,c=this._getNearestPoint([r,o],i,n.get("trigger")),h&&H(h)?(d=n.ecModel.get("useUTC"),p=h,(t=V(i)?i[0]:i)&&t.axisType&&0<=t.axisType.indexOf("time")&&(p=ip(t.axisValue,p,d)),p=Ap(p,i,!0)):F(h)&&(d=NT(function(t,e){t===this._ticket&&(u.setContent(e,l,n,c.color,a),this._updatePosition(n,a,r,o,u,i,s))},this),this._ticket=e,p=h(i,e,d)),u.setContent(p,l,n,c.color,a),u.show(n,c.color),this._updatePosition(n,a,r,o,u,i,s))},FT.prototype._getNearestPoint=function(t,e,n){return"axis"===n||V(e)?{color:"html"===this._renderMode?"#fff":"none"}:V(e)?void 0:{color:e.color||e.borderColor}},FT.prototype._updatePosition=function(t,e,n,i,r,o,a){var s=this._api.getWidth(),l=this._api.getHeight();e=e||t.get("position");var u,h=r.getSize(),c=t.get("align"),p=t.get("verticalAlign"),d=a&&a.getBoundingRect().clone();a&&d.applyTransform(a.transform),F(e)&&(e=e([n,i],o,r.el,d,{viewSize:[s,l],contentSize:h.slice()})),V(e)?(n=BT(e[0],s),i=BT(e[1],l)):U(e)?((o=e).width=h[0],o.height=h[1],n=(o=Bp(o,{width:s,height:l})).x,i=o.y,p=c=null):i=(n=(u=H(e)&&a?function(t,e,n){var i=n[0],r=n[1],o=0,a=0,s=e.width,n=e.height;switch(t){case"inside":o=e.x+s/2-i/2,a=e.y+n/2-r/2;break;case"top":o=e.x+s/2-i/2,a=e.y-r-10;break;case"bottom":o=e.x+s/2-i/2,a=e.y+n+10;break;case"left":o=e.x-i-10-5,a=e.y+n/2-r/2;break;case"right":o=e.x+s+10+5,a=e.y+n/2-r/2}return[o,a]}(e,d,h):function(t,e,n,i,r,o,a){var s=n.getOuterSize(),n=s.width,s=s.height;null!=o&&(in[r],f=[-c.x,-c.y];e||(f[i]=l[s]);var g=[0,0],e=[-p.x,-p.y],s=Q(t.get("pageButtonGap",!0),t.get("itemGap",!0));d&&("end"===t.get("pageButtonPosition",!0)?e[i]+=n[r]-p[r]:g[i]+=p[r]+s),e[1-i]+=c[o]/2-p[o]/2,l.setPosition(f),u.setPosition(g),h.setPosition(e);g={x:0,y:0};g[r]=(d?n:c)[r],g[o]=Math.max(c[o],p[o]),g[a]=Math.min(0,p[a]+e[1-i]),u.__rectSize=n[r],d?((i={x:0,y:0})[r]=Math.max(n[r]-p[r]-s,0),i[o]=g[o],u.setClipPath(new oa({shape:i})),u.__rectSize=i[r]):h.eachChild(function(t){t.attr({invisible:!0,silent:!0})});h=this._getPageInfo(t);return null!=h.pageIndex&&jh(l,{x:h.contentPosition[0],y:h.contentPosition[1]},d?t:null),this._updatePageInfoView(t,h),g},cC.prototype._pageGo=function(t,e,n){t=this._getPageInfo(e)[t];null!=t&&n.dispatchAction({type:"legendScroll",scrollDataIndex:t,legendId:e.id})},cC.prototype._updatePageInfoView=function(n,i){var r=this._controllerGroup;E(["pagePrev","pageNext"],function(t){var e=null!=i[t+"DataIndex"],t=r.childOfName(t);t&&(t.setStyle("fill",e?n.get("pageIconColor",!0):n.get("pageIconInactiveColor",!0)),t.cursor=e?"pointer":"default")});var t=r.childOfName("pageText"),e=n.get("pageFormatter"),o=i.pageIndex,a=null!=o?o+1:0,o=i.pageCount;t&&e&&t.setStyle("text",H(e)?e.replace("{current}",null==a?"":a+"").replace("{total}",null==o?"":o+""):e({current:a,total:o}))},cC.prototype._getPageInfo=function(t){var e=t.get("scrollDataIndex",!0),n=this.getContentGroup(),i=this._containerGroup.__rectSize,r=t.getOrient().index,o=uC[r],a=hC[r],s=this._findTargetItemIndex(e),l=n.children(),t=l[s],u=l.length,e=u?1:0,h={contentPosition:[n.x,n.y],pageCount:e,pageIndex:e-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!t)return h;t=g(t);h.contentPosition[r]=-t.s;for(var c=s+1,p=t,d=t,f=null;c<=u;++c)(!(f=g(l[c]))&&d.e>p.s+i||f&&!y(f,p.s))&&(p=d.i>p.i?d:f)&&(null==h.pageNextDataIndex&&(h.pageNextDataIndex=p.i),++h.pageCount),d=f;for(c=s-1,p=t,d=t,f=null;-1<=c;--c)(f=g(l[c]))&&y(d,f.s)||!(p.i=e&&t.s<=e+i}},cC.prototype._findTargetItemIndex=function(n){return this._showController?(this.getContentGroup().eachChild(function(t,e){t=t.__legendDataIndex;null==r&&null!=t&&(r=e),t===n&&(i=e)}),null!=i?i:r):0;var i,r},cC.type="legend.scroll",cC);function cC(){var t=null!==sC&&sC.apply(this,arguments)||this;return t.type=cC.type,t.newlineDisabled=!0,t._currentIndex=0,t}Pg.registerClass(nl),a_("legendScroll","legendscroll",function(t,e){var n=t.scrollDataIndex;null!=n&&e.eachComponent({mainType:"legend",subType:"scroll",query:t},function(t){t.setScrollDataIndex(n)})});var pC,nl=(l(dC,pC=qp),dC.type="title",dC.defaultOption={zlevel:0,z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:"#464646"},subtextStyle:{fontSize:12,color:"#6E7079"}},dC);function dC(){var t=null!==pC&&pC.apply(this,arguments)||this;return t.type=dC.type,t.layoutMode={type:"box",ignoreSize:!0},t}qp.registerClass(nl);var fC,nl=(l(gC,fC=Pg),gC.prototype.render=function(t,e,n){var i,r,o,a,s,l,u,h,c;this.group.removeAll(),t.get("show")&&(i=this.group,h=t.getModel("textStyle"),a=t.getModel("subtextStyle"),r=t.get("textAlign"),c=Q(t.get("textBaseline"),t.get("textVerticalAlign")),u=(o=new Ss({style:fc(h,{text:t.get("text"),fill:h.getTextColor()},{disableBox:!0}),z2:10})).getBoundingRect(),h=t.get("subtext"),a=new Ss({style:fc(a,{text:h,fill:a.getTextColor(),y:u.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),s=t.get("link"),l=t.get("sublink"),u=t.get("triggerEvent",!0),o.silent=!s&&!u,a.silent=!l&&!u,s&&o.on("click",function(){Lp(s,"_"+t.get("target"))}),l&&a.on("click",function(){Lp(l,"_"+t.get("subtarget"))}),Gu(o).eventData=Gu(a).eventData=u?{componentType:"title",componentIndex:t.componentIndex}:null,i.add(o),h&&i.add(a),u=i.getBoundingRect(),(h=t.getBoxLayoutParams()).width=u.width,h.height=u.height,n=Bp(h,{width:n.getWidth(),height:n.getHeight()},t.get("padding")),r||("middle"===(r=t.get("left")||t.get("right"))&&(r="center"),"right"===r?n.x+=n.width:"center"===r&&(n.x+=n.width/2)),c||("center"===(c=t.get("top")||t.get("bottom"))&&(c="middle"),"bottom"===c?n.y+=n.height:"middle"===c&&(n.y+=n.height/2),c=c||"top"),i.x=n.x,i.y=n.y,i.markRedraw(),c={align:r,verticalAlign:c},o.setStyle(c),a.setStyle(c),u=i.getBoundingRect(),c=n.margin,(n=t.getItemStyle(["color","opacity"])).fill=t.get("backgroundColor"),n=new oa({shape:{x:u.x-c[3],y:u.y-c[0],width:u.width+c[1]+c[3],height:u.height+c[0]+c[2],r:t.get("borderRadius")},style:n,subPixelOptimize:!0,silent:!0}),i.add(n))},gC.type="title",gC);function gC(){var t=null!==fC&&fC.apply(this,arguments)||this;return t.type=gC.type,t}function yC(t){hu(t,"label",["show"])}Pg.registerClass(nl);var mC,vC=bu(),_C=(l(xC,mC=qp),xC.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n),this._mergeOption(t,n,!1,!0)},xC.prototype.isAnimationEnabled=function(){if(w.node)return!1;var t=this.__hostSeries;return this.getShallow("animation")&&t&&t.isAnimationEnabled()},xC.prototype.mergeOption=function(t,e){this._mergeOption(t,e,!1,!1)},xC.prototype._mergeOption=function(t,i,e,r){var o=this.mainType;e||i.eachSeries(function(t){var e=t.get(this.mainType,!0),n=vC(t)[o];e&&e.data?(n?n._mergeOption(e,i,!0):(r&&yC(e),E(e.data,function(t){t instanceof Array?(yC(t[0]),yC(t[1])):yC(t)}),A(n=this.createMarkerModelFromSeries(e,this,i),{mainType:this.mainType,seriesIndex:t.seriesIndex,name:t.name,createdBySelf:!0}),n.__hostSeries=t),vC(t)[o]=n):vC(t)[o]=null},this)},xC.prototype.formatTooltip=function(t,e,n){var i=this.getData(),r=this.getRawValue(t),t=i.getName(t);return ug("section",{header:this.name,blocks:[ug("nameValue",{name:t,value:r,noName:!t,noValue:null==r})]})},xC.prototype.getData=function(){return this._data},xC.prototype.setData=function(t){this._data=t},xC.getMarkerModelFromSeries=function(t,e){return vC(t)[e]},xC.type="marker",xC.dependencies=["series","grid","polar","geo"],xC);function xC(){var t=null!==mC&&mC.apply(this,arguments)||this;return t.type=xC.type,t.createdBySelf=!1,t}T(_C,Ca.prototype);var bC,nl=(l(wC,bC=_C),wC.prototype.createMarkerModelFromSeries=function(t,e,n){return new wC(t,e,n)},wC.type="markPoint",wC.defaultOption={zlevel:0,z:5,symbol:"pin",symbolSize:50,tooltip:{trigger:"item"},label:{show:!0,position:"inside"},itemStyle:{borderWidth:2},emphasis:{label:{show:!0}}},wC);function wC(){var t=null!==bC&&bC.apply(this,arguments)||this;return t.type=wC.type,t}function SC(t,e,n,i,r,o){var a=[],s=$_(e,i)?e.getCalculationInfo("stackResultDimension"):i,t=DC(e,s,t),t=e.indicesOfNearest(s,t)[0];a[r]=e.get(n,t),a[o]=e.get(s,t);s=e.get(i,t),t=Gl(e.get(i,t));return 0<=(t=Math.min(t,20))&&(a[o]=+a[o].toFixed(t)),[a,s]}qp.registerClass(nl);var MC={min:B(SC,"min"),max:B(SC,"max"),average:B(SC,"average"),median:B(SC,"median")};function TC(t,e){var n=t.getData(),i=t.coordinateSystem;if(e&&(o=e,isNaN(parseFloat(o.x))||isNaN(parseFloat(o.y)))&&!V(e.coord)&&i){var r=i.dimensions,o=CC(e,n,i,t);if((e=I(e)).type&&MC[e.type]&&o.baseAxis&&o.valueAxis){i=L(r,o.baseAxis.dim),t=L(r,o.valueAxis.dim),t=MC[e.type](n,o.baseDataDim,o.valueDataDim,i,t);e.coord=t[0],e.value=t[1]}else{for(var a=[null!=e.xAxis?e.xAxis:e.radiusAxis,null!=e.yAxis?e.yAxis:e.angleAxis],s=0;s<2;s++)MC[a[s]]&&(a[s]=DC(n,n.mapDimension(r[s]),a[s]));e.coord=a}}return e}function CC(t,e,n,i){var r={};return null!=t.valueIndex||null!=t.valueDim?(r.valueDataDim=null!=t.valueIndex?e.getDimension(t.valueIndex):t.valueDim,r.valueAxis=n.getAxis(function(t,e){var n=t.getData(),i=n.dimensions;e=n.getDimension(e);for(var r=0;ro&&(e[1-i]=e[i]+n.sign*o),e}function VI(t,e){t=t[e]-t[1-e];return{span:Math.abs(t),sign:0e[0]||t[1]<0||t[1]>e[1]||(e=((e=this._handleEnds)[0]+e[1])/2,e=this._updateInterval("all",t[0]-e),this._updateView(),e&&this._dispatchZoomAction(!1))},ZI.prototype._onBrushStart=function(t){var e=t.offsetX,t=t.offsetY;this._brushStart=new Mn(e,t),this._brushing=!0,this._brushStartTime=+new Date},ZI.prototype._onBrushEnd=function(t){var e,n,i;this._brushing&&(i=this._displayables.brushRect,this._brushing=!1,i&&(i.attr("ignore",!0),e=i.shape,+new Date-this._brushStartTime<200&&Math.abs(e.width)<5||(n=this._getViewExtent(),i=[0,100],this._range=Hl([Bl(e.x,n,i,!0),Bl(e.x+e.width,n,i,!0)]),this._handleEnds=[e.x,e.x+e.width],this._updateView(),this._dispatchZoomAction(!1))))},ZI.prototype._onBrush=function(t){this._brushing&&(Jt(t.event),this._updateBrushRect(t.offsetX,t.offsetY))},ZI.prototype._updateBrushRect=function(t,e){var n=this._displayables,i=this.dataZoomModel,r=n.brushRect;r||(r=n.brushRect=new GI({silent:!0,style:i.getModel("brushStyle").getItemStyle()}),n.sliderGroup.add(r)),r.attr("ignore",!1);i=this._brushStart,n=this._displayables.sliderGroup,e=n.transformCoordToLocal(t,e),n=n.transformCoordToLocal(i.x,i.y),i=this._size;e[0]=Math.max(Math.min(i[0],e[0]),0),r.setShape({x:n[0],y:0,width:e[0]-n[0],height:i[1]})},ZI.prototype._dispatchZoomAction=function(t){var e=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,animation:t?YI:null,start:e[0],end:e[1]})},ZI.prototype._findCoordRect=function(){var t,e,n=AI(this.dataZoomModel).infoList;return!t&&n.length&&(t=(e=n[0].model.coordinateSystem).getRect&&e.getRect()),t||(t={x:.2*(n=this.api.getWidth()),y:.2*(e=this.api.getHeight()),width:.6*n,height:.6*e}),t},ZI.type="dataZoom.slider",ZI);function ZI(){var t=null!==HI&&HI.apply(this,arguments)||this;return t.type=ZI.type,t._displayables={},t}function jI(t){return"vertical"===t?"ns-resize":"ew-resize"}Pg.registerClass(nl);var qI=E,KI=Hl,$I=(JI.prototype.hostedBy=function(t){return this._dataZoomModel===t},JI.prototype.getDataValueWindow=function(){return this._valueWindow.slice()},JI.prototype.getDataPercentWindow=function(){return this._percentWindow.slice()},JI.prototype.getTargetSeriesModels=function(){var n=[];return this.ecModel.eachSeries(function(t){var e;e=(e=t).get("coordinateSystem"),0<=L(TI,e)&&(e=CI(this._dimName),(e=t.getReferringComponents(e,Mu).models[0])&&this._axisIndex===e.componentIndex&&n.push(t))},this),n},JI.prototype.getAxisModel=function(){return this.ecModel.getComponent(this._dimName+"Axis",this._axisIndex)},JI.prototype.getMinMaxSpan=function(){return I(this._minMaxSpan)},JI.prototype.calculateDataWindow=function(i){var r,o=this._dataExtent,s=this.getAxisModel().axis.scale,a=this._dataZoomModel.getRangePropMode(),l=[0,100],u=[],h=[];qI(["start","end"],function(t,e){var n=i[t],t=i[t+"Value"];"percent"===a[e]?(null==n&&(n=l[e]),t=s.parse(Bl(n,l,o))):(r=!0,n=Bl(t=null==t?o[e]:s.parse(t),o,l)),h[e]=t,u[e]=n}),KI(h),KI(u);var c=this._minMaxSpan;function t(t,e,n,i,r){var o=r?"Span":"ValueSpan";BI(0,t,n,"all",c["min"+o],c["max"+o]);for(var a=0;a<2;a++)e[a]=Bl(t[a],n,i,!0),r&&(e[a]=s.parse(e[a]))}return r?t(h,u,o,l,!1):t(u,h,l,o,!0),{valueWindow:h,percentWindow:u}},JI.prototype.reset=function(t){var e;t===this._dataZoomModel&&(e=this.getTargetSeriesModels(),this._dataExtent=function(t,e,n){var i=[1/0,-1/0];qI(n,function(t){lb(i,t.getData(),e)});t=t.getAxisModel(),t=$x(t.axis.scale,t,i).calculate();return[t.min,t.max]}(this,this._dimName,e),this._updateMinMaxSpan(),t=this.calculateDataWindow(t.settledOption),this._valueWindow=t.valueWindow,this._percentWindow=t.percentWindow,this._setAxisModel())},JI.prototype.filterData=function(t,e){var i,n,r,h;t===this._dataZoomModel&&(i=this._dimName,n=this.getTargetSeriesModels(),r=t.get("filterMode"),h=this._valueWindow,"none"!==r&&qI(n,function(n){var l=n.getData(),u=l.mapDimensionsAll(i);u.length&&("weakFilter"===r?l.filterSelf(function(t){for(var e,n,i,r=0;rh[1];if(a&&!s&&!o)return!0;a&&(i=!0),s&&(e=!0),o&&(n=!0)}return i&&e&&n}):qI(u,function(t){var e;"empty"===r?n.setData(l=l.map(t,function(t){return(e=t)>=h[0]&&e<=h[1]?t:NaN;var e})):((e={})[t]=h,l.selectRange(e))}),qI(u,function(t){l.setApproximateExtent(h,t)}))}))},JI.prototype._updateMinMaxSpan=function(){var i=this._minMaxSpan={},r=this._dataZoomModel,o=this._dataExtent;qI(["min","max"],function(t){var e=r.get(t+"Span"),n=r.get(t+"ValueSpan");null!=n&&(n=this.getAxisModel().axis.scale.parse(n)),null!=n?e=Bl(o[0]+n,o,[0,100],!0):null!=e&&(n=Bl(e,[0,100],o,!0)-o[0]),i[t+"Span"]=e,i[t+"ValueSpan"]=n},this)},JI.prototype._setAxisModel=function(){var t,e=this.getAxisModel(),n=this._percentWindow,i=this._valueWindow;n&&(t=Ul(i,[0,500]),t=Math.min(t,20),e=e.axis.scale.rawExtentInfo,0!==n[0]&&e.setDeterminedMinMax("min",+i[0].toFixed(t)),100!==n[1]&&e.setDeterminedMinMax("max",+i[1].toFixed(t)),e.freeze())},JI);function JI(t,e,n,i){this._dimName=t,this._axisIndex=e,this.ecModel=i,this._dataZoomModel=n}o_(g.PROCESSOR.FILTER,{getTargetSeries:function(o){function t(r){o.eachComponent("dataZoom",function(i){i.eachTargetAxis(function(t,e){var n=o.getComponent(CI(t),e);r(t,e,n,i)})})}t(function(t,e,n,i){n.__dzAxisProxy=null});var r=[];t(function(t,e,n,i){n.__dzAxisProxy||(n.__dzAxisProxy=new $I(t,e,i,o),r.push(n.__dzAxisProxy))});var e=ht();return E(r,function(t){E(t.getTargetSeriesModels(),function(t){e.set(t.uid,t)})}),e},overallReset:function(t,i){t.eachComponent("dataZoom",function(n){n.eachTargetAxis(function(t,e){n.getAxisProxy(t,e).reset(n)}),n.eachTargetAxis(function(t,e){n.getAxisProxy(t,e).filterData(n,i)})}),t.eachComponent("dataZoom",function(t){var e,n=t.findRepresentativeAxisProxy();n&&(e=n.getDataPercentWindow(),n=n.getDataValueWindow(),t.setCalculatedRange({start:e[0],end:e[1],startValue:n[0],endValue:n[1]}))})}}),a_("dataZoom",function(e,t){E(II(t,e),function(t){t.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})});var QI,nl=(l(tA,QI=Fs),tA.type="dataZoom.inside",tA.defaultOption=Vc(Fs.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),tA);function tA(){var t=null!==QI&&QI.apply(this,arguments)||this;return t.type=tA.type,t}qp.registerClass(nl);var eA="\0_ec_interaction_mutex";function nA(t,e){return iA(t)[e]}function iA(t){return t[eA]||(t[eA]={})}a_({type:"takeGlobalCursor",event:"globalCursorTaken",update:"update"},function(){});var rA,oA=(l(aA,rA=Et),aA.prototype.isDragging=function(){return this._dragging},aA.prototype.isPinching=function(){return this._pinching},aA.prototype.setPointerChecker=function(t){this.pointerChecker=t},aA.prototype.dispose=function(){this.disable()},aA.prototype._mousedownHandler=function(t){var e,n;Qt(t)||t.target&&t.target.draggable||(e=t.offsetX,n=t.offsetY,this.pointerChecker&&this.pointerChecker(t,e,n)&&(this._x=e,this._y=n,this._dragging=!0))},aA.prototype._mousemoveHandler=function(t){var e,n,i,r,o,a;this._dragging&&uA("moveOnMouseMove",t,this._opt)&&"pinch"!==t.gestureEvent&&!nA(this._zr,"globalPan")&&(e=t.offsetX,n=t.offsetY,o=e-(i=this._x),a=n-(r=this._y),this._x=e,this._y=n,this._opt.preventDefaultMouseMove&&Jt(t.event),lA(this,"pan","moveOnMouseMove",t,{dx:o,dy:a,oldX:i,oldY:r,newX:e,newY:n,isAvailableBehavior:null}))},aA.prototype._mouseupHandler=function(t){Qt(t)||(this._dragging=!1)},aA.prototype._mousewheelHandler=function(t){var e=uA("zoomOnMouseWheel",t,this._opt),n=uA("moveOnMouseWheel",t,this._opt),i=t.wheelDelta,r=Math.abs(i),o=t.offsetX,a=t.offsetY;0!==i&&(e||n)&&(e&&(r=3p.getHeight()&&(i.position="top",e=!0),e=e?-5-r.height:d+8,o+r.width/2>p.getWidth()?(i.position=["100%",e],n.align="right"):o-r.width/2<0&&(i.position=[0,e],n.align="left"))}))},CA.prototype.updateView=function(t,e,n,i){E(this._features,function(t){t instanceof _A&&t.updateView&&t.updateView(t.model,e,n,i)})},CA.prototype.remove=function(e,n){E(this._features,function(t){t instanceof _A&&t.remove&&t.remove(e,n)}),this.group.removeAll()},CA.prototype.dispose=function(e,n){E(this._features,function(t){t instanceof _A&&t.dispose&&t.dispose(e,n)})},CA.type="toolbox",CA);function CA(){return null!==TA&&TA.apply(this,arguments)||this}Pg.registerClass(nl);var IA,nl=(l(AA,IA=_A),AA.prototype.onclick=function(t,e){var n=this.model,i=n.get("name")||t.get("title.0.text")||"echarts",r="svg"===e.getZr().painter.getType()?"svg":n.get("type",!0)||"png",e=e.getConnectedDataURL({type:r,backgroundColor:n.get("backgroundColor",!0)||t.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")});if("function"!=typeof MouseEvent||w.browser.ie||w.browser.edge)if(window.navigator.msSaveOrOpenBlob){for(var o=atob(e.split(",")[1]),a=o.length,s=new Uint8Array(a);a--;)s[a]=o.charCodeAt(a);t=new Blob([s]);window.navigator.msSaveOrOpenBlob(t,i+"."+r)}else{var l=n.get("lang"),l='';window.open().document.write(l)}else{l=document.createElement("a");l.download=i+"."+r,l.target="_blank",l.href=e;e=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});l.dispatchEvent(e)}},AA.getDefaultOption=function(t){return{show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:t.getLocale(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],pixelRatio:1,lang:t.getLocale(["toolbox","saveAsImage","lang"])}},AA);function AA(){return null!==IA&&IA.apply(this,arguments)||this}nl.prototype.unusable=!w.canvasSupported,bA("saveAsImage",nl);var DA,kA="__ec_magicType_stack__",LA=[["line","bar"],["stack"]],nl=(l(PA,DA=_A),PA.prototype.getIcons=function(){var t=this.model,e=t.get("icon"),n={};return E(t.get("type"),function(t){e[t]&&(n[t]=e[t])}),n},PA.getDefaultOption=function(t){return{show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:t.getLocale(["toolbox","magicType","title"]),option:{},seriesIndex:{}}},PA.prototype.onclick=function(t,e,a){var s,n,l=this.model,i=l.get(["seriesIndex",a]);OA[a]&&(s={series:[]},E(LA,function(t){0<=L(t,a)&&E(t,function(t){l.setIconStatus(t,"normal")})}),l.setIconStatus(a,"emphasis"),t.eachComponent({mainType:"series",query:null==i?null:{seriesIndex:i}},function(t){var e=t.subType,n=t.id,n=OA[a](e,n,t,l);n&&(D(n,t.option),s.series.push(n));n=t.coordinateSystem;if(n&&"cartesian2d"===n.type&&("line"===a||"bar"===a)){n=n.getAxesByScale("ordinal")[0];if(n){var i=n.dim+"Axis",r=t.getReferringComponents(i,Mu).models[0].componentIndex;s[i]=s[i]||[];for(var o=0;o<=r;o++)s[i][r]=s[i][r]||{};s[i][r].boundaryGap="bar"===a}}}),"stack"===a&&(n=b({stack:l.option.title.tiled,tiled:l.option.title.stack},l.option.title)),e.dispatchAction({type:"changeMagicType",currentType:a,newOption:s,newTitle:n,featureName:"magicType"}))},PA);function PA(){return null!==DA&&DA.apply(this,arguments)||this}var OA={line:function(t,e,n,i){if("bar"===t)return b({id:e,type:"line",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get(["option","line"])||{},!0)},bar:function(t,e,n,i){if("line"===t)return b({id:e,type:"bar",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get(["option","bar"])||{},!0)},stack:function(t,e,n,i){n=n.get("stack")===kA;if("line"===t||"bar"===t)return i.setIconStatus("stack",n?"normal":"emphasis"),b({id:e,stack:n?"":kA},i.get(["option","stack"])||{},!0)}};a_({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(t,e){e.mergeOption(t.newOption)}),bA("magicType",nl);var RA=new Array(60).join("-"),EA="\t";function NA(t){var r,o,a,h,t=(r={},o=[],a=[],t.eachRawSeries(function(t){var e,n,i=t.coordinateSystem;i&&("cartesian2d"===i.type||"polar"===i.type)&&"category"===(e=i.getBaseAxis()).type?(n=e.dim+"_"+e.index,r[n]||(r[n]={categoryAxis:e,valueAxis:i.getOtherAxis(e),series:[]},a.push({axisDim:e.dim,axisIndex:e.index})),r[n].series.push(t)):o.push(t)}),{seriesGroupByCategoryAxis:r,other:o,meta:a});return{value:R([(h=[],E(t.seriesGroupByCategoryAxis,function(t,e){var n=t.categoryAxis,i=t.valueAxis.dim,r=[" "].concat(O(t.series,function(t){return t.name})),o=[n.model.getCategories()];E(t.series,function(t){var e=t.getRawData();o.push(t.getRawData().mapArray(e.mapDimension(i),function(t){return t}))});for(var a=[r.join(EA)],s=0;st.getWidth()||n<0||n>t.getHeight()}(t,e.offsetX,e.offsetY)){var i=t._zr,r=t._covers,o=uD(t,e,n);if(!t._dragging)for(var a=0;at[1]&&t.reverse(),t}function GD(t,e){return Su(t,e,{includeMainTypes:BD})}var WD={grid:function(t,i){var r=t.xAxisModels,o=t.yAxisModels,t=t.gridModels,e=ht(),a={},s={};(r||o||t)&&(E(r,function(t){t=t.axis.grid.model;e.set(t.id,t),a[t.id]=!0}),E(o,function(t){t=t.axis.grid.model;e.set(t.id,t),s[t.id]=!0}),E(t,function(t){e.set(t.id,t),a[t.id]=!0,s[t.id]=!0}),e.each(function(t){var e=t.coordinateSystem,n=[];E(e.getCartesians(),function(t,e){(0<=L(r,t.getAxis("x").model)||0<=L(o,t.getAxis("y").model))&&n.push(t)}),i.push({panelId:"grid--"+t.id,gridModel:t,coordSysModel:t,coordSys:n[0],coordSyses:n,getPanelRect:XD.grid,xAxisDeclared:a[t.id],yAxisDeclared:s[t.id]})}))},geo:function(t,n){E(t.geoModels,function(t){var e=t.coordinateSystem;n.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:e,coordSyses:[e],getPanelRect:XD.geo})})}},UD=[function(t,e){var n=t.xAxisModel,i=t.yAxisModel,t=t.gridModel;return!t&&n&&(t=n.axis.grid.model),!t&&i&&(t=i.axis.grid.model),t&&t===e.gridModel},function(t,e){t=t.geoModel;return t&&t===e.geoModel}],XD={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var t=this.coordSys,e=t.getBoundingRect().clone();return e.applyTransform(tc(t)),e}},YD={lineX:B(ZD,0),lineY:B(ZD,1),rect:function(t,e,n){var i=e[zD[t]]([n[0][0],n[1][0]]),n=e[zD[t]]([n[0][1],n[1][1]]),n=[HD([i[0],n[0]]),HD([i[1],n[1]])];return{values:n,xyMinMax:n}},polygon:function(e,n,t){var i=[[1/0,-1/0],[1/0,-1/0]];return{values:O(t,function(t){t=n[zD[e]](t);return i[0][0]=Math.min(i[0][0],t[0]),i[1][0]=Math.min(i[1][0],t[1]),i[0][1]=Math.max(i[0][1],t[0]),i[1][1]=Math.max(i[1][1],t[1]),t}),xyMinMax:i}}};function ZD(t,e,n,i){var r=n.getAxis(["x","y"][t]),o=HD(O([0,1],function(t){return e?r.coordToData(r.toLocalCoord(i[t])):r.toGlobalCoord(r.dataToCoord(i[t]))})),n=[];return n[t]=o,n[1-t]=[NaN,NaN],{values:o,xyMinMax:n}}var jD={lineX:B(qD,0),lineY:B(qD,1),rect:function(t,e,n){return[[t[0][0]-n[0]*e[0][0],t[0][1]-n[0]*e[0][1]],[t[1][0]-n[1]*e[1][0],t[1][1]-n[1]*e[1][1]]]},polygon:function(t,n,i){return O(t,function(t,e){return[t[0]-i[0]*n[e][0],t[1]-i[1]*n[e][1]]})}};function qD(t,e,n,i){return[e[0]-i[t]*n[0],e[1]-i[t]*n[1]]}function KD(t){return t?[t[0][1]-t[0][0],t[1][1]-t[1][0]]:[NaN,NaN]}var $D=E,JD=bu();function QD(t){t=JD(t);return t.snapshots||(t.snapshots=[{}]),t.snapshots}var tk,Fs=(l(ek,tk=Fs),ek.type="dataZoom.select",ek);function ek(){var t=null!==tk&&tk.apply(this,arguments)||this;return t.type=ek.type,t}qp.registerClass(Fs);var nk,Ca=(l(ik,nk=Ca),ik.type="dataZoom.select",ik);function ik(){var t=null!==nk&&nk.apply(this,arguments)||this;return t.type=ik.type,t}Pg.registerClass(Ca);var rk,ok=E,ak=lu+"toolbox-dataZoom_",Ca=(l(sk,rk=_A),sk.prototype.render=function(t,e,n,i){this.brushController||(this.brushController=new eD(n.getZr()),this.brushController.on("brush",z(this._onBrush,this)).mount()),function(t,e,n,i,r){var o=n.isZoomActive;i&&"takeGlobalCursor"===i.type&&(o="dataZoomSelect"===i.key&&i.dataZoomSelectActive);n.isZoomActive=o,t.setIconStatus("zoom",o?"emphasis":"normal");r=new VD(pk(t),e,{include:["grid"]}).makePanelOpts(r,function(t){return t.xAxisDeclared&&!t.yAxisDeclared?"lineX":!t.xAxisDeclared&&t.yAxisDeclared?"lineY":"rect"});n.brushController.setPanels(r).enableBrush(!(!o||!r.length)&&{brushType:"auto",brushStyle:t.getModel("brushStyle").getItemStyle()})}(t,e,this,i,n),e=e,t.setIconStatus("back",1c?n+=g(u.get(["data","partialData"]),{displayCnt:c}):n+=u.get(["data","allData"]);for(var r,o,a,s=[],l=0;l=h&&c<=e+1){for(var n=[],i=0;i=h&&c<=r+1)return function(t){for(var e=0,n=t.length,i=0,r=0;e\n\r<"))},cL)),t.Axis=wl,t.List=H_,t.Model=Ec,t.PRIORITY=g,t.color=ln,t.connect=function(e){var t;return V(e)&&(t=e,e=null,$m(t,function(t){null!=t.group&&(e=t.group)}),e=e||"g_"+Qv++,$m(t,function(t){t.group=e})),$v[e]=!0,e},t.dataTool={},t.dependencies={zrender:"5.0.1"},t.disConnect=e_,t.disconnect=Dc,t.dispose=function(t){"string"==typeof t?t=Kv[t]:t instanceof Ov||(t=n_(t)),t instanceof Ov&&!t.isDisposed()&&t.dispose()},t.env=w,t.extendChartView=function(t){return zg.extend(t)},t.extendComponentModel=function(t){return qp.extend(t)},t.extendComponentView=function(t){return Pg.extend(t)},t.extendSeriesModel=function(t){return Sg.extend(t)},t.format=Lb,t.getCoordinateSystemDimensions=function(t){if(t=Ed.get(t))return t.getDimensionsInfo?t.getDimensionsInfo():t.dimensions.slice()},t.getInstanceByDom=n_,t.getInstanceById=function(t){return Kv[t]},t.getMap=function(t){return(t=My(t))&&t[0]&&{geoJson:t[0].geoJSON,specialAreas:t[0].specialAreas}},t.graphic=Ob,t.helper=Qa,t.init=function(t,e,n){var i=n_(t);if(i)return i;var r=new Ov(t,e,n);return r.id="ec_"+Jv++,Kv[r.id]=r,Iu(t,t_,r.id),Av(r),$m(Xv,function(t){t(r)}),r},t.innerDrawElementOnCanvas=Im,t.matrix=Se,t.number=kb,t.parseGeoJSON=mb,t.parseGeoJson=qn,t.registerAction=a_,t.registerCoordinateSystem=function(t,e){Ed.register(t,e)},t.registerLayout=s_,t.registerLoading=h_,t.registerLocale=Yc,t.registerMap=function(t,e,n){Sy(t,e,n)},t.registerPostInit=function(t){t&&Xv.push(t)},t.registerPostUpdate=function(t){t&&Yv.push(t)},t.registerPreprocessor=r_,t.registerProcessor=o_,t.registerTheme=i_,t.registerTransform=Lc,t.registerVisual=l_,t.setCanvasCreator=function(t){m("createCanvas",t)},t.throttle=Zg,t.time=ua,t.util=Pb,t.vector=Lt,t.version="5.0.0",t.zrender=n,Object.defineProperty(t,"__esModule",{value:!0})});locust-1.4.3/locust/static/img/000077500000000000000000000000001400440205700164005ustar00rootroot00000000000000locust-1.4.3/locust/static/img/favicon.ico000066400000000000000000000202341400440205700205220ustar00rootroot00000000000000  (& (N( @ êã³%¾Æšb±wšªa¾ˆ£WÏ„¢WÒ¤bÅ¡´}«½Ç¥|ëëÂ?ÀÀUmN¸Cxþ7rÿ>yÿTÿd˜ ÿZ ÿN…ÿH~ÿK‰ ÿLw#ÿikQØÀÊžyÿÿÝÞС6Un@ÂTÿ(vÿ[—ÿ{®5ÿ†·Fÿ»Lÿ˜ÃQÿ˜ÂRÿ’¼Pÿ™ÌQÿ¹@ÿWVÿ;Zÿ=‚ÿd•GçÓË·cŸ™tu 2ÿYÿA‡ÿ[Œ.ÿs´Hÿ{µNÿƒ½WÿˆÀ[ÿÂ]ÿÀ]ÿ™Öeÿ”Ä_ÿpjBÿƒžOÿ¦è^ÿ‡°7ÿ.=ÿ'Bÿ¡ºƒªÿÿÿzuW–ÿ gÿD $ÿG+ÿCg.ÿj½Nÿm¶Nÿv¾Wÿ|Â[ÿ~À[ÿŒÚeÿ†Ã^ÿa\>ÿ¬Yÿ›ënÿ˜QÿrpAÿ~”Eÿg£"ÿ!eÿƒ›dÍÿÿÑ yuT”ÿ bÿ…ÿ2“*ÿB›8ÿ6a)ÿO¢Bÿ\·Kÿd»PÿfºQÿtÚ\ÿoÀVÿHK0ÿq´Vÿ€Ñaÿ^f?ÿdqDÿ{³YÿƒÇ]ÿ~±Pÿk¡,ÿaÿ„žaΤŸumÿJÿw ÿ‚ÿ#‘&ÿ8´6ÿ#_!ÿ1/ÿJ¿DÿM³Dÿ`×Tÿ]ÂMÿ/B$ÿP•Bÿ\ªKÿCZ2ÿ[•IÿrÉ]ÿp¿[ÿp±Uÿo®Rÿn¨Jÿ[—$ÿ Vÿ­¶}§ëäÐ&ÿ%ÿ jÿzÿ‰!ÿ#˜+ÿ0¸8ÿk"ÿ i"ÿ>Æ@ÿGÓJÿNÌMÿ$ÿ ÿ+K#ÿ ÿ ÿQ¨Hÿ\ÄTÿZ¯Qÿ`¯RÿaªPÿ`¥Kÿ`Ÿ@ÿ7ÿX ÿèá®LS[DÌÿ\ÿrÿ‚ÿ+ÿ#›3ÿ,¯<ÿ'Š2ÿQÿNæYÿKËQÿ%ÿÿÿÿ ÿ,c,ÿ;—>ÿG½KÿG°HÿM¬KÿP¨KÿS¤JÿRDÿO–0ÿWÿ`AæÿÿÿÖÏ­Kÿ:ÿhÿ|ÿ‹+ÿ!˜5ÿ*¢=ÿ<ÃOÿ&w0ÿ4~;ÿ_ämÿ ÿÿÿÿ+ÿUÆ^ÿ^íjÿPÌZÿC³NÿC²KÿD¯IÿB¨EÿA¢CÿDœBÿD’6ÿ)~ÿFÿÖË]mo\Äÿ]ÿrÿ„'ÿ“5ÿ,¢Aÿ:­LÿOÊcÿ:{BÿT¥\ÿ/ÿÿÿÿ )ÿtåÿpéÿ[ÄgÿXÃeÿR¾`ÿI¸XÿB°Oÿ>©Iÿ<£Dÿ9œ=ÿ8“5ÿ0ˆ#ÿCÿsƒOÆÿ÷Ï /ÿ*ÿbÿzÿ —9ÿ=µSÿHµZÿZÅkÿdÁrÿ=c@ÿ(ÿÿÿÿ&.&ÿ±å¸ÿÅÿÎÿ®à´ÿœÞ¥ÿwЃÿ`ÅoÿX¿hÿJ·\ÿ@­Pÿ<¦Hÿ7Ÿ@ÿ.”3ÿ$‡ ÿ_ÿ'OÿöìªÐǵhÿPÿ€ÿ.›@ÿA¡NÿF›Qÿ`ÅnÿŒÿžÿT‰[ÿÿÿÿÿƒÿòøòÿÿÿÿÿÞñàÿØóÜÿÖòÙÿÆìÊÿ‘ÙšÿiÉuÿ_ÂmÿL¶\ÿ=ªLÿ7¢Cÿ-˜7ÿŠÿr ÿ6ÿÊ¿‡WŸŸˆ1ÿ6Ž,ÿB EÿO¿Yÿ@ƒFÿ ÿGwKÿ\šbÿ ÿÿÿHIFÿÚÙØÿÿÿÿÿÿÿÿÿàõàÿÏðÒÿÅíÉÿÂìÆÿÍîÏÿÎïÑÿ’Ú™ÿlÊtÿdÃmÿO·Zÿ8¦Eÿ+™5ÿŒ!ÿy ÿ+ÿ—l‚Žži¿/z ÿ[§IÿL¢KÿZÈ_ÿI‡Iÿ ÿÿ ÿ ÿÿSSPÿûûúÿÿÿÿÿûÿúÿæ÷çÿØôÙÿÎñÐÿÉïËÿÄíÅÿ¾ëÀÿÅìÇÿÃëÅÿƒÔˆÿiÈnÿcÂgÿQ¶Wÿ0 9ÿŒÿ| ÿ,ÿ{|Vž¤^ÓNŽÿd©Nÿ`­XÿnÒlÿRŒOÿÿÿÿ ÿÿ¾½¹ÿÿÿÿÿûþøÿîúëÿßõÞÿÖóÕÿÐòÐÿÌðÌÿÉïÈÿÂîÃÿºêºÿÊîÉÿ¯ä®ÿnÍpÿfÆgÿbÀ`ÿWµTÿ”#ÿyÿ0ÿhnI«”®_Õdœ(ÿv³Vÿnµ]ÿuÇkÿzÉrÿ5=-ÿ ÿÿÿFHBÿççäÿÿÿÿÿöüòÿèøäÿÞõÛÿØóÕÿÔóÑÿÐòÍÿÌðÊÿÆîÃÿ½ìºÿ¾ë»ÿÉîÅÿŒØ‰ÿlÉhÿhÂdÿh¼_ÿR¯Hÿ€ÿ(ÿioI§¨ºnÅu¥-ÿ‹¿_ÿ{¼bÿy¿fÿ†ÛzÿˆØÿAR8ÿ)4"ÿ¯‡ÿúÿôÿþÿûÿôûïÿõüñÿêùæÿÝõÙÿØôÓÿÔóÏÿÑòÌÿÎñÉÿÉïÃÿÀí»ÿºé³ÿÌïÅÿ«â£ÿsËiÿtÇhÿi½[ÿf¸SÿDŸ/ÿ#ÿvvO‘Á̆©‰®1ÿŸÉfÿŠÄgÿƒÆjÿÊoÿŽâ€ÿ`‰Uÿg˜]ÿÊÿÂÿóÿëÿëùäÿíùçÿã÷ÝÿîúèÿáöÛÿÕóÏÿÑóËÿÐòÈÿÍñÅÿÉïÁÿÃí»ÿ½ê²ÿÆìºÿ½é²ÿ€ÐqÿwÉeÿqÁ^ÿfµOÿY²7ÿDÿ‹clØÜ®{›³3ÿµÓlÿ™ÉlÿÊmÿ’ßyÿu­cÿSlEÿw³iÿ›ïŽÿÙóÐÿíúæÿðúèÿÞõ×ÿÏñÈÿéøâÿÕóÎÿËðÃÿÊðÁÿËðÁÿÊïÀÿÆîºÿÀë²ÿÁê±ÿÉíºÿ’Ö~ÿxÈaÿzÄ`ÿm¸QÿX®0ÿ`ÿ¿¶8òòÛ9¯¾FÿÀÕeÿ¨Îrÿ›Ísÿ˜Ûxÿz¬dÿdŠRÿu¯eÿ„åsÿ¶è©ÿòûêÿáöØÿôûíÿÅî»ÿÀí·ÿâ÷ÚÿÎñÄÿÆî»ÿÉï¾ÿÊï½ÿÇî¹ÿÂë±ÿ¾é¬ÿÎî»ÿžÚ‡ÿzÈ^ÿ~Ä_ÿs¸PÿH ÿ-eñÿ¿¿ÆÍlæ¼ÊKÿ¿Ø}ÿ¬×zÿ“½oÿ„±hÿz­bÿz¶dÿ‚Ùlÿ…ÖsÿÜôÑÿæ÷ÜÿåöÛÿéøàÿ¦åšÿ½ë±ÿàöÕÿÍïÀÿÇî¹ÿÉî»ÿÉí¸ÿÄê±ÿÀèªÿÎí¹ÿ¥Ú‹ÿ|Å\ÿ€Â^ÿw¼Kÿ tÿk„Yçßž~¼ÄBÿ×âÿ¾ß€ÿœ´pÿ”¼pÿ‡¶iÿ…Æjÿ‡ÒlÿqÊYÿ¡ÞŽÿíùáÿÕñÈÿìøâÿÒðÅÿÛ~ÿ¿ê±ÿâöÕÿÑïÁÿÊíºÿÊí¹ÿÈê²ÿÂèªÿÎì·ÿ¨ØŒÿ}ÁZÿ~»Yÿj·3ÿSÿÆÁÆ-ÿÿÛÍÉ`úÐÕ[ÿÐÞ‰ÿ¯¾yÿ¦Çyÿ±mÿ”ÐsÿˆÌlÿËfÿoÇVÿ¾ç¬ÿç÷ÙÿÐîÂÿë÷Þÿ²ä¡ÿ‰ÕuÿÂé°ÿæõÖÿÓîÂÿÉê¶ÿÆè°ÿÃå¬ÿÏé¶ÿ¦Ô‡ÿy¹Vÿ~¼Rÿ%sÿ]uRºðîÉhÅÅBÿÞÝ~ÿÌÚˆÿ¶Ë€ÿ¢¼wÿ¡Ózÿ’Êrÿ‰ÉmÿwÄ]ÿvÆ^ÿËêºÿÚñÉÿÓíÄÿØïÊÿ”Õ€ÿ‹ÑuÿÁæ®ÿåôÓÿÑë¼ÿÆå°ÿÄã«ÿÎç´ÿËÿt²OÿQÿFÿÞÖæâÞž¿ÊÉJÿæé‹ÿÌÙŠÿ»Ó…ÿ­Ï€ÿŸÊzÿ”Çtÿ‹Åpÿt¼[ÿ~ÃgÿÈæµÿÌé¹ÿØìÇÿ¼à©ÿ…ÇoÿÌyÿ¿á©ÿåóÏÿÒèºÿÇá­ÿÑç¶ÿ’ÀrÿX¡'ÿAÿ£¦¬rÿÿã ÙÔ{ßÐÌZÿååÿÑÞŽÿ¿Ò‡ÿ±Í‚ÿ£È|ÿ—ÃwÿÀtÿy·_ÿ‚½kÿºÛ¤ÿÍæ¸ÿÙëÄÿ¦ÐÿˆÀqÿŽÂuÿ·×žÿàîÆÿéôÎÿÄÞ¦ÿa¢4ÿAÿ{ƒs ÿôÈÖÕ†ÜÐÊ\ÿãà‡ÿÙÞ‘ÿÅÓˆÿ·Ì„ÿ©Ç~ÿžÂzÿ–¾wÿƒ´fÿ…·kÿ«Î‘ÿ×è½ÿ¼×¢ÿ„¶kÿŽ»sÿ„´hÿÂÿ¼Ù˜ÿe8ÿ7ÿx€¢ÿÿØ áܘ¸ÐÉcÿÙÔrÿààÿÑÙÿÁφÿ³Èÿ©Ã}ÿ¡¿zÿ’·oÿ‹³jÿ›¿{ÿ—»wÿвjÿбjÿŒ´hÿu¨Fÿ&`ÿ=ÿšœš~ñê³oÔÏ~òÐÊhÿÔÐoÿÙØ‚ÿÒ׉ÿÆÐ…ÿ»Éÿ²Ä}ÿ©¿wÿ›·kÿ›·iÿž¹fÿ„§HÿOuÿ1Qÿ]kLÈÕÐÌ<ÿÿÊê䧃ØÕ…áÐÌrÿÊÇfÿÅÄcÿ½À`ÿµ¼]ÿ©´Tÿ˜§Hÿ‚˜:ÿi‚.ÿas5ÿ~„^ޏ¢]ÿÿ¿øí¼Eêâ«…àÚ˜µ×ЈÐÌÉ{ßÂÂuܺ¾yÉ»¿‰¨ÆÆ§tæá×3(  —¢t„¢Yx}J¹t™.àm™1⇭RÅp}N‰Èζ*}}]h.dîCˆÿlª1ÿŒ¾Jÿ—ÑQÿs—0ÿe‹$ÿZx"ÿƒ“h€OE1ˆDÿ#ÿZ“BÿrÅ[ÿ„äjÿ~Àaÿ|¨_ÿŽ­bÿw—>ÿ<|ÿ€ž_¡Ÿ‡bÿ…ÿ) 1ÿ!t%ÿNâOÿD>ÿ,ÿ&1ÿQ—FÿtÏfÿuµSÿ_ÿ•¦fxáÒ´ üSÿ ’'ÿ&¨:ÿ;«Hÿ=¥Fÿÿÿ$v+ÿ@ÃKÿA±HÿN¨Oÿ4(ÿ%gÿëà­™…{ ÿ’ÿBÍ`ÿdÛwÿ>tDÿÿÿ‰¿ÿ§ÿµÿ]Émÿ<±Pÿ6¦Fÿ8¡<ÿQÿ“—\}QcDÂkÿ5–DÿS“ZÿV‹]ÿÿHBGÿßÜßÿÿÿÿÿÙðÜÿÁêÆÿqÍ}ÿHµWÿ+¢;ÿbÿUi7¸]‰1âVÆMÿXžYÿ ÿÿ533ÿÿÿÿÿÿÿÿÿÐñÑÿÄíÅÿÔóÔÿµè¶ÿhÊkÿK¹Qÿrÿ)FÑ…©Eãt¹UÿƒÙ{ÿ:S2ÿ//-ÿ×Ò×ÿÿÿÿÿäøàÿÔóÐÿÑóÍÿÁí½ÿËðÇÿŒØ†ÿoËbÿ.(ÿ'C͵ÈkɾPÿâ|ÿc¤Wÿ”ÉŠÿÿÿÿÿìøæÿàõÚÿ×ôÑÿÊðÁÿÅî»ÿÍðÀÿªâ›ÿvÉ`ÿF¤.ÿW{/¬Ú׊‹µÏSÿ›Ï}ÿn›ZÿkÄXÿÅ÷¸ÿÿÿùÿÃíºÿÊðÀÿÓòÇÿÅí¶ÿÍï¹ÿ¶äŸÿ‰Ògÿ7ÿ’¡^gñêº%ÕØbÿ¹ËyÿŽ´rÿyÆ^ÿwÏ`ÿãøÖÿäøÙÿŸßŽÿÔòÅÿ×òÇÿÈê³ÿÀä§ÿrÀ>ÿ=yöÌ³Ì æß—‡ÒÑ]ÿÀÕŒÿÊ}ÿo¼Uÿ€Èlÿæö×ÿ½å¬ÿÐ{ÿÛïÇÿñüÝÿ¾ç™ÿoÿ’š’`çÞ‹¬ÚØpÿÈÖ‰ÿ¨È†ÿy²aÿ…¼qÿÒæ¿ÿ˜È…ÿ—ÈÿËå¥ÿN…-ÿ=YAåÛˆßÖzÿÏÏvÿ¼Èzÿ™·iÿ•·kÿޝ]ÿd2ÿCrñoxjlôï¸/éàšßÖ†ÉÎÉsè«¶\埭hÁ•n€“‰locust-1.4.3/locust/static/img/logo.png000066400000000000000000000577511400440205700200650ustar00rootroot00000000000000‰PNG  IHDR`3Z$atEXtSoftwareAdobe ImageReadyqÉe<_‹IDATxÚì½€W•5|*tžœ¤ÑH#YÙYÎ9m0`LÎ9-aa1,ì ˲„–°³?a &gl°16N’mÙ²eKVN£‘f4©§sWúï½ïUOi°dI–­™q_ù¹«ª«««jªïyçFcG%Àc‰Aã1èEpé#­ÛôF ß7é>o§W/PÛy›«oCm ÷7 }p½/.Fáã'my?CŸïMؘg™˜Oß7›Î¡“F‹ç£FL¾Â pèó%yÚo„>>H‡ÚKÇÝM£¿êaÀð0NŸAz3®Ï¥uÞA Î›¯“ÏÃ&–ùzbú´éP¨êúÒ¦z/GNÐk—­î#“ï¶»VáâóÏE]êR—ºLU±õ „ B ËÄpJ̹§”|œ8ZpçoïÜ;>šÊb4?Žl©ˆ|¡€R©„Š[†ãªÑˆ‘ºÎØfДŒymé§£¹½ÒÓÕ›íéžÛ?»½m[[$€GªÀú<° Uú¸WêR—ºÔeÚÏøiÖžiŒã²d —K8¿?W>~ûðÞ–ÍCûÐ7:„á\…j®ïi1aÒ BÏL³¢ÄXªãy£´;k—ÇGm7?’ òÙ–”çÌïHgÎ=nöÂÂIÇŸ¹ï”3Îßuü '¯›Ç=ÄðH±Œq?¨? u©K]ê2å$b­³NÚÆ©W»>.ß5š?ùá=»RöíAÿx–hXÜFc*9ݽhH¦JÄ 8leöb³YàÃçAÀ¢†Z÷|Žç¢J S®‘ËŽbxpöíÜ`ܺãá†n¿±!õ%Á¼æî3N?ëâ+.¾òªgÞêÞ”ygx`¨„>b%¾mÔŒºÔ¥.uyLÝþdø@x™ý —5$ðæÑ’ÿìv÷µ¯îÛŽm#ÃrìÖÆft·´¡5Ý€D0Tð^ô×ÍÒ+û¶¡L;Í'И×Þ…L"!ÌÂ%Ð`A衾Iƒ4Ä*mª j€¢YG @C™°´9‹Á$PŒ%d(üê 9®#ŽwÇóÅwâÚ&òãYìXµƒ7Ý s°„ç>ï…ëÞùÑ]ñ)+®ÏkÆÊŽâè¯H]êR—ºõÙ/im½i¯Íž”9áË©H]êR—:€ ¡Ao#cãô¶$¾¼vpü‚?p7¶á„ž…X2«1¢'nµ,Œ’¾ák¶A@Âþ@ù8e’ <·æÿ›´x¡yËö¡–½šS]™·øè¾Þ/¨‹§M]<ØÔÅl¤BÈPõª(帉"Ûî;ïÅèïACH%I&¾NT E^=Þ‡¸ ïïˆÐwT]*ª•*JNÅB>‡¿¹î{ð´g?ó¡k¿÷½ÿ^8«ûÏú³OêR—ºÔå©+;ŒWçs4ÎÊà+Û³¥×}gõJl Î^|’1¿­1ŽJe&±“§îÌ>Ä\å ë@4èh«ÀÕ€¢Y…˜µ(ŸH Xƒ‡¯¶1£àX߸e 8¸¦aÊ÷ò~œ´®ÎׄA ix”µE³Í˜0¤ŠiÂ"d´Ëرâ¯|6ÆÎÞŠ›ÿ÷Æ“V·ðKߺîGßxùó_øý¬…G+¨Ö#~ëR—ºÔä„gØ1 ‹»ÒøþʾÁó¾~ÏmH§på©é˜M³ù‚˜©,;SÕp8ÊÏ¡ÍWbš —§~m ÌLà  اÁÎq®iÒ”jD{C;2‰ŒÈödwc,?JK´?©{ÃÔ³„½°ßÞ !аh8r¼·¡òãMbgfÉ…yÜ|$?vvüðÖÌ+^põû×|ä_~擟úœÀš”ëQ]êR—:€&xd,œÛ–ı~ÓÂï>pVô.Åió–’V®¢âä%jÉ0”ƒ\± íëØÏTå h0ˆx HFY…~íï¿I ËÊá 1Ù€Ù-sЖé@’´ºM€Š§ÑÑØ‚ûw¬F¾œ' ³0$‘ hù!´ŸI4ÄöMFßãœÿÆd˜ô¦£Jçn¤°ð-ÏÀÐ-à³ÿñŸ/|xÍó~÷Ûß|x~ÂZ5ä ¯g²×¥.u©È!€)ËÆžÖœÄþwÍÝØò0.^~:–tô ZÍ hØìaŸ‡ëi3•#ëâÏpj&+®ÎéP¹¾Ž¾ —……„ÿ \¿*ÌbNk7zZ{Œ%5ÓðÜLZÊ$ÒˆÇ ˜YØŒÀPàÃDÄTæ7Ÿöt9:‹VâÉ8ºÒ³ x:·(ƒÚ¶o;¶ l ÄFò>Ú/8É®füþk8óœsÎýÚoøã‡zÛ:ÿ²ÓÁxýqªK]êRǧ·'qÝWî¹§ã/Û7Ï:ñlcnKÊ•qÉ1™u0xÔ€#dŽ/ WÖCçyÍtUc¡ÿƒ^ í§w«~6±„…íÇ¡§ež˜›„`ذ †E $‰½¹½(9Äl[ùBÔÄD¥bqÙæ2#¢ïkmlÅq 1‡˜LÜŽKø/ÛÒ9‹qï–Õ¸gó½â˜*4Ïż$p÷ܾô² /ýâ-·Ýü¾ÞöY7¬/£”¨;EêR—ºibý(ìE‚ØDŒÃf¡ýbÄDb–Ä ´ÿ¢Y‹q΂³Ñ–jBÅ%ÐpËrNa–{¹Z"P²pBÏ2´5µ"‘ˆˆ¤ñmÄÛ0÷ƒbÓ¾m=çŸ}þ—sù±ózãˆ{Aí–ÑjXg2u©K]f€ˆéÆ@'Çw~¼îá…¿Ù´6xîÉ¢«±“³ÉÙdUðPþ G/Wp°²¯Jñ3hFu$´Ãœ—™ux¼Ì ÃðP$æ‘I5à¬y§c^ó\T}þ¬›”»EÁ¬$a“rgPª°yl b\Ù×à+˪ÀP~… qÒ¬èü-”8Ät¦#°8ˇ»/çÛÙÔ‰¹í=ˆÇâH%ShL§‘â°[1ïàþµ.zéÕ/ùt8¾Á‚Á9"lÎ;Üaë¿ÈÍýkýé¬K]ê2µÄÔ(òhƒ#®gÂV_¸igß¹×Þ›Á’ƼÖN‰´29cN˜)tAŠ[V!Nòªb¾2K‰yʨh³” C™«Ü@G@ñzÑ/"•ÊàÜyga~Ë\a"œçÁI‰lºbI˜1dbiZ¶±%»cΘ({ÃVŒCˆ©‚¾oQۜرTþ˜y(ÿŠއפ}! ç™$‰ÉÌj™…d*),$M¯ ")# »£³?|þ|ãMg¿ëÿðúHGÒÔ€p¸Cÿa~ó«_֟κԥ.S@8bé@CJ²ÓÿHw~põðøk>sû 8cÁ‰æ²Ù P¨f%ǃå†Çžee¶ç¹­ÍUl¦BYû<íç¨(°@—i€qå=åïp…qxÐ(Ä<’I\Ú{æ5ö à„8D˜«øÆCö‘È`wq7úh$bqñu˜;Ï Iôéxx,Ä Ë(Ê^Y™«tùþÇmh YKKº éD’ŽC<G:™@sCq×Frþt½í|í¾þâ¯}ã«ï ÷‰ùª.u©K]¦ƒØÉƒØÚyv^5qÑ® ®ùòª¿­Í­ÆY OD™™ƒ©|#˜ÏåW¯\†“-Àn±´ÏC›¦` uXRDÔµb!<ç—ý8‚ËRê´BÊ=Ïàâž 0¿±¹ê¸ø%LCe“³éÉ6âˆëh¤ýØÌµi|«(ü¸Å¡½¦ô „±,jZ€%-‹äÊ켇*Æþ Ë¢øPýnƒ°mËÐw°ùÊ¡ë2Ý8‚d@` ‘ã¸Ê¤O;±+ð®w¼ûŸ/¸à»Wœ¼â×\êä°"꾺<ÊDO?³i4èmy‘ù^]޾„‰fÑhŠ#âõ>¨NOùyß„Í/t§K>óí{ïêÜ<>„לs¥ø1˜m˜¤È­)\G1 ƒ¶±§‚ìúA4ŸÞ“¸ÚnNd—+qáBëŠ/Ǫsf˜W <8zê¼î³±¬u1òNAërn¦aÑ9û å´M,ÀL`}vÆÝ’ñ¤ ÓÕà! ˆt=‹šŽÃÒ¦Åò]e6«)ØRÀÁßoús:ç„ÍYZ«óRBüIÝ¢°ß ¯ޱrs®<;¹Þ|ÛÞüñÛî¹kM܈mwƒÃ×GøT.£ñ¯4šiüžÆµ3øÙí¦1—Fv½-üaïÔËcúÏë¹ip]|=§Ò8ƒÆr§~¤¾Î„Þgd};õ5®§±F]ó<ÞMãrƒ4>Mcãú»’F•4>sŽÉ³Í“hœFãD}Ï;õk2rïÃBÜãzy4¶é{ÿhdÂ9eôuò¤¡4ŸÓFkmßxtV¦ÛTáš?í8ÿ×WûWœr‘™IÅQ*!fø¢ø+{Çag8ý‚ ª|ƒn3GGUÆ‹H6&á:UÙ×Âüm¶25x(σ(o)Hÿ9¥E,äÂYgá”öååQè–ÁœÂ_‡ˆCc¬ýÅ=ØUì#%OÛ¡|ÆÅ™²,n8Ë›—HözUgº# (3•À™!gdh%®|!ÌŒ8š+OI4›ÆFLƒJ_Ìxrt)=o»wèo§~ì_>òÞÏ|ú³ïe3X584raê§ù…ð¯ÑË3 @æÓx§ÓXAcŽÊCž9ŽèúÝ4n¥q“—©òc¼ŠÆËh\¬×KR‘ëŸ?é=Ž&_Kã4®£±ý0Ï'Mã½4êõ•S@XÁ¿I/Ÿ­Ÿñá#<þhxµ²$â÷g9û"h˜(l¡¢–œÓÇŠÎSpzû #WE\±R§ý¹L ›§bœð×k¤÷+ØRØV3]â÷0å:LËÆâ¦E8žÀ×$Äjqˆˆq 1ÅT¤GIhObÀb_œõÉx‚ŽmIÈ03¤XœÎ…˜I‚¶3;Iøníh~ÕR|þ‹ŸçÊûV>ÍÒ\Ø>„aé¿ÌK^úÒÇûÇugh4ÑxÛhl¡ñm¯ qüa€GhŠèÔ ã]4~¦gèüúœcx}¬€¾¤ü÷i<÷1À£¤ÔÈcÌJ™¥œ©™Ã?¦qÂa>;ÑãOÕzoºÝa OBî¥±ŠÆë<Âû>ªÙ‡w#AçÑø¹Ý÷D~Ö3Ï„µ³²ÿé_Îw!wý|íêîm¹!¼á” Qu ÊIάÙi;»ÝF±o‰9ëJ² Åq]‰€dœ~ýM´ÝQMž å,÷­°)”/ _ij_ªëŠ‚'YØ<u-Ç*;Uå!vÂf+[’m1c%Íf›ò[0êŽIΓCº"*8®a>–6,”ïâž¾h0Ó&ª`"d@žC@ ÅŸCþãó‰ÑwXÄrø#>¡MÌæ²ð¶˜±<)±BßSñÑ|ÉdïÜhè}üÈ-·þíæ¸f!)º«ãE]t$Ï™båð?Òø'ͤ$ƒÚ„0D£åð´튼Δãð,òÅzðýßôlýÉÆkh|M.£2¬gýlÙ¬f\+°ˆ©«Mß+¾¾$Ή0‡Ð<ór=¾¦¿3˜ÏÒT}®×Á÷ê+4Þø(ï±9ðjS›§öhðÑÏš¥Ÿ©nýwëÒfÔùÚ||®^²æÿ¦ñ¯¥qÿaœënÍŽZ‹~nNÒ&IèççKúH>Žã2Þe“ì*’óaãùgKϽîá;üsŸj¶dP*Žf¸µh+ö}Ä»bȮˣ8CjN~•û}Ð ¼ÙB¾/§Zå/Îtf¦*IÂJ›Ù„<6"ë`çt{²vž‹F;ƒ¬“S¾®èk²Q‰Ä§yŒ€£ÑnÀPu;‹}*İÄ9îjR²°q>–4.Ô>•ªj*h·¹Û…f\Úù1ñk1”÷[° ÊiÏf+6c±ÿƒï”eùRK+Fÿ¤–VC’ŽŸ&€Í[º_ynýÔm—ýðº¼âU/õ¹ØŠè¯;د‚v8ïœspùs¯Ä ø=žbrµVt³å=f œ s#ûhô‚Šo7;@{5¹L›,Ú#û,Õ³ô÷èúæ'ðúÎÒ³ÓÞIÛYIpìöÿiÆõXþšmz@ï_›Ò8Yã뵩/”wjÆÅ÷xÍSì¹b[ßi\0i;›ú¾¨ÍMC‡x¬}ØÎ ù ­ø_±FŸ¤M§l¦üÃ!~³ž¯¥k?# ü›ùìÑš˜<ÉŽ–ÖÞt݃··91Oí=¥JNE\éAÉç¨V`¥I©Òß8(&)Éç EÍXå±<ªÙ" ;öÁ#0BÇ´îåÁÚ™€„sIØÜ•°mœßq&榻QðŠÚ± ñeXFLüb¾"ðÈØiÉÙTØ*åJ˜•„¦&Vð‹óX,lƒM\ž?â ŸVFÍT%u² X/J_C90èj¥ ‰dµ3˜è ÷XŒÀ˜ oLq¨¯C ·˜&(g¦ñŸŸø”¼Jÿj°ólðŠcpýÖ$‹µ;@1\ñÐhñ’›·?䟳ä4R˜<·$ẳOƒ÷ð °H/H£¸{¥abJq_z3€¸å*Jûrâ¾K Ñ€î¨ûàr9^fÕ~Bër,k^, ¿’`Çu®˜yÄ„}$ D8qpWy71!ŽŠbæA¯ 2ó±(³@ü-mŌĕºZ^шÉÊPñU†eÃÊ£œêôžè.Šª! É/æÃÕ~M.™[HÇã0\³^p*ÖmÜp򵧿ÆKÄhk¨.†a)”êS'@M·cÂ9ÊïôìéšuTŽÒ÷•µ¢~Ž6;Ü:éýoÒø¯£|Ÿ§ñÕI󯄼ˆÆÇ2«}<âj°]Lãÿ›ôÞ¯õŒø© ŸÔÌ36¯'+O”ôk¦÷“¶ÿD3’‚̆VæÚ®’¶ñò_}†?_ µi26Ý]¤ÿO†|*$’øÌL¹¹f)P­¤|Û’8k®ò´?m¸'Ì]¦rAœ²”(aà`„¥Ù9iЩ@øHÍoÀÈš=Ä:Ê$«ÁDŽD• j¬ƒÍAªj¯RÒì‘HÚ1œÑ¶]‰8ÒçC1¤ [œåy•²’òþÖ”ü2ÄF|a5Ž#ðX’9N|,eO1iX…H/‘ZànˆŒú@£¨±|„̃¯A)}C}D2õ!„E™Â“ÜL­o€ Í …£c–i†ðdÊ¡œÐk'™œ/ˆü;T0@(AåyüöÜoŒFÖ[ô,¼a?c¯Ž\_A›0ŸìÅoéÊsµùlúHXƒ‰ÉI Ϻqãêî<Äâž…¨”ÆtëÙªîçái0Qu®$Ÿ£XAÓ²&‡sÛ´&ç…Ðß'ÑG~Ï8¼’£š91ˆ˜jönjÍaJÇBOò†E’?RKÝð°b†v>í'ás”$ECe¹‡ýÓà ¾vÍ/Â[†€žOçÞrÑüí®Ûžý×GÖÍgf7J˜–õh”ÒçŽ@ɲõk‘õ‡õ̳:îýg1aÿg³Ö_fè3ÖŽýýn:†ç28‰ÍrÂèÜi \Ê$E£)Ž ܳcù†};Ì%=KáT ªmØŠƒË±º¢§f÷¢PišÝ~VFÖ ¢40# Ù•‚[vPîÏ!–°´ÿèù,$–.gˆÏKÎQ~ží 2µã\û’f\’wVúPðrÊ"àÑ‹ãR½¢üKmÅ9'ºmí„=*@ؽ–]®MS¡ß£V}73Büšé+qÆsñH„áTÚÇI‹ú˜¦îK"¦,fM\õ±j á¤Ù(ÇÊ ¿üÁÏ^ÀÓ:}îÇ@UicM陸Ãfæ§#ëœËñ"LšNy=C •=Çþ®SCCgG@éõ˜:™ï¡i§Y›µfªðõÍŠ(ð{Žñù\?éÜNžþ Dåè±ú;ëŽM÷·›q-p«ãªD»DÔM¡t¯ò…(&ÂñSn¡ŒÖ“Ú%ƒ|ï}0‰q$;’j“Û6†xÒf¢Ø‡R°¬´[âMX–YB #^SÀ†6mÅÄdSÉ{ôš2“ØWÂ@e@L[Ö;/5ó“=â(¯J±F_õ†ä‡4BBs N5gyÍë1ÁÔþˆŽ“H0:>ºC×oýB”™+Py*:4XEgM°-“ÐÌH%Im&ñçëþ¢½eK±± f!üÄ–gä›CLS‘õ÷C³Õ„}!×L2…¼ñ?ûì&ûA(ßÎT~²ÆñÔg °?°hPȉÓ@H‘%chÚëàÌv®1æÌêgúnYû<<ÝË\z˜«&QåI\a‰æÚNnÞ;vÂÉWéHѶ8F· klÊqm]‘Doª³µ"‰¢´µãÜ‚-l…gœ—ƒ2úÊ}âÛ`ßGo¢ss$¿£*}FüZއ €0‰ 3sµŸDÑBÇ¹Š¶RŽ~~µÙ³C÷ J`G £kxi†eèÌzö‹H™ö‡ø -'ÌBߎ ç>´zõ‰Œ'– Í`0PóóÏ$áÍ+#ëìùõ=WÎZ¾%²þ~Zqå(ðpxòP—© S!0~SdyÚ'z™)‘åû÷õ[=] à:yݪRŒ°« ¯ ª@5Ó7h°3}öùsÛ“ÅðýÈ´gœ•Áضñ Çâ 8lRþì˜ÎX),HÏ—èª-„æ-µŸÎ:7âôCy²î¸°•yɹ4zÔ´"ÐŽ÷@š(|sëM©–¤šK4’y"#ÝÐE¥Ž‹ãU ¬Ê°ñUiCûN‚Ð/âO$*\9p|dzÛQöœø}ûËR'Ú˜(æóhc€nñ3ßøv´÷Ì›I?â·FŒ‹ìïøä?ßèùq”ÖÕ±ÿ³±ÎÁÖõö”f¼Sà<¢ ‹½Ó@bŠÛ­xpǃmÏ3Z›;ˆQäTÞ‡«Ù†¯ˆä ™ˆp á:SùZ—µ =7ƒm¿}Dʬ·.hÂx•á"≄(a[ç~t$:0'1k"a0`E­jpN̨;ŠÝÕ=âLŸŸœ'àh‡v %jI~„YL˜¥ä½°7‡ÍT´#=š@¨KÊ›:¤7ì' „ÜQzðû_3…€ÁõÀ ‰ ãÓðdf"§e6Ä$ëá‘{î=?ÇçbíŸÄ9y”I½¶ueÐØœ™I?â+#뜩»aŠŸ3Gdý9²þ¢ÇØÿÕ‘eQ¾¾®»©²Þ®—¹nعSŒT¦û ÝV¯Ûùp:•n@ÂNHæyàVT‹Zñƒ(Q¡¼aËZWƒŠ§:ú¹žÄϽtvÞ¹#›‡0ëÄY¨«ÈíG2™¿†„ãtÇg I ´oÂÔm•ynÅEaï*í†Ñ›ìEwb¶DV¹âƒÁþ,‚} †p 1éò$awA(߆ø1øŸ] A :IPç©ÔZÍšâ(ânˆ ¢µÒó¾r IÑEß&&f½ ôð6OŽ!ýCèK’KÓØµíÁ3FúÇRv mOÈ÷„AÄqg̚ˑD ý}sšœ÷O#ËI5ûû1-~þ>W—'_ØÇsWd}*„Î~*TYꇧ=€Œ­ƒïÜ»)ÞØØ¦Ã#Aµf¾ò…å{º4»0GE6ù¾“ àäʘwÞVèÙ¿>•ƒ|u\ÀBÞâ ûj}f˜r¾Œ°9 ƒ•¬€îUº§Cûv-ëß²qIÌ~Êý £ÙæÌn¤G¹69领f˜®#,u+ÍM”ƒÛ c°•¯a`¢¬¼2tMÔÅRÌ#,æhË÷gQ0GÎ5_‡WkHš®Ô««ÀVŽÁAžÔh¯lR'GÔcpÇæelˆÓî•>zefä‚pøn‹^æ+º}šÿ¶È2—•ŸÙ0o€$æ®EÍÇav²Kzh0ya1%yÐ0béˆu¸xµÒîÐ`1¡Uƒ‰‚ºšu:aШ9ÖkŽqÞ!lÄ0jŽóZ™“uhö"ŽxÚÂ@6îd‘¯æ”Ó_ç½:êŠ?Ë÷Ñ{â‡þ!Gšd• YŒïÞ 3ƒÁ½mÓ@nd¸³/7p$ÖcùAfH2a´î÷7ÏO³óçÂaéuŽŸ›\Ávid™[¡îª«—)'Üíñ,ü}ÇɧAJlÓ@ÃŽöîúízl±IÝ5ŽgGmƒ4™2L]4†+#ÐQDav¶%Vœ@àa¨¦ÙÍÈíÎ⯟¾Ûnß +i!Õ’Äî‡w#–ŠaåÏïÆÊ_¬DçÂÜõô»ð²—¾ çŸ|®„þ{£0}5ãge™0S¢ô9„Wq‰`"4v"eCüµ®åM”ó[hWL"ÐꟉ"ÆDâ z£ÆjTžˆ‚0>Þpe±9–„²/Ú„_o”Ðf_µé%0á|Rµ‚=Û7ѽõaÇTÜ.ƒlq<ßZÌÛ’yÓ:ðÈ OgúKÔä3< Ï?«AdnŒ¼Í*.ÔUË”•ÕP>¬@UYކdwk–ƒͬ8ÁaÀÜErå4}nŸ`V€äx.oYÜWƒÄ-Ã%âŠÙJ—1Ñæ+ˆ’ԥݵ¹†ßKµ&Q-â×ü[ÿ¶ Ýökx°BM5Æ¥cß®‡úðõÿø žÙóñÆ·¾ oY.« ±´ø@fRõ6׿¥Úä[ÅÎ* ÐB3–¿¶ÛD« ›”VÛ +ï Ld‡!¼ª¼}/¡Ê b[‹>“¨4 ,PõÀâkÓ•öÆ`GÿŠã°¹7ˆ>)6i•Šù¦Bv´!Ų2 ÊšÌiŽ,§é5D£Æb¢ë««–)-ü£åbžÇi¶ÁNõÉuÁ’ÚÄÅÝ"¹ÍÀN(_ Ž{ª,Á¡•µ™ÙRu‚X>ŸµØ„äU‹4ªÊ„åªWÏQ ¢ê. Ï“÷Ï¥iÅMQÎ7âì}xͽMÊæºe%³s{¥‹±¦öFtÏŸ+]ü~ðày—¿_ÿßo‹bo`ðC‘N*¬øŽnU> eÔ"ªŒ çÕ9é¢ðƒI â‹WE9ä}E®ÀIEaéjÀô_÷Vö"çd…‰0ûðjA¾¬»\X‚ ˆyx¾ø>ø˜I¶spÆúH¦¤ cÄŽF÷ÇI8Õrƒ©ÆÇÌa Ñzÿ QBQ‰š´òu=-„YÆ¡’CL¸ÊW'ÞŠ¿¯ Íe±Ï†ê¥òKë r™xùŸ¡Ê³7=õLX¾c8åŠø8Ä>lÓpà‰ùÊÑ W• «Ù²ÙJìü¤(í†8üÙCØzË64vgp<1ãˆÊÍ9:ÙP¶é×T&…å³—K¦ë®»Ë—.Ãe]T3S1XxÂ4ˆpOuóõUÑD¯"! ˜š…xÚÁ­Á¤–4bˆÉ+,º¨r@tjz˜óaL$r¢[ÀÞânešqu{\G@1(O…ó7ðg·oÂîÑÍHÄS0Kê~…mE¤ŸºTæ4˧ŒøXžI³Ú¨å±.ÓKF4üR«Ž¨»HƒÆ™Â88üe±a—Ç}ÚD¶R³š{1SB` &OÇ«ìvàzúT`xø¦*–(Ng£Õ¾e”'XñI!'méD¸å†-°¦Ìê=׫™…Bàýl ûP\ÇEKS3wZZZ4è('·èuéuΟ8‘¿žÄYñ÷×"©Â™}P3M)“”2w©Ž„sÃRöÄW@Nh ã¸*{0^UÀSóq¨¤JWòRXò&Âõ¼ˆÉíÍî@ÿè’á†)×d„èaú‚¼žJŠ&ª`S3üZ½º>žö“ûõ'ó¡úÇŸ¡Á…A¥sÒçxýr=>Ê}fâ²-+æÚ°¼j±`21Hº æAJÒæj³&G纎”!åÓCË9Ž˜¼\Áf_ûXY høÊ7 Z9¡(¢N 6k¹¨:U”¹àS-­O'%rí(f¦ŠÔ ‚Pù‡™å:§C3¿V^]±qj3x~Íqîë&QŠ :RʄÚ…þq ®¢ŸÇîâN‰˜< c‘Ï_ƒJ ¾YÅP®ýc[Åfܧ„AÊŠí2u.Š”±€C˜£ÌŒ9LÔl5kš^C4n2{Œ®·ÖuðŒ›lÕãçz…œÕ©’+p™žÉ—k ù7m*có׌ŠÎ#a”í¦ª“ËI¡[­Hö¸¤àeÙ«ŠcÝq+¢ôyÙ#¶âze).ÈjM:ÐÝ}}-ŠVPA›xDá*páu§êx”0°w/Ö®]+'—Þ¤œÝ@•6Ñ`!a¾†­š5é’ïaK[Ù+Œu |mÚÒeÛ}CÕ¯ª%ýM”~GÑÎÚÂa» Pý…>ä«Y¹¹¦‰sçû¢šm) b`Êî ñŸ0k BŸ‡.ô]ÐÑçH¬„O¤]‘’G¨%·Ï¤Yyã4½†–ÈòÞu9táH;vª™ÆË¡Š„žÝuפiÿôÙYÏŽø×Ì(I¹æTsµšÍ¡Z-‹‹A„™…Ëë•Åæ­ª†CÕ"‹ž´µEê)³ƒƒÊÆö¥µlè˜öÃH§È`¥ëû(•JÃÍ7ß„M[·¨“²,™ù³#^e™+³•¥2Fj¦DŒH’„¡ý4ª?‡Wcû·²ÕeLü°j¯Îû€ržsÿ‘‘êöûåz„f8O„h0c@ÉíF®8$‰‡|Ü ÔúýZ­Ó:ß³tCc¡¡©5Ï-Òøöp@¹Of€Dû tcúù 8 -²>9¤3ÚQ±u?ÈSM¸ã!û>>¯Éñš}l™´׿zçLls¦©â RÚ žŠ,ò™q’wŠ8Ø9‚ÁC¢³\UÒÃÁ#P&+1&Ñka”ò£LäGhPñ@”Š%äóy¬[·×^ûmôíÙƒ×òl:Oü$aÉ7bFŒZáE©Â[«meDÌa¾ò¡„%P|Ôê]I¤–9ÑdÊÐàQ%V±£°e®{ž_…ë*¿‡FežSÆ´rµ„‘ñ~”+yi–%±bò¤¨¯ jítÃoâÒ÷™¦¦\º1]àzW¾wàái†2dOd™é4L³óçR%aÎÀÈ£Hôúº J»×å©+ìóø”“[!FÞû*ö/û?­d¤³£»ˆ¾!8cÃð“&±²€›°8„×qK¨º "¼\3–/&.ÕX*ð&’èj&žª'•y c%”h˜¦Vê¾/ÎfVÄž6cås9Œg³¸õÖ[ñÅ/~ë7n€m™R;ËqˆpŽØRæ«X(S–YË.7´ÍGùÑ Íx<=”I)ô§„¥Ùù1}œ]…-)í†â‰ÙÍ0õ‚‰Š»†>F¡<†±ü1©ŠÌ‚Zfø‘sð Åz ]‚ÑÔÞ™Mgâyv¤%H´täLøA¹SÐâivþ‹"ËÛÅ„µe9©®Cë¢å;úy¸;²í+Ø?7jzˆ ÍZ°¸€½dÿpÆwì„oK× bŽ(o¥D«bÊò,Ù& ]Uj$ÌÎf Y)!ÑÃë¾s5®úijP-9ÈŽkkŽŽ†Òþ©J¥‚ññ,²"wÝu¾üå¯àÖÛo—Ã¥ T+ŽDwÙÚ?ÁÕq¥d{•¨bða’a˜¥–nW熈*ÖŽóóàˆ©J?vvéssUx Ûõ%JMU!Ä”/ £XWi-X 3'8´ ËÐ y´Íž›%ð.z‡Ð,j†”2Ù™µó9wšÿòÈò#øûPdö쎬/œæ¯èS7[š± ±I3Ý©ð â_÷°ðwO{ajÕÛ»t0™N£Ò?†á¿­Aÿ¡XÌÁ¶MQ b <Ë–bzr$S=§âÒ 6Q¦÷J. ¥"–?ë8´/iÂEo= ï¸îµh›×ŠÑ!ú¼öF D8Á™L©RÆØØ(†öíÃý÷݇o~ó›øÙφѱ14d2t|GLZœ€Xë" ®«ª¾jƯ2ÓUÓ'Ý‘°ÖLJ÷çПb§yÊLc¸2ˆmã›èZ+ʇTÅïÃ) É$‚^+•œ€û‹Œ@Ÿ¯‹2²ïÃ×e±¼ÐÏ2QëWü5LfÏ_ÒOOxÉ÷^ ‹Ï<žœ’£ñpd}ºÈ“d²°b¸?²þìiQ¥Û2ÅtVtù@i¶_„*?Ó–—O‘sçIƧ#ëo€”VÆBznhþœž¾¦t«Ç ÀŠylÓnlYývîÜ‚ŠW†e™J©’r•,mVru™¿JJÖñ%‰°4ZFSkN¸j1FÇÐOÇZúôxïoß„.ZŽÜè(ÜŠ;‘ù¨Üˆb±ˆÑÑ à‘õëñÃüßúæ·°ö¡‡ÌbÄxT@°eÙÚ‘nIÄ“þÓmh 3¨9Ô ]f^–£7¼oÜŒ#e¥<°1»ùj^X„ã…æ9nÈkÕ)¢XE‘„3K S彨Œt¾ cÂǺ”»¥œè̈8Z|0té‘é^´`;·ü8˜ƒ.ãt«~þÿ>?S¨ü#Ë\À®}šœ7;DO¬ÿõû­Ž,sfòœiúwâ¸ú¨Og*ý¢E ư_hBd}ö:ÿë0Ñ }¡~N¦­Øt%c=ݳ·Ì·0ß½»›)ÄÓI¸»¶lǾ±ÌînCgk;bÜŠ 'Ók åB Y×+Þ½PH®³EQ6tdo±É!NŠ¿ï‘>tÌíÂ;~òzüôšßà¶­Dº©a"7ÄWñªqÄæ##´8Ä·,f­-›7ã²§]†³Î<óæÏC&™‚o²B·°%@pky!¦˜Â²%Ж+îL¨œébìðà½9×ccv ŽªǽÖ9P€MkH•´R- â”Åé¯Âk mÊó…m(`ˆXÔ] m^cÂ¥îLÜJ•¶ÃïYtb·;?(¹6TS©¡Ý3&t²Ì5žNŸ"àmܵæ û>YæsŸ=…îmÔóÙ0Ì6[¬èiß·xé œ|ÒŠ•7ÝÖmtÐ&Æ ˆRZ„1 Ú`2C/VÆI™V$2)‘H#O"iµ OÁà’ïôá fª¤8ž±“B΢mY3׋ۿ¿ŸÞòQ” %Üú­;HÇ`Çí‰,n & $’3Â~‘RIöÙºyÞÿâŧnúzÏÆè®1$cIÄ$%ú,û0 Ny—@Â-˜©h26~‰¹ÊãüW„«˜†yõtÒcX×KiŠmˆ©ÊULÄW&™y˜Úbì T$± ]gSW{püгז"X’z´îúÓؼnFµ×æÙ×סú,°p´ÒÛi|c žë'&™oþß!|†íòãÿŸ÷‡±ôÍtöWqv}èÿx)ñ9qà…a{«²ïºÈr‡f‘S¥rϘÒôc ¬Û ext‡×œ{éÓ¶sB~P `T 1Z&ð`g1ψy8®bÂx›˜š (YäÆ÷b|Œ1“B%O³{v@……°2çH«ªåâÔ—œ,Ÿ»óÇ«ðÚo¾g¾øt‰èr«Î~åIÂ'%’jµJ€SF"Ǿþ|òÅŸEÿ¾Ý¨6•°=»›s°aì!¬[‹õ£k±qììÈoÇpyE’ªKŒƒ€¤PͣȀB ©êÓ÷UmÆâó$`0 Dª’î£VJ †vœ«è+#°T>< fj–°5Bƒ¬‰R6‹¥§œ½mþÒÖåéëMc"^òÑWkÛxÏJÌ@áËí‘uV¶ÇO±s¼”Æ¿DÖ¹åéãú¢¨ÿ)L­H yúž/9È>l®º+²þb[{}\›C¹“Ùÿo“@ämSäÞsÑͨgÏ´˜¡xzØyÙ%—ßcµØ¤è „*†t´'pE G¹Ú‡,âœÂÅuÅ]Q¸œ­^)¢T-"çä'vR ¦ÂàÂ!°%RâCØ}v‡0‰[þç.ôõïÆ+þ÷8ý¥§H}-.õQË,j½Í'€%h°x2]ëúðå7\+ k±èøˆª˜ËÊAå•Äξ.OÂ&ª2E…@ƒs>ª~U .)Œ„® žZæk_Š¡û7 •ëá…þñy˜ªäFパu®^û+¨¦=SAØÆúýÈ:çx\sŸ/OC¯mŠ\ßç4+ºª™Òä‡QBŒc›øö†IŠ÷úC0E7‹ºp Üû4N‰¬Oë2ïf˜µõ°÷´sνûÌóÎßá q«BCùB8b™+þ±½žÄ¡e‡^=׈)1:©AÅS¦ÕσãT=™áW胜ÈJ|lhÐ\Æ /ZˆÑ£XsýwÆð¼/=§¿â$¡J¹¬LW®+᳓_]%ϲöÏã;ïú‚FŸ´Cì"‡"ƒ…_@É/¢èWP )±/ÆgLIØŸW™@¤ÂàpéuOÎW¾ƒP’¯Â ´ÉJ3¡ÐYnè áÀ—\xX>WàµÅßÁÛüÀ“–ôå ˜}Œ£½sNõܧ½hM™MÆÁK—0HóT¥1™*?£ñ­Èú2½íX'V±­ü&=K…çæÃ<â&]ß 8ö½Pþ ‰ul¿è ûþf’‚ûçcĤš'2ÇÜÿô>÷%=Y å38öE.£×±K?Ó@ØŒb M1îÞÕ/–÷ Bê1ÔØ‡€›¯hT+‰+™äŽ$V]eöaE,#,¯ÐŽÏNt—7ícx’y>ÿr€°þ›‘Íå122†g~úbœöÊd»ç…PjH&|­Q•JØ3,]µêG÷áºk~»‹wÆG±Z6Rb&â2qÄUå¤úyý!|^Ž˜©T¯B‡KÉû†î}¢òR$…CÆDÒ  Ó•ŒvÃöx6íc!°lÕðÊU¹±ñ¡¬8÷õöÜM—:úXÌ"‘$nK÷úÞÛîÄ –wи'²þ=kœ@ˆKË ®Ô³R½>8] %’vó—…'¤©r5_VØnUÍöi9;4Ž–“Ѻ¨ ·ƒÛÙGQÆÈX—}îBœüJUz(ìd(æ+n¥«—9ÜÐ¥Þ­˜- ²òÛ«ñ‹÷Ý£ƒÖ›M*%1g)SVY£‚ƒ‰D†9½åȹ9ªd ÿrŒ@GXYbDP‘K—¼2¤Qû<Ì@…:{RPÑ’FXÌZ„}ˆéÊAÌHá²+^¾Š®bݿǬÈ2°m÷ß8­'(%ŒÉæº6²3s9‚æŒ'ù\ž• -šÈ9ï}œÇeçstpº6]ö$^³ºŸO2ÃíÓf¡Êc|–û]D}!§hóQæI:÷ÿÓÏH(„q8 ÿŽý+pîÑ7Á³þ²Iß» Ê76­Å¬õà ͖-a|QG×íW¿òU·K§¡ÉbY3ªòºsýDŽHs–®eå„ÎèJUá܃‹1zUÕŒŠÃ|@)í²ô!P1ªXxõ\øF[nÚ† í"»oÃ{†qÉgÏÂ)¯S0Ò6í ˆ.³6¶ã1“ÕßYƒ_¼ù¨X.âscb®*‹¿">9fSŸƒŸÃ‘Z’ãá ÓÒ%Йä&w´‰DXR1ðUŽo78ݳAFB™­PLÅ\ªºqV˜¸8¶w/N>í¢ç\tŪ±vÆÌ°ÿÈßú¶”äèÌta…ðìI Ò£gÇlny¢›O1ÛaÿÄo¡²ÇCù”ãøñŠ£ÁâÆIf²›õLºé ¾¾çhóÛ‹"ÛÆ´éê¡C<Æ;µˆ‚ ;¨Ï{Ï›ÍAòêIÛߌýÃÀE^‰ýs/˜ Ü Õ¦öÉX¸.²Î ýšéÎ>@&Gþ䀯|Û?üºinK¡˜-`d0¡a”Ù¦¯²«+ƒ1 Ç€ëøŠq°yŠ_§fÂv¢YŠ&çIytùá:/hƒIuÃÏ·IYwÏ®b|dûFqöGWàä71QåMBÖ!¯árHìd‚€$M¿Ý„_¾ôzì];„Ôü$HÏ£RuÄQîÊp8x¨*O]úš*—=ð-~˜–k 8·„¾‡€ƒÙ‡˜³LÎx·…¡¸2.ûEt1E·Dß—wqÅ ßz_£…Õ%"B‡R¾ å·üáÏÈç‹Gú·Nm¨8å\ü}˜èûôLí£øûþÓWæë™ìfü}—8žµ¾ê(~+ßg=Šùä-P>nuÚq”¯™—Vùö÷ç¬Ó¦´ÃqÞrõ€«'mëÕÌê¿ò¹·êûÏåñÏ™ôÞ{hüîŽÉá»—`ÿÄC¾?œëò<1É|›ôB=1úð¤ OLî˜ ³?“íüáé`ùÓ{þé…/ÕÍAV<  8°OD@Ä d8:ÏÃwUÅ\NÐs] ,U%¾vNk’K£\¨"ÑCûiÍÈmË£0V€cÓçèÖçÆËÌá´ß~¢:Žø<¢f,&)pÃT±ZvŒT{ªkðû—ߌ{?¿eB»xoBÌZŽÅù‘¾öÏDü>tB¾6Sõ1‡ê.È&*‹FÌH# ÖA bèr%aëgÅàpij®@–+ôíÁI§^:pé3^ô·á2=ÀÆcƒŸ{77®üËã}€C±žäaÁùµ’ýöoÒ®Êvm3~Ùþày~ÄIh¯‡ ÇݪwË$³Î3Ã/ðx„}>¯Uó´ýØYŸ6×¼G.Ëf*N´û€6‘ݪïçdsÐÙ8ü€h âã?ŠRߥýY¤ÿ .Õ`´YO&× ær2_y÷žÃªÏÇþÑ[f4rl·ïßc†ˆ±¦°¿9žuè¬ [vlyÞœö½Âh.éLÂÏZh4Ó¯›oS†”g’æÝ‰É„$=¾1ÛBŒkbÅcR=—úØK£e®­% ?FÛl[Š Æ2q„;^wâ \øýÓá—ù311}± (Ñ’A㼬þÄ}XÿÍ °L›¾3¦’ Cö¡;ý…Mǹ|;—.©æUXnËÜfÌ¿ª³/é@š‰•¡÷†é½¬§ÌN*êhx†® « ú¦®aeJ8®ô…â0fWEf‰¹‹´}•ó`h”¸9 §\„YÈÃÏ•1øÐN|ú³¿ûíÓ.~î§wŒb¥uª•n2iàŸ/Vÿé°žµ÷è!4ÜïÀß—æ~¢%­ Ÿ/À‘‡(.Ñ3Ãçàý’>6çlÒ l0r­º½(ç88Ïd!= ‡ÙÚ—4P? ÷ˆÙÔç°^Ãd0ݨgÈ›5¸ FÎÝÓ vŽfRË´â;PÉŽM¼ŽFÉ7®ïuÕÞÓÊz½þÞ>}Oà «Í’=úÜùïr28qVìG3Üõõúù:ØíÔß·M+ý=ÌÈo‰YewäoÀÏ,a¨ðäÿhp/=Ï“†0ér½žhTŽÆí˜ù÷Ó´‘ *Ëæ/ºù­ï½æû_üÀ¿½Wƒ~²AJ3‹ NóvÛ„gs¶w ¼ñ6›m<5ƒ7”Ãv’žCJ|°ò48‚Êå¬tãë‹(VÑ}ùløtÜ2}¹i«ð\vA¸£ãp*%œøÁãaÆm<ü•‡éOGà“Š#LX75aÍ+ÍFRm6M12¨ ºxä«;°ëh^ÖˆÄì$f]܆ÆãÓð‹5øðÛÎJ ’Z§Æ]Q—¿‹ƺֈ8ÝÙtEû9ôÊñMÚÏ"àØÞ‡‹.~É®§_üÜ› Xoâ¼¼•TðÃw®:\ð˜Ì:ø¯µüNN–=Ž=+žçëÙÚ» ÑÉI×¶BÇ#»µÿãëØ¿öÓ-¡›mã×hVÕ< „Æõݧ'×Mòa<Þ{öBL$Z>}ãlѳðÇÛïeµôß>÷ÿ»PÑqoÒÀºèQÌs½Gá{˜irhúç±i˜'[bQ«ÓZ]á¤enʺѡYÛÞ}Í7~ùã=kÇ}6.Hqñ øÄ8XÑ+«b.— åéÒl\æ~¦ø ,ÄÖYëºÁ’ªá.þhdƒbóMÇ7Pøºy“/Ì„#š Ë@¥äÁë+bù?.…‹aí=³Dl‡ Eq&xÙ—ª¾vÒ–hS¾ªÕ-1Œxg\à•á*úoAÇÒvÌ{v /ÒÃã~–nû$^rq”«ò$º`¢$ šÚi/ö.úOE\qÀ€8ä9¹îÿuòC#hˆuúoyó¿ÝF¿UÖ>„?[ØsjåÍ·Éß3;…ØíÈQ8Ï>_GãýzÆ{¹žMÍ;Âãyzf¿R›®Ç+ë>Â@ù6mJ»J›Ï.xÊ‹¯e6_ýû‡Hm¹Ež¤°“šËŒœŽ#Ïsá¿ÍÚ¯Â7o‚ïý˜f!ÿ¥ÏÙî™PQfG¸hS+—¹Yÿ †¦Ào17é>ûGÍ„µ©<ª±˜SØŒòÛ›þðÆw>ëÊÿMt؈5Åà5‘úl $ˆ/h @ȘÂF¬t€½&lšÇÇÄ.âôjÁâʼº:/÷ ‘нPþ‹DOÿëfdWçpÖ÷OE¢-¯HÌ$ÉU~=qœ›VLW×¥)h&‰†MØüÕmXóÙ5ˆÇbúJÍJ¢´·.ÉÝ>¸¬|,C¼9®À€¾“ûgºÓè¹rz®˜%À㌸ÊÆ *P=Í ‰¶ ´S<2îN”²Vœ'¢gä—\…rÅ2ѳJFa ý«Öá­oùìš÷¼îƒ_Ø2.qì‡dGbâ–i ­rÆÙØtßaÿþ3Ú\ããØµR·4=Þˆ'¦jR³›“õµöh3Bã¤ï³µÙa¯6åñ šýGq6þD™kÓÎ Ú 7W37òeÙ£¯o«¾¾°´Ñ“-Ýúorª6ÎÑçoF”VhbÜ«•ëVÍT×jÓѱ–.ÍHë×ÐLÅæ.'²_\ßÿÝú¼7ë¿?k婿ªÐ—f=±Û|´lïªJS¤ ¯~Æs¿÷·÷¿ç¼Ÿ|þËoæ¾Y0ÄÅÄ,ÄtxÆMÊݶ¤#aÅö$ú(aª„?K ˜º'=Â-Ù—´MŒÅÉú ˆ&6+ÍŠÃ÷TBú‚@:59аC;FJ» ´ÝòwŸ$~–?ù ªÄ*:ÏêÂ)]‚üæ²I-¯Ü#9ä·k¶‘ìJaÙ?,A÷Óºˆ­xÄDÄZèŒ@…^Ⱦ aÂËù†/mm%oÐ× Òò¾®8¬ ƒó.•í´kÝ#X±âÙû^ÿšþ‰Nï¯v ã¥žýê7 €°ïá~Ìl)kEùÀ ½>¶‘?¨Çt“=zÜ:ïÿ wÍ g*ÀT2ÅN[þÆé~â>ÞÛÿã??yÿíwœ¾qåêÓfÄ”e¤Hñr¹“²šsš©8|®)Ž”’f­Ú•iŠ¥‹M=–«"–F™”…■ܢƒæSZˆÄ%Á„Ù†C³yö=“±Â,ɘÑwZ(l+cák–Ñûq¬ýøƒØsÃ^4t7áÔO¿ì¢2Jld°‚ÿ·ƒ7Ât±çú}ÄJh9¾E|1¾à€2lbƒ>_OûÉ$÷Ãb¹*ž(¦-1Œ‰‰ÍT™f!e.íBàÁyèc;w !hůùÊmI¿Ï–°;fÞŸšC@Î8çtÔ¥.u©ËT3I:òÑFÊRIl#„ m‰ÌÎ_ûÍ÷#/×_€U±$'ÄtIÍ;¦ÊR/“šul©%aÁžJÈãÁ!½¾ëK½,.–Ⱦ+CaƒBŸæ“ZaVD2°ü$)bŽÚŠÃ4ÂHb¤ècFR±F¶81ÙSÁ‚W-ÆiŸ> ÉLÛ¾³ «ßµš‰‹ÚHµgpòÇNÁÉ? [0pÃþè&ìüɱ$’ ªý­øel[—$±T›´8*Kú èÑ9ñP0aÉu:šyT=)`‚êÈ>ävâïýò}§-Xò«¾,n§Cˆ_èpß•‘rýá¬K]ê2µÅzçG>^sËO<ëçLÃŒ¥óælïZzÜŽ[üë«â‰„ŠºŠ©°Yvzs”lÕ#ƒË‹X&û$ì„ø2Âv²-s%ÝÁ_Ãô±ðõóEy›·Ã¥ý¬8âñeº"†`ÛqÅ>ÂÒ!Ì ¸`aÎǬ‹æ a^²kÆ1¶z ·YΑÚTÕ­'¶¡ë‚Ùˆ7$QÚRÆØ½9·U‘îÎ 3?C`Cç먂ˆ|\¹0_ÝOWáõ¡Ìpìr| Z(¹ŠŽ# Œ`ïªûðš—xó{^ñÞë¶ñ=Ž)8’Ú4ÝÚÛvãÏßÿvý ­K]ê2uäEú8 ¤8±XaÌÎ>mÅ…˜¿ÿ÷·\Äuà¹|†É¾‘¤Š ÿm³è•ÍOÜ0n¥¥OºMÊ9n¥H¦‰½ØØõ£~4-nÄœ+æ!(Z³ÏƒfýV\9Ð 4ˆ48ÌÖàõ8íåÏ Òº¢™ž&b4yäÖæàåösg U=$<:ÎéBãÒV™Þç. ÷p‘¨ŒM ÒŒXcAÅT]ÅÓÙèjxžk«â2%Ü¥ä{’óÁe[Ìb»W݆§_üê}à«¿ÞçàÚ\ÆËq+áÆ¶n¬üý¯0¶o°þ”Ö¥.u™šòœ~Enk{€Qö•¿€û€”I·^rÙe7ïÛ3gý«Î°S-ÅDdÂnH8­ÉÉ„¦) ܶ“’#@àa™*ÍT\ôÿ¬OÀ£mEŒ„ýÒ`s’e S1tbÊÌÄàa¨DC‰¶beÏ¡´E“Ž1 ½ÍÈ?’#pȰè<¯V"PÐ/h\Ø„¶Ó;0R(ï¨ û@žÎÃCª+ƒäœŒ*Ã^åÒ$ªÚ®”d‡ÊÒWÍ´¸ G]¹È¹ªg»UΣoÕ-X±ôÒñ/þûoð¬Ø7÷å°Nê>á¥B ·¼ÅÄC÷Þ kÖÔŸÒºÔ¥.SRìØ¡j9RˆÅ‚t³Å¿ôÍ·g³cÍw|÷§/³3Ì,â2€R¾e•+$<Ò­ª½­„ÅÆ¥0¡™Œ£°eLü Í't°YŠk]%ap¸¯ïJtƒ·Ðåä@‰ŽÒ ÇUx.¡Œ‹3̺¬1úÎmÿ³Ã7î“Öº Þ¸VCœX‰+ûX©$æ]½-'v`àOÈ>˜Å¶Ý;ÑùôYh;§fk •1GUæüΉæI˜,º>rŽãìä±kÕÍ8~î¥o|þú›ìxüÚþ,Vómx<1´ìäçPœ|µþ€Ö¥.u™Â äeúø!ïÌþb †•Dpù _òË-;Y¾ñÏ÷žKÅoJHb¡·T Õ'C±aÄ&ìtƒ7ìE@,¡÷å‹Tå[_™„aèþü™˜©ŠJ°—÷Ä·bÚÊŒ%ûšâ˜÷ò>š–·#ML¤¼­„ñµãðJZNé”DŽó]b¥)bM'¶ÂnI ÔWFvmåAvkvW N•{žøR7‹YW.T‰yT«ÒCÅ1ôýízœ²è‚Ü7>óÛ›Ò _Ý•Å-1óè$`ðí¼ñ—¿Á¶µuR—ºÔe OúK"vÁ³^øâßìèyè··ŸáÈ&q!ʹÎÉ^Àµ¯ˆYHB -ÑW†kaïïö ÓÛ„®gÌ_€˜¤L;.%D@ˆÕ°3ÝfßGLHö3Td”ô—ò#á°éX2 š‘¦QÚQDá‘qño4ãàÚ(£Bt]vðÐzfI Ò ›áV )°K)'¶Du)–ÁÎxA%!ejF݇ÜÔ@:ØDŠP 2¿Å­äÖgá–I)ŸÔ.æ/cei_ŸäúĬdNl‡‘1Ý–ÃÐêQä‡Êð›m¸mr¥ ªä~”v>‚ÁU·âŠK^7üµOþôOˆ'¿Ò7¦˜GØe° u©K]êr ÍY¥²$¢O¿ä’›fµ¢ÿŽþü¹­#±Lo³8¯!Ý]ø>'í±ç‚3Ñ] w±–41ƒvm·*i„‹5Á0LCƒƒ´ŽItÕP†—ZqUM—Fº·•˜H ÛÇ‘];&À‘YÚ*~·êÓ«êßáT-8bÜ“²ïe‹¡û†0vÿªNÎ,[šÃÞs rëÆ?¾éóÛÿýŸýýˆ‡ÏíÍ)ŸGÈÎêR—ºÔ¥  "¦êNXð`œqÒòÕg\ýÒ{7ܳjÅ®ë×wYÍ’- RxÐâ¶ ©Të“3p߆܆<’]Äš“Ò¼I’úLeê‚ö—˜*ÌX éÝa`rÖŠj7«³ÈUM×)¸ˆÏJ!1'ƒb_ãëÆàV|¤–4K6yµâ‚»ËrWÅ*¡aq´/ÀZ€Û º= ïîa8›úÑ¿þVt¦Óîgþõ'k_}ù«²»Œÿ*bk´c`@êR—ºÔäD”¦)…i‘%6²`nÇ–§¿êµ7—]§eÍÏn<%ŸEìØ C’ ™]8lBrMÄ»Òh<±MÛÄâ0SMª<;Ç̪A“Tõ5,e s&NœŸ!åâÿöÎ-6Š*ãßÜv¶í.ݲÛBÝÒe³PªˆA b”[åEѨÑ7}‘7c4F^M|òòÁD ‰‰—¢\bËM ­”R(eÛ†vÙ¶{›ÝÙÙ›çœJƒ>¨¢á|ÉÉÎl›íl³9¿ýΙÿÿ“g»äº~Áßì9­Û E%‘…!;ÂЮ¿”#°°L„Q#^ÕMæ2 šŸ^3QÔt+U¸ñ¤63}§Qì“«w>>ð݉G—vïO•pÀ°õƒ9@¸¸¸8@þ@æL¢¥ TåìÖ­›$7m9Ý·rüÈ@“)¨ÕA¤]‰Ó ë5z7‹‚õÜkŸnÛ~ët/*Öë;oÉŠÁõ†CABœ ´BœF°DAúò¶OKÓYÎ9Í<'šUÈñz D¦ÏgP!P–†P%J'^ªÕ U‰ ¡ùèä±tåÒ¿F´3ê¼ýÞ¾áwöîý¾N­ÿà††C”KðÛ®s€pqqq€Ü@æ.iUk@ÑD5ÙÙ6°i÷+½¡Ø{øøÙ噾р+™F‚%‘õ“²Ô0,â0lâlÓb…{®({íÔ}21(Pcâøð Ä¡®D ðd/ƒX ‹NþŽ·$ÅbképVðg‰EŠ([ë ¥DΤQ¡ãäܬB¯ÔØuè7†qóôP¦³îó›_Ÿzÿ­/Nl\õȧ™>*”1"ú·é:àáâââù×"ø½³¨‹(ê°Eʬ_·öÌú]/÷ÉBP?©ýæÀUÅvÊÖ«T¶E&}›¸xË[^å·ËV²¨« ËPÞ±[Ø>Š×¤Qd¿Ç2Øi¾9ƒˆç:è¹÷<´ÍxóÅWqôËÏø§”‹‹ë>ˆ{ûgŽW³GARŸÈ—{z³éøÑƒ¯÷&4¹%C¸9uþˆ döThñ¡WÛÁjDu*« ¡aÅŠô…]/ŽÅ–¾X›eO.{dP¡.ÅÐQÍe MŽ¢f¤¡fl$§µ-Ûž™ÞþÚKC‰ÖÖŸ«ä‹ÖÀ©j 6ݧç‚„‹‹‹ëÞÄ;Ñ’ (h®ØX><4Ôsáükûûu¤.¶å+YÅHP"P›Z Î›%@ "¨ ,ÿ–^ËñÝüMx› R†QÌ¢RÈ šŸhˆÜÎ–Åæš®Úcv¤J®¹8_N]œÈê¢+a´(ÐqoMr€pqqqýQò=¥•?Á–ˬ/ã¨"c|ÅŠäÙÕ]É–²óFb|tlÕÕÁ“+¯^>·,5>Ð1™IE ©Q%ïÔ`,¤] .„f«³Ð'6Ë{õ<,ŽYcÅ)9Bļà[ž37-*v†s1ófX’ü=†%÷‹¥òšSÄþò5fIþ².[Ÿ(_#ç{m|Iœ¼ß×OîFËcDÙ>òü¢Ì0yƒ-äZÍfØÙØÙ0y§ÿî··§îDÇ÷‰è¸ø"ç²æ»/Y€䌨¾û ëPŒ 9+çLûГ/ E@Cn»ržL%RŸp^HÅA Dx°pAÈb°¬kA(Å`¨{A 8ƒ£ ´ƒ³à¸®›àaðŒ‚÷`‚ D¨:¤ AÄ„< ?(Š€â¡$(BRh%´*‚J  hTý„ÎB— >è4@o Ï0 &Ã4X6†­a&ì ÃQð8^çÂù𸮆ÁÍðYø |–Á/à1@‘Pt”ÊÅD±P¡¨T JŒZ*D•¡ªQ¨6T7ê:J†z‰ú„Æ¢©hÚí†DG£¹è%èÕèÍè ôt3º }=ˆEÃP0Z Œ+†‰Ã¤b–b 0e˜ZÌ ÌyÌMÌ0æ=‹¥cM°ÎØ@l<6»»»Û„íÀöa‡°c8NgsÇ…â8¸l\nîî ®7Œûˆ'áuñvx|^ˆ_‡/ÃÄŸÆ÷ãŸâÇ J#‚+!”À#,'l%ì'´®† ãDe¢ ÑEL'®%–‰ç‰÷‰oI$’>É…NòHå¤#¤‹¤AÒ'² ÙœÌ"'’¥ä-ä:rùù-…B1¦xQ(Ù”-”zÊ9ÊCÊGª‚•[§°F¡R¡Y¡_á•"AÑHÑ[q¡b®b™â1Å«Š/•JÆJ,%ŽÒj¥J¥“JJcÊTe[åPå,åÍÊ•/)?SÁ©«ø©ðTòUjTΩ QQT*‹Ê¥®§î§ž§Ó°4›–N+¢¦õÒFUUTTcT—©VªžR•ÑQtc:›žIßJ?J¿EÿQ[£îE›FK£;cccêc>ÄúÆ–ÄÊâ¬ãVÅ]‰×ˆÄ·&àbjÆæûÍß18Ñ1± ñÖ“Ë\Z¨±0sá©EŠ‹8‹Ž%a’b“&}á„rª9cÉìäªäQ.‹»“û‚çÅ+åðÝù%ü§)î)%)ÏRÝS·§Ž¤y¦•¥½°‚×éé{Ó?d„fÔeLdÆf6eá³’²N U„®Å:‹—-îYˆ D²%®Kv,‹k%d¤5›†4>=RSéé`ŽGNeÎÇ¥1K-S^&\Ö³Ü|ù¦åOsýs^^Á]ѹRoåÚ•ƒ«¼Wí[ ­N^ݹÆ`Mþšá¼€¼k‰k3Öþ¶Îf]ɺwëc×·åkççåmØÐP P .Øè¶qïè?ôn²ß´kÓ·B^áå"›¢²¢/›¹›/ÿhûcù[R¶ônuÚº§[,,¾µÍsÛå’Ü’¡ís·7—2J KßíX´ãR™CÙÞÄÒ²òòÖ]†»Šw}©H«¸YéSÙT¥Uµ©êÃnÞîþ=^{÷jï-Úûù'ÁO·÷ìk®6®.«ÁÖäÔ<Ù³¿ûgæÏõµµEµ_ë„u²ºêëëjÜÚ7HF%ºvØ÷pk£eã¾&zSÑpDzäù/I¿Ü:|´óóXãq£ãU'¨' ›¡æåÍ£-i-²ÖøÖ¾“A';ÛÜÚNüjõk]»^{å)ÕS[OO矞8“{f¬CÔñòlêÙ¡ÎE÷ÎÅ»ÑÞÕ{>øüÅ þÎu{wŸ¹è~±ý’륓—™—[®8]iîqì9ñ›ão'zz›¯:_m½ær­­oNßé~Ïþ³×}¯_¸Á¾qåæ¼›}·¢oÝHÝæÝ~v'óÎë»9wÇïåÝÇÜ/| ô ì¡ÖÃêßÍ~o’9ÉN úö<Š|toˆ;ôâ±äñ—áü'”'eOuŸÖ?³{Ö>â?ríùüçÃ/D/Æ_ü¡üGÕ+ÓWÇÿôú³g4ntøµøõÄ›ÍoÕßÖ½sx×96öð}Öûñ…Õ?øÄüÔý9öóÓñ¥_p_Ê¿š}mûüíþDÖÄ„ˆ#æLµ(Dá”Þ }%ê5ˆó§ûå)¦{ü)ÿ‰§{ê)q ¦€¨<B» ±Æˆ*z†h”€ííåúO‘¤ØÛMç"µ ­IÙÄÄ[¤OÄ™ðu`bb¼ebâk-Rì]:ÞO÷é“¢tù2©b1ãbïÒŠóÀ¿È?Äù²T0ÖiTXtXML:com.adobe.xmp 1280 1078 1 ÖvN@IDATxì€]EÕÇÏöÝôN l½)¤*)JQPA”"UÀ® úY?;Ø@ì;ê‡"¢ˆAA¤÷–H%Éf7Ûß¾ïüf÷¬³7ï½}o÷½-Ùs’·÷Þ¹sgæþïܹ3ÿ9çLÙO=—GÀpGÀpGÀpGÀpF!ei•QXn/²#à8Ž€#à8Ž€#à8Ž€#à8Rî8Ž€#à8Ž€#à8Ž€#à8Ž€#0Zpbc´>9/·#à8Ž€#à8Ž€#à8Ž€#à¸Æ†×GÀpGÀpGÀpGÀ½¸ÆÆè}v^rGÀpGÀpGÀpG`Ì#àÄÆ˜¯€#à8Ž€#à8Ž€#à8Ž€#0zpbcô>;/¹#à8Ž€#à8Ž€#à8Ž€#0æpbcÌWÀpGÀpGÀpGÀ½8±1zŸ—ÜpGÀpGÀpGÀó8±1æ«€à8Ž€#à8Ž€#à8Ž€#àŒ^œØ½ÏÎKî8Ž€#à8Ž€#à8Ž€#àŒyœØóUÀpGÀpGÀpGÀpF/NlŒÞgç%wGÀpGÀpGÀpÆ<NlŒù*à8Ž€#à8Ž€#à8Ž€#à8£'6Fï³ó’;Ž€#à8Ž€#à8Ž€#à8c'6Æ|pGÀpGÀpGÀpÑ‹€£÷ÙyÉGÀpGÀpGÀp1€c¾ 8Ž€#à8Ž€#à8Ž€#à8ŽÀèEÀ‰Ñûì¼äŽ€#à8Ž€#à8Ž€#à8ŽÀ˜GÀ‰1_GÀpGÀpGÀpG`ô"P9z‹î%wGÀK<ñIJÓN;¥[ö{íAÀŸýȨ þFÆs ¥ðº2|O©”Øoüõ¯eÃâÅÒúïKº½}ó›,+ûo˜î‡# c›Üã$ÏYJnÇlÓéÿ±oÇ=ûᬅ'Î… 5¬7Ž¥dñzŽËjj¤ö¯)gœ!“Þô&‹5 í?n½UnùãåéÇ—ŽŽŽ¥1R/ªªª’;ï,¯yÝëäÀCÖb:±1¬ð{掀#`tuuIkk«Œ7΂úlíC@êâ‘T¿FRYŠóhO¯¿vj8ï²µë@£¶¶v8‹1ly·´´„{/Ë4¶RyÆŽÀæPWëêê6?1ÂCÖ|ò“²î›ßì.e¦÷,Óý¼H ®±ël?:î“FŒOLLRˆ =.³óv ç,ÝžýÇ®%^¼¯‡é¶6i¹óNiùÇ?¤íþûe楗ZjmòƒÈ¿ýmA׌¦ÈôY{è¡ð{ö©§ä”³Ï¶â)±‘Ò:Õ®u¯Awžol’•ëe]ó&ijn‘ÎT‡ÔJ—̬«•9SgJý¬­eZe…T(4¡RDž±#à _|Q¾©Áã?^öÝwßÌßþö7ùË_þ"ùÈGdâĉ²aùþúëå™gž‘ÎÎN?~¼,Z´H8àýÆ”Éúõëå¿ø…<ÿüóRYY)óçÏ—Ã?\¶ÞzkùÄ'>‘±hçž{®Ô××g<çŽ@Œ@¶ú5gÎùîw¿+K—.£‡ý×¼æ5rØa‡É½÷Þ+¿ÖÙ«]vÙEN;í´p.×5r7Ýt“\tÑE2uêÔÿ;ßùNŒ¾ç=ïÉZ×)‹KqxàB»r†ÎÄí¸ãŽòàƒÊÏþsÙf›mä]ïzWÈìk_ûšL˜0AÎ9çœ~Û©k¯½V}ôÑpí×Í;WN8á„Цýô§?•çž{N>úц8äG»F{vúé§Ëç>÷¹P⻜uÔQòÊW¾2œ·?ÿûßs¶Ñý½‹×\s<öØc–\ïö /”iÓ¦Éí·ß.ýë_¥M̼Ã{챇y䑽ñFòš½¤FÕ÷4ŒÝt„mb?žØö^_“ÌSɉ’BiâöìÁÎëu£[8oiöìoFnXÜÄ–{¯Ñ6µPÍ 45¶dR#S¸×ùÚ>—æFeš[BéÒ´5‹Çšäî•+ä¡U+eCK³V, §ŠŠ2ý§ôÃÜ*­-MÒ¸á%i\ó¼´®Z*³º*ä ʱ‹^+{iDZZÓ²JZÂ"{ÒŽ€#P¬­‰·tȯ¾újihhq:äÿVõF:.ååå²ß~ûÉŸÿüçÐa=å”SB'å·Êz38<óÌ3…0ä¶Ûn“5kÖÈ›zTgΜ©ßµÒ¶m%€È“Ìb?×lõ묳ΠÎææfy\UGï¹çž0XbÀeõ‹ºJ=EíwãÆaE'5Û56ðå’÷Áq®²äÍ%‰Ù`nx»í¶ —/_¾< ’ŸÒY&dÅŠÂl*²víZÙ}÷ÝqÐ_;EÙ ÞøÆ7†gK{tóÍ7ëè£î}ÞÄ#¯_ýêW²í¶ÛÊ©§žúBä7þ|9ðÀ٠€-¾gˆ È`êןþô'¡-„„ùÏþ#÷Ýw_ :¨›Ç¿ûÝïdgU ®QUêbK\¦b¦M{aÁͲ‚{0áüöÛo/«W¯–[n¹%`û:U}Kî›öݺuòÿ÷aÐx衇ڥ¾&Š]W,½ãŽ;N&MšîŠ6ØÂi“0óŽ<üðòçž{†8vžm*• Ú¡Ô3 7x옭í'Ïqœí]äÈ5ÍX˜°¡Mø£š"P!!7oÕA/Äj}}}½(ûÉò6Ñ ?úÑ“0rà¿!ÿ% â0ö‰kñ{ö7#5ô§7<ÓuÉtë lõƇº ÷M˜’¼&œë‰ÝM~Xyˆ—Î%Ã{ÂÀ`¢¶ñ…æ'cM¸ç^ýêa¹í’iltj]Y«š7?ÿ‚ܶl©tH¹ÌÔáœÙÛÈÕÌHu¶ê¯Mº:Ûõ#Æ/-µåÒ>±F:¶ž%í©½dS{‹üeù³ò£Ï¼W¶ÞØ%§Ÿp²œ~êé2¡ºÚ Ža©.ž©#P\–-[:©¯ÖÐf-vÛm·0{ YA Zßw~tj!46mÚ ²ë®»†-{:´v\ÜRzj[2Ùê#üB¼! ,(ö_zé¥0ÏàiÉ’%[¤3̹®áº\’«,¡Ã—ëb?W ŠÐšA AcŒ™~H*4+Ð  Ô××K>íipµA ž¨˜×ÅB~ho q†¦ÏÜÒÌ®·°xKýc–A;ƒ6! Ê !ÃùO<1 ¢B?ÄÀÄîŸ÷ M?´i šøA4Ú³ƒ¼12 HŽ×Ñq÷^ÊBà]˜1cFŸK¨ïô 3¨Ô#6úD,ÂA¶w‘¤ãv ΊpHê*æb¯}íkƒ¶ß”)Sâh#v¿U5ó%É ÇœëÙ*½¤GŸ0®±8?N'Úmœ>÷@D°%~¡‘&};§a”¦—Æ Ü„kô¸WãÃÂ3lóÆ ºŸcM†óž‹NlPUÖ+Ivãò俥ÏÉ”‰“eû9Ûj¨2£Jf¤SMºm—2ý•+±‘îj—ŠNu¢’R4jŽ¢L‡Vʶp¾LçÍœ(Ó_ûjiTŽËïÿ½|åê+äÃg¾WÎ<ýL©¢Òº8ŽÀˆG€Y ÌOlÀMV­Zv™±0áÇ1wâtÐAaƵm: >0Eñž!æÛÁ 0Ðú… õ‘ë3Sxˆ:ÍL½hYsÿcùZH(ˆ Ô×! ЬX¹rexž –„ UÁ³ErµSœgÀò³Ÿý, h{P^¡ŽçLhÏ~üã‡v ’¤63¸h™p- &7ÜpC°Cìb"ed0êìwª8?h‰PæW½êU£Îׯ¿þõ/yòÉ'‰ Ñ„¶ä“‘˜œ°Ï3‚l„cÌÂÐ^ùÚ±33ñaØv¾Ý²øÉO~Ú_îêàƒÔL[Ѧ€àCs‰÷bK¶w‘|峟ýlo–”åüóÏ &kîºë®Ð¿˜ÙgŸ}„Mo伃¿‰¬¢ïa±c¶ýüÂ73"9ˆÂâë,qÂ"RBÂÈ‹^’£‡Ð€àè¥/¸.›F"ÝÍŽ{®Í‰A–ô™”k2œ÷\Tb£CëÆƒ›Zä[÷ß'Õµd÷yó•¸Ð¡«E µèP"C·]ASCµ5”Ì?%3Ò=¤†ªqHEºK;)©¨ì’ª²r©ÖJZ£Þ6j÷ÜQ6ì2O>½äÇòýŸüH~tÅ÷d÷]ºglÇZ¥ñûuFÌn`f‚Ða5µoìÁTBcaÀ‡³oø$ Ój)ìe±=GUÛÅ ©_Ô[ˆ fÏ›7/ÔI:Ö¨Òg³÷ŽgÒÙ8½h eÉ–—‡÷Ä&wß}w 1êëëà ƒ6 “4˜ùϧ"7ž#dƒsößýîw÷TÑÙcpC> âÑ.°v‘ë·Új+yùË_ÎnÙ³gÛnØR0•¡Î½õ­o {NÎÀ‰r߯î0ybà‡¯!HŽÑ"Ü„³í˜ä@4ÅòÈ#„ö“p:âˆ#Âé½öÚ+¼wPø7[0zûÛß_îû[¼7æ$×LRxþ¼¯˜‚Ìš5+Œ„Y=Éçöûk£-lï"ç!,c3¨ØIè1ÇÈ ÊE}ƤŒoZ«£F´mË*z®÷l2ç‹~áØHžmoŽ‹ß}ôß¿Fj‚F†÷’ô-õú^rƒ4TøÈ®5ᜇs=ûvªÏ6×¹>ý`8(±Eꯖ=/7ê,Âsë¥J54$Ý"eJd¤;•ØP‹T 50Aa_I®I©ÆFZU6;uŸJ5}ÂéP’ccsƒÖÉ.edËÃà¥ZKZ«›5-eR³pWY½Û9èÌ×ÊWÎÿ´œõö3†CÏÛpúA-‹… †X¨h±A笰ÙPÎÓAg@çÁì§-Z:³tZ±Çᜩý‡Dü#P  Xqþ ¡PHý¢þ2+Çç¸&¨>ç"6lÅì¿mÑVhY,oߎ€µÿüç?IÅ@ s73ó0m‹þÚ)#X¹þ-oyK˜ãD–º…ãÑÐQ×âS:Ž©Cæ#2!ŸØÇFŒþ ½F•W^üH@¨AÀ`§ÃI'ÊÏ ö׿þõÐŽŽ&bƒÙk¾8bE…o‚}€¿ ĉ…yfÏ™ GK…Ú};1i_ãû£´ãbS4yxæL’|ûÛßî½Ahœ=ç+¹Úè8lï"q W2½ÇnÔk|Áà¸Âå²Ë.ñQElÄ@°Ï€?–ø˜ýž_ˆeÇÚæ%Iä1×YÛÒˆó`¿‡œdéölƒJLnÐÆr¬ÒkvŽô‘¤aû!bâØâûvD#Pç¡ é2ùæ£Ê¤75ËÞÛm¯£UÊ•°ŽÕÎhé!2”ÌÐcÈ ÈŒ.ÕäH)Ñ•Néq‡Ì˜0]¶Q/ã«ÇI]UÜöÄS¦ÌšþºÔÿFu…Tj’S'M‘y³´S°â©|ËArñ.—‡t†âË_¾,Ì”Œh´½pŽÀC |pôžÙÚ¾AÀ1šÌz3 d6“Ätø¨1û±DmÕ`ƒÎL£™Ò´ô}»e"|惹Ë|ë—åÉ–uAìÙº¤™u¼ðtOǺ©©) >“×PNfäœãbv‚)åØÏ·,!1úÇ0-Öí30b6•A„é³…d‚p¢="¬¿v*.û˜™0ðB'˜ ˆ„80Y…Á5h q f&–>[ÚC.^¼88…$Ã…ADÄ B}³kã4»_ì4-=¶üXEëßøFpúÞ÷¾·÷ì|\~pÌx§xŽ l(ò}@,íøß:Š¿¥—¬ ¼7<{V=1ƒ Þ Óšˆ¯Ã‡Kü¾Aæj£ãkÙÏô.‚,}™8]ÂæÏŸ4ÀžS³Eœâ² í?N§ãwœ¸ÅÊ8¤aBı…Ù¾mc’BÃÃwµg¿÷:Òãšø¾t?˜£™Ñs.hjp=d×Ä×ÚqœNOºÄìÏׯãÚ]úQ÷w¸p´Æ¤Æçïÿ·4”ÕÊ®³·ÖÑ"å=Z]ÍJj@fð±a«d†]Jl¤Ôü¤«LêþN[í$[OæZÕÊÐÚŸVm*í¨)JZëe—þY8ÿ2k"ŽE;eßö‘ŸßñK);pùé÷ËúsÎRûÊu¿ £îñ{±‰/:æh` ΀‘Î9¤†ÍÌÑégi4È :®,£È¬¨uTÆ&r~×ÅB Ðú…¶e¼ÚǦtTQ-Æy d“e$>ã¨Ë,-JýGÃA.RhY’éûqa€? € 4ÈSˆ4L£#Ÿv*™3Äõr#“CÈ,]Î3°Að›‘\^ØœiÆéSV40¡Á<ŸÌC¬¡}BþñŠ"ñõ#}­–kýå/|3™æL¦rólÐä@k…ÕPÐøcpúæ7¿9StÛB ïÀ{Ë»`éE[˹Lm2}~&†Ôµ\m´Åµmò]$œ~ 𦱰¸-CÌ{/&hX*<6[‰¯‘ûú¾õ‘äq|’s=¿pU|Ì~L\°¯¿=§0 ý§{ÚÓ^RCÓ D‡å¯©fÕÚHæÈ5I$ÇGeú0¥§†&òŇï—ç;ÊdÁ´éê£UMOšƒéIW§’hgèR£Sýl`zÒ ±¡šj|Ƚ·Þ[fŒŸªû)©®¨–É5“å®çÿ)›Ú6©:¼K¹T–WÉÂ9û¨³ÐJ])¥5˜ª ÉqßóÉß%kš6ÊêGž“ª ê—# a/Œ#àä…³¤tèÔf›E5UÑLqû=á Ô—Ú`åi–øES-Žž-äDï>av iÿ4ó i@˜I¼¯a;êrÓ…ÈiêÌv,Ê5:a92`S””–öê¥ÏÊ£M-²×6ó´©sÐÔ&­GJ`è¶[KCÉ Õàè%8tÁW¶ºíªÀ§F›¼ÝA2kü iVÍŽšªj™R=I–5-—¦t“T©C ´5ªËªeß­÷Qz£\Z•I«SQLSÐਟ¹­<´â)S?)u,ú³»—Èîj׊Ã,GÀ]ðA¤CžM}óhid;?ºîÖK;PJõü‡º~A—é~†º,}C}]&¬†º ýµSC]žd~¹êU2î@GÂsÈTvóu2RË—©Ì[zØh~¥|—Ìñi)ñ)eÚ™êm/• ¡DÄF|Ç£= ñЪ°ëBäÿ![ê5ì“®’äÌLzŽC¾– äEÏÂ3l‡× EAÃ…ÓæSEyÂuwc“üúÙ'åU;ÂŒ5M®®MÒòÂZ©œ¦>1T{£SÔü$ݦûmÒQ¦«¡”«¦F™’züê¹Ëü‰ódcÇFõ©¡^Œ+u@SÖ%ÏlzVYL%5ô_ME,œµVÆriÓ•TÐò€ÐHkpiªëd’ª¥§UƒIéIí·‹\ø‹Kå€öWÕN-Wƒzã7•N¼¡•°^;KÃa_‹ Ë›¡KÌCs±Ê²Z™FlÿXUÛnòD]›Äùóç•Y|ä¼8£ê{oÏ?×¹‡Tílùòå}–´ËŸpœF¢& nxÃFýubl‹Qõë3–÷Ce·XL9)T]GÀpGÀp-þÙ$y.:Wqla¶oÛX›#[ú…„“Zl°°¼¢ã`Žbéržs&Éc ÷íˆG`@ÄÆ¥.ý÷í²ï‚½tE“&é\ß éj]Öµ¼MmᥳY+G-JF@jT¨ùIZI ¨ õ©±Ï̽e×i;R£¶²JMPjdrÕD¹síÝê °»H5åµòÊ=š˜¯(éÑ¡¡A´V”WÈU[''ˆvÍ£ýÍ å¬‹Ï—;[¿ÜäÓa9Il÷¿ÿýïËgœ‘<]´cl@Yoþºë®“Ûn»- ì!4bedÀ޽ö£8Dâx ‚z&K¿ál û[Ë •MÎS&„Á>ö¾,“†æ‹1Ö–/×rî€Ý-| ÛË/¿\®¿þú@Vƒ§…S0œˆQöeË–õž²²S~Æ bÃVïÿûû,£×{¡î|ë[ß’+®¸"Ô>åÆa ‹#àŒn03 1ÂttßMiKO» V8i4‡˜¥ÍÑSwGÀu@˜°Ÿüé¹ ­dzøÙj:ASƒk“yqlF¼?|üš‰€ÒY… Ãï?ý˜ŒŸ4UʃO õ´QÛ&MËV*m±Id\§lZ³N÷USÓ“Ê6%#tà©æ'©²N©Ÿ2OœµPÚÔt¥BÑãªjÕe¢¬j[-M]Mjo\¡µ²ßÌ}Ô·†:të?´9ÒeJ˜PbÝR‰[[S+U:8WW+“ÆO”Iµ“eù^]òÝï~§°‹b‡,:.æ.ƒxÖ\‡¬`I2œ“}ðƒTǧ?KÃýþ÷¿K}éK_ ËAá| ¯àõõõò±},ø (¤<7ÝtSp¦I§ðw¾ó@S‚µâÑ|`K>xÿÈG>ò¸ð §ex”Žl ?úÓŠˆ¯éoŸ43aŽÃ'œ®]zé¥A£„e±p´†£7ÊŒÆÆŠ+‚&žåYâ ‡~!8bɸL½A(qM¶Ï!îwÜ‘5׳‚Kvð>’m+¤Ç.c<ÕãÀ B,»‰æmŽ‘¦ ôž÷¼'øÄÀ/?ˆaœÙrÍ÷¾÷½Í@D púôé!nìÔŽˆ,JØYãÔäG?úQoïxÇ;,8lwÛm·pî‹_übp¸kåøÇ?þÑ'ÞüãÏœ’rrîܹ!ŒeHör}¸Hÿüð‡? Zhú¡!‡†![cGÀpG`3´Ÿtÿí>úý„÷œëÝvŸøß8=Ýǽù[œçâWŽP ö±±Fµ{~ñÔrÈJYû:]Îu“”WµKóê—¤j»©R6)%\#Uóg©ãPô( $º´b¥u)×:9j›EÒ‘n­Nµ2ÆUÔãÉæ§¥J…V”UÊ+¦ì¥þ5ÊtõÌO0;A›2C«$šBú'¥l=®ª®ÔŸjH•Ô¦kdRj¼4íR/_øÙrúéoßLã ×sˆ;°ñ~®kò=Çêø€.ß ƒôÏ~ö³a©@:½¹„DÏħ3˺÷ ºÍƒ{®k¹æ’K. žûÑByÛÛÞ–ÌL^ƒ ?L9Ž<òÈp ÞÅß÷¾÷‘«®ºª×oIŒK¼ŸL³ÐcÒŠÓc yš$@o|ã3&‰É?LQößÿ€)«p¯hÝ@À Á KññË%,†0`µƒþ$.{qÇÒyÈ'´hðÜÏà') híœyæ™Á¼)yœŒ?Øc–VcM{fšyfùË_€”å×\FÅ~×0Ç£íÀþÞ{ïH`Ìö ziƒ.¾øâŽåM»‚¿´X”öê‚ .&~´»&Ù áBm7„<Ò¿÷Þ{Ã’¯/Y²„MXËíµ'Ÿ|2„³¢ï– ä7Úxf^g×p>Þ·ø„Åáù^¦D<‚“_–A…0æ™géfŸüä'-›¢oã2=qO0oü9ä Õ˜8ë í:Â÷`4ˈÀ>&Ø®…Ùq1¶É4íØ¶ƒÐÚj\ëõ;ûÙ¯½•v]%ð%u%p½®õ÷"O¬n¯ãÀÚW¿Y'º+C“•· å4ägOÞ/[Ïš'©¶ ÔH©ŽöF©œ].Ï®”òZÕÛX³^Ò5Ú0(¡Q®Ë¶VTh6JF¶ÕÁR[^£Œ]—úϨ” JjL®œ(7=¡qÓR«¾6ö™ÚMj´©ùI·¶éèÿ ýAµñC*4mÂ5éruŠ KM•’êtt‚j|´4]~xõ»ãŽ€¿ ´!5Ž>úè0È££Ü©A±é¨²l¦+×\sM0Ù8ì°Ã‚–B®ÛúÔ§>Š£Ž:*,g…ùˆ9ÖÊuç Xöê_ÿúWÐ| ÓKþC)”ŸA(DN6R#[y˜ EÁŒ+&)øq™0˜üÄ'>‡”0y\ìRS/XRÓ4ލ×y.c|Qï GW­ZÚ=¶æ7M°¤ÐCˆ466 $¨ÅeyÊXМ@ÌÌm Ú'[N”e;Mbb¿B”AƒŽZ"¶²]Ã’…hR Tò¹ 8H ¾h¢í‡Ï#H¾Qä{L¸ ´<~#à8ý!@»yÑEÉá‡&°˜$a%“¤Ðn~ó›ß ZÈhØÑGDc.“ yi͈‹#0’€løêÿþ¯|çk_ šõïÐñÍx­ÏÅ”¨eäÆh–‚ˆfíÐ\ÿÔ}2wê4]ÒµIW?aI×&ý5KÝÜjYuïR5KÑõOTÓ"Ý‘ÒÁCZ*+ÊT#Cdû se§ õªp¡D‡š˜ŒSmñê0t]çºð_Y+{OÚ3­ºLl§ju·[ECg—Ðü@sCýl@‚ ­_‚Ï M.AsCÉqÕU2~»­ä»7/Vߨx ¯0pcærMˆúÊ@ó€3€¯×åƒèTgÖÏþÜç>ÖqG»#%S:Ì´s=ªÆt^‡J`˹Oœ B"8^ýÌg>:Ù?ÿùÏ’„_SD˜©^¸paPñ?餓iEòGqDÈå˜cŽ Ž{“Ç ”¾ð…/„w‡µ 1 2!ÝýöÛ/hí`â…I— ZJÉÎ ƒXÈ>;f–Ùf¢íœóÏ??búÄû‡‰f¼ÓfÎòÇ?þQ(,h;™ÞE:\”…5ë³™¾0ì±ÇBŽú ¹H¾È-·Ü"§žzj82Ëx ÛNqÙlÿõ fhÒ|ô£íõƒš õõõAÛæ”SNé%Ñ SHyÐdBóéþç ’Á:foÌÜážÚU#ÌÔñÌ0¯@͹lBx÷»ßNÓNš/ Ò'„¶Á¯RÜñ>ðÀCø=÷ܶ%hÐñŒ‘Ûo¿=lüÀï’%áDÏê$dË@¥¿ë);Âû‹ö¡i‡Px×ÐXA»/VûhYü:GÀpr!À÷Bõë:“}ë­·¢‚ïÖÁ,K—.ís)3“\8ÍÇÄSl¾çhÄÅ‚fõç?ÿùTJͳ8Ï-z_ÇiýJ'Þï÷Ââtâýl—ä'ÛµC¾T5#ï¹ë.¹Kµøÿ­[¾ÁãTs9îÍo–«tòáJ­ëÇ«¯H„ÉìsÔ|öŠÅ‹å+ú¾œ|Æ!œ?{i?â²ï|G¾§ñ¨É}­’yoÒ¾ÞõåøJ}‡NO˜Áö^8 v 2Eù÷šÒ¡~-Òª¡ JJ}b”ér®¢«Ÿ”WvJY]ZZÖl”ÊÉÒ¹®Yj§U"â€i¯TbB-´±„kM¹”WÊSj‚2¾²Nv·cXñM …êÔÔáÓë9Ƥ¥;\M[¤Bã)Õ‘Ö|•@QÚ¡ê’ªJM_µ7ªÒ•òÂŒFù§v÷ïé þ7ÁÌ{¦6ÃÖö3ÇÌ?ã/ùËa†N2˜´Y‰»o\ ˜øÅÂ,¨G+-2˜ü0Å ³Î ãïÇùºoe‹ÓCScåÊ•aÀjç M—øÇ|ø˜ñѳG¡éÄå*ôZÿߺG' ˆAÔ×”uf@Îs¢3PNC<ÐaÐŒvû ¬Bt°ú駇A>@Þ f³ñµ‚‰õ7®C¤ññ<„Q¯°ÖëžA$é0Øg¶!/Ld ÚÞ¬ l̸3p¥¼øEà]d`ÌÌuœ+f†c úÓŸþ4ÜYˆ‰8.y‘Äľnè€ÑI7ÈݘË0ð%-îÿ/hpƒèl8AP&…w4ÈðÛƒß|G`ZÁ>hpŽA+>n nî¼óÎPN:…´1¤ÁŠF\‹fÄ-áçw^¸þ]ïzW2Û¢'±l¢à‡So¨‡Ü/$ÓÙgŸÝ›|2ßøØÈ6ÚIˆÎá°3êõ’ºEÔ5s”ŸýìgAK„kð!„àçŒ)"õ߈ ÌP⼩OÔcžÅ§?ýiùêW¿Ò°?q\Â8ŽÃò½SäÄOìs=a¤aï7ÇqúKŠ.Ú|—¨¹æ@„ Þ¤ð<ŒJžËtLbmN¦ó#1¬ØÏ!yÆô_hsxààK‹wsß}÷ ³óÌÐTxO gég ø¸É6IdyÐ>Ó¾RúthQA C2âpÞHH‹Ÿk‹_0ÚÞm~ôu译š¼™L6s¥—é\)ñË”_®°RÔ¾5<„ºa~×ø>c<¡emá´‘ô9Xl±"& ¨|§ÑÊ+EÙsaUìsÃ^~ýÖ„Ùê\7F“xß²Ӊ÷³¥•OœèÚáÂõ5¯{] $ªµÍÚ]Û‹ÿ¨Vým‹fj_Òâ7úíiÔ>ÆÛµ¿ñ¬šˆNÒ>ðÁê;ìµ_7['ËÖ:M\®9KûgË´Ÿù‹«¯äÇ JôÝ­…G©ÿÇçµû/ݬ N•ùœªwó3÷Ë6³æH§.ÑZžRu¯´.ó ©Q¦ë’´µËÌWΔå·<-Svž¢f)ëdò¬¹JdTÈìÚ™2»z†úÖèþ4ªËT£¢b\ 5 7v­ÛIϱ²I·–†®@Üó.èžfŒ— ÂTACÃÿ»¯K²èumzN ÕäÀ4¥¼-Ñ•VT+d§òËß_—7±‘/…ăýåáBjäk Ò_úguVè 3›È ¯ô&W^yeP«Fm¸Xžê‹Un+c¾Û\³¤ù¤ÁýÓa°Yï|®ñ8¥A­ :C:tL„Ž …ä1çèxšCE:"¨2¸Ç±":! ÎùÍ›7/\ÁÏò:VbÚì£ÅÁà–0ʉßVIzÓ›Þèb@ „Õ‡?üaÁd*„¡cœm6B È ÊɲÌ6ãOtV!ƒÐPážL£ÂÀɆSR…¸tôÀ’ûCH—A5«ûІplŽ+!O ‹ðGb& ˜Õ! ¤Á²# |‰[*b#dRÄ?´ÏŸh«ÜÅŒˆþ ßèÜ2PEk-:Ï´Ã<Ú#6p@Ês@0D ßCg±Îœð3bÃüm@daÂaÄ3‘´]â6H6bƒg +WQVÌ1›9çœsâÓýîçs=ïæ:õÁÒâ%0€| €–÷r ™“‰Ø€ˆLÎçJ ÑFl亟ÁžÃ„2æQ±PÏø}å+_ þ¿è[ê¾qúÙöÑ>ãÝJ>S+ý0Êdíe¶t_²dIhç“mÜ+?¾khÀñ>TJ‰ß@ËTìëøF©±ŽvÚjBÇhH?§LZ ´_}­ ˆ & LÚÔoýd0ø[z¾uŠ@JûÓT›s‡w–›´Ž_ÓóíÚWû´mÍj†E“~Ì˴϶D'ò*«ªäBmOî×>7ĤÆ|íó@püGM¹¦i¿{­¶qÄÿ™Nܵ鵫t¢ì1íãŒV)Œ|~z‡ÿ\ú ®:R«j~¢¦(˜ ¤Rj6ÒÕªi´Ëø­keí#+eê¼I²öáÕ2®¶Nª•¸Ø}¢”èÖÖ¨’ºòÙ¤ÄHcªQö˜°«T*ù© JKüº öqÚÖM^@¯¨)‹†W©s VVIi¾ei%6 7t–rÒQ£J¯«˜P#ÿxúÎ`Ž’Ï=É7nñøx1CLç˜Jñ 9ÿ¡}(¨4cvb×Ñ0Ã8ÓY¦siá¥Ø §xsvtžé ¶ì ˜yH:™Ê6tÆú5à!`8खAÇ&v.yL8ª¥øÄ°ø˜'ÑyCÀçË€‘3:º;kƒ‰`éÅ[ÞE4",,>†¼#fÒ8Ï{Å;„IN!CHÛ®%µtŒCì\ò˜sFˆp޲óþÚ³+ÈI´3 2ØB0ØF5ÖÒeň;^´hQP©µãl8ÙyÛ2Û!§¦4˜Ã eYbñYþ­LhCx†v³f½ìM:—v\Ì-y3=Kë´ÓN X2PeÖ(žÍët–Äâ‘?¬+ä1ŽÔ ³ŒIq!îÀ‹t ×cf¨°z¶hö σ«V‘'±•,×ðìP¹ŽIa‹ËIÖßõFÖSKƒ6Ìâ÷g狹%ïb¦gi‘î@ÅÒˆ·’…H|íhØçÞJUNê9ZLIR#‰'Ä,ïe¡í mª‘‡qšÙî‡ïåI’ñµ´Ñ¢´ŸÙÒ!˜2'I8-똭AŠæJ+Û¹Rã—-ßláÜ[¶sƒ ‡6Ø -Vi2˜vóÂÁ”g„X?Â|l1´r@H¢] )KŸÝÂGë–û-vÙI³`éùî„ëØ–˜…Ùq1¶É4íØ¶–ÇJ¡¸˜|ÖèKt•ÊO©¦î½ª=y”º#€Œ@&kÝ盆¦$VOh[ŠFÆ—´]z@'æöÒ¸ŸR-ÛW`º­ñ&5ˆÿ€j¡ý£§ïNéO¡8+>B^²>Õ%kš^’®Ž&m(ô§ÄDgªEÍQ´aPó‘tW§¤ZÛdöÂÙ²ñ™õÒ°l½ŒÓYªIêGcvõÌð‚¡½Q£f(UåU²²m¥ì>~W%)Ê•Ô@ãuZ^¡º”žþ³Â¡­”i$áUÚaÜжN÷ÕE‰Œ2%5Ôñ‡>\%:”Ü(W ´;žXö¨lˆ–Ò Ñ:©,÷÷Ö·¾µè92¨a°ël‚ª0*é¥ÈÏòŠ-f9éL t6ÍÊɬ1³Ë.Ë ¨‰ í¸¿-äB,¨úÛl 3ÔÌÎ0EË1SÇ•ëc H üs˜ÓCÎcsËûDg‚☜@*Äb÷c3†4ȱ@2ÆÂ`ßí ò¶3þtа¢…j23„gœq†]¶¤a2b8Î…çM̧*I±eG3ݯÝ+×$ÏgòùL{$ƒ Zhá Q„¹Kc#¨ž?ñÄ}бƒ)ƒ:ÙdăTCL[Ìx–Ô3+“«Uýáy¢^p ƒž#3‹OtXÌ_ ùÆzáž?ÌZ’߬ò“ëzL’ìÞÐ.1¡Î2¨ã×q;¿%o“Z<Ü+³Ä¼Ë.…#@Ê;·|+0 ƒhµ6×R¦ž2³i‹y]!Y‘Ôøä=à}ŽÛbÒD» Ò:“@Ò¶0à6á~0©1-E gË`½ÐzTjüâò ç>ZV|C0Œ5È ŠMÌÏωö Á̱gj×òÍÇ )¤N… üO~ôô‘âžRè7ný'Ûæ—böX–NOÚqÿ¬7‹“=•{æ{ªmÛ¤ïÁ¹êË êJÔóµ~ÿS'vÝsOiTS»Ctî-j"ükÕƒ¡/1]'ÑUm úÐÔû?ßpƒl7~/ùGøTÕâØJ'¬F«ämвlÎU¨:të5CQßj‚"eÚyW3UÊPžª_¡K°îpعãrTSÕy¨ªyL­š¢+ ÔÿÕJhà[c½.»ý¸z%CÒj~Ò¡iõúSo Aý >jiÕÆè&6zŒpŒÆF…¬k[­Ä/E§¦ÕÑýëÙ—T»¤Z¥mE³<»|©LÝy×!FÌäáÜ…™Ôb 3Ìhf°r ••|ØGb›Ábç;Té¡ÖŽãR:Ì| PÏd†Þeì!œ-c&'¢Ì¦á g•3øcFŒ™t´-b`dài*ò ^÷ÔÆ?®S¼7h áìÞð†K+cÆÂŒ9Ú UÞAT_é0Ç!9ÏÀ8S‡•s´f^À1ÂàBƒ´lßÞíîÝ2ÞTàpÀ.Û$NvÞ¶tæh/ÈËîR¿!Ìh"hŽ@ô äÉržq§1œØBþ éÀýc dÎg!À;# XbÛwžb3 ³ƒ¶: f-IÄ`ÐDg„v2ÎÈê¡‘V6ê$bõ7™ÇÔÔì)3m‘¸CrüéïzHˆ?´Rp(‹`ÂeÎxɳÐÁXŽâ É)È lîûž¿=SâBìÅ+ÜØõIm êI £´{ì3 ÈÞX0C“4Âi:t&ø â=¤Î%¼ÃgŸ}vð‹”+^|Ó°ä3æ[ƒ¶ï-m"ï£ ²@®gšŒI¶´Á7è€-@äf‰E³Ô‚™÷ÉÚ` ϵ-%~¹òês¦¹F¾¼¿ÖVr;Ê7GЄ£5q‹ÉäNüÌ&Ú}Òåy&û!‚ÿŒï²¡Ï6«›b‘ šNï·/K~½e ;£ëÏF%ϯÖI½w«Ï˜UÛôZ5I¹UۈÇô›U£Å* û%í×¥tœx¯Ž‰Çr±×hÛù65§ÅoÇrm[qFŠ<¢&׋tá†ÓÕWÚ—/¹$„¶?y;}qísaYÕŽÖ]¹µI5" 6””¨Ô Ô¥Ôƒš†ThG¿Z+oGs«´44ˆ'ÖÉnûî¢ÄFµttv(Q¥•:%Ó«tU­ãmJŒP‘©î4N¢“ê?&%PejnÂ¾Æ Gê±= %06´­×euµ”˜ØPB#­¿r]-eӓˤlR…<ûÜS²÷NjS€ô¾\“ŒÊ‡†6éÀ0o Ç¨·3[͇•|PYfÖŒ|1ÊŸ©\qºñ~¦¸ù„YlmŸëÜñ±§SÈLiÔÅéØ0ƒ“i¶9ŸüòceI–+ßë=^_2áH˜=GH:)ÉcR$ ³È`ŠŽæ”fé6êŽ÷ -˜áÂÆ S#e@‰o ´vô33Núä‹ö«î°oB„¦Nkœ‡,a ËLöðt€ÐLܘ?~x1_ Á Ò€k“?Ë+¹…`€¡3 ÙñAcm‡•s쀈cÛMgÍÎeÉóÄÇÔ¢³:tÜi ùEºøšÀä†û†­î<(~PLSÆî‹û°}+Gò8y¯ƒ=¶|›Ž]Öø`VÂ@‚úÃLÚ6Ê©“Ý—]—­ þyŽ ~lÄWÈ+œ«Òé¦}£ž™Ÿ Ë 2ÃÒff˜öò ĵs¶%ÜöyV ÀmuÂíñL’á'×õ̦£™Âà“ïu•¼¨/Ô?$™¶åYŒ­•³i‘êë̤çÈ©˜P‚äÝÄô(Yž¤ u)ç¤Étr•g$œ+EyÍ ËîvG–$¤Ý"ÕV5aRò£?­L¾¼ãÙÄòˆÏ3øµöŽpÚzÞž?ñi÷!ÑÜ2a2b“¸&ä›Ôø‚Lƒ(µ|ÑÜ@ëï ß5Ú[àvÞÒʵ-%~¹òíï\!÷Ð_Zœ ÚÖ8ýØd޶ÖÎñŽc¦YD[…œ¡‘8¼†D²ghŽÅC„-àÝÑnEë}/A‘L4y.:¦—H cÿô=é²-†éÛ6΋ô{Ž)W¯Kò8:Wt\£´3í>§>bN‰ˆOâÜ©}Z~&ßUÂõGJ`”k¿?H³’­ŸWgðUhçêýð-3ù‹öSnÑ÷¡NµžðÍa‚6ÈÏu¢ ÁÊPãdå-·þ¶k6¼¢´·5H‡úØèèhÖF¿M;~ºŠ‰ ejú±îÉÕòÃã(Ëþ½TV=¹J®|û•ò®C.ûjŸ®•ZÕÖ¨S§¡ÕºU”»º´  ffÒMoÐ!£r®tŸm•ÒÕe•òRëj5…ч§&0i5?I§:´Z%P0Kyqùz¬EkËe™ÚÍ ‡ ÞŒÚ0ÜR¬?vsêFƒÏà0nÜK‘ïP¥É  '„‹õ%£Él2€ùÚ¡À&œƒ5¶.£ê+þ*0û`ö-yÌ]AH0KÆàŸˆáÔsŽñ~΀g‹Ô¼¥#Ì‚3`GDBd˜$-œr@Ž@p˜ÐÑd°Ù€)ƒMÊB½Dð3Xž‚‘-$\<“"æøC½fÆŽÎm}}½\tÑEaàÈ,¥yìg™h:ktðIŸ<ãrfÉl—,Y4¬tô!n°ƒÎ Éá=ã~ÈS4C¸§¤ù‰¥5Ú·˜ÿ€-}ží*õÉ–he€Å@#_13fþ ºL«-éÝwß=$eæ(µ –L 6L 2âA’‘ v>¹å>b“—äùþŽs]O…PD öhŸ!ÑÁ ’ü믌ý•a¤‡HÄq° +ÜÄm‰…³Mjll©ZNñ=kŸv&–Lš§ø»°÷ÇâÒ6åž+™äÛ?Jš4Bô&ÍýhbäƒxÅ4±,ŒwŒUŽ’)‚ÿ#úsdÖ'ãe;.~Ùò®p3—$ÿØ<’㸯kQòíbå.4/!g™t¤ #>“&|Wcm H-&x×Ñ–®÷4šDGjÝb¤[ûq¦g?ް%\Ç2ÅÂ9¤ÓCjô¦OöQصò„­Ìþ(¾ÁFjÄÅïP²5&5ìØÄ¤†…cÆR¬gaiå6oSTLÓíÒÞÒ¨+›´JY¹jETu× Üy¶wtÊŸ>z³¶,ê´“ ªD„.½Ú°®A.ûÂeò×›ÿ*?Qg>u“ë”vèÔhªá¡TE¹Î’Bd ¶°ZµÂ±ÆUŠC÷»¸ Õ Á å¹MOé{ †,êãr¥S)%50KYñÒÓ²aÓZõÕ¡9h‡qCc÷²^C ,y1 )¥Ý±u†­Ò3 Ù’„Á!³¨üøø@t0(e„ ÷Ž%œí1(à·¥á0ZŸ)8›m¶{Àã=?:t¬Æa6Ôñ1KšBdáŒçŸ\º”#?fȹ>^]ó%~±šª‘eVÛBRf–ûŒ…5+aàNR< O<ˆL°çúXÌ?B–Üç]¦Å;§ya—Î_Ú•xÀKœ\81cÏLC¸‚3«ðŽÅï UÞ-ΡEÙd’éyb– ÏŒßhH*î|˜õ4¢˜ú‚ 3$P¾Âµh!æ£%y-šGÌ0£ŠŽ¶˜B.aî`þ5ì4" »hï8›ÃXœä–ÕÐpËfŸ<Îu=Ä ƒ ê!šé  À >xßЂØR„AªÙÞsOØêç2]ÉDlð¢í …¹Ï–Jö™£å íP&L‹ë63ñfŽ›Œö&(æ<’ºKµh²Ф ¤vR Ø“Âu•&I-ê@&r%þ>Ùµ…lK_!ùUÜØÇPì…üã¾F²¯Àùúúúðc$±öÝ|k µaaÄ¡¯@¿3i–Ä9— @RhŸb3±p¶ö#žîÓFöjtlvázÒc#ö‘ž°°µãp"ñÇâ'‚ýpô ·)JYgZFµÍÑåT•Ø(¯P:C+Ö%eÕU²ô¯/J§~DÔND5%Ô‰§vˆ©TµµuJLˆ^«ç5 r‚•P:Ù*½Ñ©gqôɹt`íº”Æ`‘WÖJÁ ¥ûsZ˜¡¬VÇ£Õ  ~íª9Ò©¤Kgª]Ön|AVoX¦©ª–/ Ê¡=•;dz /AˆÞý¢åˆš×)?4œ–n^ÉÒå£Þu·h / ©¼£ZÚ–_Þö1ŸôpÚÅ €‚(:žÌ¤óƒg€É—U%Xu‚NÄ@¤T÷9²Œ…kÌ×…ánÇÜ»Õ ž¿ObbdB¶ó,Gji±e Çe@ŠO L;èÓñŒÏ‡‹õuª2£ÞñËtήïoÛ_¤màd>óË…S2#4’i/×¹d:Cyœ©¬ƒÍ­››nº)haRA}²gMÚ–'6ôüâ°pÐó‡g/%i×ÅqÐágB[þ8³}´mLâôÐ.1mµ8’,NÏΡýcBX¡×Ûµ8CåG8e}–ŸÅ/æ¶”i'Ë ©‡O…Ø-A4¸2•’ÊœZZh²@p™Ã^ÑS ¶\²ÅMÛL÷?ØòC š iñeÊÇÌ-?úXÔmˆÝ¤ u…‰® }ˆÂ¤$ó¡O•$ Ì,0¾–6‚òqÂ9´âô µb©¯¯ä5ä#ä >C¨ø°á½Ê4 ¯Ï¶_ ü²åUHxŒE!×e‹Ë÷Í$Ù¿Žµ4À±¿¼Ñe²m 41yéC"hr0€V$æNhpdª;V–‘¸íïþTfm÷ûÉã8QÎõHZÛ¾0–ãXÃ)®tö9£±<Xâê/œcËÏ„ý(ݰÏqÏ8(“?“çzÂBÉì<Ûl’<§Ç%Á5[þ£8|¸pú¯þk?àM¯›"ÍëVK›jl´µ5iCÞ¶­í›TÅE)LRRª­¡«£ðÓ}¶]©à¨d…ÎìÜwÿ}JKh=KAŽTªæ+¤è*(º ‚f•¿L‹â;#hoh-×zGQ®šÏ4<®i(å¡©uŠIŒjo¬SRã¥:ƒ„¯½>¤¨u{ÂÄI!í¡þÃÀ þP;KÛ´BèŒ3s=V„ŽÆqÇ:‰¨âä?tÿð‡?Uú|fËÇ ^£ñ>1»È4+Vì{a6fïû³×.vÞù¤G§5W§j¨pʧ¬£9?8ô‹IÑ|?¥,;OfÏcR£”ù uÚ¨£ÇƒRfáùÞd“¤¶ñðíc¤ÇtôÈbJ‰Ÿ’LêÁċ٠æ™$^•ÇÎgê÷@TcªhÂ$‡iðYX¶-„1YA¼X0¾.ný2âF²læ˜2¡Õöë_ÿ:Ô1ÌUX±sBÖH±ñH†âÌÝL0…Ü0‰ÉÛl?„‰ - „w˜wrÿn¼ï¦a…¿.—~`ÐoÂ/X@IDATQt¿pla¶o[#%Œè9f¢;:ž [Ž3ìwOˆkú¿çú>ä†åE¡â}+$aœ º÷C€ÿuä­±1{òti]³VZgÖéj'êô³2%5]R£tCeU­’ J0¨¦Õ¢SÍR:ZÕRM¥Ö+% ô·fõùòe—ËŒé3Â’ŒJxTë²®ét¤Ô?GªLÉ´¦RP %8 'Ðø@›B£RÕCžnÔÚu¥EÉòTrC Žu +¤¹uc0q¡fÓ½¦«£K¶Îƒ¹åÉ»ÄÖö ¨0ðfe:6F> 4­LסމÚ/„å¥!g€z0´RHŒK¼?˜¼HÇ~ƒI‡&ü°U…a¿X½×××÷ñ8žOñ½Åûù\ëqЇ€ùË(õ3`€ÏЕ:¿B2«lå*œ -w)âgàyyš# ¡|ö6è10UÊ•&bîʹe¶˜YeVm’ ‡Þ >,b8ÞÅ<-60Nú°àf¿q™ì¢ygy1Ûc>é“ÁÒ¯% b#)Ù´ø’$\kéeJ¨ÙÍAüoàG*›)[¶k‹‰_¶<nX äÚL×ð,!!®H“>[Ýÿ&øhÉ•7Ïb„UÊÐÖ .ýF„:¹AZhq.Wz–ïHÚYy§>Zñ1û=ÒGkòA1îÕÚè9†ŒÚ\Ç3àZ´4ø%…8–¾^Ç~¸gÂzŽÙ†0;&éÇ~–.DZ${Î ®qYFáþpá”·ÆÆ¼mê¥õoÉšÇWç¡Íª­±IMS6)#­¦ zÜÙ®æ mÒ¼±EŽøÐrô‡ ön]JL@b4mjR½GƒyÀ :›ŽX –€Å™h•:UŠD+¹>=%4‚¦¤†î–«?ŽšòYÛºJžo|NÓkSVµÛü¤UµG6ª#QÍŸôX¡¥¬‹—E·ºü¬¨õ˶óæK•`†öO×¥œba÷iöš,/‰ÚllZŠ|I²ªbß¶¤‰Šæu×]7¨äQWÄg*žx2ÓTÂ~±#à8ŽÀñš¥¡Y)—$‰ F ® 3àbžÔna5†§Õ㽋È\Ðkþ :ÑlaEúQÿûßÃ,z¦o¹™dŽÌÀ?¥Kš@ñ ó•X À®I>; ·þ—ÇææøÙÎÅÛE‹_h‘ÄZÜ2±¦O|]¶ýbâ—-‘Î M&ôïXÑ §ÉÔ„‰Š\ÚUN¦Íƒ¦Œ‰Mò ©s< [ÂÚÎYÜ1½Í2à˜è¹^z s„E¿pl¤[ýeÕÔ0m ¶¶Ï5=û½×EéeÌ/C¹({(wò\ü s‹ãùþ°"7±1gæ,™T1E6<ø¬Ø|PÓÄŸBÜiÀ†e(+̤°RޓÛ¶_ï8Ž€#°e"€/XL#*Kî3k̇³Ì(cÊ‚)$K–2+Ì6¹B†-+œLk,3p4Žvÿ8ó}ùË_³ªPlj`qØÆä¤T¬ÁõøÖ(D’Z\ûZ‰ÓJ†Ç×fÓ¡_‚¹,tî_æ;‰´!uðÃRˆ ¿Bò®¸'œp‚0‘‡P'pF;üD» b1›à¾§ikX<|-™fËÂâ0’ ‚Ø!¬Å÷m„@rÐoÇlûùõ’1!ÑCpô!+"#hdDqzã‘ñ8×O¾½åâ6ˆKò8>7ÌûÕ55Á·Ï0cÄfŸ·)J¾Ø{lÿr¹ë…[%ÕС³ ÏÈúU²­~ŒÊËfÈÄêd«—o+5ÕµJ842cẨrÂg^'?yßou±Õ¾¨(*ƒ0é‹ÿ(ØŸuÔ‘rÞçHE­jl(‰Á?õ¾!é°úI•´«ïŒ'–¥ÏJ«šŸ4µm”&õóÑ¢>>ÚÑQS>,i%ð‚¦‡jkH—R$Z©ËRåR?w'™6~bwïç1„— 'N¼ßÏeYOãéžY–£„M.¦9Ê~ð}o»ÂŒ†•••AÈõ,of³p€'PŸ…XÑÎöáÎ7iÒa¶Âîë 9°SÃòM/g€àÃö“q2[Þlm?S<s¡EÀßÇ¡Å{$å6Ï“4VA0a Ãìoy³ôgrùÏä5¨¼ócÀnÂE2ž©ÛR•—å5qÞ˲Âq±†(“963oø˜CW4$Hî…dÀ…  ³­]Ë6–ô›AVàHÆ#<©-ÂDÅ‹`aÀm+ëXÛž_o¸ÅÒ¡L½éYx–ípá:Së绕¤] ~À=ªZûשfú3=+Jí¯mã&­ß&–œŽo£JÛÄcôýX¢Z„Ôáu)e¸pÊNi&î– ºèðäc…6î›RRÖR¦Lf‡¬Xýœ¼°ú Y»îEŒ®“¦æ– QѬ ›6ÈV{O•©ó&Ê«ÎÛ_MXºU»h„V«Ï œñ\®~7Ž>á8y¨ùß²tÓ3Òб^6¥Õìd<Úðܺâf%6ÑUP^’õÍk¥±uƒ´ªÆF›úÕà—R T¶FJ54Ò© }1Ô¤E·]­)Y¸÷A¢J#Ã&øy@¥0i¯;˜á< LØff#byÿûßìñÆ^*Á ž¤kb©á°^#Á ê¹äQ,I:+VºžŽ#à8†€ÙôÛq¼Íu.ŽçûËÀÿøÇ>xÍk^ÓÇD¢ÏÉ0+ «h¸t#Áòº˜¢Ò/àØÉ,û}Úi§YPïÖ–FËaùòå½áøàyÒÿ²_ÒÌ•‰1;wÍ5ׄk3ñR¢½èŽ ª-ÌV“â˜t‚¿;©[– ŽMOìŽCc`‹ ø\¶ýÁâ—-Ý‘ùiÅ2ðø²c™]H1H\‘ˆ†iUÇñ Ç×Ë?øÁ°L<+¢|ã߈£ø>$ÉlanñÙê¯É@$„þмèÕ¾è ³sým7»¶'¯ÍòK–‰ãX¸.)™Â’qJ|ü]n}ºNEW{úšŽñæÕ×Ë[U[ ÙJÉÑ÷hÝ¢>sÉA‹ɉ§ž:èIé\y ÷¹¼56(èqG#—|üCRѨ†"Ò¢î5¤­¶\‰ŒViljЕIÚ”lh”Úº 2>5QjktéÃö.Ùj¯2wßÙrÀYûÈ?¸GÊ+»Ùóv%8øýçŽÿÈGÏû„œò•¥i}£ºÊHÇ éi×UOÚtI׈ ͧŸÊTžR-.Œªf¤†¤«‚“QÔ7Ê”ðhߨ*Çu|÷K”ÒÆ.±µý<.ËP¨½Ñ0vØaa¶&çýœäãŠÚläE²œ¨ÃbÆ*&ª›GqD?)æ>Ý0j¹üX™a™@fT¸¯äÇ8wj}Ï¢uBù“³a£²{õÕWËE]Ô÷¢î¾ûîpE¦¥Úr%ãïçºÆÏ9Ž@é(Åûø†7¼!h¡Å¥§ýÙo¿ý‚o…L~h§1ø -¦Í‚Ä>à€ÂŒ  ^P+ÇæŸYfÖ“O>9øýÁ žKa”âÙ'Kð§?ý©Oƒ b曎 ñéIK OAFÐA1ñÈt[ô]ø f¤3fÌQ““6hÔÔkŸ2á8=–ûî»Oøåˆ 4j&mNÕN?iòþÆ“+˜ß&ï3…$áae!=´38ŽWrAs7™qãeL9F„û)TŠ_¡ùä?Ó½æs]¾qhG,Ì'/Út~H¶øæ¬ÛÊ-ž©Ûa-7㨲HkCƒh˜v>Ðn!œóúãÚO·á<ÇI!Â,m¶öë XX2žÅ‰Ó`¿.\qû@Û„)Ê}:¶ù‚š±MÐE OÏÖItämª]ÄŠ¤+µíx›úxš¿`¼¤N‰¯»öZyD5ãŒï“êßéÕtr_uað*›NRë‚ßQ'ò)† Nyklp“ó·™+î{ˆ”mÐz§N£ÓºÊRsKZ—€í >/Ú”lhQâ¡Eý`4ª©HCózYýÒ ™ülùë·o“?¶ìsæÒ¡dF§Ì{úîüÕÝò«/üVšk›d]Û:Yß¾A¥A‰ÒjT'¡Íº¤l«®¾Ò¦«¯´+¡¡ôE 4ºXÞUIŠ®Ú°íR¢£¬£\¶š2Gößca÷KQŒ§4€4P™ÃNó fî¹çž¤Ò} :>º ÖY’’uϓ‡”ü0CÁŽó®»îJFÉû˜1Ä ËÅŽ¬Ða6‡M±ÊnÞ kDŸBll»í¶ÂŒX, èˈs§x¥Š8N>û0ù0ú,J‡ÅÅp$̸¢öÍl03ö³åu™±»óÎ;{8öc0ôŽw¼#$Å1m2ªÑ´k¨•ŸtÒIÚ¿Rò_‰ f1ßCà ûÿþ󟽪èɲøñð"À@±29€Ý>3Â8 %­L²bÅŠ>ÁÔ—ÑDjô)|‰X‚~Ž‘d‡¦g,8¬Ilœžíã˜=–Läf¦°ä²«hÄ‚VA&àŠí‹ø¾ãsùî'~ù–ÑãbŒ(ˆo!ÓýŒÄñ‰§¿ ˜팞°^Í Ž{48Löå:q{âõîÛu–žm£|C‘5¼Oùì|8ýáú 7ª›”ÐÌø¶:¥>QÇ”›zV„º«Çqî¿uÌ÷¬º{xõá‡K“¶)—«vG›Nˆ¿Aû$ôuîÕÕ„›®¿^jt\ŠÆÇÍêïç«ê¾`¼®´kBƒ~ÜvÁE(ˆØ(ׇ{ö¹çJû]Öu½’Jj´+±ÓÒ–Vó6Ý¢±Ñ!-­Íºôê&]–U|ê¯B çÆµMòì£KeÏwî"{Ÿ·{·ª œþ`›*”øûUÿ”/["Íu­²¡­A Fi¯†šžlR²¤Y}j¨ˆt*U‘NW*©ÁrLjz"ÕꙣV]lTK§†wuê’³Mrâ±gÈ„ò ,_Á0 îÖ¿üå/C¥‚IGÛ¡PµdV:€d CËÖüùóƒŸ >öG}tж(4?Ô7=ôРæÇ*%¤iÂó‚t€Dh‰—ز8¹¶,ÓÅ,38‘Mvê 0µá<å'~¡òœ:”B³_xžUZ MËã;ŽÀ–‹Àƒ>–÷3í3ÔÚ™U7 ;& ù8ˆD[mgµs¥]E}Ûv!¨¡£Ê ‰Í£yF»6oÞ¼×TÞ“¨¢-@ÛË…^(W]uU‚¬e¥ˆLä«Âã¨zÿý÷çùÖÄ+d¡)r­ÎÚpƒu®#íúúú0#þÖ·¾U’ƒî¸caÿ¯ýk £ì^!ÞgΜi‡Y·¨Á3™€føCf1ÁIâÕV8Ÿ@gºf,„ñ¾Ð×Àÿ}œsµ¯™ÿôbINŒÄ糟4ó…´DS6Âb¡OdN--ÜœºÛ1÷¬œKNâÐçbv6_iøå[n·"Iò€sú§þ ¶× Úv.P­ª­¾þu)Wm¦qªA°£’;ª™úŽÚïý=óL 1*õÛ7GÛV®Û^' ¶W—Stpn¤ÈTm7vTs´Ÿ^vÒtvP¯™ª1Y††dOÞñd¹äü–õžÞ§ßÒñ×ýzï¯P'ÕŸPÓ=48VízäqÅeÅ /ÈO´-½U'[ÐȘª}—iúëЉ–'ô<ò/ÄA«cƒŽ‘NUÌNÐþÁ-:î{ ‡Žpá(øS) ÷sÜQÇÈÛï,Kž’´’éÚ´4©¢DEU—t•åP"A¹‡ÀÀuê¿TCZ¶9r–<ö‡'dû¶“Μ/•"]õh0K 6ˆ:X.×ø}‹õ¡<´Z^ùñ—IÕ” éØÔ©³c¶ê /„r1]ÕZÿ4?u3ŠÃQ¨‹NÕßèünh:ú«j­”Ó=]MSz9 _€0Û6P5šp?‰¼Ðr Ó @gM–ç:æ˜c²ª¢¡ÁL!3‰×+»ÆGóóŸÿ¼à·£¿²ñqevðmo{[ðºMGú¼óÎ ƒým¶Ù&QºîCœ*-Y²$tÚqn†j$ù¢–—Ìuk<¾¿ï}ï 8L`èˆ08È4{ '€ï~÷»Â (êÛÜKÒ Å Æl)!,—G'/Øg¨ ÕÂ… ƒÝªÅ‹· 2ø¸³¼$Ž€p}²üñu™ö->[ÛÏÏÃG`h(öûˆ&3›8~d¶ž}WÚ›¤°²Åá:bmʪU«ÂÌ<„…•‹0¤çø¡znÎ IÕrÔÚ39_F3Žå---â3Ãk ÐÆ|­ª—2$oÒf£¥‡ ƒ=L<òH¸ÁŒt)?ßî‘ï ƒÄÅ‹‡òqM8»©ãRŠ2ò½…ïh>y2KñC˜ŸòMŒWÉ@ÃXXE%Ÿ<âk†{¿å}F.Ô¿X0»¥¯aBŸ#¹«iG‡øLÈäH(&—Lè¯|]Uï‰Ý}³8ï,æfä‡w'H NKƒs‘˜¢ÅahÜâä݈ úGôUb€Œ¯¤Œ5~©W‘&ÅÀÏÒ*æ6¾‡b¦ëiõÀ`¯ïÔ›IN?ZãÄÎDgë»Ü®š+Õl•Â[©Yg‡j‰oÐïÒ‹:x'ÍÙÚ†¶éûº¾çÝ(ÓwuŽšˆVêf“Ÿ:Ÿ¤Zå3uÉß´Ú7èûh÷¼Z' R:hŸ ËtOÕÕ‡Zt‚´Éü'Q LMâ} c›!Üòˆ£•zŸñßê÷å%mþOÇF·+ ÿ½·³ôÛ_¯î z¯±ü Hh[ôgìxZµÜvìYH!ŽÑñym›Ó¾Ï^:æz¯böG]ÍëZ?C†'Ê­ôBaR¥•ícÿ¤œyÖ)R1_JdÔI 7Ê«Õ8¤Jµ9´‘Nëò®UZ×SúK럦ÕÍ2uÏ)Ò¬Œwó†v™ÿöíô\JÿÖSR^S¥äšºLku…¬¨Ynz˲Í![ÉìCulGuÀT^¡„†’]ÝÎAY=/º8-SòRƒee5NGC‹œ{Â{eθ +e¶;¶‡ÀìZÒ[r¶k’á ØéáÓ!)Ø¢}Àì>0˜-£JÇ”u·Í‡3i8À‚Áç#ÎÇY<Ê„öG¾‚9Çí·ßÈ>Ж³Päg·ÈÃò#o:át”éèæZÉ…N4&” ‡\¿úÕ¯Â=  yÁ¦tîéTÓGX6‹U[âK¦{b^ŸQU*4^ȃYOf2˜­*¶¨˜Î:ôä1ÐÙ0« ¶ÍT>sÑ: ´c´+´ÏxÛg%³Åæ.±·‡€p51skK-œ¶ ³Îg:G»‚6Y>Ú–&[HsMûJ›kŽÑ¢CK’™ö_!6`„H¦]GXf’vš{¤]…tŽ/†HcìOòþÍ©?xøi‰§|“À2  LðMŠ¥¾¾>LvÄacuÑ¢Ep‹‰‹sÎ9'uôn¸á†P—c|^§{V‚3IúF°ðx ¹ôèË$’‚>Tlnò| 8©¤m HšúfrlJ›yÅ»j‚¿ÞUˆ/HP&bðgfB{„óÊXn¹å–ÐFYmLLl?KÛ·Ž@A0ø×60§hœ˜ÜèÒ‰Ô ­Ã˜–4è»ÉÑ¥ßË”öá›ÐÊÒôÒ¸,P-E;w.¡ã‹uú^ËrÈšf£’ü ”¼Ÿ¦c– ‘–Ü&%ú!JZUd¢ŽŸj•¤Äå  ”¹?É'NiéÎÔ‰VVÁ~7¦ç¡¡Á ÖØà^Ž;ühyõ¯‘;^"éZ9Æ•IgM™´Ö¨½T[‡’ÕRV­Ñ®P ;´¾¯{°Qæ¼yŽª¿¶‡e_;×µÈvo«WR£V¿âI©™T'©œ~VHÕø*©¬®’†{[¥nR‡Lßu’2$ª ‚Ù •½\ÍMºÒª¡¡ûeêkC…v¨Ÿ–T›úÖè”™å[ɯ?7,ùšGÕí} ˜Ð >Nùnð 3ô%ÜÒ³¸œçû‚¹$7ƒ,f–!„-®¥1’¶¥.ßÅX”æ›'(ùFÅ> øæ¢m˜I0ÁDS€ot¾ydJg8ÂJQ^úFôSl)Nî "/IÙýò.â¼·eÉ”äíÚ¨v3òÌ$øÁÜËâÆqÐN¥¯Ç$ }%~™„÷œþR¦´âøñùáÄ/.Sr?.còœ—!Åžo™~×úH2Œo›ÆaI×—ô;;[UÎSÍ¥”N4ªf‘›¥A:ú«ÑÁ:²II>ý¸vGÓo\³’Æ媉H3ãåýÊ&˜ÈÏ&s’ñxß1£ýÈFfØ5ôq.¹ä;,h;Òð+¨ðyô#A‰ÜàÎ,\ã@nlTBBb’¾ÔbÊgH•j“¿ ß¸ 1Ù`ûJ6"å:“e:(ç8­$‡ ]:€O© „Icd†bqâ4zÃØ±üúÿ«›\uÙeA£I‡š0‰q±NbÇá¿Ñï‹tpÎd£š»ž¯Óo ÌX¬ý‰k5Ëk¸¶Ýµd¹o3c¦|íWJû‹íRÙ †!›ÔL¤µZ¹† iWΡSý\¤ð³Ô©à=Ý%Sv›.•m¤*U§DÆ$©./U2I|–ÉvÇï(»¿oyôSÉĹ3d¯-”½>±<{Õ‹²tñKRU=^BþÆIyE­²}Z©qZV§(ÕºRJ…:*Õ™1Åßë/–WÕ諸.Ž€#à8Ž@npü‰F˜ Äæ„hÊ™4jÍ:|kĬ.¦w±í;ût 60…ce”؉'çq2™I ;’(3 \ æ '(/åA5ÞœTB`@`cFc?4øeTÛQ³ÇL…}ü q°T¶EÂ9k,…\‡©(>[ð©`Zqzh`²ÎNjÄÈtïS!ÖðAÁäBR0Û¥ÎÿA½ø—šÔ°¼ÑŒÂ|Ó®˜å<[hW`¢–í=³t˜8#íM¦²Ó^à4wÜÌËìÚ|·#¿|Ëîñ¶p"²c®ú«QBpÝ•WÊruôߨ¾Æ©/Â@€Dq*ë¯]áÈx¾Í=aøÝÀi‡j+¤USÁH‰çÔüâiý6?«Îœ_RÍ‹àO2Þ#MИ԰'ÃY %&5,¾5bƒ¾E|lñFëv@¦(v³Çz„|æÒËå’/~Dj¦¨éB«Ò ãªÔl„¥WÇKµþêª&Iëe«}çIE'ä„:ü,×m^2tæK·emÚ )…æÉ3Gƒ“SH)ž¦I8"5Iò(4Ýd¹†ó¸”e?¬¿ç=ï æ¹oà/:Ð2`ªÊêF±ô—Ž×yœÁ#0,ØC˜vFòzÎu¨‰Y¥y³ÔçÐKZÿѸ§‹âí®'.¶g“~ËÚôý›¬Ëœ–i;Ñ¢Ž˜Y”5ªí ÷R°túžŒúîgŠß7ƨn»·RÒÃa©zG2E‰‘¸àô3¥Aí¯øñeR]§ {]¹¤jÔä¤B‰ŽtúÚ'-ÏvÊä7ÍV2C}gTÕ_5º-SRCujºW6ÑeR¶>dšŒ›0Mž½ü9ÙùÃ{©sÒjÙî¤]¤åùyþºçeüN“dꫦ«ÉI§úÓh—ƶ”¬mÑí‹Kå i»ÈWÎû’ÔE*7q9}ßpGÀH"¡zø[Ô6•- Ì3âÙzˆ üæà9Nb- L; ˜ÙÅ© ¤«a¡¥Á ƒ|0WÈ$8BÄ·ÏYêžÙ×CtÖ õu<‘.fœ2ƒsC[:–rà“€•!¸–YaüÄÎãéž|údoéô ì9Èu.S|±”©ýo¨Gƒ-á·®Y,Ÿ¾âc2á€i’ž®0§ÎÒÙ«©2q\¬Xü¼ìö¡—I¥š ±Q©Ckµ"£­Q¡Ž@uÉí¸éOp­¨ª”ÆÇeÕõˤþ¼ÝÔ¹h…jgè{ „•·­”µ®•I‡M—Ö‰)Y·¡Q6<õ€[¿¿|îŒÏÈs&3Ø›ñëGÀpF8ßC¿B§ˆô3©‰ç“æ*¤û±ˆ¯C[b$©ÎDZ}V†`v8&WìÛ\ç1©`u¨|ïR •|ãÇåÊýR>û¡¼Ñž—?‡Ñþ‡®ü^W†ëdN¥À~¥j,™È(‘rõtaF’”×b‚R®’8 ’‹˜ÈuŽ‹û;ßCïßÙªÝXˆ¼S ˜±(Wéj+Ã!ƒÖذB_pÚaFêŸ|¤^¦KÀV5JcÕD)¯LKù¬ñÒÞ¢Ú•ºZ ÎDÓê8TÍUÊ•äH«§ ]ØDEÏ+±‘j/“ ;Îyc­<óçdîéªú[­ËºªÏŽšýfIöiŸú•.;M=áNzZ.|í;å¼#N“j휹8Ž€#à8A­ˆÁ îm…”ly£ñ‘¯0ÛšÉÇ€]Ÿë¼ikXÜþ¶h æ¾ûKßÏ;Ž€#àŒQ r,ñ$Sœ„KÁ²4lNÉq}ïuùÄéì;£;ÍtsG¿úP¹å×·Êž{JÛƒ/éR°/©Gø©=jÙØ”’–t•´*qѦ+¤´u”«“QÝêqGºZ:º*Ãq{ª\íQuE•9eòÑÛÊc?|T53šeÝÆY±r¬‘é<`£LkY+¿<ÿjy×á§:©‘éax˜#à8Ž€#à8Ž€#à8Ã…@>äqò‰—Ï=ä›V±ò˧LgÈ”óÐL¥œ£Ë£ýò›×Êïïø›|åÚ/Êòš'¥l×iÕå`7um” uêPT—{Õ[ÕX—}UÌQX×8ÝÙ®NÒp šV›_u:E­¬^5MþÆÝ2þĹ²aÝ2™¨ ÝEGž+§^x¢ŒÓ8eª©>2ÆÃGÀp¶(úØÑnQwæ7ÓþìûChhÎûsœ·„\¼® ßSQ؉I3#†ÈâÅaÅÞd# ×bcSÄô† §¢™¢ÄXèñ*¯Õß ÿ¸E®ýÓb¹¯éi™3WšgÌ‘ª:]öU‡V+Sm %7Z7éúÃJlt¨‰Šé”t(aÑÞÖ&Í)Õј»Lf]»JÎÿä;äÄOÉåº’ŠÆsqGÀpGÀpGÀá©ÐÁQŠÛ°¼K‘¶§9b(ºÆF|gøVÓ‡É<\ž]¿FnþÏ_åö‡o—Çž¼OMJ:%¥ŽÔÊÇO’r*¸]º¶nº½MÊÛZ¤®³K¶Ÿºµ²ëArø±ËîÛ,JuŠVFÅD»#ÎÈ÷GÀpÆÅžà“’ÊÒáÁ3{EyðϾ¶áS¤8Ï÷(¥Ú†•Yânv± b?ûÂ/ê»ú€ãáä@ÀßÙà”øÔˆÆ>þæ–’äˆó)Þ#×"Ýc1’.œJ¢±B—°*Ý%;M™.;z¢œØIҦ러lX'+7¼ k›ÖISk‹†ˆ®”R#Ó'L–­¦Î‘9ÓfËx ÄD%Ø]©£GÀpG ˜Üøä:¹üŽåÝ{"ṓªeñwI„v^÷ȹõ¹¹ò˜䎥 òÕ;Ÿ—_Ÿ¼»t*Áñ‹‡ÖÈÑ;N“©u%ÿÄf,›:Ž€#à8ÅD ¬ºZ'ŸÛ‹™dwZ1ùP ’#N¯È¥ƒB¥RWíccXîy¸dÈ{]ZáÆéüÖö“¦„_ÖïòUN²bã'GÀpІÀÄê ¹þ”=œÞ>ÛL”+ŽÙ1\ßÐÚ)?ø÷ 9|û)NÏ/tGÀpF•/¹tüë_¥-RLJBrÄו°„`P¨Ô/X O=öX¡—êøÜópIIMQ†ë¦<_GÀp-¢«7ötˆúKwUS»|ûžòŸM²Óô:5•¬ Ú„\÷ÈšMríý«å+¯Ý^.¼ééü‡ÿüŒœ·ïÖ²ÿÜI[惆»êï C‘Æd–þÆäcÐM{]lE¹¨ØØ×|ré‰øÎ‡ˆ¬ˆ³ìo Åõ CsÄ÷\(NýaŸïù¢.÷šo¦ÏpGÀ)àcãñµ-›ý^jé6ļä3·.“ƶ”|úÐí©ñÛG×ö¿¹#%ËZÃ1drÎ>[Ën3LJ}ÿã8Ž€#àŒfjŽ;NêÎ>{4ß ÊνƒA¡²ð€ä°×½®ÐËFm|î•{.qáBÞóuGÀ(éÓ§} ­¦‘Í]òΞܬ,g½b+yÛž³äáÕ›Ôv«üò¤]e\U¹ìµÕxY§¤ÇŠFux­¤ˆM,±¿ã4ÕäPY0µV&V—½¼›rŒ”âÙèŠz›þŠ ç˜×•á{¼¥Â~ü‡?,•»í&­?ÿ¹tÞi|n l›åŒOÊ—½LjUSRc ZÇëõó¶ÛNîøÛßä¹§Ÿ–N] cK’ÊÊJÁüM}”Ô(NÅÀdÈ}l£Ðž†#à8Ž€#P,Æ«kß´ófÉÕTt+5>·¡UæNª ¤†EÚuæ¸@lرoGÀp-øÑ\ØÒqéïþðós)-Nl”_OÝpG`„#}ÑlÒžJK[JWèrqGÀpGÀ‘¸)ʈ|,^(GÀp!A ­>@5£\ª“ÛO©‘å m²vS‡L×=pÿʦP¼p¶(üf)¤Æ!&*Ýû!Àÿ8Ž€#à8Ž€#à” ר(´ž°#à8ŽÀh@ K ˆ‡W7g,êÎ3êd5;ÙzbµüøþUòŽ}fË£êhôÞ›d»É5›]S]Qžz©E&ÕTH]¥ûèÞ $pGÀpG È8±Qd@=9GÀpÑ…ÎCßÓ3 }ÝI»ÈäÚJ¹dѶò¹Û–ËI¿zLj•¬8´~²<£E“2AMZn3A.Y²LÎUä¤Ýg$£ø±#à8Ž€#à8Ž@‘([½zµëÊTOÎpG`ËD`}k§L©©”²nÅŒ¬7ÙÒÙ%µê|´¿xYðŽ€#à8Ž€#à8y#àyCåGÀpÆ:SU{#q”|Pò8Ž€#à8Ž€#à7þ-ŽžŠ#à8Ž€#à8Ž€#à8Ž€#à Nl 螥#à8Ž€#à8Ž€#à8Ž€#à_îµ88z*Ž€#à8Ž€#à8Ž€#à8Ž€#0 ¸ÆÆ0€îY:Ž€#à8Ž€#à8Ž€#à8Ž@qpb£88z*Ž€#à8Ž€#à8Ž€#à8Ž€#0 ¸)Ê0€îY:Ž€#à8Ž€#à8Ž€#à8Ž@qpâàè©8Ž€#à8Ž€#à8Ž€#à8ŽÀ0 àÄÆ0€îY:Ž€#à8Ž€#à8Ž€#à8Ž@qpb£88z*Ž€#à8Ž€#à8Ž€#à8Ž€#0 8±1  {–Ž€#à8Ž€#à8Ž€#à8Ž€#PÜyhqpôTGÀpGÀpGÀpG`paݳtGÀpGÀpGÀpâ P6}÷ùéâ$å©8Ž€#à8Ž€#à8Ž€#à8Ž€#0´¸ÆÆÐâí¹9Ž€#à8Ž€#à8Ž€#à8Ž@pb£ˆ`zRŽ€#à8Ž€#ðÿìÝ|[ÕõÀñ#É+‰éÄÙ;!H #ì½g¡´”Rfû‡¶ÐBÙ{C¡”BËÞ{oÈ È${ïØÙ±Iÿs®ýÙ±-ÙqÙþ]>²Ö›ß÷$òŽÎ=@@ nlÔ­7kC@@@Z °Q‹˜, @@@êV€ÀFÝz³6@@@¨EµˆÉ¢@@@@ nlÔ­7kC@@@Z °Q‹˜, @@@êV€ÀFÝz³6@@@¨EµˆÉ¢@@@@ nlÔ­7kC@@@Z °Q‹˜, @@@êV€ÀFÝz³6@@@¨EµˆÉ¢@@@@ nlÔ­7kC@@@ZHªÅem·¨¤¤$Él“)›·l–ÜÜÜíÞßÑ|>Ÿøý~ …B‡«½8o~›×–‘È-%9Yºtê,«³×È–r–I€Ø¾'ò.T{Û¼ãSÑŒñó€ÚX ƒÎÈΗúp¼+ÚçÊ^³}2«ŠZ"ï«·ÝvlêkóÎ/ÛþD²ö¶kgÚVµŽòŸÝD²©Î¹æ£Ñß7Ñûí[Ñ´ÕY—Mk¦õÕªºûÊô € €@m ì”ÀF»¶måÂs/>½{K@/º¬-YºTž{ù™3ož{nê#:Xæêó…‹¹×býéÖ¥« Þcyçƒ÷ݤÇuŒœxìqòÜK/Êg_}kviÙ¢…uÄ‘òÒk¯¸@FßÞ}äÏ×üI~üù'yä‰Çcο+&èÕ½‡Üù×›ä€}†‹0¬Mœü“üß-“é³~qÏßø÷s²ÿÞûÊ'!³æÍu¯ÕÆŸ´Ô4¹à´³dÂO?ÈäÓjc‘ÕZÆQ‡!§žxr…ó<óüÿä«o¿©ð½èŸzäqÉÍ˕ˮ¹JêÃñŽÞöx_ó‡+e`ÿþN>yêyà±G*|¯._´‹Á½ï)i©©2îû nÕºâ*é¿[?¹þ7ʲËërsjm]ÿzø1\õ˜¿5_²³säý?”‰“~¬QÀÕ[ÖŽÜGŸ÷;²œÊæµãùïGÿ)›6o–Ëÿtõv“õéÕKþòÇk#¯ÛÅú–-[dñÒ%òÆ;oË‚E #ïÅzPþ{?ÖôµùþY§.‡Ž¥ÛüVäÿ;‡2JÎ>í ·š;î»GfÍ™í_ñ»ßëÿŸÉÃúÿ’Iúÿ”궦M›Êc÷=è‚××Þð×êÎÎô € €@£¨õÀ†ýjuíU”ŒŒ yõ×dõš5Ò±cG9åøåOW\-¾ñÉY»V.8ç<ÙßýäîïëX°ä¦¿Þ óæÏüsú/3¤ `«Ì™ßÅüß®û«´nÕJ^~ýU·ÎìœläX¥Û˜ˆ­G×nòå«ïJAa¡<ÿúËòýÏ“¤Ÿc~ÿ«‹åg^”CO?^ĪÉþÝÓmrê1'È)ŸW“Ùkmž3q‰Ñ œgç¥×^ÕL–¢èYìãO¿ø|»ÁÚuëbÜ„;Ï—w?ü ²=_|óµL™6U6nÚy­¾>øï‹Ï»`i3½8Ýwï}äw¿þtïÖM¿k^«¯»T+Û“#ï}ôø}~iݺµ4b„ÜpíŸåÁÇ ºÅj}ïÇš§6ߟ3w® lôîÙ;²ØÝûˆ< 9 lX §wÏ^îõx¿›" á € €À Ôz`Ã21,x`)º‹5KcæìYò³þvé²e’š’"ÅÚ]âˆÑ‡É^ƒ»¿àìs囱ߺ žîz!¤þJß¿ïnR,–EK–È_xNqÏ“«/»ÂMßµK¹å†åö{ï{|Àð²aãF—bÏÏ9ýLéÚ¹‹lܼIì¥o¿ÿ® ¤\rᯥ…flX³‰]ðÚ/ˆ6ÿ Í|ðþ‘Ý63Ó-Ãþ‘j…“õÂëÞsÛÞ,]Î=ó,±ÌZÇ—¹zqýÙW_º}t ®å?wüåFiÚ¤©üéæ¿ÉËï¼Yú²•+Ķ¥|ë׫¯Üwãí.ø1þljrù ×ÊÚõ%¶ƒì.—i@Ä2? ‹Šdê/Óå7ßà~[vˆeüøÓ$yVÏI;Wí\ëÜ©“ Þ½ùîÛî\±…ÔõyâíØ4 ôM^qfÿµ+“}Ö>ÑÈ@½8;ó”Óô³³ÁetØçr@¿þrÊ 'J‡öíeá¢E2~âDùvÜwnñ°´÷ö¶¯¦ËûeÚŒòüË/‰e(¤èçúo×þEæ/\ ‹/–1‡.ÉÚ ÍÖóѧŸh¦LowŒlA#8P:uè ýó1ÙcÀ@é©I?O™¢ÝÕ¶¸õuøÙ{ÈéÕ^–,[*/¿ñš,XXòë¾MkÁÛ œÚg7 ê…ó‡ò¥I¬Uõà&ØI¾7VŠôseí›±ßÉÝ·Ü.Gv„|öå—ú=²Ö½>D3V9x¤ôîÑS¿“rœÍפIÍnø?Y¾|¹üóé§Ü´¿¿ø·z:È¿ž}Zë÷ }_ž¬Áá/¿-ÙÏCóñlW¼Óxß#½zötÁ ë*ÒOÿÿd™‡¸ê¯ß;¢ŸýöYYÒ¬Y3Y±j¥lÖ}¶V•·eXyÊéî\ÞgïaÒªeKyâ?ÿ.³Y–©òëó/Ðÿ÷å±§žìœi®çýygã2ìÿ_vþXveÄT´L µo—%'s¬ëjÛ7kölyõ­7Üÿ£Ë¬' € €@=¨õâ¡[ ܯ°öák¯ºÆýÿ´“N–uzýƒ^ZÂë‹lnv‘ä÷\ßâß\x‘ Ýs/÷ó¼¼|± ‹Î»Àñzý¹õ_—nZ»o®×vaé]ä[z°Õ¡ÿÃ÷²D/ìWâ_s~d~¯ ué°_ØR5-ÞæoÓº›Æ.ÐþªéÓ–N¼~ýàH“ãŽ:Ú] Ø‡¥¿Æ“_4Xc©ÆõÂÌ~™µÐîŒfÁkßLWfñO¿ôœ<ôïn—­ñÐ-wº‹¨õÖ» ÄõWþÉÍg™ßqŸ=ú—õaAŸ#G&Ý|§{¿¹ôÙMn¸êO²G¿’©¿¬nØ´ÁýÊj$’ÄŽ§E®ºøRYº|™<ÿæ+Ò]ÿá}÷ ÿáú õÎl;v–‘¹í©ÇÇk§œp’ŒÒ‹Åuë×»@Øn}úÊU—ý¡äщ:wì$õBº¢–––Vzü[EÞ¶ œMõbÓZ–^°Ø…×ygž-´³ p»± Q»Ø±‹ùvíÚÊ—^&}z•üª[×牷ñ‡t°œ¥Ÿè›}¬}üùgÎÁ.Ž³Úµ“ Î>Çí§]¸ZP£[×®šQu•ôèÖÝ!»é>_tÞù.(aóŸ¡A»PÓJ.PxÀðýå²ß^boéyâs˲φþì‚«UËVrÆÉ§jVÖpý¬ù#]Ò|þÒϯÎgAD³NVWk'‚Øw…]ÐÙ÷„Ë¿þé:éѽ»{ßû¼ÚE­] Z·ûìÚ±±_ö­Uõà&¨ƒ?vŽX`Àš·]ƒvß]~¯A2 æX°Ñ‚LöÝvøèC]àÍÁÆîíºêXw!{ q6ÖUÇÚ=÷tÏ-@lAEsûÝE¿qçâÍ8ë¢ÁÜK.úµ›¶¢?±l‡ï³¯ëÖ×$-U½3]`É\{öèáwÒqÇë÷ßh±ÏŒ|wÑÅ­&æk^à¥~ÇØwºÝªû½ë3s#ª1‡k²³Å2q,Ðdo;§Ïœ!óÌw9;^^¶Æl ÜX‹åÝ$­‰;†§h°´«žï”ÍÑõxÍw—k×;O>úìÔ°ÿgYPho=7ì˜{ÁÆcÆéf«h™›6m’ õ< è÷÷W¶Ïú˜Ã—£°Ï2 @h8µž±a4O=ûŒv59×)ìâÅ.ˆìö¹^D=÷Ò òá§»_»ìBèßÿ}V¬«õ/þD/¾ì×õïüAÿ¡—.ßs¿þÖÞýzïÃÊ7Ýì·Ü}ÇvGÀþ!hBö‹Ô×ß~ë.zöžô£ûG¸ýƒðÑ=!Þu´hÞBþª}úíB¦nêÅZK½hýiòÏîeûG¼]ìÙ…¬-cfºŽ0^~Ñü¯Y”±,Öv³LÌÒ€ËÚõ%¿øÆZǽO<">õO¤øæÍePÿn[Ö?ÿ÷÷K⛽ç2jæ|;Éýr½Lëò2ì¨C$ i`c£[ΉG+WhæÇWã¿sµ>lúÏ¿ûZ,¸b·¾={Ë\ýþÎlöKdt ˲Lkvì"òÃO>vÏoýÛMÒI»>Y=•Úê†a–ðÖ{ï¸ì„ãµ¶‹ÁÞÐ_jßyÿ=ÐøëŸ®u váV—ç‰ÛéÒ?^Tôkv¡e(«ccHö9´ì ÆÙçì§)“ÝäGkí;Ç_xõe÷9´ Íé'Ÿâ.˜—­X!£4hbAËëþv½Ëø±ne–)`ÔÙZÐÖš}^îôaØ´ÀǯÏÿ•fg*¿ífyóÝwä| ¦|ùÍ7âeǸ™JÿØ/ÑÇy´ê9øçÿætÇŒ9Êe‰œ¦wÞodò¢B¹ñÖ[\¶ÈÕ—]^šeÐQŸo­ò;À~Õ®«¶Q/ˆ­Ù¼5 òX½!ûúA¿—ìBøúÿ»NNÒ e4X—  õíÓG¿›B‘@P_=–õbÖV€yž~Ö¼®sçÏ—ûyмó䱋[Ë¢‰nñØÚgÅÎïO¿ü­çÜ3Î’Ñ#qËÞuð!n‘·êw¯eŒÖ`â¹ø¨n³s¨@ohÙ¢¥ÛÖê~ï×Åg>z¿,kÃTV7¤]fImöœ9âÓÿ,ðÔG»n lÌuYñžËÅšåsíßþêº1yg§Þñ%îÜyí­7ÝçÔ¶g»» Ÿíÿ]Üç‚öÿÈÃ5òý?Šlrô2- Ë/Ó4{òcýü[ÐÍ#Õ©qY0@@Ø)-¹[\1N  Ñ Ë¼°˜Û?†íeV³ôæïøA K›ïWúK¥e ÄÓ,ýw™¦rÛ/™7þåz÷‹ïÏzÑfA”x/h:ê¯ûÖìKk[õBéæ;owíÏÌ9³ÜE³]LÙ?Î-õÿ3½°ÇµÝ¶jí»È³ hËLÉ)Mg¯j=VƒÃÚÊÒ_‹3š•×e"1@IDATtW± 7?|WÆŒ×V ôƒOJ~QÚMݪ¨Ù¯ŠVûÂ~åm¦Ùï~ø¾»0 ‡CM^ák¶ûõÏÖk¿Ø[jþõšÊéÆRá\Û^LI.¹¶š5«Ëñ’µŠýâh¿|]wõ]÷—Цߑ×ì"zѲ’‹ˆ}w+³¨k~{™óÕÙè9óJº—X7"«á2_k¾X0iÞ‚.È1d¯½\àÊŠQ[`8ooýÑß+Þkv¿rÕ*÷ô´O‰¼ì}ï¤kËû®Ô Eû¼{Ÿ_›8z™$¼ýž»\0Ã^ö]e#‰]|Á…‘åò@hÛ®èjioR’S\ ³Zôj_Ø¢í"ÐÚzÓZ¸ôøök·5 ÒÒ}­ç½= ~˜Xæ‚È pXýŠšu]±4n»À¼êº?É ·üÃ@l®¿dY±7káÒ ùÊ.´¬/µ5K ·f]ìû–¡a¿[Z¯ýcüú›otë°ÂmÖ¬¿ÿÎho}ô¾[ìÕ¿ù½ ¤Ø“¶zÁd£¢œtÔ±î·ñ¬×êiX=Œ§^ø¯œöÛ äÞ-cë-£¸¸¤ø¡÷Ü |˜ƒ5 ¤X*öùWüNúŒØK®»íF÷ú GãîëúÕŠØsÐ`W8öï·Þ캅¸ª®qnˆe_Xó~)µÇ^M{Ý¢/­ÆŠµ±ZûÄ.¤ÓîV0òå7^su}žDogUO<æ8½kï. -[çB­¡á}"ç¾D´fYwßr›ëŽâeHX¡Î{ô³iûl©ï6ÂÉt½¨òšK¬F‡5 pZ× +’iÁŽPi€Òû¼»‰¢þØ/ËÖv׋Gï|³L[ÆŠ•+ËʆãÜlîO<ßÛ¦ÞyÜ„ Z·8Ûv«s`5†¼ú-¶fÛV³2›å:Ý[áW«©`Ù–­á #z°\µeˆE·Ê¢§±ÇñØŽ9ôpgü7ýÞ´îH48ì5«Ùcç¿u«ñ¾ÓûivTu›Wë^dÍ NV÷{G?óÕÝf›ÞFö²lë¦hŸï¸XpÂYmÛ¹×-³ÃZ<ÞnBýý½â½f7ßu»û™Þµï8kÞ÷Ž0í3h7ûÞ±î*Ù¥™K6]ô2Í«KçÎndòÚæ±,«SäeÎØ<4@@ ¾ Ôn¾¾jX ûíÏk¿lÝ{Ûî×$ë`)éö.ÁZ¾vµ°6úQn´Öšu'°¢öykÖgÜÚÖ­%¿NZ!ȳN==2ä«{SÿدÃçê()zqõšV|·‹VûµÓ~!µ‹+kֽÚ÷ý÷8úÏØ ´Xè1®.€u£± 5+ªhmyV/ÀºÔ؈ –òo¿>Z[SZc zYµñøÑgþ%gŸtš+Ú9îOtXÛyrоû»íš¡ÝbÞûìã¸V³tù27݈aû¹¢çž|º{nWÑÍ»øô^³`[ûõYç¹€FGÝï¿\~vÐ!òâ[¯¹ÑWìý…KÙ]7û…ÛFxiÛ6Óuµ E¯;ˆ~ÕV­.)ðhÇÔjOXPÃë+_~Þè ¯»ÅqGí ŠZ·)»P°‘Þ×Zu}žxÛz†ÖÄð.½×6oÙ,ë$ÞÈ–tÓí·Êÿ]yµ«Ga…W-«ÊF}1‡K´(äØñã\°­±ì×{û Íœ=Ûu)»ô׿‘ÙÚmáT-ÚjA¾¿j/¨x^³_Ó­žaí»ñãݽD£v¬-`ñ·ëú»ÏšÕ`±£+ÖµÓŠìZElÚŒéb5¨¼½Lë¢bEjWj·§÷4i2©¤·ÀUtæ“7/÷ € €@}¨õŒ ^<üÄãúëãt÷‹Õذ_ìW/ûµ×ëóÿäI.×.mˆAûDz3´_Š/ÓÑ,mÛ~ ³¡í1ûÅÌ.(-ÐaÁ–-[”1·ð=ùÌÓ.¨bÃXþêœóôW¬lyò?ÿv붉-paͺ¨Ø¯Xå›ýªúè“ÿtýÕ÷Õ, ë6c…þÞÖ‘ÖþóÜ]ÑʃV³à¹²¶î#ð²óÁænX¥Æê¬ØwQeÍ2Ö5βó«‹äxöÕjO=òäã•ÍÂë € €@½ðµØ#ÞŒæjï ]øÙ޶«è×!K…µ ¯6„­Àþ!lÍû…×=‰úc˳~øvÑSY³L «›P¾ˆžMo©ÔÖ­Å‚U5«ÑaEÝ¢Óz½é-¥Ú õÙ¯©uÕ¬Î@Û6mµ0誯2]·ÙZtƒX ³@’ýêç _éMo]R¬~@"4;¶oÑõ$ª³]Ö-#YÏÅè‹ôxç·‘6iqVï—ùèùvÅy½þš<¶m¶ãmuj*jö™MÕ›WðЦ±Â’ÿ|ð—ÿ§ëÿìºöØE˜ž¢›-Û¼¬kƒ½_Yó¶Á¾7ªš®²ùíõª¾ªš¯.Þ³ï°Ú=¥¢sfg¯?–­}ïÙ¶UænÙ#öÝ\Õ÷oMö¡ºßû¶;ò™¯É6ÖdžXÞ5Y¦Ícÿ+Ò®ƒÕ)\mzV×¥¢ÿ§Õt;˜@HØH”d;@`ç ”lì¼5±d@@@`{Z¯±±ý*x²€eXª¾eXÐ@@@º c£®ÅY € € €Ôš@­­µ-cA € € € €@ 1€x@@@W€ÀFâ¶ @@@b؈ÄÛ € € € ¸6÷ذe € € € C€ÀF ÞF@@@Ä °‘¸Ç†-C@@@6bñ6 € € €$®Ä=6l € € €Ä °ˆ·@@@@ q’wÓæ–åL_Ð0w¬{•¹{ÏjLͤ € € €T.@ÆFå6¼ƒ € € € .@`#Á›‡ € € €• ø²†õWþ6ï € € € €‰+@ÆFâ¶ @@@b؈ÄÛ € € € ¸6÷ذe € € € C€ÀF ÞF@@@Ä °‘¸Ç†-C@@@6bñ6 € € €$®Ä=6l € € €Ä °ˆ·@@@@ ql$î±aË@@@@ †@¼ € € €‰+@`#q [† € € €1lÄâm@@@H\‰{lØ2@@@ˆ!@`#o#€ € € €@â ØHÜcÖ!€ € € €@ 1€x@@@W€ÀFâ¶ @@@b؈ÄÛ € € € ¸6÷ذe € € € C€ÀF ÞF@@@Ä °‘¸Ç†-C@@@6bñ6 € € €$®Ä=6l € € €Ä °ˆ·@@@@ ql$î±aË@@@@ †@¼ € € €‰+@`#q [† € € €1lÄâm@@@H\‰{lØ2@@@ˆ!ãý2oçH¨¨¸ÌkïÛŽ € €ìt«–IQ°Ø7~˜;í¯Cë¶ÚýdÐX´zÅN݆: l\ýûËeÐ{ÄÜ™ù ÈÍwÞs:o‚öYí¥I“4Ùºu«¬\µÊ{9®û¤¤$yê‘ÇÝ´¯½ý†¼÷ᇕÎwó —.:o÷~0’ìì5²xÉyùõ×d݆õÛMÓP^ØëD6HJ ÈñG+GŒ>LRRR"›…eÂåå7^• N€ã¾Ûï’-ZÈøï'ÈSÏþ'²¿<@@@ª#`µ5ŠƒA),.’¥Ù«\pcønƒÝ"†õÝ]»žL•Uš­aͫÑW°Õ=¯Í?õ¾+ʹgœ)¿î¯rþYçÔ¦KÜË øýbüûÛGþqýߤe˲©7q/¨L¸«­wÑé'Ÿ*Çyt$¨aAŒ°öûòù}2|ß}åêË®TíÖPš_ÏY;oýzÿño(‡„ý@@@ ^ ŒÞs¿2Û½j]ŽŒ×:k6®“¯§ý jØDizMeDwF«³ŒWß|]>øôãÈ>\xîùÒ®m[ÉÍË•‡ÿY’5aoækæE"·ìœlyì©'#›Ø<£¹Œ9ô0é¿[?IOO—£?B^xååÈû”¦Ÿ‹ƒ2kÎì2ïÙ“Ý»Ëqú+z—Î¥©^|._±B¦N›&ïô¡VQ ¹_×Ï:õt騡£›×²&.8û\ùü«/eéòeîé1‡.û ÔJ¦¬ÉΑ¹óçÉäiSdá¢Enžšü)((ÚnþuëÖ¹l Ÿ[Ó¹cÙî*ûÿþÒ©c'±éæiW›w?xO¶äæ–Yý¾{“‘$mZµ–izýé—_Ȩƒ–V-[É´éÓä›qc]6ÈùgžíæûR/²§êëÖ¬KÍï/þ­{l]'¾ÿñ÷Øþijþääd Î.Æ ‘Öº~ó³còÓäÉî±uϨÊ:Öü‘)÷À²[¼ýyãí·¤[·î²Ï¡Òªu+™;ož¼ñîÛ²Ek]D·XûcŠ‹Î»ÀÍòæ{ïJ‡öíeÄ~ÃeòÔ)òÅ×_E/Ê=îØ±äü±'ã&LpA {l]›^{ûMéÓ»·—¹yF†½i±¶Ã›°WÏžrĨÃ48Rr^,_¹B>ûòK™9»láœXç»-ÏŽÃÅ\èýéŸIÛ̶²Ïнõ˜µ’Ÿ¦L–ïøAV¬Zé­ÚÝÛyuÀþ#$«m;Y´x‘¼þÎ[eÞç  € € PS»nÞ4]ŠCÁ˜‹ÈhÒL¯Ó1§«ÉuØ¨ÎÆÙEãoô. µ¼Ö§g/±ÛÀþýåžï׋Í$ðÞo©5,00yÚTw1þ‡K.•=•ôí±i2ÛdÊ€~ýä˜#Ž”»¼OfÏãͺÃ÷kr²Kº.èAµ W¯}ú‘l{­•^ÈÛ…îè><©Ç1æ°#䌓Oñf“ÑíÚÉ`­GÐ}´y6ºúc%-5Uö¼§›Î‚^³®Þë‹—.õ^–x×Ùo.ÑõmK ²ì»­V·Ýs—…²«´Ž5ÿ¢%‹#Ûý zš5m&}ûô‰¼mõLöI× as³®?•YÇ3¿·üªîÇ}?^ž}áy7ɸ ãå¾;îrç–‰bx÷'z6JÎ-wÝáê¸D¿^þñÃO<®Ý˜ÎÓLŠ=Ý1³®=è°›u‡š:cš=Ä‚$ñnÇÁ{EÎãç^~Q~Ö®"Öì<8xÄîq†žçC÷™.Öùîf*ýóãÏ?É;¼ïžÍ›?_½ï÷¸]f¦»ßO‹ÙZ!kÿ{ñ™4ù'÷xî¼ùòçkþäó@@h ØèØ¡CÄõ—™Û¢?vq=köl¢+:jŸÖU ¢f´Ö Á.§™VüѺ¢ÔF³.J‡tõ.«À–kÁ‰£Ž#Oüû_bCÀfé6ZÓÁ5享¯qíOzzI­eÃ2ÚgeEÞ›9g[w‰¹z±jVIJ&-Þõÿ2k¦«+Ñ\3OöÛgw+((»p~ï£b¡»£ó{ûÝUÄŽõl­ña#ÍXæÙÆ»?|ðÚÔÓc5lZ«ãñÈI†ÖÑØ£ÿ@é·[_í¶Ôß362Še´X±Û4îíh§5-¼¶pñ"ï¡XQtÒêœï‘…èƒ%Q]ެ¯ÐÌ) ç¤5«¿aÍFw™=w[ ËNÙ‘óÊ-”? € € €@ $\`#-­‰ã±à€Õ;ˆn›6ovO­Û‡* ldjF†e;XQEk+´îÅß|-ƒÜáǪU«åú›ÿî–kZh­ƒsÏ<[öÞk/WÈñ½?%Ë–ºÌo¢&MJöÉžƒÅ’­59\ÓŒûÕÞZÞÖüHáJ{n¤[5ÀO`#ðÛ,ešu#ñZUë7ç{yHN>þ­_2Àu°. VpsÍ&yæùÿÉ×c¿õµÝýŽÎï-°¤Žˆ÷LdSi€Â²^üz‹w¶-A$ÇsŽ~±Üã’aOK>›õü7q‚»ÙdVåªKÿà2* ÜÃw;,HâµÜÜ<ïáv÷Õ9ßíœðš'ªjÞyU貕J²š¼é ã;¯¼é¹G@@Y á«W—ÔB° ÎÝz÷q#„x€VÐÒšýÂn¿RWÖFp° jØ…àmwß)sÌ׋c¿ëÞPÙ<5}}ã¦òƒÖJ°À†µÎZôÒk²×¸‘]¬¶Ã Z³²–]Z¼²©tìbÔË8°Ç–­ÝŠu¯Ym¯µÍÜ–à½ïúm9ëÖ­ÕzOI(vEC÷ÐÐþûîçFá°ZU6vt~o{ÛiöŠDDí×·¯{ËŽµ]ˆÇ»?6ŠŒ×,è«Ùˆ!¿:ç<7Ù==àºáxóÌ_°ÀÕÁuðHñkð(9%9îíX«ã7{­­v±àšµ¾Z c fƒXûà“O´&Lüç{tPÅ- Š?9zL­Y°‹f,Y k–!dÁ8 € € ÐP¶ÿ©ïÙ´Ó]¶‚mÆa£uIš^ou ¬ë†5ù¤|KMÝv¡ß¡CI÷Ž›6¹áUmÚÁƒE¾m?|—_Lžçk¶…ך5-É”XXz!iÿî1` {;I —^xÞrÛßo’k¯ºÆ[,\àÍ*§œp’v± ¸ÛÉÇŸyÝ{°yËæˆ¬Ñ¶M¦›vŒÊ·x×Â1ÇËÃ÷Ü/Ý}Ÿf‡¤ºZ –¥1~â÷n‘í´Kƒ™¢[´uMæ^–÷øÈÃŽpûcÏ-€ÕY‡Çµ6OƒRÖâÝ7q5þxuYl–=.Ò…Ã2E¬P¨7ÚÌ* @äçk—¸ë¢ÈVzÈ(÷Ø‚ 6JÉñÇç ÐZÀ¦¦ç{dá•<°®L^¥`mìvØ!£½—¹G@@„@ÂelX¶ÃX-y€ß4pw¹óæ[%Wµ·Ölä‘7ß};‚¿¾´ÞE÷.]åÖ¿Ý$Ͼøœ,_±R Aꘚñ`] еû‡e!„5#Áj&´>Gm6«Iá5ÂÔÚgZÜô HÇöäšË¯ÔmZ!-[¶ÖÔÚ×ß}çŠrNüéG9zé‘®ÈÁ(Ã÷ÙW/@Kjv„4ãÀºÝxÍÖ3gÞ\WÔÒF‚¹ã¦[tAݧ€«ë€ˆwý?j¶Éáz±kë¹ë–Ûe®.ßêˆ è[’3eúT·lÛ†Š¬«3¿·Ý·Ôamï¾õv± /£À2nÞzï]7y¼ûSѲ«zÍη/¾þJ,+Ãwßr›+𙜔)¾içÍó¯¼T­í°!c-SȆ(¶ÀÂAƒµpm“Ȉ$VÔÖZuÏw7S¬Xé‚E ݈Av^Y±ZkÍš5s0d¡!€ € € A`ÛUsíÍ3:<臟~ìv±î5,8ð;o>Ók_}û­»¶€E§Ž]ààƒO>r™VƒÃ† Ý]3&>øäcùN‡î´Ö£{·HÑOo9;r¿&»´f†.d­MaÍÖ}ßÃFFÃð¶­¨¨H^|õ7ü«MgÍ÷=úæÙS×ýçÝf^zýUñjЏ7Jÿ<þÔ“‘‘6tmn^¾<üÏǤ  lÍ…x×oßÿzæigh™1–-a&ÖõÂFÒ°‘Z¼V‘uuæ÷–SÑýëo½éºKxA +þúî—7ÊL¼ûSѲc½ö‚-^Òx¼n@ÖåÃQÄι8ÒE¥:ÛñVÚ½Æ7V»Äæ·Ñ_¾W2Úm[uÎ÷Xûýþý>ÖØFj¢ÙDÏèñ\±rUôdúì9ý¤“eðƒÜ¬œ}®ôéÕ[ÞzïÙº5_®ùÕÞ"¹G@@@z,P§¬¶m%­ISÉY·¶ ÙJn^žüï¥dÉÒ%òá§ŸÈû >¿/îéq€|3î;ùôËÏeþ‚2nâ÷2ò€%==]†î5T~â1÷ú;ï¿']»v•®]º”Y6O@@@@ þ Ôi`câ¤åÅW_– –‘Êj—%K—.¼–-éÍšé-=òš=¨jºvíÚiPdYdú5kÖH–vo±®-99Ùš©±Õ½ …díÚµÒ^×IC@@@ú-P§Ê¨2Û´–ü‚’ÀƒM³~㠇Ò–’Zf–ª¦k«][òµ›‰×Ö®_'©:f›6’Ÿ¿mÙöþ:{O»¿Äj½{ôŒ5 ï#€ € € €À.Ø%ÅCËïoaa‘4‹ÊÎHNN–P0äÑÓV5]aaA™ ´´TY“½F ´Hizz³èŸ€Çj}/º9ô°è§‘Çó.ˆ<æ € € €$–@B6r´kȨšVXtåêÕbÝF¢[UÓYÝŽ¶™m"“·iÝF–¯XẴjÕÚÕë°QV|>Ÿ´iÝÚŽ™X|ôÙ§ÑOÝãÊ‚ÛMÈ  € € € °K¢+Êä©S¤wÏ^bC¹¦¤¤È1cÆÈ¼óHFF†ì;l÷¸ªé~ž2E†ï³¯$%%Ië–­´pèA2wÁ|Yº|™lذ^Fì;Ü-ÆšÍËÏ—-[¶ìpVŠ € € €µ'Ùksä•7^“›þrƒlÕZ7n’;î½Ûíe§åw],ßÿ0Qªšnì÷ãeåþÛïëÊòãÏ“Ü<¶Çÿý/âõ 9A‡šMKM“»z öY € € €ì2_Ö°þáxÖ^¸)WüIx&­ñ4iii’‘ž!Ù:ŠIt;ûô3åù—_Œ¼TÙt6AË–-% ÊæÍ›#ÓÛƒ¤@@Úêp³«Ö¬ë’O³®(uQ‰g^¦A@@@š „Šƒ’Ò¼l½ÌÊ–”ÞÆÙ¬Þ°¬ÞkÖ=eòÔÉÞSw_ÑtÞ6lð–¹/Ö`ÇÊU«Ê¼Æ@@@¨ß بˆr•µ @@@(/ÅCËoÏ@@@@xlÄ£Ä4 € € € 6ò°°Q € € € x”˜@@@R ዇&¤… € € €@¢ 4M’ànÍEŠÂ˜¥#†‡m wÊöØØ)¬,@@@ºg$K×ëFKž=5žQ,Ëg-’Åw|&Rª»ØEk"°±‹àY- € € €µ%> ì5h°<Ýã·n‘''Ý+ †O–À×kjk » {hØ0@@@ªg¦JñÈ,ñÚIR}É‘‰›§6“pr ò¼!? °Ñ.û† € € °ËB›J¸k uÒ`C÷f"ùAñ/Ø"þ…vËÕî"Ájocpx¦ÔNBýZDæ¿~¦ÜôŠ„$,S–Ìÿ¬‘÷ò ùè²o € € €u'P·¦êªŒ.zßYo½2*\pX›Èëþeyâ[´-ÐaŠZ¸})•%Áí$Ü´$÷©H_­–¤o×È’ÖÓåé=§kXC¤`ìRñ/Ï«h1 î5 î²C € € €;C ÜL/¡µHg8Cï~·ŠpËd± E¨“fed¥U¸Zßæ"ñ/Éßb½•ó µk¢ÙøÐl €ˆÞ‚Z'Ãk.›cþñ­Ôà„&tGdJ¨ŽxRÚ?­Óú«%0UG?)m¾œ)˜3Û=óy/6‚{à ³‹ € € €U¤j¦EG 4d¥J83MÂ-R$Ü®¤Yöƒom¡XWßš|°° … \h¶… d¬/¬dîÚÙ·EëfLY/b7ZL1‰˜@@@`W„›j¢‡f-h1Îö'ì!îw²ŒJß] ;Ë>¾ë%{÷ø.i] …Ä.Ön-¹· FN¡ø³óEЬÜ&­¾ ÄwÔ×½c»@@@ê…€u ±FHGq]0´˜f¸å¶,‹PªvÏ• ¬bE¨X»pX°bƒfZX½ ¯{ˆe_Xë*bë0Ó¢^@7À$°Ñ*»„ € €$²€u ±>B½K d†º5Ñ5ÿbuIžä4Û$·ßÚL‘yë—ɦoçIêÓ*š…×™FvÀÙ]@@@ ®BV³·ŽüÑ·$˜n•ºÝ&ø6i†ÅR- ºDKmD‘|½Ï-3ÝÏÝÉ”nºœÕ:êÈìMeÞãIã °Ñx={Ž € €T*àFæèß\Â:’ˆh΂ ø µ+ˆÞ—y\¨¯»÷Cú~Hšxê£Á dØ}¯Œí²1¬8¦Q®ø´+‰þæ’@F]Fü‹5С·Šs;*ÝÞhà6øf÷@@@x\ c` ê}¸ƒ4j¡Ù©¾›´†0jPÂÙ[kaÉ,œ  € € €@#°!QCý4¡·àÍÌÐâå›áͨ´¥ù%œIÑŠT}œЂÅøi]ICç÷¯È«tvÞ@ 6lÔ†"Ë@@@ê@pïÖêßR\FFVÚv[캅ÌÔìŠ9›$0KkXUÔØnn^@`רØ5î¬@@(#ÚJ²Ž$á¦É›±JòŸÿ¥Ìû;ò$¸[)>¦“„Êu/qŒ_6j c³¬'ŒafÞ]$@`cÁ³Z@@@ " ÁŒn 8JFfô—›z¿*ß®Ø(¡/—G&©Éƒâ‘YR|tG g–dgør¶JÒØlñÏÕzÌ QUæI4‰vDØ@@høÉ~ uÕ!P»6•°Ýëè!í:fÉåYG¸}?²Ý™tâ,ÙX¬£‡L^çêVÄ¢u.ŠÑ€Æ h´Hv³ùr $é½å’ôõê¸ÄÔõåH± € € P/Â-S$ÔYÝ-Qr WPßb]áfù%o¹ hÚIÆmž+[[ù¤ðÂ^ºÏ½´§᜺Az³î#µpÓ$ Ö^Š×€†f€Xó­Ù*Éï-“À·ÙÍÂk4 â0² € € °³B½Ò%Ô#]ÂÍ5 "Mš¶Ñ@ôf£H’¯ÂMíÖ|»×}yÅ:ôéñÙð§ó´[È‚-²bØ 9í„ÍÒ4*yKÖJÁ¿H’ŽVܧ„ºëºõV|\gqóN^/ië5رѭ·øÈŽR<*K·¥4 ¡Éo.•À8ÛáóBƒ °Ñà);„ € €;*à2,4ˆá =í¾YÍYÔŒ‹< ^”0üKrÅ·zëvË+üb±¬üq… šX¦……(?äHò³ $Ô7C‚{¶vAŽp›T±b v+ß\†ÆÛš¡A@£< ϰ|pÙ5@@ˆ-`ÝB,#ÔM»‰XC‹ÖÀ(߬N…eYø—å‰E Câ+ÐáPí±Þûô¹hc»×ª1ÒˆoS‘ˆÝÊ5+ôi·äW»n-¡=[Ip¨er”\\@ã-ÍПSnNž"Ððl4ücÌ"€ € ШÂM4×!#IÂ)%ÝFÒõqóÒçúºhW’°¸Ðn$.QNÈ .ˆaÝE´›ˆ¾Þk÷‘DhX±› ·Ò}l›Z2ÂI"lÛ€À. °± ÐY% € €Ô‚€Ö´u*UÄ+ÊÙEŸ[`£Í®Ö…ec”Þ|ë «±„]7©mg}ÙÖ]§Äšº†~„Ù?@@€€øî5ªH§&êRIÝ íúa¾-zÛ¤Y›õ~³/ì5}ýÜ=Þª]Ih PolÔÛCdž#€ € ÐpB½2´`fs õ×›eaè©å›Ë´X‘/~½ùV”tÏð-×ÇêG¶Eùýá9ÔL€ÀFÍܘ @@ª+ì“à~™"¹A ü´nÛÜ>íRbE;ûi0£_ õΰ §ZÚ|¹:4ªÏ\ž§ d”ÜÀð„¸G q ØhÜÇŸ½G@@ NB›H—+‘>»Ëꢲqú2Y2sž24#éQ e$0e½øÙ(þ4 ‘_'ÛÈJ@ ~ $L`£K§Î2b¿ý¤c‡Ž2eú4;a¼lݺýØÎí³²dôÈC$«m;™9{¶|ôù'…þÀþýeÄðý%9)Y&Lœ(“&ÿä^oÒ$MŽ}¸ôêÙSV¬\)ï~ðžlÉÍ­ŸGŒ­F@@` ¸aQ´àÀ–Ø¢dk¬®EPÿ]n·âÒû ªÏ}ú¼iërT¯äöÎg¸éG4¹QŠlë2âŠvÎØ(éȘ½iï!«Gú$¤¤$¹æò+å¥×_‘ ?ü '{¼´nÙZ^}ëõ2–©©©r套Ɍ™3åµ·ßÒ鎓æÍ3äå×_“®»È%^,ï|ð¾,X¼P~{ÁER,–)Ó¦ÊgŸ+éÍ2äwß’Aw—kþp¥ÜtÇ­e–Í@@¨XÀ† n%! fØ-ܬ‚Ë>5œ\Éüúr )MR}Û&h—”î22’¾Xåî}ùð¬XW@ –@ßH±f©ý÷»uí*Ë÷ÔÛý¤äàn·¢= ”ܼ<ùßK/¸÷>üôùÃ%—Ê+o¾.8@¾÷|úåçî½q¿—‘(ó.¡{ •Ë®¹Òe€,Z´HŽ9òhéÚ¥‹,Yºt»uð € €^ Í/ÁšÑ_š‘êФ ‰//(þYšYñ˦¸»‰äjvÇÇǶ– „$?T( ,”Ô{gŠ”f_—YO@j$D`cáÂERXX(çžy¶,^¼XŽ<üíbòév»‘Õ.K–F#²³³5£™ÞÒ¥]»v2vüøÈ÷ÏÚ(³´èçÒÁ3%XP,…-A˜nL€±"°ö…å—Y3å€ý†Kÿ¾»IëV­dݺ¨*É¥û‘Ù¦µäl«»±~ã—á‘–’*mÛdJþÖmE…Ö®_'©úzf›6’Ÿ¿m[Ô:{O»µÐ@@@@“§›¤ø¸ÎR<¦c„ÿRG™jY$0[ZÐsG[`¼þà¨7k¾]ó#€¥ ØØoØ>²ç Árŵ׸ ÄÈ’³N=M¦jÑèVXX$Í4;ÃkÉÉÉÒ‚D¨(,,p™Þ{ii©²&{h&Hzz3ïewoÕú^tsèaÑOyŒ € €@B X]‹ÐnÍ%ܹ©øm‘€j£ÚAŠï$áô’úïÖHòKÅ·~[aÏÚXË@v–@B6ºwí.34cÃˬøaÒ$9ÿ¬s¤i“¦’—ŸÙ÷íB2Dkcx-S³4V®^-Ö½$gÝZi›ÙÆ{KÚ´n#ËW¬pÝNZµj->¿ÏžâÓ1²Û´níFG‰L¬>úlû®/;¢…xŒ € P—¡NMtT µOº»g¥•Y½oS±Æ®–¤oÖˆoUÙ å2Vò$8¤µÑMÂmK–k#‘$¿°HüK=°2^FHˆÀÆ* N{ÔQ’‘ž.›·lÑìA2wÞ<ÔÈÈÈýúkaщ2yê9í¤“Å†|]·~½3fŒÌ[0ÏÑþ?RÞÿø#ižž¡…C’÷?ùH–._&6¬—û—ïÆ“QÔåæË] @@„¤¹éM@IDATÐEB½24ˆ¡·ÞÈÈpÓíÿ©î×L )I¸[3 7O’â#;¹›Q®¾]-ñ9kt‘P—fRtV7 õ+¦Õ·z«$¿¾D?¬M 6¨®€/kXd:v+Ü”+þ¤@ì k0ER ¿:÷|¼Ç Ù¼y³v)pC¸Îœ=KúiÍë®þ£\pÉÅnɇ2JN9á$Ùªµ66nÜ$wÜ{·äim ËȸäÂ_Ë€Ýú‹uQùñçIòԳϸyzõì©C¼^!y:¢JZjšÜýвxÉâ˜[jerÄœ‘ @@¨B Ü&Õ/B½4ˆÑG³2º—í:m³úòŠÅ?o³Þ¶ˆ®Þ[Á΢Pd©ÁýÚHð€vÔÑF¢›(ã²%0y}ôËI–¢ÓºJpD;÷º-?éÍe’ôÙÊ2ÓñHPqPRšoÿÝXѶ%D`ÃÛ0 H´lÑR²u“èvöégÊó/¿y)--M³;2¶›Î&hÙ²¥ƒA ‰Ì ,xÒ¶m[Yµfµë’ý^e lT&Ãë € € X6„,â×,ߪm…í-pẕô-ÉÊ·LÙnvëN⟧çη@Füè†[¥h°¢­ØNÂí¶uWñm** p|Ÿ#Á¡m¤øˆ"šb-éÃ’ôÞr<ÙnCxHzبÈκXMŒ3uŒë:n6êœÕ!€ €õX å´¾ÒÌ>Ò!#S–lY#SfN•/亘x…èÝóÏÑ, `XV†fdør‹£ß®ÑcË o+ÁýÛº‘NÊ/$ AŽä×µ0hvõkr”_Ï@)PÀÆö÷væ–Õ`ÙVÃn4@@I ÜA‹{jAO+êîÔL²ê/ÿÜýRé“Ö^>Ý8M.KÍ•e%#ñù6Eº“Dº•ì„qÙšñ‘üÜB Ó®*šÉÜJü‹õµçµ0¨Ph €@CHøÀFCg@@v@¨cS­5QNÖÑõÚ7) `h#Ô^™Ûº|xËò§%I·”L÷´kjño)–”§çº¾œºÏpµ6(êî@  ØhÀ—]C@•€,bÙZsÂjM„3SÅŠtZÍ ÷<£zªì|ë ]wßÚñåˆ_oyÃÃr~Òc2´eO›=Sr?ž/ 9U-†÷@jA€ÀF- ²@@] æ—à^­¥xtû’lŠôØ BøÖˆÄ5.`É>ùWæ‹ÖÀÈÖ`†Í_IöÅÆï²å£Á³å»ží$wÎ*ñO߸ PX% Ðøl4¾cÎ#€ €õV Ü$ !á#8´µ÷lµÝ~XQL—E‘­Yz+ɨ°×4(¡Ù;µ…ÃnˆÕ|fµd쑺6Ž P*@`ƒS@@ .«+Ø¿ƒø~)š™#þYg$„›&I¸­uћދNï[™'þyâ[Sýà‚ fì]ÌÐB˜^óÅ?iëîá_®ËÖî!4@Æ'@`£ñsö@¨¶€5º^w¨<`o h>ÂK’…ïO)(ÞVË¢­Öµ°ššUQi+ ‰uíð­ÐîËs5à±Uï5(±ºlqÍÊ‚¶ÜÀÏ̘¸VÔ¢P¥«â @Æ!@`£qgö@ØNÀFúîÞRÂ-´6…Ö«Ô€„µ§¤ú%œ¢Á‰$_d›¦Ÿ>ò@×óÜkWéß%'¯—­¡ ²$4Øàº€è§‘БE:êÈ"šÍêÖLDoA)AěƿØù"IØÒ{ÙÝ[vHÒxÍÑQ>|ùÁ2ïñ@ q ØhÜÇŸ½G@F&`ŒÐ –®è¦R–ÜÖ$JxUž$ÍÈÑbš¥E5Ý!ZÏ": Qnaj5¬C®†:iCo6üª xèˆ%^ÀÛÅ6ªH`|v•Ëô¦ç@ q ØhœÇ½F@F"n™¢AŒVÚCƒ–‘R¶¬¥ÆF ÌÝ$²U³ 4ÓBëVؽh—_¡÷š>×äe¿k!ÇÝ%M©2{ñ|ñÝ5U’«YÓ·©H|›6nWŸ#ÜLërt. xHZ’~Z'¾Uš½AC@ †@¼ €Ô+ŸOB}3$¨Y¡AÐÐ`Ató­/À” ⟶AÔ dÄÙßö™,Ø£…ˆvWñÏÑáO«Ô¨j5¾ÜbñÍÞ$~½Ñ@¨Žêh1- € ° ¬.…ÕÛ­yŠÞkM ïyFŠHs}=©4C3Ê3,˜¦CNՀƒܚïÁÖb h  €‰$@`#‘ŽÛ‚ €¨€uq]GöÔ¬‹ZÜ3­ŠQF*óm.*ÉÈp™ë)¶Y/!€4 çX²' € PB}¬ûˆv±.$]uÔ覵.|›´«Æ½mÔQH¶hŠ zËÕ×·ès-ÖéÞsÓèó­ ÍÇc@†-@`£a_ö@TÀŠeºÑI,˜¡…=íy¤…Ââ_°EkaÔB÷‘ÈBy€ €@Èú?hÃÜAö @HpVš÷É”à` fôJ/³Y¾¼bñO^¯µ0´†Ö°ç4@ˆ-@`#¶S € €5°Bž¡¡­%¸o¦„:4)³ÿ¢-ÛjaÌß\æ=ž € €@|6âsb*@hÁá™Ò|HW ®Ú"ù_-®ñp¦ÌîÝF‚ûeŠeiDZQÈ ±øiøµ›‰oSQä- € €@ÍlÔ̹@@  øŽì&{Ÿsˆ‘5Dæl])c÷ž$«îÿZ¤0,R E:óƒUîq¨[3 Zf†4ÂQ™®‹‰v-±aR­›‰hpƒ† €µ'@`£ö,Y €Ô3P¯ õL—P÷fÒvxo¹¬ÛÑr|Ë¡n/Ê[)‹î²Ý¹Úè‚°øì>¿X‡gM•pûm™¾œ­øq´f†ö¦í–Á  € P{6jÏ’%!€ €@ XFEX‡Q õÐ@†Ý4˜Ý‚É>™’»È6¶„¶ÊæP^ôÛ‘Çá¦úÏ'»iÓ\ŽHó/ÊÕ@†v1ùYƒKr#¯ó@v®ëËÒ@@ ÂM.8Nõ‹¤ÜÍ=N±çz‹Ž4”®7ÔIë]ìÙJ$Yß/×,³Â¿0Wo[dƒ‰¼1& ?æÌ‘5ùeÓG3¤Ék3ÊΡ˧érRtݺNo;|Ù[Å·®°ì´^*[e©ʾÃ3@@ Þ ب·‡Ž GhŒV´øèNÖ&²ûIŸ¯’ÀøñëÈ%4@@ ± $L`##=]}¨ôë³›¬[¿N^ç-Y“½ÝñhŸ•%£G"YmÛÉÌÙ³å£Ï?‘p(ì¦Ø¿¿Œ¾¿$'%Ë„‰eÒdÆN[“&irÄèÃ¥WÏž²båJy÷ƒ÷dK.ÕÞ@ê…@h·æR|¬4´¨kÅaIúvµ$½³\| ëÅ>°‘ € €ÀÎØVUlg,=Îeú|>¹øWI‹æÍå™þ'ë6¬—sÎ8k»¹SSSåÊK/¿ïÿÛ»ø6Êûà ËNl'ñˆ½÷²H€@ȦPö*{wüi鯴´ÐR ?(ëG¡e¯„=a’½÷^±c'±-[Òÿû}œSd[’娲eû󼢜twº{î}ºóÝ÷žaÇŒ÷ßCÿ¾}qÑy˜ùºu銮¾[¶lŬ/>ÇÅç_€c†3Ó®œ~úöîƒ÷>ú%%ŸûÖ;ª-›#(@ P€±(àÖ¥¿‚Òß®j”I@ã«,$üj1â^Ú F,î4扠(@ˆ‰=»÷@Fz{üó‰ÿ5?ó½w1 ÿ€jC ÆÁC‡ðò¯™iŸÎþ·ÞpÞzw&N7ßÍý³¿þÒL›»`>&Œ?›¶lƈãFà–»ï F ¶nÝŠi§Ÿ‰n]»bûŽÕÖÁ (@F°ÛLU“òi¡=˜¤o¥„ÆÇ,¡Ñèû‡ (@ P ¦b"°Ñ¾}{lݶ çN;Û”ÂX¶r¾ŸûC5¨ÌŒLìFäHU•¤ÄDy%!##?Ì›çÿNvv6F¼©²’››c‚:Ñãõ"//dY lø¹ø† bDÀ3<e—ô€/=ÞŸ#ç{áüp'l…eþq|C P€ (P!Œ´twì1X¸h¾ýa&M˜ˆ.:ãß/þ§Ò~JOKEqi‰\þþø|>$¸âÑ^–Q,ÕL¬”'ítÄËøô´4ùŽN×6<´Z (@ P |­𜚉òÉàks¤ËVçì=p~$%4Ј…ÝÄi²å—Âù¹tÛ*íhØŠ=õ°.‚ (@ ´ ˜èeåêUÐ^MºwënÔÇŽ›7£èÀ$''côÈQfüÒåËЧWoh—¯.— Ó¦N•ù6šiK–-ƒ~Ï)¥?RÛ¥Há'aÃæMرk' ¤—•q£ÇšùN=yã€,›‰ (Ð^骵ôžA(ýó1ðŒM7A ûÎCp=· ÷,†s–”Ò`P£!w ×E P€ @3ˆ‘ùxýí7q߯+ÕJòѺU+<ñìÓ†·sÇN¸ñšë0áSªã­wfàþ{ïC‰´µ±!zäa3ßóçaèàÁxôÁ¿C«¨ü´d‘ùŽN|úù礋×Û¥qÒ³¤H~ü1óþG P€ˆº€}KÁŸ|•K°cÏÞ½Á¾Âq (@£H°Kð"ÞžÄè™h†Ý´Z µ•Hƒ ßIƒ ³öH[GŶ¦sH P€ (pô1ض{¥qP}1Q€ bA ü´À`F¯Dø:´ š%ûV)帱öí`Û"ï¥ & P€ (@èÄ|`#:›Í¥R€ j' ÕKÜ×ô¯cå`†}×! ^€Ý¼$ˆ!C& P€ (@†``£á¬¹& P  ø2âás9øÄ½ î»zËr¼eçuEù”Žf‘¶·é–Õ¾YJdHi ¸´ Uoëä‚(@ P€ "``#b*ÎH 4g_f¼ò$Þ×¥µ [Ã×I>wn ÄUôŠ­Ýpƽ¹­9pÛ‚x·…ûªÞð¥Å›©Î9Ùp¾¾•]²±â( P€ (ÐX l4–<×K 4Š€V#ðJ»¾Î2”À…ùܽæÖ–˧v‚-·Î/Ùq£ì¸^©/)eÓ{À3&ݬٖU× a__¹Ç­ÎWG P€ (D€ (E 4mSúBJ`ø2%€¡ÃRúB‡é A7ÌVX[v1lYŰï-‘aÅ˾§(óÂ3"î[ú£ìÒž°ísñd_ÐåpdóðŒMGÙ/z@ƒšœïBÜŒíÍc㸠(@ P  0°Ñ w*7‰MUÀ×ÎÛäÎpÆÇ£tEKóƒoŠTÑ@ßxz¤º€¯«T!Ñ’:>DÒž)l»%x±[†¼Ø« ^”xC|£b´cÑ>S ¥ìâîpߨñ®b‘aÅšæD_Š eRíÄ3´ÙíÙ$îy)¥ÁMšæe®)@ P€h1 l´˜]Í ¥@Œ ØmèôÛSp⑀͆…Vcý§ a+(ƒ/5®¢äEš”ºh/y¶ê2 é©Â¾KJa챆À¨CÒ66|Z¡üÄ ¸ï€ø?¯R¥uX"¿Kå“:¢ì®€4«¥tâÞÙÝçL (@ P€±/þî öóÏR€MDÀ—.‰d P$Ëi§Ë }‰NøÚJqŸîBÏ>½ðT«Íý%î]b0iÆõðj¸?žãRQvE/Ľ¸9sÊ,…(» ÊOΔ·®§ÔåÄñ (@ P )0°ÑöóHðöH„WÞþò(=ŽH !0ÙJ%€±3 aNéeÄ2¤ºH]“ãûìº.¢A¾¯ ”êS~÷Q>!Ó´íáülOƒ¬›+©›@ùÔN(ŸÖÙ,$î©~ò»ï­›(¿M P€ W€ÆõçÚ)P¿ñx¥çHw¨ðH‰réÆT†6}ïÑ÷²:3N†òÙV.ã¥ow dHÃÛ/Ù3ÛÄÐRŽeù°K£Šöõ…Ð.0™*Ë ÷òf”]Ö e?ïaÚÑ®a#M0òh $Øá˜—é×8_‡^Ùî[û›E:æd#î­õ¹x.‹ (@ P ØhD|®ºehu H´:«FŽ…zþÛÝy8?ía¬ÒpHëœ.;| •Û±¨IǶ·¸¢]‹Ò¾…6Ø)uÚw°tEMnÑšîzFzq¹wTëIBé}CaÛç®T"ÃZ¯V屯•j=k´jO´ª·["Üÿo0ÊO‘¶:ö»á|§5;‡õ  mƸo`–äXœ× 5ëaµ\(@ P€ @ 0°Ñ@Ð\MóÐv)L‰ŠÎ­àë(UD´d…vÚ6Îl|R\[ŒNêcÞws¥¡½«Ö¤T/ya;T”J{niCé„t/j; ]¥î8ÈІ:c­ Ôæ¿{kÞB·®G×¢ô÷CM «û–È’0Ì8Ȩº0ûöƒR eJs»ûËàü†m?Tu:šÏz,ºÅÕ'íÏØWí‡ë V÷9G~‡ (@ IJ±¼w˜·F0½€$J BKQèP‚Ð’:l-㤅•|©RàØøÚT0¬ñC DyJðaÂB Jè‚9Ek°'k/â\.A éÒT»I•¶-˜š¶€Mñ[%ÕJRM··ilUS‘$sÓý¬ô²òË~¦ûXÛÁr8æEòUÎB@«ø”þf0|r k€)þ_kCÌÉÑ (@ P€MY€¦¼÷˜÷zðö–Þ@µ…Gt”.N6iöëp×§ZEDª‹Ø¤šˆ•ÿì ®²Z*#û‹Õp°êˆEÓl†Ú(ìÑvûêø1qí¶™^;Ü7õCüßWI• Ž0ÕJÀÛ7Ü×ö1%¦ôt=²&â S­VÆ™)@ P€ ]€FßÌ@cø2¥¡G dx‡´3ªí[˜* |°’R:,–§îòÝTÑ¡”°€LÓÏZâ–/UE¤±Èš’ûíõØ'/MµkQ£¦%szspÎÚmz·)?­Ü· €KJ€°‹Ý÷nœ í}2»wÂ$/òqY»vK€h5´ (@ P€ @ó``£yîWnU­BâÕÒ¥TÆÐv¦ „ÀYlEe¦1GÇJiae TNç{ 4¤@Ü«[LIÏÈ4¸ï„ø¿J/+Y5Î2±¸.ïi0bäñx¥ÏÍ&{SÖþyŸþ[;³Ë[ɱÈ}‹~0Ù@¯¥Â!(@ P€hÞ•ï›÷¶rëbD@{ ñŒoò‰áëpäf¥6ÙÓnUí$€±EKdEÔ#Im–Ïy)K¦»ÒǤôÁ½Ã¥qÌqqr/¬Þ·‹¿œ‡ƒÏ/‹¥¬Ö[^|éñ(ûYwxF¥™eÚòK¥D†2$˜¡Uʘ(@ P€ (` 0°aIpu-Jï9µÊÇ¥W”Ê8¼FǼ\ØwÜÒ}ª¼P"]«º½°•êP>ë{3.`zÔsËP ¶4€—VÔ  ¼Ç'õÂþN‡0>k$®j^Õ¬¤ÄVÙYQ>­³Ù¶œ¸^ÜÌvqbëçÈÜP€ (@˜``#¦vGóÌŒgl:Ê% áí“ìß@›Ô{w~“Ç·ÙÐj$L @ͶCåðØ$à'©ÔSok©®åñÕüÅ&2‡gt:Ê.î_J¼ÉqÜÌíp~´«‰äžÙ¤(@ P€h,6K¾®×Û%]® wª¾}¥Ø»q›#O?Ò†Üi#ޝöVÔ‹÷6Ÿ²f¸;¹I1(?w#îË|C2za]éäµ*†w`[8–ì‹ÁÜFž%íÕ¨ìŠ^Ò(p’ù’cQâ^Û Û>wä ᜠ(@ P€-V€»ëëÃ;Ý|n}!n̘„ûvÍÀýæ`·;¶C8ædÃùå^h±r& PàèÊ?ØŠŸ–çbQ§Ö(;! žÁí€Ûú#þ•°o*:º…6â·|ÉN”Ÿ× å§dš\زJ÷ÊmÄlqÕ (@ P€ML€&¶Ãb5»¾D'’LPCóx{æT¼½g\/l‚ãÇ\ ¬¢ø|¬æŸù¢@S°o=ÈË57¥÷ ‚w°ôr—tûÀ h#£M%•ŸÞ ågwñwÕÌj'MeÏ1Ÿ (@ P ö¤‚6ê&à“†Ò?ƒ[ªÅ?‘õ¹YØc{?oI®)©Á FÝ|ùm „ˆbìÛÂ×ÚÒ»Jµ¯¸P³ÆÌxoŸ$”üý8”]ÔÝ5?íCÂ=‹Ù–FÌì!f„ (@ 4=–Øhzû,frì팲KzøëÅïúi-þ¯]žlû.|Y‡ûüO°ÅLn™ 4CR\¬Fé†A»Guÿf\R-ÅV,½ Å`òœ”÷U½MÎØÛI î f‰ (@ 4Q6šèŽkÌlûR]ÒsAi4Ídþã â´;ÆM°küYcPÃOÁ7ˆš€­¨ñ¯Bé}Cá•¶7ÜwHµùŒòjœWÊ–]ÚSÚÒèH¶âÞßçû;£fÂS€ (@ ´,6ZÖþ®ÓÖúZ9Løò‰åÎÄ[aâfl‡ãûls³R§…óË ÀQ زKáúÇ”þn¼ý’ᾩ\RMEƒ|Iqlé/%»’a“&qOo€cY~cg‹ë§(@ P€hF l4£µM‘§­å§v@ù9ÒПܤè“`ç¬Ý扫­$6‹¼GÍ‚ ¦@Œ h[Ìpß1žãRQ6½§éa¤1³«Ý¸ºïì_JoÅcÉÁbÜØçŒÃ `ÑÒÅæû­Z%`ÊÄÉèÝ«vïÙƒ?ù¬¶ì–(ŸØÁ4ÙIvÿ²ŸYµcUâžÚ ]?—7FV¸N P€ (@f.pÛø[j³ÛpÕ¥—£g°Ùª·Ð;nº«Ö¬ÁŒ÷ßÃùg6m’ñæÌèÖ¥+n¸ú:|ðÉÇØ¼m ~yå5(÷”cÙŠå¸rúeHJLÆ;¾‡aƒ‡àî[ïÀýý¥ñ7¸r Oq½ÝZIÄW¢2\òª!Ùö– îÕ-p¬,¨aNN¦SÀ1'qm¥œ ºI[8ÝaËwÃ1_º\Ž0ùR\¦!R=æmEՃˑ,F×[>µ“™Õùé.Ľµ=’¯q P€ (@ •@L6Θ4kׯÇàƒà R7|è Á8xè^~ã5³±ŸÎþ·ÞpÞzw&N7ßÍý³¿þÒL›»`>&Œ?›¶lƈãFà–»ï@II ¶nÝŠi§Ÿ‰n]»bûŽG…Ö¿¤%2Ü· €·OrÐì›'©ò4ÕvPª–èP{UС¾äÇùuVÐïq$({ÎvÁ—/ufÂ}C_ĺa_SèϨ/9¾Ìxø:¶‚7£•¼ORYñðv– gÜ‘^Àí{Ša_[û:y­ÝÛþðŸ”úÒö=¼ƒÛšu¹ž]Çyþõò (@ P€ ¢!3 4 2ÿ|âq\pιA·53#;‚999R#Q^IÈÈÈÀóæù¿—QÇoª¬äææ˜ †Nôx½ÈËËCYVK lx»HO w”à–î!_–ª$[ ^Äh×þÉ7 @­â^Ú _Û8x†§¢TŽÇ’|SÃ×I 5—ÒÒz5ð!/H€D“¶á‰ t¬/4¥AÌùÏÛ¹•ißמ ã¥1ÓÇÖÁ¾Uþ,)@ P€ ¢'¸¸8\{ù•xæùÃëó†ÜÚô´T—–ø§çï/’>$¸âÑ>-Å%G¥ËË߇x¯mvùŽ~yŸN“j--!i#‚úÄ.»©oïúßµ°ï<Ô6ÛH/àzfJ3ÈôHbuÏlPʼ°ï:$må”–U{v±šê'ÒÛ‘IRrC{Xñômï@yõk_‡V(——?Ð! ‚jûÚ0hÙYMµ6»<\O¬‡í@øÒ-~瀠(@ P Þb"°qî´³°c—ÔÃv¹Ð½k7³q=¤ÇŽÝ»ü%-t¤Û]†D)a% ˆx=^¨p»KMÉ kZBB<²s²Qêv#))Ñm†ðÈ’iiêi“?6‹÷åÓ:›zöº1ZŒÜõ¤4ÞÇ›f±o¹ˆH@®®…ç„t Ì»”¸Ð@†­À]ó×5ø±j¿yὊÙ5ÀáÐÞ‡éRÝåäŠÒ:‡ó‹½¦-žšÎ9(@ P€ (P1ØpJ/&];wÆ5—].[VÑhè忘Žÿ¾ö 6mÞìßÚ\©B2\VJ—R{²²Lõ’Ü}yhŸžfMBZjvíÞmª¤¤¤B&ÕÞS´QÒ´ÔTÓ;Šfy3ë‹ÙÍû&ì'­î«{Ã3Fnf$9¿Ø#7[Í{þG ´,m'Gõ‘´ŽÀ¶:¬’ÞIÒ@iÛÓ¨d.ƒ (@ P Ö1Øxýí7ý·Ûìxáégñ§¿=$ݽº‘œœŒAbþÂXº|.:ÿh—¯ûòó1mêTlܼÑ|wɲeòùt|üÙ,´IJ–†COÂÇŸÏ’’ ;QPq£ÇâûysqêÉp¨¸ð¯³9½ÑFÝw„·»”R)÷ÁõÜF8DÞ#Bs²à¶P€Ñ¨èˆîÚ¸t P€ (@ ˆ‰ÀFð¬UŒíܱn¼æ:ØÈÉËÅ[ïÌÀý÷Þ‡ikcÿþB<ôÈÃfÆæÏÃÐÁƒñ胇VQùiÉ"óøôóÏI¯·C«¼$Ä'àáÇ«Xx3û_ƒîÛ@»kÔ¢æ®Ç¤=ml¼¯™ífn(@ P€ (@ Ø2G Ò±jÀ‡ßº Â%ýê߮ۘé_‚Wß|Ý¿„„$K©Œéí¤jj×®<ŠŠŠ*Mr:hß¾=öfg™*)•&†ø UQ‚UQ 1{£ŽÖžL#¡R ž©ÚH¨­¨¼QóÄ•S€ (@ P€ ŽFÀ[.=z¶©Ü^f¨åÄ|‰ ­v²tùÒJù/))©Ô¨hàÄ‚‚‚Àþ÷åìØ³·~ê™û#oÊÏ邲s¤íižÄ17®ç¥zNèÎeb$×Ì(@ P€ (@ P î1ØØ+ƒê‹)¸€ûŽð“b&ƽ´ίi\Šc)@ P€ (@ P 9 Ä|`£9¢××6•]ÐÍ5´ W×ãë`ßP¹úM}­‡Ë¡(@ P€ (@ Ī€=V3Æ|…ðn‡òi¥Ê‰ô|òä5Âsq*(@ P€ (@ 4S6šàŽõ¥ÇÃ}S_“ó¸wwÀ¾vÜ f™ (@ P€ (Pw6ênذKpØ*ºtmí„cUœïjØõsm (@ P€ (@``#†vF$Y)›ÞÞ.­aË-EÜS€ˆ:ëdÉœ‡ (@ P€ (ÐôØhBûÌ32 å§t<^¸þw-l‡Ê›Pî™U P€ (@ P€ @ý 0°Qÿ¦QY¢¯c+¸¯ím–÷êVØwŠÊz¸P P€ (@ P€ @S``£)ì-—¥·dèX˜ç×YM!×Ì#(@ P€ (@ P ê lD¸î+Ð’¾ÌØ÷ÃõïMu_ —@ P€ (@ P€h& lÄøŽ,ŸØÚ¶ÜÓ®†™(@ P€ (@ P€¨``#† Þî‰(»¤»É¡–Ô°e•Äpn™5 P€ (@ P€ @à 0°Ñðæ­Ñ×Ú ÷íý‡Î/öš¶5"ú"g¢(@ P€ (@ ´ 6bqgÛ€²›ú—û¶ˆ{ck,æ’y¢(@ P€ (@ 4º¾ ªg üÌÎð nÛ¡r¸[x|Õgâ P€ (@ P€ à¤AŒÄÙáí–_ÇV(» ›É”ë© °¸c$ƒÌ(@ P€ (@ P öØh„}âkç’ Fkø$¡Á Ðî\“óý°¯*Å÷ (@ P€ (@ T``£ H}ô%;áÒÞ®­%€‘_O)•! ƒKö‡`Û}öµ…p~lŽ£(@ P€ (@ P @ øvÀ |{ôÞžIpß5¾¤¸Ê )ó¾õL c‡2¶ËkSQåyø‰ (@ P€ (@ب‘èèfð k÷Í—í[¾²@2Üq¶½%G·P~‹ (@ P€ (@J lT⨟ž3ྲ—Y˜c^.\Ïm|ìÙ¤~t¹ P€ (@ P€ À6ŽXÔË»òsº ìÜ®fYÎv!næözY.B P€ (@ P€ @u6ª›Ý» eWôBùI€××7Ã1'ûè–ÅoQ€ (@ P€ (‘1Õ0Sœî[úÁ3,†A]ÿZÇrvÕZƒ'S€ (@ P€ ê,ÀÀF }‰N¸ïoDØ–ÃõÕÒãÉÁ:.•_§(@ P€ (@ P 6"Q 1/=¥¿_Fl¹¥ˆxlÙ¥!ææh P€ (@ P€ ê[€ÚŠ:ä ¼ZÃ}·5Ú8aßu®¿IP£¨¼¶Kãü (@ P€ (@ ÔA€ZàÅ]2©Çwâã°/©¥¾C°¯+„ë±µ°•xj±$ÎJ P€ (@ P€ @}0°¡¢·WŽ™2O ý%’m ¸~ë¿ñͼoàzxu„Kàl (@ P€ (@ Ô·€½¾Øl——ž€¾é]Ñ7¾:¸ÚáØÄhµ¤¨Ùn.7Œ (@ P€ (ÐXb#Ò½”S‚õ¹»°2s'’.,Í݈²ûÁÈP¤€œ (@ P€ (Pÿ lDhjßrË?ùåì‚F3,ÜaÚ׈ð뜠(@ P€ (@(0°Q Ô²·Ö#ûí €ÍxkñEÎJ P€ (@ P€ @Tب-«O‚ò‰ (@ P€ (@Æ`¿˜ P€ (@ P€ ŽR€£„ã×(@ P€ (@ P€h|˜©ŠÒ­k7L4 m“Ûbéò¥øqá8PM¨Cf&&N8™í3°fÝ:Ìúòsø¼uCˆqcO@œ3?.X€EK›ï·j•€)'£w¯^ؽg>üä#8x°Ú²9‚ (@ P€ (@¦%%6Z'´Â¯o¿û÷ïÇ›ïÌ@—Î]pÓu¿¬&;nºv›3ÞýûöÅEç]`æëÖ¥+n¸ú:lÙ²³¾øŸŽ:ÌL»rúeèÛ»Þûè””ãî[喝lŽ (@ P€ (@ P é ÄD`CKRìÉΛ3g`ûŽíxçƒ÷1 _$'%U:h0:„—ßxÍÌ÷éìÏqâ ãa³ÛpÒ¸ñønî÷˜ýõ—Ø´y3æ.˜ ãOD’,cÄq#ðijO™ñ|üºuë†n]»VZ6?P€ (@ P€ (Ðôb"°±qË&<ñÌS~=-‰±gïžjUQ232±cÇÿ|999HJL”W222$رÓ?-;;™RmE«¬äææHI3Íãõ"//dYL (@ P€ (@ 4m˜l— °°ÐHŽ5 WL¿ïòq5Ùô´T—V(tbþþø¤ûÕW<Ú§¥£Xª™X)/âe|zZtùiŸN“j-L (@ P€ (@ 4m˜i<Ôétâ†k®G×Îñ连ÀÆÍ›ªÉºÝeH”ÒVŠ‹‹ƒ×ã…*ÜîRSrÚ–ìœl”ºÝR%Ñm†ðÈ’iiêi“?ò=(@ P€ (@ P€M@ &»7Kc¡û¥ÔÆïþô?(//J—+UH†´‘.¥4ödeA«—äîËCûô4ÿ÷ÒRÓ°k÷nSí$%%մá½§Øl6¤¥¦šÞQü3Ë›Y_ÌühÞ3ØQ„#(@ P€ (@ P€1%UQ† ŒLi#ãÍwÞ†]‚.—˼4‘œœŒÑ#G´¥Ë—¡O¯ÞÐ._užiS§JÉŽfÚ’eË0vÔhhÉÔv)ÒpèIØ ¥>vìÚ‰‚‚|Œ=ÖÌwêÉp¨¸‚t%S{†™¡(@ P€ (@ P F˜(±Ñ»gotêØ O?úD¥ ÿê÷÷šÒ7^sæ/\€œ¼\¼%ÝÁÞï}(‘¶6öï/ÄCTe>—K°cÏÞ½A§q$(@ P€ (@ P€MS æ{¥qP}1Q€ (@ P€ (@ª1ÑxhÕLñ3(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ lÄäna¦(@ P€ (@ P€ˆD€H”8(@ P€ (@ P€1)ÀÀFLîfŠ (@ P€ (@H؈D‰óP€ (@ P€ (“ΘÌ3E P€Aî8ÃÚwÀÊ}¹xrÍr”zæuÈëÁÜü<|³/ßæçbÍ¢hç†Ë§(@ P€ @L´ˆÀF«V ˜2q2z÷ê…Ý{öàÃO>ƒcb0 @윗ٗv슓S¥dÄáTP^†{w!«´e>Ê}^3t{½òÞ'ïå³¼/ó¼—ñµI:w‰&Šåu°ÜƒCžòŠ÷UÚÏ8%µ=v— ùûïQrè ^]¼‰REe\J†&µÁiiæ¥ëÎr—â[ rH[_æe#·Ì]›,q^ P€ (@ 4[æÈé|î*IDAT]» Â.E£›bºñÚ딘Œw>|Ñ×PÜÿÐ_jÜ”©§M¬/f×8g š®@ÏV­Mé h¤Ä¹üò™ÞÙ»3³vûÇÅ›VR=¥WëDì–@K~@°"ÑáÀ¸vi+AŽñ2<®M»:e·°¼ÜCr%’çv›÷Ù,ÑujÄ—'ã4/L (@ P€¨O¯<ðsµIŒh‘;ÄFRRF7·Ü}JJJ°uëVL;ýLtëÚÛwìˆÉš©‡ÜKI‡MŠƒ/.؇ÕYÔÛ²±†ãŧWr¬Ÿ%…Öh Œm›Š©» §ø^ܹEUžÈ·t¨digâŠNÝ‘ìráËì=X¥ßP‚ÎÉèˆË:uØv©~öU ñ†3Þ”×>¹™Å¤¥:4ŸUÓAù-}.Á}iÒ@Ç pŒ—@Ç4éE¥g«Èþ(XËm#ûB_½ä¼¤“=¥ÅØ[Zzd(A”½$Ù+Á’½%ÅØu“ÉÒ&Ê™=ûÂ&¥f^X·K‹öG#ûMz™çetB' Ž}“³«øw¬Ú¾’ܧÈïh÷¡xG›=ý©¶”æ;¢½€O—ógœ´ ´PþÖ/ç1VmgŸ çÞžIÉX'6?íϯ6½¥8Qþ.šÙ äüÿüέ(Ò·tÝ~mÓë*©›"Õb?‘£Ë‚üÍoéNÃåáÍP¹~Û,ÇØ©†ËTY@n’R¾>¹ú"g6K)ß–š}`#³}rssLPCw¨GŠŒçåå¡CFf­ÝZã?“ÏÂ`)ía—† «VàÚÙcÿ û“'GÇÇArçÎÈ•F ùjžÛºÑ?½¥¿9E‚>ONž†ŒÞ}P^V†ÉË–àüÙšê -ÝF·_Ý|õ´i)ÇX\|<.]¿Îcóö§“\¤¹â‘.ÝúJ“àHz\¼¶—ñíœqÈytšÞ°[)W3³wáÍ=;›Õº:´ оî߸ÆÚ܈‡©–Ÿxµ—÷ijj½Ìçx_á›)ÃÚ¦ŠÀI2úKiºpI«Ôì@ 6,•Á‹b‰æ”€OOiåªÑãÑfÌ@Îõ㿟ƒ3>ša‚%Á¾ÛǽtÒ$L8v8Z§¤"{ÓFÜ1ë|ž›Õ)‚nód©ÎõØéç˜óô¡ü}8oéb\úKnZXzÌ¿:õ 8θ8l^½ ×Ìþ+x-dá‘cqhÛ­;öÉ1öôw_áÑõ«üÓ[ú› r-ôÔ¤3‘Ñ·¼àž¸b)Îûìv]~ø‡á€ ¯ÉµÐX9Æ\­[cºü†®ýüCü(AD¦ ëäáÅ=&#­OíÞO~ú7ÏŸCžÃÇJpþÙÓÎD¯aÇ@"¸lÙR\ñÙûØ,×RÍ=¹ºo¦[šž–†ââÊŤ÷ÉÅJ¼Ü8Õ&h›‚þýÀþ‹_˜¯õáÀ·…ÌÅsm–Ó¬çíØ¸þz@nÓׯǃEEx°×€f½ÉµÚ8íÉbü‰À)§@¼þU„½§œY«E4û™{õ®ºÊlfæìÙøÐ]ã, éc‰`¿!OB>•§ÖLÕ´ÄJ4K­h¤ƒš:~upÉû„„ŠqróÔA‚údXƒ&ú:^ÎÁ5& ¸ wo`âD3k7iSiå¸ÓjüZ‹š¡G9OÿÒlrÆâÅxMÿ>æó‰²ÿ7"¿³)S㎃–UšúÏ"×Y»ëÿ²šë›¾ýË.3[×ëÝwñõA¹X–`=ÓaŒ ù;v5 7¥©Û·ãw…Eø]—žä±¥ôà˜±Àäɰ˸QOa×ɧ[S9TžòwìºëŒE‡o¾ÁG¥R‚T®©™ hqgŸ ôí‹d Ž]\P€‹Û’Çð2¸ðB3¦ŸÔXõã6,Ÿ¦<,•‹ó¤¤ÊE°ãå"9+§¢¸¶µmÚžF°d?FN¿zö§Z6èÿ^s~C“ð{W}ädÌTE@ž²WJ^•&TÿP Ƶ‚F‘­bX(Ÿ‹¬q:”E¬q&T’)UPä5rògjT-‹¡¯•r¡J!•ÿ"¯VòQÂÒŒÍô£·šúr|î#ÇT—€ß·°ù²ï‹e>ù3ïi`QŸŠé0A^-*Sï[B˜U“À*‚4ªŽE“ê&UÇXç!µ¢WeªÇ[å9[FU?·\™Š-W@“À÷-ÝF·¿ŠO® Œ©Cúu6JÉú[6û?7—7z]׬“V;I‘"·6» >éµ@ÛÇHKM5½£nx°FB]!OOLJÁà—_®¨Š²z%®ùñk¬mÁ]*ú¨åã#ÇcÚ³Ï"©S'ìÛ¼ÿXð=þ½mS s‹{h¤OœŸwÅ!sçN¸‹ ñí–¸ì«OZœIàú8åØ|ÝiÃØgžKÚÆÙ³q®øfV‹n#!Ð'Ðï¥J לvôÌÍ…MÚèø~Ç6\ýõ¬#3·Àw>ºùÿ‘ª(Ÿy òw1wó&ÜùÍgІr[jªê3EÚÖx4Aª´m܈b)ÉòåÆu¸zÎ-•Çlw ‘Vå{%±ŽyñESeËšÕ¸ê‡/ƒ¶ûÓRÐ}t›ÿ1| ÎýÏ hÓ¥+ò·nÅ3KâÑ «[ GÐí 4&Åäÿ+×B²²P¶?¾Û¼—}ý1¼-øæ4ÐÇ®×Bö30N¯…¤¤o–\ ]ûÝç˜ß‚«¢úèìÚ}p”üI•š¤*ÊÇÖàÖ…?ýíµ”‘FÝ¥Mµ“Z£_q1|8\±q=žœó­éݯ¹{4ûÀÆŽ];QPq£ÇâûysqêÉpHvôZoß%ÉWIÀ1?~‡œtIcPë¥a1¦#·-üol\‹RürUá~,cÛ#8òN;çã™8«}G.Dÿ³{{¥é-ýƒv:ý‹qÅš•¦áËYRï¿%[úïáh¶Ÿ4@wú¬÷L—·R4~a!«XTu¼JÚ‹8gí*SÕç»}ÙXÓ‚ƒóUmôógrÞ¹àƒ·pbj²Já}iĘ鈀öˆté¬÷1Eê´»¤¸ó¹Ù Ö˜ñ‘o´¼w÷,þ36¯G÷ÖIØ >.ŽR#ØMUV›½PÎÓgüÔ¥kó—vm—–’ä <“ÐÏ¥_~‚«×®6 ©" ³³‚Ê?ŽKû} gæ`pÛvØ*÷ss ò*ÏÐÂ?m+>ˆ+¤ý¬‘âS&‡ÖÒV]ÖQ4ÆÞ›}`CwÊÓÏ?‡»o½çN; RŸûáÇ;ª}µ]]ÑSh¹ù¹˜Ë{‰@[å÷óÄö–]Š%$ŽLpKñÝçvl 7 §Q ¬€^ÏnÁ%Ââžø~öîHfk±óh°‡ŸÐ»_ƒ¯îÙzN1 =²±ÇÐ?í¡á_¼ T&Ág¥ç<¦Ðúð”PCûl“À¼¾ZZjMR-â¶{îBûöí±7;ËTIii;šÛK P€ (@ P€hŽ¶Ì‘õWÉ]xv§6¿ÆD P€ (@ P€ ¢'à-÷ÀÕ¦rG ¡ÖV©£P3q<(@ P€ (@ P€ˆE6bq¯0O (@ P€ (@ D$ÀÀFDLœ‰ (@ P€ (@Xp$unÿÇH2æ)-ƒÍÞôâ ­[µÆí7ÝŒ¹óôof’ô}|ÑùâÌ©§#3#û¥í¢0Ý¿j±;uÂöGZONJÂY§ŸóÏ:C2Ó Ýúì•Ó/þü|ì/,ô磛ôq®=µL›zºtî‚ ›6Â#ý 7t –·Q#ŽÇ看ÑÇ4ÙÉÎÉWz¬–‚ë|Çs,Î?ûLœp Z%´Âæ­Õ[x¶Ùm²ý§ãœ3ÏFÿ¾}QZZŠÜ¼\³š®brÆäɘ<ñ4´–.d÷ìÝ‹òòò`Yˆê¸¾½zcÊi“±rõ*ÿzºu톋/¼§žt [·BNnÜn·zÕ7ÁŒk»ÿÕóì3ÎÀ¢¥K*->Xþ*ÍåÁö¸ý,;Á¶A—1åÔIæ74æøQ(”nórr+~Ë8fè0œ{æY8þ¸áæ5lÈ,]¾,pó[ fWi¦(~v©Í1¦Y ü ÅŹpÝWù·ÙÚö®]º`íúuÕ¶d‰'™sÍ 9Wååå™óPnÝqñù?«¶ ‡ÃŽ]{¶×Œ`û¿®çéF‘óÇÔjÛ—- HU2 w<³«ôåú¸ÿ­UÖæ7Tõ8­ÍþÏ¿“?¿àg8MÎåíÓÓ‘·oŸt›^ñ÷nè Á¸ðÜóqÂè1H’¿‹»÷ìi”¿cÁޱpûÕ2 V5¾àÜópÒØñÕ~CK—/…Oz-–ªž§#=[V}Ž«ºÿuÙu=O׿;}ÒL<ù¿ezZ*6mÙl6qÂI'ËõÆy8vèP”••#KŽÑÆHÑ8évÔöZ¦êïP—lÿéø†LÑò6d¨\OŸ‰1#GÁf³…üûÉùî<¹&×k+ë·Õ>ÁöQ]1ÍÛ6mͱsΙÓÑ>C®‘óüçßÀí už®Íq¸¼h¼Æy:..ãÆŒ5÷c}{÷ÁAéq'_î·Â¥ª¿“ô´t\ò³‹0ùÔ‰èÔ±#¶nÛ†²ò²p‹ˆÊ´hcûÀÏ/¼ãÅ)999èý˜nP‡ÌLœ#÷¥“N9í¤«ØM[å}øO]$Ç_TPd¡>¯ŽxWD‹oz‘Šˆ6 p:8y܉¸ùú0D.¼Óm7ÜŒ””vxëÝ™È/(À}¿¹ñ®øÀYÌûîrážì`½ Ó½•ôÄ{ÝU×Èɦ þûÚËØWKþ kr¥á±ÃŽÁU—^½8nÕª•š^Þ"yËÉÍÃK¯½ŠŽ:ÈEã©þé ñ&TÞ €K/¾+׬ÆÇŸÏÂiò?cò”jY gܯOüBN ý„w?ü@‚Ñ»g¯jË8W£†Äç_}ÅrÃ~Óµ×£Ÿ8tÙwßv¶îØŽw>xÇ –?|SϬöýhŽHi—‚©§MµW^î]»úWÕZ‚4¿¾ýN{ó&(uÓu¿ôO|ʸ¶û_ÿ°]~ÉttÌìè_|¨üùgˆò›pû?Ô~­š¥pÛp攩qìqxçÃ÷1ï§ù¸ášë¡Àª¦aƒ‡ 7??þ´À¼~Z¼¨Ò,Áì*ÍÅ¡Î!‘cšµ`¿!Ÿ×ƒ%rsøJOKƒ#HÏzÓ 7ß|?+W­”ãêv¨{AáþJß_ºb¹œ+¡¸¸8Š"•nÿ×õ<½s÷®JÛ·eÛV³}ErјÂÏ¡ì¿í÷Áö¿®3ÒßP¨ã´6ûÿ·wÞƒƒÊßÌw$ÈœˆË1Ýlv‡Ì¸^þnÜ´ ïü‘¯ÃüïX¨c,Ü~­ºÏB¯]·®Òo¨´´D®Òà Ôv®‰ô·üòÆP_Êøhc‰ò7ûÖn4ü>øôc ?öXó`¾ê†ÄÇÇ㎛nÝfÇŒ÷ß3›/:ï3[$Ç_Õå5Öçf؈‹s¢“”²Ø—¿¯’­0zõì‰gžÚ ìWß~#O/ 0tð 3ßYRzâäñ'š÷™Ò=l‚”øÈÝ—Wi=»÷@Fz{¼ðòKص{7f¾÷.>ÿò ÿ<7^{ÿ&¾k§Î(‘R%%%þéúæ¤Æc-…2óƒ÷°Pn2×mXGŸü—ÿ)i ±–vÑàÀ2¹àY¶r-YŒ‘ÃG÷nÝ$DçÃü… ±uû6Ì_´}{÷ÖE7Xj#«””T kŽ{õÂy¢ô¦œ·¼ è×ZŠGS]÷ ±µÎ«/»ßÌùN§Gž†ÊŸõhÃíÿPûUó¤%,¦KàLS¨mÐࡲžyþ9sœÎ›?O<ó$â=Tk7Î -ªø ÉïhE@É]G0;ß)Ô9$ÒcLóì8-—’] $hh½òäÎÓZÂ.pûKÐæéçÿÏlwà1îxe%Ž ‹ ¶ÿuÆp¿¡Àýê8­iÿ[çéöÔ×’†oÌ|Ûä\üµüFÊùÎ!%8{tï&7ª M`ZÏÓ ÿ½hlÈê ·_5çPÆ«$¸oý†V®^ ]æÿ÷´)­hlmoÕsMMç1ë{цÚÿºÎpçikÿë|¡ŽÓpǘ~Ï2V‡¤¤DÌ—à³ù[/çé-òDTÓ˜ãG›ß”ž·õ@½Ga¦5Ô¡¶¯>ÎCá®eÏCº­Á~‡áö_¬ûXû_óê8:x°ù¿fÝZ¹^+%×£TÞ>ûj¶ßG׫UD6lÜh² Åo­âY¡ŒuF-.ç‘îyn»á&©¢Q†¯ç|k:-ÐØºÑÐñzðôéÝ|ò!¶lÙjªv\&¥¶‰õé…Ÿõål­Á’ž$õ5~ì8yõ¯W#ÂO<ó”ÿ³úìÙ»Ç_©®û?ÐXW¢E÷vËò·HU}ºe¥Pù³¦G{nÿ‡Ú¯š'Ý>Ü„k µ Zê uï+%N’’W;ä&UC‡J*JgÊomò©§¢{÷È•*So˥݇«R„²3+o€ÿBC"=Æ4‹¡ŽS+ûZŠE«¥<û¿Mq=oë EfF:¶í8RN«•eJqÃÀÔ©CGLœp î½ÿ££þ>Ôþ¯ót`æÍßùÝé…³¦Àc,Ôñ|@J(Db¸žh¼µÿkú YÇX¸ãÔÊo°ýo§s¤jàý>`JKéÅ¢V\"U½íÑAJøl0çi-2îp8¤Ši™Qz!¯%X2…Ú¾ú8…»– <éöû†Û etÔ>סŽÓ%K—Éyc ¦J©B»ü½:V|<üø£fÓ}ÂïtæËq©”ûýä†Tÿî5d ·ÂcçPÆz/1_‚Ç—ý|º¹O7f ~Z²Èn§áÎÓÁŽÓÀéÑzjÿ‡;OëÖ²€sC°ãCó;áœ}ú™¦º¼V±Ô´aÓ‘{ëo¡Žö;qÚæ»ÖƒC§”бKà¾SÇNþûýn4S¨ý_ç ­^\.÷cVŠw¹‘‘iNèyÙ:Ogʸ׊9r­¨ ¤Ä$ÔtüYËŽ…a³-± WŸtZm8hѨ{ïú¾ûá{H;šfÍþÌDµB}_ÇgȬãŽ=ÆIýö‡9yÜSwÉúο_üÜ„nµ>jtP‹¨æÉEãÒeK¡Å}ÆHðXHzá¦'j§k¿èü LØ/¾þÊdMÛ yâ™§ý'Õ`ùÕ…×=OÚ×РÖÔRQÖh¬ÓtŸh¯;o¾M‚JeX,>›Þ„¬1õÁ¦Nšlž&ï“zÝ±ÔÆº¸3j®b‚ïò±?kuÝÿÆZÔ{Âø“Luÿ šÀ›PûU³¾\~úô7\ÒßJ²œPµN¶ŸZÄûWRýǺ`±Œõi†þñÓ*]¯¼þŠ¥¨øoï¼[Ú=I”º‚±kW×c,ÐNÛ6Ðv ¬' :Í2ÖãJKWé4ý}é¶ÀtöÓL©³píÄÎí÷õqž¶ò¨¿ Bk 2+c¡ŽçHí¬e6ô0ÜoÈÚÿ‘æ)ØþN<Ù”ÈÔâÎÇnŠ‚›‰ü_}œ‡Â]Ëž‡ySjõ5ùXû?Ü ‹ ‘•“-Õ%'™öÔ´*¤UÂ9Ð'ÜùNÛWÐàØ²+­ªQ¦…;ÆÏ!á2·Fòû÷ÇéS¦`PÿØ#E­Tõ8 wžuœZËjŒa¸ótàþ—·ír3®íði›Zãä!äîÝ{äZ±âö6Ð8ÔïDjÀ{Ú”ŠvÏ—ëM ñáVÛ Ój:ƪîÿ`™úIJ³ 8ДÔÕ‡“N™h‚NgEÕnë8ÕvôÚJùû L?A‚ÍáŽ?kþX6Û5O;ýtL8o½3ß”¶¨é{:Ý!í?”–”â…—^4%3´èÜCü3^”¶2¬’ 5-GŸRhU­—¬IŸDŸt‰5UjZn}M×À„#ôÄò‡¿þÙߎtÙ6ŸÍD;µÈœŸÓ¤õÇŽ-¥1ެåi(7\}­yöøÓOšBu^­ozûoî6Am£DÛìГT,$­S©m>tíÜþë S¼«6ùŠtÿ_wåU˜#¿Okq9}š¥9­£ÑþXNÁök¤ùµËñ¡7ä/¾þŠ©î¥E˜ÿö§¿˜‹ßõ‡Ké²ôiÆõ·Ýì·ÐÃø‘Š‹)åËvu9Æ'ršŠÞ åo*4ê¾ïpã¶ññ.dË…¤•ôfôØaÃÄúekTÌ ërž¶6bÄqÇI[JùrÌ)µbM³†ÁŽç„„39œõýÆÖÇo(Òý¯%}îùÝo¡OÄþçÿý+ä\¬E£5éE}"7YÚJ¸éÚ_âÖ_Ýå?&ËF×l¿M~´!µæÍ ù÷=ÔyZ¯"9Mžêë;u9O[y¨éÓsöÍwÝáÿMèMÄ~{¯)é£íõïÛOÚC»Q.ž÷Ké×y&Xm-;†u9iƒ˜±|-S¾uñчgÚ€ÿ_þ¼RÕöº+¯ÆRz㿯½R-kÁÎw€Öeüßž7×FZJJojµD- ©.ÇXª´‡uÝUWãOýÅ<¼ÐÒLüá~Ó‰V'¬šÂ§k:N«.«¡>×õ<­í~ôÙ§òÐôssü§ßÿÃ¥±}½n´RM¿“ÿ¾ò¦Kû>å\¯Uè5Ø@²–ÓXúc”˜ñÞ;¸PhÖÏ_}û­©yPê.­´9Zº>QJgXIK{¥ƒÕ¤C°ãÏš7–†-2°¡Q½c‡ƒß?p­nØ­§;Y‹}YÕM´Q5-¶” 7 ‘6´ÁÑÀV{÷ï/47ÿÖ:s¨º÷Üv'>•zXZ"¥¶I]´a:-Æd¥‰ü鉥jÒ š+¤!ºÇžúW¥à@©C¸JJlh4W“¶¡p…5ÔV§­Öø«.«¡>kÝrmhHëÿîOÿc1µ]w¤û_O*'žp‚yiƒFZuêioãOýÕ”t©ízjþPû5Òõ먑ӧV2¿¡¤6ÖG3ÔvMô½ìÐ^sô½V#ˆe»ºc‚¶ ÝF‚†«×¬±FUê“/-î.OL5H©I«Þ-Q+(U­´~»u¬Yã{X×ó´• ŠÎ[0ßúXmêxŽÄ®ÚÂpD}ý†jÚÿúýù{©U;5i[Zõ.]ªS<EòÄUþÓ@ëÜùópñšó´þî3…Ú¯µÍ“^tk×úÛ_C~5Ô¹æé?Ñy,ä‚£<¡®çi+{5czŽÖ›M«Š ^?iÐU_m’Û˜‰¯H;@š´·‚=Y{¬E7ú°®ç¡X¾–©Üúð™ýõ—æ8Ñüü´x±éå¬jÞBï4𬑋¥§CMÚ“ƒ–ìÔó‘>‰nìT×c¬{÷îæo·U"SÛÈÚ-emëoIÁRÿæ…;O[蚎SÿÂðM]ÏÓÚH´>ô[$¿Mz³¾lårÓ–b``#ÜïäE ¢(Âÿú€Y†£Ÿd¹9Õ{á334ðu=ÆtÛµ4“¶Ó§IgÖßQÕ¤×ÛÃ:JH—’ÓÜÑkñPÇ_ÕeÄÂçWEŸÂ3mž鿦—ÉÖ—\š´Jí".\Òn?µ;)}r®iì¨Ñ¦«îîñò„P[¸ —–.[&Uš}BïôͺFÒ¡öþ5GIŒ… †nC¸c,ð¢óKYr-¬Õmµ‘MMí¥ã‚ô´ö¦ª¶~¶ŽÓpçi/ÜqªÓ+…;OîÿPùÓÒîZ"aÔñ#ÍïGGÚ`ëÒÿ!Ë8üïĆÿ¹÷÷rï×Õ¬F{CÔ{˜ª×U¡òÍñ5cÖþ—‡ŽR•RKYê}œ¾tûƒ>Öqªfz¨¥ô¾fÚÔ©ro[ÑVI¨ã/ÜzkZ‹+±Ñ«GSTéA©:˜^@‡VI™è–Pûõÿþó‚ >èvÕÞK7AŸ¶üGŠjcs“¤aД¶)¦]«D”e¬'â÷$0¦ÝŸ•–º¥ÑÚöR%았øƒ¸=Uß×Ç1¦ËЯŸ?`¸ ðXÆzÜüVÚúÇ_4OG_“s—UFƒˆú‡ìeiŸ$–R}œ§u{´,­³­OˆSà1îxg¸¼Æxî7¸ÿÃå-Üþ·ÎÓ¯Ïx sü(F¿Gvv¶yzóÖÌ™R:±L«0EŠ?üÀƒÈߟ/;ó¥QÈ™áVÙ`ÓÂí×HÏÓšY=Æ´w°ª)ãšÎcU—ÙŸk:O[û?ܵæ7Ô1¦ÓÏÓðúÓ}›»)ýøSOê,Ruž´Yv¬œ£î1Áë>ý¤ZÉÌØÿÕÇyhÎsB^Ëž‡Â]O5¦G´Êš|¬ýîZX»¾æò+ðO¹VÔ}„÷?úÀ¬?Ð'Üù.¢Ì6ÂL5c‘œC´JÄ[ïÌ”6Œn4me¹äúêÞ«ŠjÖqî<­›î8mÿ*çµkÛHî74ˆõ3))xÊI'IcÄN¬Xµk7¬3ëˆÄX¯+?þôS\åµRÒ§â¡áßû§?ù¦¦cÌÚÿáÎÓ¤'mLõÞ»ez¸Ú(ï¿ûá{ÿfYÇ©^Okó ÷ß{ŸôæY"%¡ ñÐ#›ùšÒñgË9Ðçߺ0oÜ…RÝB.‚™Žh$-UºÍÎɪÔâì‘9j~§O2´Î»>¡Ö‹ æ”4ú®=Èh{$û¥jÊÑ$ýàE õB´9¦æ¼ÿëcii&m½Y«Y Š[®– Òâˆziu¦êúä"_ªéXínTŸƒcB ÐNÛIJ–Fy[W«·®çùt©ÞT&¥§‚ÕùeÚ’ÆGzkî&zÍÔF~Ghôy+_ïhýíByˆÑ\ÏOÍýZ¦®¿]íYI«tëÓw¦êzžÕ^+²ä~£ê±8w¨ótà<Íõ½6Ö\ ¿ëXm·Sý)íR›íýFRb"´ýºšŽ1=O''Éy:†î»¼Ò«‹«MbD»”ˆ˜8(@ P€ (@ P€ %P›ÀF‹kc£¡v×C P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô؈¾1×@ P€ (@ P€ @”؈,K P€ (@ P€ @ô"lØãœðy}ÑÏ×@ P€ (@ P€ @‹ÐØƒÆ "MÏélòâRxËÊ#]6ç£(@ P€ (@ P€µР†Æ "M6tfÁµXx¤™à| (@ P€ (@ Pàh"®Šr4 çw(@ P€ (@ P€ @4؈¦.—M P€ (@ P€ @T؈*/N P€ (@ P€ @4؈¦.—M P€ (@ P€ @T؈*/N P€ (@ P€ @4þ?øiAk٦ͱIEND®B`‚locust-1.4.3/locust/static/img/ui-screenshot-start-test.png000066400000000000000000001762361400440205700240250ustar00rootroot00000000000000‰PNG  IHDRìp ë ¹iCCPICC ProfileH‰•—XSY€ï{é–é„Þ¤·RC  ô**! JŒ AņŠ8‚£ˆˆ¨#8 ¢àXTD ƒ‚ûu,ØPÙ,qf÷ÛÝoÏûÎ;ÿwrî¹çÞÜû}ç@~̉2a%²„ÙâˆF\|÷`€:PEÞš®Dä™±—÷·4i¯[Næú÷ßÿ«(óø.PÂÉ< 7 áãˆöpEâlPyˆß`i¶h’÷#L#"Ü:É©ÓÜ3ÉÉÓ,›Š‰Š`!ü<™Ã§@žœ‹‘ÃMEòÛy!“ózpÓ8<„‹ž•µx’Û6MþKžÔ¿åL–çäpRå<½–)Áû $¢LÎòÿs;þ·deJgæ0@”œ&Œ@¬Úä¾e,–³0y^è xSñSœ& Œža®„•0Ã<Žo°|læ¼Nø³åy²ÙQ3,^!ÏÏ—øEÎ0Gü}.iF´·|^>[ž37-*v†s1ófX’ü=†%÷‹¥òšSÄþò5fIþ².[Ÿ(_#ç{m|Iœ¼ß×OîFËcDÙ>òü¢Ì0yƒ-äZÍfØÙØÙ0y§ÿî··§îDÇ÷‰è¸ø"ç²æ»/Y€䌨¾û ëPŒ 9+çLûГ/ E@Cn»ržL%RŸp^HÅA Dx°pAÈb°¬kA(Å`¨{A 8ƒ£ ´ƒ³à¸®›àaðŒ‚÷`‚ D¨:¤ AÄ„< ?(Š€â¡$(BRh%´*‚J  hTý„ÎB— >è4@o Ï0 &Ã4X6†­a&ì ÃQð8^çÂù𸮆ÁÍðYø |–Á/à1@‘Pt”ÊÅD±P¡¨T JŒZ*D•¡ªQ¨6T7ê:J†z‰ú„Æ¢©hÚí†DG£¹è%èÕèÍè ôt3º }=ˆEÃP0Z Œ+†‰Ã¤b–b 0e˜ZÌ ÌyÌMÌ0æ=‹¥cM°ÎØ@l<6»»»Û„íÀöa‡°c8NgsÇ…â8¸l\nîî ®7Œûˆ'áuñvx|^ˆ_‡/ÃÄŸÆ÷ãŸâÇ J#‚+!”À#,'l%ì'´®† ãDe¢ ÑEL'®%–‰ç‰÷‰oI$’>É…NòHå¤#¤‹¤AÒ'² ÙœÌ"'’¥ä-ä:rùù-…B1¦xQ(Ù”-”zÊ9ÊCÊGª‚•[§°F¡R¡Y¡_á•"AÑHÑ[q¡b®b™â1Å«Š/•JÆJ,%ŽÒj¥J¥“JJcÊTe[åPå,åÍÊ•/)?SÁ©«ø©ðTòUjTΩ QQT*‹Ê¥®§î§ž§Ó°4›–N+¢¦õÒFUUTTcT—©VªžR•ÑQtc:›žIßJ?J¿EÿQ[£îE›FK£;cccêc>ÄúÆ–ÄÊâ¬ãVÅ]‰×ˆÄ·&àbjÆæûÍß18Ñ1± ñÖ“Ë\Z¨±0sá©EŠ‹8‹Ž%a’b“&}á„rª9cÉìäªäQ.‹»“û‚çÅ+åðÝù%ü§)î)%)ÏRÝS·§Ž¤y¦•¥½°‚×éé{Ó?d„fÔeLdÆf6eá³’²N U„®Å:‹—-îYˆ D²%®Kv,‹k%d¤5›†4>=RSéé`ŽGNeÎÇ¥1K-S^&\Ö³Ü|ù¦åOsýs^^Á]ѹRoåÚ•ƒ«¼Wí[ ­N^ݹÆ`Mþšá¼€¼k‰k3Öþ¶Îf]ɺwëc×·åkççåmØÐP P .Øè¶qïè?ôn²ß´kÓ·B^áå"›¢²¢/›¹›/ÿhûcù[R¶ônuÚº§[,,¾µÍsÛå’Ü’¡ís·7—2J KßíX´ãR™CÙÞÄÒ²òòÖ]†»Šw}©H«¸YéSÙT¥Uµ©êÃnÞîþ=^{÷jï-Úûù'ÁO·÷ìk®6®.«ÁÖäÔ<Ù³¿ûgæÏõµµEµ_ë„u²ºêëëjÜÚ7HF%ºvØ÷pk£eã¾&zSÑpDzäù/I¿Ü:|´óóXãq£ãU'¨' ›¡æåÍ£-i-²ÖøÖ¾“A';ÛÜÚNüjõk]»^{å)ÕS[OO矞8“{f¬CÔñòlêÙ¡ÎE÷ÎÅ»ÑÞÕ{>øüÅ þÎu{wŸ¹è~±ý’륓—™—[®8]iîqì9ñ›ão'zz›¯:_m½ær­­oNßé~Ïþ³×}¯_¸Á¾qåæ¼›}·¢oÝHÝæÝ~v'óÎë»9wÇïåÝÇÜ/| ô ì¡ÖÃêßÍ~o’9ÉN úö<Š|toˆ;ôâ±äñ—áü'”'eOuŸÖ?³{Ö>â?ríùüçÃ/D/Æ_ü¡üGÕ+ÓWÇÿôú³g4ntøµøõÄ›ÍoÕßÖ½sx×96öð}Öûñ…Õ?øÄüÔý9öóÓñ¥_p_Ê¿š}mûüíþDÖÄ„ˆ#æLµ(Dá”Þ }%ê5ˆó§ûå)¦{ü)ÿ‰§{ê)q ¦€¨<B» ±Æˆ*z†h”€ííåúO‘¤ØÛMç"µ ­IÙÄÄ[¤OÄ™ðu`bb¼ebâk-Rì]:ÞO÷é“¢tù2©b1ãbïÒŠóÀ¿È?Äù²T0ÖiTXtXML:com.adobe.xmp 624 1004 1 Å>l@IDATxìœ\UÙ‡ßí»ÙôÞIBè 5tD@Å" ¢‚]Tì¢X±¢T±‹Ê§4 HïjH/¤—Ín¶—ïýŸä,w'³³»ÉfgËsò›Ì­çœûÜ;;ó?o99sç-j2  @€ @ÝŠ@N“—nÕ#:@€ @€€å€ @€ îGÁÞýî =‚ @€ `aç€ @€ tGXØ»ã]¡O€ @€ Ðç Øûü#@€ @èŽìÝñ®Ð'@€ @èóì}þ @€ tGöîxWè @€ ôyö>ÿ€ @€º#{w¼+ô € @€ú<{Ÿ@€ @Ý‘‚½;Þú@€ @}ž‚½Ï?€ @€ îHÁÞï }‚ @€ >OÁÞç@€ @€@w$€`ïŽw…>A€ @€@Ÿ'€`ïó @€ @ ;@°wÇ»BŸ @€ @ Ï@°÷ùG€ @€ Ð Ø»ã]¡O€ @èÅæÎÛ‹¯®g\÷ gÜ'{ϸOô€ ¤%PUUe i÷i£öS ЗÔÕÕ™^Ý¡t§¾téúÐØØh•••éve}›úV]]Õ~äwEë Mfµ9fe¾°¬¼ÂV–o°õ•›­¢²Êêê¬ØmDI±2Â&cCóó,Ï;æ§P @€@Ÿ#póÍ7ÛòåËíÒK/m¾öË/¿ÜfΜi§Ÿ~zØöØcÙìÙ³mÓ¦M–››k“'O¶ÓN;͆ ö?øàƒößÿþ×jjj¶½÷ÞÛN8á»çž{ì¾ûîk®7.L™2Å>øÁÆUÞ!ÐãlذÁþüç?Û²eË,???|&Ž?þx3fŒ}ùË_N{=þð‡mÒ¤IöôÓOÛ-·Üb{î¹§½ÿýïÇ^sÍ5¶xñâmÎ{Ó›ÞÚXµj•]rÉ%a¿;ò•¯Øa‡fo}ë[­µ¾Œ7n›úzˆçŸ>ð?÷Üsm÷Ýw·9sæØŸþô';v¬]tÑEá2üã[ÿþýíCúmܸÑn½õV[°`Õ××[ii©sÌ1aNNŽéïàË/¿ÎÓºÎ?~¼qÆáØ?üá¶hÑ"ûÒ—¾ŽQ{ºÿú[xÎ9çØ·¿ým«­­mwРAöùÏÞzè!»ýöÛ›÷•””„¿“o{ÛÛL÷H-ê›®I¢]íêÞî·ß~ÍçtÕB~S“«éP½Îr¯ú•² {bå {aÕJÛXå#'®ÂõÊËËñ‹opÕV]Uaå×YùšeV½j±l̳YSgÚ[9ÉöõM¡×…xß 7‰*!@è–ôû,¾R;¨íÏ>û¬ýßÿýŸí²Ë.vÒI'ÙºuëìÑGµë®»Î>õ©OYYY™ÝqÇvÈ!‡„˜ú!{ÿý÷‡Ñûî»oø­Ë·Ýv›tÐA6uêTëׯ_h3µ=Ö!°³t¶ùÏþDàYgåZ#ÏþñØwÞiçwži›Ê<`kÖ¬±w¼ãa}Ĉá¹ê©§ÂÀ—ÜÄ56`À€0À%Ë﫯¾jO>ùdâ|:géÒ¥áüx ñ]µÜZ_Î?ÿüp^wù/Ùïí“þ©ˆÍn»ífóæÍ ë+V¬höôY»v­MŸ>=âo¼1ü­’– Ö=Ðß$ @êo—ú&!ýö·¿=,ë¾Ý}÷Ý6dÈ;ùä“Ã65 ãÔÖ_ÿúW›8q¢}öÙAojŸÄûᇮÅP šÏÓ tÝkÝç»îº+<3\xæ™gÂßYí×ýÖ §þæî±ÇVTT´¥².ú¿Ó-ìõ.Ò׺%ýîeËí%‹­Îrm„?ØãFµqnIo¨¯öW5Ö×úHŠ^MV_œkµЬnÌH«mØ×6×VÙ=KÚõßø¤ÙÔhçœñ;çìs¬a!½‹ š @ ûx ‘)þx,..?veÚu×]Ã^¹Ãk»D½,‡ƒ/ý•uPEÖÇiÓ¦uß‹¥gh'B× Ñ]#ê›7ogÇg\Blýúõ-žy xÉR{ì±Ç¯ GYz£Õ˜Š>Wúì´§´Ö‰KY‹{c8p`ÓòpP‘å\ƒ_muý“&M²%K–ØêÕ«í¨£Ž #:~¯½ö Vq ªH°«èœxïäÅ0Û½ŠR]ÔÕž¬íú[¦¿‰b‹Xâùq[ò]÷4z%éo§ž Õ¡¾êo¨öŸyæ™a GÛººtš`W×7¸Yýö¥ËíîÅ‹lð€A6eÜDßZoM.Ò›*ü½Örü•낽©±Öòê=¶¤ÁÝÜ-Þ¼å4Ö„ý9¾>aÄvÒQVîø<÷/ûáWÛ¥ç}ÒÎ;ç<+ðQ  @èÍ***ì»ßýnó%&(JlË’ź’ ªŠ¬P3fÌ?xeu×ÐáLJm1ôV³fÍ Öp¹EKèI,Ê%¾-,wx¯ó%,%Ø>úè6ÏËÄq{û’©Îž°Oƒè ø•%|åÊ•«þ^Éz®¿]b¬ÿniY÷Iëú›]Ù%˜ÿøÇ?ñ,뼎9ðÀux(:n ÇË•=ù7QÈ»H±èÜ·¼å-qÕþýïq®…?(lHE!D<òHð”U_}>òÈ#ÃhóÉ]´Ð)‚½ÎÕúœÍUöËçžµÂâþ6}Âdä5.«\¨{~ to –u·®»H/éM[ź›Ý-¯©Ñobƒåå7ZAN®ú -òhöâ}v·{N°¯Í¾É~ûûëíú«cÓ÷d$¸‹žš @ dáIºrêGc,Š©TÌg²Ä$[QœœrÊ)A´ë‡ñK/½Ü=%úeÑ¢@ 7õûâ‹/"íÅ_ BmáÂ…!fY®ÐéŠ>K슳–Èœ0a‚éœùóç·îtçh›<\tn,q@-~þ¶§/±®žü.Á®'žx"ˆsYÓ5P(k»\Ïe×ß¶È.õFŽz—Èíµ×¶üã6tèÐfDú»'Ï!µóøãÛÜëã£F²ý÷ß?®ÚèÑ£›—µ û(—}Ýû÷¾÷½ÁÊ·ô£ ý~î¹çB,ýïÿ{SΉ÷®,;lªVÞÑ?.Yfßó}—1mâHPe9 ¯^·Éšj6¹½Ì ézmܲ\ïÛ6¹€/÷¤såáøaýKmpi±C«·Â‚+.ʵҒTZdÔÚ(_Ø}æ4«xóx›uÞIvÝ7t%'Ú‚ @]J@?j%®ã+ٸĀÜ@£»¯öÅ)šFŽi¯¼òŠ]ýõá‡ñ‰'žâÚå®*B@o$ ¨æÿýïA )f]ƒV²Ð¾þúë­^²bŸËË˃‹öÏþó㮃v’©(çƒ:FáÝ´£Ýž¾dj¯§ì‹aJŠ©A…äH°ËÊ. vܯ¿S*Ië·\Þ%ì%Àã‹Î÷»ßmçz";ñVbÀ88¢óuœBN=õÔ°¬¼ñžh¿ÚÑÀg|¥zÉÚ~á…š\çÿùφgAç)çGL`§$wêjWýëê²CIçÊšrìç/¿d¯VTÚ»¸‹USµåº«»ÕU¹÷)F¯î–õ_ᆵÑ-ï nUolj°†Æ:Þ˜M>ÉJ ûYIA‰=0w¶“cÝáVzo/̳|¯rÈÀÁ6adŽÍ[±Àòß=Ë>Ûìíøþ÷¯ £.] Žö @€ÀÎ&üaª¶´®—D¼b6¯½öÚ¹XnðJÆ$WN%P’kïßÿþw;øàƒC¼ºii_¬3ù—wöõP?’:ó¹“%VîгgÏÂMLÞ%²Îj€+µ­¸®c$ 5CB´êjve'WXŠ2—Çcõ—e¹Õ¹ˆŠ‘–·ŠÜ²;Ú—$“®^Ž×ÓYí*üF‰â4P"q¬úõ.­A vmS츽þnÉJ®í²ËÂ.ì—–ÅUa Jþ¦0Ž8âˆÐe Èr¯"—õ{ï½7 ÚDO"YÎe!O–Ô¿ƒzn$Êo¸á† Ú•´NV|y5i`&ºé«Ý÷dß’õî¬åív‰—XÿÎsOYYN±M=&XÉs]œ7¹Po¬«t±.‘îÓ¶…wé.Ô]°7¸|cŽÏèËSGMµ1ƒt®Y±»#ÔùñM¹îï1$¹îïò.ìmæämä%¤«·ƒv›azè/–søÞö‡´ :ß¿¬®oþ€í,PÔ @€º  eNÖJM=$Q"—PMë¦X\YÓ5µ”~ +þSû•tNIµ(è­$Òd…•h—`Ô4`²ÎJ@¦+Ø’7ЦêJºJkKa$JP…aêùš]A–{ÅHë8}î=ôÐE\Çv´/©õ÷Ôu VÈe\–óhÍÖà‰°bÚ£…]ÇI+óº\è5ø!q,±®éŠ»î‹Dû>ûì³Í!Ê ¿yÚ/Q®"«~êÔ|é’Щ¯š6S®ü §P&{Yå5p#o ¨}e‰ïê’ã®Nuçïvå‹ÏÙ²ºÛuè0=¯.ðA¬×»X—UÝß%Öë=޽Ñ-éõìnYoð$tíŒ9À†—ñå+Ì+´AEƒìÑeÙæšÍî¯q„\ËÏ-°™ãfx’¹|Ï_킾.XÞŸ]ö‚=ôꣶ¦b“­~i®½«p–ýä'?éjv´@€²N@¢C?&%Ò —˜ì)Ý~¶A 䊮©¿vF‰Ö\ À]dmUhŠ,ñÑBŸl³+û’l·=Ë;ó´§ýxŒéï”vÇ¢û«g)ÝýíŠþvØ%¾Á{uãâ…örE•í;v‚›À=©\Ãfå.Ìý}‹UÝE»Ç±×› wŸØMïõþÞ˜çrÝ…û»Ì²‘¥Ã­Ò-ñE…6¸p -©XjMVP\¬ë…9…vИ.Ûs­ZBÝ“ÑÉE^÷I#&Ú +^²œü\kð„t|b¶M¿æš[ÐÐh€ tÑzØš›¦Ü}UZÛß]®ƒ~ô=;ë™”°ÒçbgÕŸz§¢ÐL×^W÷%µom­§ës[çtö~1’ î}Iwmqà'[ýK?›®§[·=Q^a·,|ÍŽÜÝÝ+ƒe½±q³U-_kùC=æÜ­íõæîðM5¾\cu9ž>×-ë9.Ö}ý¨ñGØäl“'¤+q±Þ/ßoNN£-ؼÐG]¬û¿¢¼"›9r†Ûñs­Æ3ËË*/¡ÞäuÈ a‰ t—&O™çÃÖpÈžö¹?Ýc¸u÷‡mÝ#2\NØ¥Ûo¿=¸=(saWÍù¨é [¡ ‰Š;“ˈú Œ…Y4Ï¡â7”õRqnjS g2yòäàV¢8’Lå®»î qÉL‹™ŽÏ´ï…^°¥K—¶˜V!Ýñú`hôOîJr;’+¸ÉÕO®5r¹Q\‰¦íh‹™’ñÈ­EnQ”äBóÚR @€ ì ì]Bý©í ]÷ óª×o(³¦BŸ¾-·ÆãE<ã{¥‚ÑeQw‘-±žçnðM.¶%¹=f}ƈlÚÐÝ‚X/Î/pWø"T0ÀYû„'‡ØÒ•¢Üb;xøV˺Üè]Ì7J¨»…=py¹yÖß]&Ô’{­·QûΙvþç?jüë6…[*HÅž(¾å·¿ýmÈ@˜º¿³Ö•ùð?ÿùýío (%XS§2Г„¨æT¶Ã÷¼ç=a}{ú ¤ š~@ {Û’°•ëœö«O*±ŠõøÀ><âHRlWçjßa‡’kÄíÛûþƒü ÄÜI„Ç‘ÿd]7n´Ÿþô§¡ïK–,iÞû®þèGºw$VŸþô§[LåÐ|¢/üò—¿´«¯¾:¹i‡–Õo%#¡@€Ú"ÐYƒÅmµÃþîK@n¿@%ÐnÁ®™>ošÿŠ•b¹!fÝ't+®±ŠE+­dR¡Y¿zÛ¼¦ÌŠ'ºŒvWxOíÞäBºÉźbÖ' ž`‡œiå>•[ž‹Ã"OïŸßßVV¯¶ŠÆ »Êó¹× ì ¡3,/'Ïj\¬û™ÁúÞ”ã2ŠºXÏñ·|œÅEÅVàÙçû¹å½®q€U¹ÛüÒ}WÚ5×üÚ>ö± ;Ê!/±¼³ŠÂ|éK_ $ô””âÌ3Ï ‰ dé–€.++ ó*q…¦P"™/|á ö‰O|Â.¿üòVf¤ëówÞΓE]bVÓ(ÑŒ¬ÑÆ Öu‰bYÚuÌC=¦ÂøÜç>g?üáÃàÅ›ßüææªÅF?6Ú²b7ŸÐŽՙ޹’Nœ~úé….>ùÉO†äòe]^Š×/ ~%†P†N üßüæ7¦)9”Ä"µèÚÄ<]›ñX1Ñ@‰ŽU2ŸL_®É"¶Ï; ôNq€¹w^WîA@³"¼ë]ïjÑýî“Ëúøñãí‚ .¿+ãûî»oHb×SßeГñ+Y䙫ºô;T Èô;4µ\tÑEöë_ÿºy³ú LõÊtþ™Ï|ÆÞ÷¾÷…}ªc¯½ö ³8èw÷wÜÑ|Ž®¸â ûæ7¿t‚æŠWâHJß#Ðîö5>(øçyÏÛÑ{n9µë}Ú¶Í–[Pk•«×YÁ.C,g`ƒm𳯠&ô„s²{Ë…½ÑÅQ“OÙVb'Ž=ÆêšjƒX*q+z¿¼bO*—g¯UηO2——“oÞ×ã×s<üV±î‚])äƒÀ’/|žÿ×àÂÑ)(Ì÷—[Š­ÀŠ›Šl`C©Uì9ɾûÇ«íœs>â Ú{;“_¢ÉåöžŸé8Y±õÁ¼Æcìå~þ­o}+L!Ñœ©H(jIå•WAú¯ý«9Ûb¦suŽ>àêòÐ…8—aò<õG/‰øN8!œ£ù?õ©OWõ_üâÍy’\’ËÉú¶gYu%ëÓ4r3—å_sJ4§+ízÉ%^ƒšŠCºÖs}žF‰iYÜ“E$õÊT–/_vë±2„¶U’}oëXöC€@ß%i°XTø>é»ÏFG®¼·='}=Éú”!^E¿©c6øÏ~ö³Á;ò‹_übØ—áL¯Ô¢dñ˜¸OF8 meBøá‡ƒjܯ÷xŽ~ÊP'¯P…§êuÎ9çØ=÷ܦd”!ê»ßýn˜G\†:ýÖ×ì*Ë–-3y¤ªHKhp Ö6vÒ;£ÎNêÕl%Ю`^9ðüñµçlÌÈ ÖP³1ˆõ_¯«-·üѹV¾p¥å7¸…}ƒ5¹-Þ…z®OÏ–—çÕ»È>nÔVœ[äÖñFOÏ·þ.ÖåðùÛçú±MVì±ì3†l벬י»j»^æt7¶»`÷Dãwž×­í^u®'“+}Q‹vOV׿ Øjf ³ën¼®ÛÜ` H‰õ“O>9ŒÀ}þóŸî¶:(k¶¦ ýï~÷»`I>î¸ãBÈš=8åÉ‹r,iaþüù!ß’æÿÃþv+T55·T<÷¾A ].ñO­YaucÞäu¹Â7xÌyŽOÛfž >7¿ÞrJš¬jÍ&Ë”gõë+­xhaç؇ =8Hï<ýšª­(ר}^õyî _š_bSûí2À˲®sþ zƒ¼Ÿ¯u¹ÖoÙî.ö–çǹ„÷øøð™â\ì7ZA¾×ïÖö‚¦|[>¼Ü{òI;tæÌ7êʰ?´ñ‹4áíÞ¥8“ïÿû!ö:~ c;í®$q 2³_uÕUöÑ~4ˆr ódQötYÄwÝu׿˜™iO.áë²Î'¹$—“íwt9ö-YŸ,ëú#zÈ!‡„6;Zg<^ñï²°+ÀÇ?þñ¸¹CïÉ~uèD† ¤!Зx͆¢ÁsÅÆj”Ô"á,WÙóÎ;/ÌÞ’ºžzüŽ®ëûùMoz“) ¬¾åΫœ1Цt-øû©k[Ýy­íÌë‰uË ´bÅŠf]Îã~]òu×]·Í…žrÊ)6räÈæíŠgWØæL×úM®ørÔ$Úåêž®$ÛÑþ#<2x³JœÇ}Ó¦M ¿ã%Îõÿ/ùKØ']åVŠÇ¥«G·uvÝòp½ÂCs·§ÈØøõ¯}›Såñàƒn³½µ ÒLqºËÖŽéIÛóÛê¬äóÝ ž³±#ÇY½OÅ–ës­[“Oç&±žãyÚkjmÄÁ#lé½ómðƒÝ=~½ 9>$Ž]<ÂF÷Øõº¯^èIåJóú±.Ñ>­dªïS¦÷-Võ—öÁýÝk—n×$nÚ&7ÅÂÇeOQïçÕøº y·¼ËE>7WV}óÌónÅŸ:Üþò¯¿µ[°·Å`{öç;ß .‰õöº¤·ÕÎùçŸoz`•í\±,J^ËÏ~ö³0EÜÍ7ßl ˆ›wè½³úÝÑNdJôÖžºtý¸Pì€ ÐÛhJXyñ½÷½ï —–ºÞÙ×+ï7y¾Åd« —“7Ý•€Dzº˜t…M~ä#Ù¦ÛŠK×+µÈm=)ئª¢ÄvŠoW(é >“^­ öÔ:c>¥T/V¹À+“ò)Éð'Áùãÿ8õôn¿.O` èmO‘û:Á®Ð„BОz•Ï«7 ö\ªdzÉ!ë±Åsl 'Lhªu7xw‰—+|ƒÜ׫ýÜZ+Slk_ZiC& ´µ/®¶~Å%Vè‚|úÏdèB{‹u½ÀJ<Ž}³ þò†rÛ»ÿ4Ë÷u¹¼Çõ-ÂÜOñ!NÝÛÞ"Ê5là.õ¾VàÁë5Þnƒ·›ãâµÝ<Þ=Wõ¸/ðÊòúÙÃó nñ™®-¹Ï+ÉÈ!yl[ËŠQÑ—™bÎeoëøŽì¿ä’K‚ÛÜßãy555aTPS®)|ܾ3Þ;‹“êQIöQB[IäfÏžÝb{ò˜ö.ë¦FPÛ{|ò¸-=kÙ·ä~–3ÿÍ€|xxx¶}âwKGÞ•ÌJ–<  YºUâ,.²þÝ~ûíÛ¬+Y­\o’7jÔ¨ÌU³ÁÄ¢zåͦä­Ê’ŒÓU²ZYÓ“å®»î2寉%®+îWI¼’E?ÔeyTÑÀ¹ÂúÔÿÝvÛ- 2D·zeÃVÿ“EIoãô«²2Ê‹@}QfìÖ\ð_{íµð}/!¦°8 ¨8`/×eÅ‹‡„€X&­¨mqJö-.Ë¢*fò|P\qœÞµºº:Ìì3iÒ¤àqÖYg5çÒQ ³òì¨?r‡–`SÒ3ÅH+_úþá8Ä8ÇvZ{ïMŸ-]ãθžÈN‚:Yô¼¾òÊ+vÐA5·÷+S»žÔ—ÂYcŸtï]=‡ò–Qø©¶+‹¼Š¬¿óæÍk>6ÖÏM¾GÔ,õÉíÊd/Ëp,Ê{¥ç6yLg/«­Î®SõíHIןçž{®CU¦«£'o“FÎX644ÚšŠuÖXWáýå‚»¾¡ÊÝâ]¬»{“OÙÖP]c£g޶M <±Ã’ ÖÏ? =N}táˆðhš¶"w‡/ð©ÜVÖ¬´é¥Ó\|çºX—õ\Nîž<ÎÒó=!þÅNÉ¢®’ã7^Çi{H6Ö¬÷e÷…wž£ätn¥oôyÞ%îsÝâ.küÜ%/ÛFŸú+E®ØJG¾;³ÇsLø"Ðt,šc]15;£½ØFW¼kä^?H4‚¶½#s±ŸšNƒ‘ï€ mý±¨þJ`\vÙe!ÔM aeUW=š*µ€©ëúM +• Ëú~•[°Ä‚–%„%Üõ})ýì³Ï†º%â—ì¯êÐ ¶i*XÕ!a°2pÇãõý½ß~û…¬Ø5‹/6%åR²-Y!5]­Ž•ˆ•xŠçé]ÇÆøbY%ŽÕަdM'\$þu”¸í¶Û´® #7Õ'We¹í+‘­âßÿþ÷‡~È¥_û3qJö+.‹³ ‹™9ô[ì'?ùI¨KÖQµ!!®A $h@B÷@ÖÞ^x!¸<+¹®î£„™ -:O¿}¢tl/Ý{¸ñü×&Ńk€kîܹÍ1ãòB³¥V ßÐÊ}”úÒLJ±DëºêVRi%‡Ö³Ë7Þ3¾Ç>Lž½Ð…ºb×7øtpSúMr‘ßänðu^×V!ž“ã¢Û%¹[Ìe/×ÈU“/oì[…yX—…=ÏÖ׬vÁîbÞ…zScÝ–×Öekð óeÕV³¢Ò.]lCö˜Öå÷W£ØÊò~ÄGtzÛrS×x}që SíhYE11=½è‹\ ï{®/n}ñiÄ‘@èkd%W^•GyÄdáS‘µVEÂX1Ÿ©ëÚ'뢄²ÄÅOúS»å–[‚0Ô<ÔŠ1=üðÃÃüϲ,N˜0!ˆ^'‘­W,Õò€“X%Z×µ,«»Ü޵MýTLîœ9sìïx‡iŠª§žzÊžþùæ¹£%\/½ôR“hmO‘×@kñÿÊß# º~;¨òj”%.&Sõr+–G®Y¿ÑdÅ^­qJõP]çb©ëSQ½÷Ýw_°²+4Qëâ«"Á3f„x½«È ˜d•ýèG»ú®¢A $h0€Òy4Ð#®gcÁ‚Á"®ªŽ†}*Ñ¢TTôL=úè£ÛtR‚^Ïv Ùæ€­Ô¾JoS]¢ûk_ûÚÖ«mýMƒk‘©ŽÒwé2î§Z×uOÛ2RÆ þ­·Þ³ö´™tîõµ‹ÂôiuÕe>C[…[°%Ø]lç»}¼Ñ%µ»¨ç¹ˆ,t‘]WYmUe•¶qîzÛë =]°ZÏÉ^à±ë²†+p·׿5.øe5÷ÅðG8O]‚K·ËÅ=Ç×µ·A"Ýuù–5 ¶w%›ÛX³ÁgŽóìñIÁîB½É_¹ž=~ókK|^ø<[¸hž0ÕÝò;P4š¹£EôG¨w´¾ÔóõWœ¾¨Ô޾5">eÊ”0Ê›z|g¬'¹$—··îX‡Þã²êÒœ™ú’×QIû4J­qeÇ—!]<Òöö!Ýy±/©ýJw,Û @E ~ÿ¨¾¸¬ïû¸,KßwÞÙ¼‹û“ëÚ&£„Cܯtý@Ö ¸ÂÆäú+×n‰O¹õJÇcUW,I뺶i]9ut¬DêQÂ-eàV¸žB󆿧–ÈOÎ-+½„ptV}©mj=n‹‚Fë/½ô’ÝàúXÞò–·„¶dá”{½b~5 ¡×äÉ“C:O"@‚9Ö)OE¹Úk]¯Ö8Åãc{ wÔ@G².1ÕKÞ ²¤k ž·÷Þ{H¹Pxà¡Ýø_îû2´ÄuýŽ“1®ÇvSßÛÚŸz|w_ïìëIÖ—õÊEÆ iÐ%u@FÇÆãÓ1“7…’Aê3%ˆ¤ ”Wˆââ屡߰ÈJÖ¥eÙ”kâ׿þµÉ3V7õ!y\ºvÛڟnëì6æ2õCƒ³fÍj>D<ä¡ä{©ýÑç+YäypÅW$7¥]N­'íA=d£¼Ì3–5×…ýµ5e>ïz…*UºkOÿaò¬î.sÜ}ýk«íºÓ¯³%O-¶U¯­²Ÿ}àgvÑѳ›~u£•6ûì…VâÉæ ýÝÿ4oyIˆûKˆîî[d»>0ngûü?_–5½Àe{aN¾­«^í.ùÕ®ëe]—H¯ó~x_|`@îñ¯/ë랈®8×–¸;U6ŠÜ¼”®­¶íí›Fmã_uè„F³Rcu¶·þlŸ§X72ë‹Y\%îÓ<–úÖ J+›§Â(€ ž@@?3½Ò]Cr*§Ö¬ÌéÎÓ6‰ædÑw«,Ü*¿úÕ¯ÂÀ¿„¤¬Â²>ÊRœ®$-êú‘-ë`ÒmW1ê3Šá–p1½r“—XN–x=²ú«¤þ VNžd‘ˆEF µ_ŠS—À•å\‰x%šä¦|î¹çÆS»êHþKrЙ8%+Òo;•t†]«JºëךnRô… øo§øà?Øìùª„dÑ-=6¨ÝÔ—œT¢;¼¤48%Q_Ê1}úôp\ª[¼¸T§ž}ý~WÛ*šáAŸ»¾Zä=¤Á“X–ÓZ"ËT »ÃúZiS°‡Ñ¾úZ«­*·ºì5›]Wyºj¯±ÚŠ*»ëKw»Û¼ÒÇÉêíÛ§X+[_fW}÷*{ß{ζºòš`eÏ•5Þå·^¹nNv·¦‡w©÷à¿ÕòîâÛ¿Ú|ŸÄû–Äur‡_´yž‹Uw¨Wâ9êï .Öå¿bÝ|Û¸ym˜›]#5Ë·$géꛪìˆÉ/™În_צ¿è4÷£\ÁzSÑ“8ÿ¼Fâei—h—u@.e•Vҽ˽N±k­ÍOß›¸p-€ öHͨ,K¯,ê²òi¶YƒeíÓTmŠE—u+µh`\–ëh “[þ>ûìÓ"TMßÃú ¢é®/纖ןÜé7‹²ÍË*¯„m22¤Î]­¾´Vd Wb¯ø’÷bÓ%ÔõÃ_×¢Do8Q#–¥K—†»¸9ÄõÖ8Åýñ]bK¿¿›‹,¥º^¹èª$]ñÖ'˾(."Ÿîô®ß•zî%žõÜ)¡[{‹>3¸R‰R©çêÙSù÷¿ÿ<`S÷k]Æ<å,Û·B(újyæ™gšónˆ~Ïgr¡O'Ø¥äa¬¿1goæÙ¦K|N}“ÿñ+·ÚŸ6-·ÚcÖ=[»C’—{Na-þïëVïqî¯î–mOþæÖí-#Èþ¡( b¼Ö§~Û"ºsCføzîù.Û}&u·ÐËŠîÒ<¸¸KòûùþOKr›×>ÉS¥¢[í ë6¹;¼Dº^µ>`Pïƒ õné_»i¹­Þ¸Äkõ€{ùÖû[¨Wu´Q¢ðÝÒï¶o£ºðÇ &`iëØíÙû«/¤ØgšÇíÛSg[çĺc{mßÞýí©OnzúCÿjT]výpÐK–Å•iôR±aʤ¯%ÛSvÖunO_8€zøýÒÚ¥ÛŸî;RÛ¢•WbZv©ëjCâWñßúî”@Ð÷æÏþóz¦„gãŸøÄ'B¦r¹zËÍTu+6W±çŠ¥–˜•ÀPýÚ'Ñ"+˜–c‘R;ÅîÊâ(ñ®ýrY—5[ ÖdU”p×÷õI'D»¼æd5—½D¯²·K ëÜÔWl+õ]nå_rU–«¿~hà!†$Æ~jª]Yô$°%Ú¢K¼êk“ÎÕñòè“+µg®ëQ£G6Õ«„~r¹ÖuI„)'€®[<Ô˜€OmÅëJ.Ç>Æ}q]Ǥ+míOwNwÞÖÙ×£\ Ñ3µnÝ+eæEûõjOIŠÂÔzu¾¼<ôŠEn÷ze*éêÑç9ö_ç¦;&SÛ³¯+ÚˆýRèˆfDˆÞ>Ú.ÏY…Ħë‡þFÄYbú{¢“èõ¢¿ATØCÌí-ïmZ؇• ¶Êõ«­Æ-ì5na¯u·x½W×nv÷x×ø·¶{¶x½üFè½±¾ÁE~­pwígŸ{6ˆî¦‰þ|·¶+c¼g…÷e¹Ã«È’âÚ=!bÓå ïC¤æÓ«íë–øe¯º ¼Ky·¨7Ôyr9¹æ7ÖÙzëë6½î ^—ŸjôÓûhéŠÕU7M_VÉ?Ýn¬;Zñ5儾¬úJÑà©§ž>˜ráÓ(¶¾ðõ!•¥]îqqZ˜¾Â„ë„ ¾C@?ê®­ÊZžº.ÚÌ–¨ý᱋„§Ö•ˆKBs×]w ágŸüä'@}¯Jˆª(7馚ºòÿÔ‰~ ÷Xô\ ¥$¢»-7zõEán*²ŠûU<½òñÈ­^Vsýøno‘ç¦p•kÿ¤I“ìâ‹/ƒ‹-jöºÓo$YáeWýj3ÙÏÖ8©šfV"  tè7ž<²§yžÕ¦ŠÂ÷´O¿A{/K¾®)ÕM>ÖÅ;ú"þóŸaÆ„xíÊO¥ßô­•T뺎Ó@bëZ—ÐõÕWCج¦†TèNo+mZØGfÕkÖZõˆÏþîÉâò}zŠ¢F+r_Pì¢Ù…³[Ö—Õ×Õ{6ùZ+(ÊîH²¯Y½Æ¾Õlø°á!V£Þ…|¡OßÖÔTd ÿÞã"ßçT÷\ðÁ®.ÛºD·\ëe}—PÏwsþüò×lsm¹ÈTù ÚtÑîÂ}}Ù «¬ÞäbÝÇ\Ü+a^u6ÆG?ÓÖ¤ÞÄxŒÞãrê1Y— TR=LQTwäü¶Ž•[¸:Ĺ!õ…«/XŲëËpg”$—äòŽ´yïh}ú2ÔÔ)z­Zµ*Œ„ËÕI_Þú"ïHIö%¹Ü‘:8€ °#ôý.×îdQÌ«^±hFÍã“ëšBMì›nº)ˆUYƒ“Em½4دó%j²Å ¾Ú­üe›<·¯ú”±>§Ñíõz÷iæÌ½ð'N˜œ•û¢‘^î´×ͦ£T¬–F«c’9Mç"× ù]’qa;ÒVüpÆwÕ¥8u%¬Ù‘"÷y}yË5FîhÉúw¤^Î… ì}uöKnàŽ±Þ¸®~Æm1û{\O¾KHJD'·%—5Ý›}ܳÖÇuYÕåÙ¦Ar%õÒï’¸/ù.¡ÛÚ>Õ/q›<¾£Ë­Õï—êÓÀƒÀ%ën/§ä9Z–P.¼éöɨ’º½³Öã5ñžF@ÆE…æÄ¢| ÉTR»éô·F™ú•ÐO!*©ßûÞ÷“™êíiûÚìãFŒ´yƒm㜅öÒOÚš +Ý’îÉæjª¬Ú㟠‡çظ#†Ùnož`cf{œ´‹}ìçX~¡[¹}„QV÷² ƒ˜üºÏɧ¢%‹—‘^à¢]S¾É1>$¡s2Æû—O¾'˜+Î-ö¬ð«ìå s<^ÝçV÷ õÕ>HP±ym®Úæxolð/@åÝU^s¹ç6yJ;íùy6iâ.Y¹šâCE£°]äòñ /´˜s]óŠªhŽÕU”aU_@Š%éŒãÍ’2eªU\ØŽÅÚÉÅNîhzQ @}‰€Ü¿åþ¾³‹Ë•^Þ}JÛÝŠâ”jéúÖUœÒµÍ6ô5ŠUO–†“Ü–º¬¼²–¿óï Ó;Ë¥^Þ7ÊU D”òúûßÿÞâ4y'¥¶Õ‸ҦK|‰‹ç½§ìo.¿ßÊê|ÄbmØT`ýsnÎp0µÄFí?ÑŠ ‹]H—‘ÞÄ;ão±ßꞼݭåy¹!–HÙ¾o¸áú{pâ‰'ØG>ö!Ë+v »‹sýóèö0¯»D|­Ç¦Ï-{Ñ—/´jwƒ¯¨ÙdG_å1ôµ²ê»Ë{H´&_zYæÝºn.ýÝ-+§!×&ŸjCK·$>ië¾hÔ3–ärÜÖÑwÅ5iÔHñaš&¢3Ý⯽öÚn éÍb_5•„Ú“Ë×7¿ùÍmÜÊ:ÚÿÖŽ—‹‰ ä=œ¦¤µã3mW=JʯAÇJ¼+>?¹-S™öé¨(¾=.g:>î‹më=.Ç}¼C€vÎüΉ?„;³Ît×­Lðɬé;»½t}È´-ΓÞZ¿ºŠS¦>vt_k×ÒÑzºËñ½ízº ׎ô£+îþNhÊæXäq£Øõ¶ÚV2G½’%õåÇÐëþûïo>LÆÍÔãšwöÀ…6-ìJwÌñÇYÝŠkÚÜ`9U9+Tg+V/²å«çÚÚõ¯»ÈZo•UÁ^éð²ÍmÔClÈ„väGuWúºMñE«=¦]ÙGàqí'Ÿqª½Pù”-Þ¼ÀÊê6Øæ†rw_c/—½`÷¯¸ÛûKž~m¨\kåÕ­Ú-ì5·®Wƒ[Ô¶Z×Ü¢ÞÔçîðîZïïÕ 6ó€Y>o{öîˆ2Š*†=5VcGz´páÂ4F#J©s7~úÓŸqSq~Çi§µs•y]qh;êê/±.!:Õ‰\íæÏŸÚh­Ý^« (€ ,ÐÇL¯,wæ!ì4wÜqG‹º5­d2D‹Û±¢$–É¢)%{SiÓ®‹=õ„SìŠË/±¼rwXïßd¾n5Ź.Ы­¼¢Ì3µ×¸ˆ.·â’þVÚ0ÀŠ‹<Þ©¶ÑFí;ÜÆ4Ú;†=rí“>?{^ø²Röx½žyèûÒG¾lgýðL«ØPî¡è !¡\}SÕzøŸº­NÝÛ©V̼[vµ½Á­öJLç–t‰uk*Éé|ƒ öF«ÝTm§žxº¸”‡®ÍG`âi›'´ãeLÕô%šÒAS¥hägGŠÜ;”lFÖm‰òØçX§\FäN®yH5­Š²ÇîHQ̈ÜIôЉS”ÀMSÂ躔Uu{‹¼ÔÿÔ‘5­Ë­åÆolκº½mh•8µK{ëIrM.·÷|Žƒ lŽdGßžú9'û”ŒŽÒ’¿µZòÈÆZW܃8}¼>¹´wf»Éä˜jCÉ5Åv2¡fl»'¾·ia×EM;Þ?èhËÙèYØ+\WšUV5ùToõ!¦¼ÆEt• ê*3/w—õ²Ê ¶zÝ ›|úhûﯰÃ/›a3ÎÛÛê\¤×»àl~y¢´Gþú„ýõ»ÿ°Êâ [_³Þ6Ônô×&+óÕUîÉå*}ê¸jÏF_ãÙèk]¨»,B½QÓ¸¹XÏkô¬£þÞè>§.×F g‡î=sËônYº+r×¼§róÖ4"O>ùäv÷Dó1ž}öÙa.Pň͘1c›º”„Aí)Œâ·5êöYò5àpçw¶˜6A–}YÅÿüç?·pkéH;J˜'Á>qâDÓèZ²H°kzM7“t±KÓžeMߢ¹g¿·½ó±·§Ž ´—€~œòêÛ Úû¬pzÍâðð÷¸¤Ž•÷J.îJ2§ºÒ•+V´Ø¬¼½E¬ëÂÚ%ØsýKæƒ>É}퟾mƒ‹vëµUfU5Mî¦^ãï²°×YUu¥O±¶Ù§_óÄpþÊgV¾¶Â¾¼Øö¹pO;à#Ó=Aœ'‡ó¸x½4šœçÂö¿xÌn¿j¶U–TÛÆš2êåV¡¸uwß샕³î{«w ÞÔ”ïb=×ßÝÞ =ò½ØCØ ­Þ·7ÖûÔruvæ[ϵþ¹Yô‡ßúÈH0jR…Èê-ëtGGW•ù]ÂVâù‚ .Ùö[<‘‰•É“'‡8v hNrYÇ;Úž\VŽ=öØ0 Œ²¶«ÎXt¿$¦58 }p:Rüñ$BÞJ>˜úAÒàÆu×]fPÿu|G‹æ^•'€bá•%RÉò(€ @€@×ІÉUí4sD[套^ †H%‡Ô‘oûÛƒq2ÝyÉìóÚ¯Ù´zSq-Þ¾ÑÎSO<Åv›²‡ånr¡½ÁŰ ö ‰öªF«öŒñ²WK¸û«Ê]Ø+]Ño*ÛlcOi¯Üæ±î×ÙÔó&Û>Mwk¸¸Ò+Ç_yE…öì /Ùÿ]p·mªðiãòküüJ·Ø×»U½ÑêdU—5½±0vŸìͳ˗z’:w½wÑÞèK5õ9–믂ê|;ç­ç¸‹|û®+ÕC뚺l{^éXÊ*-7ôh®AYÇå¶¾lÙ²VGÚåÂqï½÷Ú>ð›5k–O‹÷Š}ç;ß ñðéÚHnÓoš6Aƒšê@®ëjoùòå­¶W^^2ÚkþT¹ÖKäÞzë­a>ÕdÝZ>ì°ÃBvF‰n}p䦯Q3¹ê§«umWÎ͉züñLJøt]Kt‡O=GÙ\eÁ×s¤Ñ·sÏ=×fÏžæšM=6®+ù FÞä}pðÁ›<䶯óã1y×¼#Çslû?k°‚ÏÏ@_}zÓG®eûôÕg¿µëÅÖö±½k¾+ºâ<òÈ#->0Ò*í¹¿Êm•êê®Pci„äùwß}·=öØc-ÚPVùä1=}9ÇÅZ{¼„[ï¹ÝÎ;ÿ,Ë›küC6Ò¬`°ÙÀþ9>Og‰•”XaQ±zæ÷¢+*-²ÅZeCöl#òƒ]À• -µy7-°W9/u—ÿni÷éØ\$ºÙ]‡ØØ£GÙèc=ýî>¿¨[sMb¼ÑÅ}ƒæk÷8x·°×Õ¹ôXöÊš:OrWe\tÖ.]f>æ“öÅ·_hyª¨EñΊ3לšqžÐvžÚ|˜¾HÅL§+ÐøÅ/~ijÜ6$Š5¿©2¬Æq=€K—. îàí1ƒâe—]ÖáéY$”¯¹æš`ÕWjO#ZjOÓ³©¨ØžÚÖõk@S$´•ÙþÙgŸ5õëÿû_ø@è4÷ùرcƒç„>«V­²¹s}°fíÚОĴ²ØKô·Utî7¾ñà¡ v²¾ËÚ?nܸÐ7Õ/ï×_=tµ!Ï‚N8!´±½#kØÐˆ+¯¼Ò.¼ð¶ºÉ~@€@»È;Ò· è·"å ú §ß”ìèŠ{ P]ÍdË×|šïÏ~ö³q5ãû%—\ŒpɃ4µ¶k¶)õ¤-¤b™4iRH]PP7õø÷Êo·²mr—è·¿çöÈ‹³­a‚üŒv«÷0냛¬Ô§g+î_jEýJ]°Z'˜+\d/|ižíóµ=-ß¼¦wËÍ+°âE¶ô–•öêÕ¯ùr‰5T)*Ý/õ9Ù ® òÑÇŒ²)gO4Xw˹Üß]Ì{x¹½+Ñ\¿×Ô6øtou¶ÎÅzMÙ:¸ºÉîºêšÛ17h=¬ßÿþ÷ƒÐÜ‘;úÕ¯~µM¡+!ýàƒ†©í”ØM±¢¢"´-Á©©Ó$|%je‘nËH¦>Ëú, ¸¬îsæÌ –}YÔåÞ®ùÊeù×´gGydp½—hïH‘õ_®ñ²¢/X° ÌÓçHÄk@Vs¹õ§f¶oO;Ê´¯¾+&_Óê^)‘D§ðAý¡× Ä!‡]Z0iO[:Fƒ—_~¹qÆ-æºoïù@HG€­tTúֶކ)öv:2`éw(%{ºâHÄdкR…ܾë]ïj×EK#)TW3Lµ§(ÜVÓjëœÞT:$Øuᯯ]cG3Ë6ðìð»ø†.¦‡5Y¿’F+u±WܯŸ–ö¢=¯ Ç^ýò|Ûÿg{{ZyOç£ËyyE.Ês­xÀ [rËb[ðÛùvà÷¶&ŸŠmå=«mã“e¶Ïå{ÛÐ}[ý&·¹7y¼º‹sóéÚÌÅ~}m½¿<[¼[×}y½O'W¶i£•¿ô‚ÝüÅ[í˜]ötiO @݇öîs/²Õ,ì-Éw…XlÙ"k©ºâÈsU·X4#”Œ’í-2Ø)”VFÎLEFOåÛa¦z»Ã¾ûg>Â~üÓŸYíëµ–_æñç›Ý]½ºÐj]P»~¶zw_o¨óKs«xõüF¼×0˯qßPby­0×-ð6ГÃåØ.§ïnÓ?}€½üÕWlÀøá¶ïe3mß/ϰ…¿xÝß°ÎE© üõsË|±»ÃzÅžd.§ÄêoGNš†XïO}€ @€ú4yújö¦dÑŒV)ÊËõôÓOØtžÀ£F²ÓN;-xäöF±.V9eeeív‰OÂýåM×ÛW~ÁŠösêQnÓšc%ý l@é`g/µÒmå¿VÛÐ}†¸hâ¢ÛãÚ‹]|ç¸ÈW¼º»­çør»Ò¯{h½-ùÝBÛ÷[3­ÐÝååþþúßWXÅÜJÛå}“¬hL±5T7ú`€g§wËz•»•—{¬ÂOí¿iÉkvüèíÇùž•0¿eò± @€@7!€K|7¹Yì.ñ-áKÈÉ*JÉžvôRþ-YÝ·®v;›=úío9¿ý‡¶<òcçœç®è›ìê›®²Â’~f%¹ÖàÙÞ›ò\À7•XNa?«ZXoƒÞ1ÚEºÇ¦yæö<+òw uŸ,ˆ÷œú|sôPëר-üÁ"ÛãÒ}-¯_¡íò®=­jY•-ûÛ2+:Іbó5Ä@IDAT9ÌÅz½U5ÔúÜì ¶¶Êß__l³†îi?D¬·¼9¬A€ Э(Y*€¶Ÿ€>'Mš^Û_KÏ;3G¾@.½è“6Ð-é_»ú2ëØPk,j°òÍ –›ï½ÜÍ÷ž1>§¸ßWvÏðž›_Ä»gŸów+ðìðîPoVkC÷o%×~Í›ô‘½ÌŠÜú>¢Ð&}|¨­|`¥½rÝbxÜ0«ÐâÖ7ÎÑÞ:éPûö¹ß°~înÁ×`Ï{øè1 @è+vä7woe“ìßYîAöïA[=Øn {¬øcï?×4¡ýg¾ò kØ/Ç Ê­¼`€‹ó&ËYjµUnMÏ/tmîñçMEÖØPàÞðù.°=k|PÙ¾ßE{CmŽõßݧ~{{±-¸nž?gª5yrº:‰/:d¤•Œ2›÷×y–;´Á*ηÏt¡}äÍï·BÜàã­à€ nJ€ÅÝôÆÐ-@Ýœ@‡“Î¥»ž“:Öî½å~Û§n«™³Îš6­³}îìÇÚ¦Š«j*°jä5µ¹VS—ëÉéüÝ×ëš ­Î§jÓzmC®Ç"4Zî¸6èä‰nQÙÖo¬´õ›ÊlÅÊ5¶Æª¬þ°M6´j­ýå£7ÚEÇŸXOw3Ø@€ @½‚@Ά :͛ܓÄÛ¿ºÏ~xó•¶´h¥õ›¶·Ç£²w‹ï_Rj%…EVXPhùùÏîs€çx¬{c£OÛVkMÖèñ] ž\Î'_ß°p£­¾e®•ž9Þ6®_bÖ®µða;û˜3­ŸÃÔm½âùã" @}‚IçúÄmÎx‘$k‰gõêÕ6r¤{×R²F€{5ôj¸S»Z–ú¯ö׿¾×n¾ë{¶b®ŒoÅÃÇyŒºOïæIç û °ÂÂbËõö¦?¯¯sWyêM Vç.îµ55V¹ÉmêO¾h“æÙû¿ryø6H™åIÚ"Ì@€zæaïA7k'u•yØ[‚E,¶ä‘5îA6¨w¼Íœõë×wš…=Ù¼*­wA¾pûû™ÿÚƒ/>h¯¬žge²Ÿb¹¥]°»Üzcm­5ÕÖXnM••Ô7Ú”!cìèi³ìøý³écwµ|O*‡POÒe€ žD {Oº[;§¯XØ[r]³f1¢åFÖº”÷ Kqowc;M°§ö¨ÁÅy;²¯,[o+7.·µë­¢º*¸¶»Õ}XÿA6jÈ87t´•ºŽ—«¼aMOÅÈ: @=öxÓ:¹ËXØ[E,¶ä‘5îA6¨w¼ÍÎßÞ&ó\|÷s‡ù)‡W«ç56´º‹€ @€ ¾B`‡æaï+¸N@€ ì¦öÛ–L¶eÒÕ[¸]M¼ãíu™…½ã]ã @€ Ð;ð£¸wÜG®€@WÈY»víNI:×ÕB{€ @ » é\w½3]×/’ÎukZ‚@o"€…½7ÝM®€ nI {·¼-t €@·'Ûí{H!@€ @}IçúàMç’!@€º–^]Ë›Ö Ð[àß[î$×@€@·%€Xë¶·†ŽAèÖp‰ïÖ·‡ÎA€ @€@_%€K|_½ó\7 @]F {—¡î¶ ñ tÛ[CÇ Ð­ `aïÖ·‡ÎA€ @€@_%€`ï«wžë† @€ nM€¤sÝúöÐ9@€zÜ¡{Ã]ä t=bØ»ž9-B€ ÐÇäääô±+ærS 0h“J„u@ =p‰o%Ž @€ t1\â»8ÍA€ Ð÷`]í{÷œ+† Ðp‰ï ŠÔ@€2À%>œ>²‹A›>r£¹Lt2\â;(ÕA€ @€:ƒ.ñA‘: @€@ö² € žöô\Ø @€ @È*{VñÓ8 @€ @ =’Î¥çÂV@€ @€@V `aÏ*~‡ @€ ¤'3ê iMéw±€ @€ lÀž-ò´ @€ @È@Áž» @€ @Ù"€`ÏyÚ… @€ d €`χ]€ @€ l@°g‹<íB€ @€2@°g€Ã.@€ @€@¶ سEžv!@€ @ Ø3Àa @€ @ [ìÙ"O»€ @€ ìà° € @€ -öl‘§]@€ @€@ö pØ@€ @È{¶ÈÓ. @€ @ {8ì‚ @€ d‹‚=[äi€ @€ ‚=vA€ @€²EÁž-ò´ @€ @È@Áž» @€ @Ù"€`ÏyÚ… @€ d €`χ]€ @€ l@°g‹<íB€ @€2@°g€Ã.@€ @€@¶ سEžv!@€ @ Ø3Àa @€ @ [ìÙ"O»€ @€ ìà° € @€ -öl‘§]@€ @€@ö pØ@€ @È{¶ÈÓ. @€ @ {8ì‚ @€ d‹‚=[äi€ @€ ‚=vA€ @€²EÁž-ò´ @€ @È@Áž» @€ @Ù"€`ÏyÚ… @€ d €`χ]€ @€ l@°g‹<íB€ @€2@°g€Ã.@€ @€@¶ سEžv!@€ @ Ø3Àa @€ @ [ìÙ"O»€ @€ ìà° € @€ -öl‘§]@€ @€@ö pØ@€ @È{¶ÈÓ. @€ @ {8ì‚ @€ d‹‚=[äi€ @€ ‚=vA€ @€²EÁž-ò´ @€ @È@Áž» @€ @Ù"€`ÏyÚ… @€ d €`χ]€ @€ l@°g‹<íB€ @€2@°g€Ã.@€ @€@¶ سEžv!@€ @ Ø3Àa @€ @ [ìÙ"O»€ @€ ìà° € @€ -öl‘§]@€ @€@ö pØ@€ @È{¶ÈÓ. @€ @ {8ì‚ @€ d‹‚=[äi€ @€ ‚=vA€ @€²EÁž-ò´ @€ @È@Áž» @€ @Ù"€`ÏyÚ… @€ d €`χ]€ @€ l@°g‹<íB€ @€2@°g€Ã.@€ @€@¶ سEžv!@€ @ Ø3Àa @€ @ [ìÙ"O»€ @€ ìà° € @€ -öl‘§]@€ @€@ö pØ@€ @È{¶ÈÓ. @€ @ {8ì‚ @€ d‹‚=[äi€ @€ ‚=vA€ @€²EÁž-ò´ @€ @È@Áž» @€ @Ù"€`ÏyÚ… @€ d €`χ]€ @€ l@°g‹<íB€ @€2@°g€Ã.@€ @€@¶äg«aÚ… í'0lD©M?p¬›8ØÆNdÃFô·² U¶nu…-_²Ñî¿ó5«Ü\ÛfEÅùVS]ßæq;ó€ü;n2«¯oÜ™ÍôȺÏ8{+í_ú¾dá{à®×zÄu|ä$›:}dèkcc“ýáš'¶«ßÝáùLí8Ïk*Ö!@`g@°ïLºÔ @`'Økÿ1öÁOn%¥[„\lbðÐÛeסvàaíøS§Ùí{Áîý÷+qw‹÷¼¼\;öä©vГì;—ÞÙb_W®ì;sœ½ãÚ®¸×6®«ìʦ{D[3gíbC†õ }í÷ø²#اLn‡·kèwcCÇ{ÿEvê{öµœÛn±¿3n0ÏëΠJ€ ‰‚=öAèfŽ|ónöžÍt!ãJ&C)éW`ï8çÛ´±Êžxpq‹#÷Ügt¨c䘶fUE‹}]µ2bTïÃA6m¿Ñ]Õ$íôǼeªú®}€ÔÃÿß-zÍóÚ-n€ Ð' Øûämç¢!žH ¸¤Àä"ÅzmMƒ½øÌëöÊœ•¶êõM6e¶÷cý}xóå½ï‚ƒmÎS¯[uU]ó¶ãOÝÓ$Ö³Y8t"b=›7 ·­g¼  ¯[õçµ[Ý:@ O@°÷©ÛÍÅB=™Àä©ÃL¢=¹¼ÿçÖ—âªÍ}qµÝõí—k²¢«(xòîÃìåçW6Ç @€@Ï €`ï÷‰^B°ââ7ĺp44l›¤­É“·Í¾c® ÚÏjkêÃ+ƺ0Èö=h¼ wwôXúyüIoŸVŸzx‰­YYwYaQ¾rÔ$›´Û0äññ……ù!‘ÝZw£þÉea€ ùà­ ‡;Å ) k ^]k‹ç¯³cß²‡íºç[¶xƒŸ³Êãì‡ÙîÓ¶$$‹çënÐU•u¶ðµµöêœUqs«ïû<ÞFö¯XZfÏ=±Ì†ïg{Ïg»º§B–,\oÏ>¶Ì–-ÚÐj=ÃFö7Õ5aò0¨ØT—ŽúÑ¥]%lÔsª{¯üõõ :Rîçã,´Ío$kÔýÔ}ÝÑçµÍ‹ç@€@+ì­€a3 îF`É‚õ-ºtÊ™{ ºâ|7®¯jÞ÷ü“Ë]Po+š$~Þæ‰¼’EÈã¶å‹76 v%¯“¥^‚>]9î”=ìŽ[^´ýùù»c/¯rÏ¿^ñÄaû­õéŒ nû»O¡ÕåÍoÛ"†uN{ûŒÃw±‡O u<ùÐbûµvÁÅG¶èïÞžEÿÄÓ÷²¿Ýð´ÝŸ&»ú¡GO¶wpf`;3mß-ž 'ž±—]÷“‡›Ey}]£ÍôöÆzV~•á#Kíæ_=O³þ‹ìÌsg„$iÚ¨lý©‚]®Þ£Ç ç(¯@g öSÎÜÇô,$KÌЮ~ÿû/sü^¼lÊÖž,¥žØíS_9ÎÆoDHîÓ²’ƉÑo~øà63 uÑ{þ'o~!¯ŽcOÞýÀ4pÔѲŸœÌzÓ–Duñ\‰q½Tî»ýÕfÁ®gìªã ñ¿¬¥X—ØkJQaoyÇômV²µÃ›Ò,ÖãöçkiuŽÛwä]±ûqp!µfï<÷ÀæLë± Ãs.:´…XOZ’Gh—|ëã^ ±<ëYÚcÙkÿ±q1¼K,&óÊz+Q‹¼¢X×¶g:‰ƒ¼#RÅzlSïz$B?ô™YÉÍaùß=b±žêµ¡ ”!Yrssì¢/ÝB¬k8ô˜)¦×Î*ò"øÜ7Žo!Ö“÷NŸ‹ó]̧ŠYãO~çÞÍb]ÏŠ¼’Ó*vþßÕâ^í¬ë ^@€@{`ao%Ž ÐM\û£‡ì‹ß;©…%Y]“«µ^o>mZH0' în}9Xzc×翲Æn¸ú“u0ºf——UÛ-7=Yê.ä*³Þ´[óÜßZ—%ùéG–+«¬Ö»ô(me¯ýÆØC÷¦Ïä-ë¼,¼O>¼ØÊÝåxŸÂí ·zV”ׄå>ý\,½þ©àмbYYÜÔîw¹Â×Õ5Øïõhð,;¼Äøî{mq»—h×TwqŠ;…œöÞýšëÝ]ǯw.¯/)³]v¦Ì“àÎÏϵ·ºõZf¹ÝKð©È}\ å• s„•­ÿM>*X›µ*n±ÔÕ6¸«úëqu»ß:q÷Ö_¹„ßú‡çL 5РkŒáû2!¸G«³ÜØ£^xà?¯‰² U¦ÁŠÏ\ñ&8¸8ô-5“¿,ïͱ,zmýîWÙªå›BhÁ>~Øv Þ‡ÿ»À^{iµ½ÿÂCšEµÖãó¥{¬¢˜h!¯Ú\k7üìQ{Ñy\bgôæd†§ø½zÌ]Üõ ªrÔäð®ÿô<ÿî—…gZ-{8Î>úù#CBÇË Ï‹rDÈ=^Ÿ=»õ¼6w‚@€@; ØÛ‰C t²²_ùÅÿػϟa²~¦+²0Ê5ýi?ûöl‹®ô:W¯ƒœÔ,Ø««ëíñÿ-jQÍCîb¿xÁ:·Õý;9µ–âƒ%R£à0¨¨Å¹©+÷ÞöJ‘Úþß?v«=ÅØ'Ð3n½Þ‘yØ5èðèý Cý²˜þñ7OØW~tJX×=>=–£NØ-¸°ÇõýyN³ð–ø¼ÛÝòßã®ò*º¿ŠÏV̺ø)Zeº[Ùßì[ܱέÿÉê.÷pÅgÇò¢Ç•+ÃÿŽÅŸüŽ7Üà5råïjŽ¿~}k<ù?>Åäú®ò®óf˜òȲ¬AŠï_vw¸r+ÿ×_žo¶Š¿Ê­ò ¨(&^±îÑ{A±(OÂ/®¼ß*6Õ„M‹ç¯·ßüàA»ü'·ð8ˆÇgzWþ½ÎúèÁ.È·©œ ÉçSó»Ç°¡{cæ7¬«´¿Ýø´}ù‡'‡“{|ºØ1tÄ–ùìµSÞzé¾ÊqDu\ýÍÙί& xD‘¯Á•ñ¼†ò @ p‰o$ ÐHÄHˆóâ;ì¶¿¾ÄWºþ)®úÓ_=.X=ÓíomÛfŠ#ÿïm¯†—Ž“µ\Öô·¿ÿ€`]Žç¥$‹Ûã»bÒ»¢<‘2è ѦÚ/u±Ä­Kp¾ôÜŠ¸+¼?ëÉâ¢{·¬¯»l¡ÖÎçnñ{¸eÀDÖx½T4è ¨-Ø…Ey¶ûô7’ì=Û îðJ¬-àjK÷*™,MÛtï»c®CÑó0bô–~jÀ@âøÁ{æ… T¹ƒK+î?)ŠÅ@ Þb¹µ­?÷Äòf±÷Ë¿hÞÚ¸Ú©ï1‡@¬45´@mK„Ç2És1IJÄbQ ü—}PáëWŸjg}äà0x¤‰”‰b=Ë; @ ›ÞøÎf/h€:L@VR½nûëœ`Ažê]e<לÑY*²¶Ë¢žšÑ|ËÞÖÿ×ù{z¶½.ex—›t¬3yVR'·kYV_‰Æ]$>•a>Y$šëj=ÓýSmžÇ]Ç’œƒ>??/ˆ¶¸/¾'¯UÞ±(Ž] ÷T¦LÝ’~OÏ‹ö‹—²Î+ùˆÑ‚{xœW\1âsžÞqwxÕ›,ÑҟܦåÔí¬Hf×ÌÊ.?u¯Q6aŠghO“ŒMõÄû¬Lúš= %×KWÖ¯©ôéÓíÙ±mÉ{§š>ô™#šûkN&J”¸ww{–ù}ݵ=Κ ã2 —âÝuo^y~UH¤½Rb¼C€²EàoÝlõ€v!@ ]äâ;ÈãŠz¬n»²kŠ´X6y,ºâ“õš2õUûì׎7¹M«(–º#E¢íì¦tKž'a<ÿÕ5!ÙWŒŽÖääqq9ºIÇõõ^W[Ÿ¶êŸ®Ë¶ öäI÷x1ŠÓÐ%I.+^=–~ýº.Y«u®b×cvróÊœ•>PÐÐìÕ +{Ìr®ý¯¾°Êw½£%5± ²ä§+©š¶-¹¶+´Bîî±È³@ƒ;¯²¶Ç{qÂÒ®} ­Lù¦iëvFIz¨þÔõÔ6“÷Na?ùÆ}!¶_ƒQ‰Ë§é¹×L 5¹áê‡My (€ l@°gûÐ> vøÂwNl(ë=–úò‹þ/í™ æz,°»$ËmZeü¤Á![x{]}•U\ó¯Ç¢„dOüoqÈP/!wáŽnNfÖØ¸%¡W<6ù^_ßú¾äq;ºÜ2]Y[õ­w·u ~¨(ÉÚÍž0-S)ÛPݼ[‚VsÐ+6Zeº'“‹‚]û”$M‚]ÉÿT´OYìcIê-nïè{Yb?«¸úy/¯Ù¦ša>ý\²Ä¤~š>ÆékðiÓÔ‰íãOݳ…`!šß\ËʯÒZƒ¤WB8°“þÛ2¿ú?{$xr´V}ê3/ËùÕߺ/x>( î’*Qa,òbóäC[âýãvÞ!@Ù €`ÏuÚ„ °d½•{»Šfir%K-Š7™p™®®ªo—›´Š'<Å›«‘˜‹EVü?ýöɸÞ“â&YW‹ƒ|¥!ƒ`÷IâZž®-èÄ•u«77‹QY××®ÚlŠyE.ߣư•žõ\â;µÈí= öƒŽØ%Ä~ëÅHË¢-ᬌærƒ×ÜâÑ^VêçŸ\žZÝv­/Ûš>ž¬0ˆÇXW›ß8tBó²” _E®á±(ö]™ð“Ó›•ô{ÃŽÛz»4`£Á¢èa+b]z×ó§,ôÛ]FÒú¯úÖ¦¸àë^½˜rÝ»xÜúš•-®Gçª. `èÞŠƒæu×Kƒ»Migœ½¿é\¹Íë•/B%›ÏkèÿA€@Ÿ%@Ò¹>{ë¹p@ §ˆÙ°c¿•,ëˆãw ÓÅmŠIÖ´kŠ5ŽåUúÉ"Ñ‹bÜ£µTÛ4•YLL¦õhYղʔ=†Ûä„«´Žo­d²¾§ŠùdÜqkõuÖvMé•,‡;%¹æ5ÿâ•'Ùw¦}í§oÝf¾q œD—ï(ÆU¶«H¬k =•ä~mÓ4zQ;¾àÕ7»I€'³·«c<Ë{2;½\¼c¿“sÂk°$é Qênó‡3¹E7ó÷ùåçßxž”Û zèY§O{ß~-¦lQQ;V’ÏgÒ…_§ê3§wÓú!GOnñüêz/uO”«®‡}ç×§:N³üäæw…|}ñ˜sËë×ÀÔËÏ¿‘|Pƒ+É{•ÍçUý§@€@ß%€…½ïÞ{®èa$4eap‰í÷]p½çC3m£»H÷+-Iæ’—¥,èwüýÅ䦉à4å×Åß|sH6vç?^4¹l+)™„˜Šb´Uÿ‹Ï¬îÃr•O üd¯´±’šÑü#—ir·–Ërœ¾*¶{·\Ú•I\Óµ©HpÊcA‚zÏ>sÖİ}ËTffšê-Yäf­©Ù’ÓÒiÿ+žY?%/K›ý™Ç–ÅÝòþ÷›Ÿ±Ï^ñF®¹qåÓù)V[7Ɍꊻ×\÷±è%ÇSÑ=¼àâ#ÔEp ˆÇëåMP¹í/sÂs3ÇŸqÖþ¶¯{e(ö]ƒ9ÑJÏíè»êÙVÑ@Ä'.;ÖFŽé¦¡Û´±ÚñùÚãà„âì?ûõãüêC‡—†z±½‹í…­ þ”|oé¢õžoK\¾bÕ?þ¥cü¹~ݪÜe÷i#ÂÜëñÜ×^ZÓ<¸¡mÙ|^cŸx‡ ¾I uÓHßäÁUCè¶ä~~ÓÏm1m•:+=tx¿f‘/@®ËW]~÷6â%6“ES\)«yœ_\SÅ%ËQ'ì¬öÊŽÞÏçäNfœæ")Îó<§­åWÜJ›´ÞkZ4ŧfo«žíÙ/Ž¿¾êa¾íx¾Â Þå Ø4 3¥K8þöGµèg<>9½›¶Éu~ÁÜ7bÈ“ÖÚ7ÎY;å]öß_óx ‹³DúÌY»´ë̑˻²öÇ¢éö4˜‹¦ì»àsG„„l¬IÞc3ÑŸX”àPâ¿1‘pNâ_}‰uY¦•‘}{‹‡bÑ É´ýF‡ióâ Â?~ÿ¬%§Æ“hç Ùûûos^rå&X»ê,ö×ú½L®+¹Ü™>7ý9b‡¹—E€PÿŸ,Ù|^“ý`€ú{ß»ç\1 Ѓ ÈÒ÷­Kîp1ò¸­sAžZ$‚ýøÿÙ•_ú¥Æ:ëx‰Í<‘\²$cµ•iþ÷¿~¼…%^ÇÊòþ3OØõËï=Ð<׸2¥˜'¬·µe%{ûãožh#®¾·–u¼µz¶w»®å{ÎçÑûšh²¨Ê ð}ìX¶hCrWó²,·I7òynO&8[¶hc ~‹=¾]]¹o}÷Ò»B“÷Pí(½öãs·‡drɶ›}õ·fk|r»ž¯¿Ýø´}÷ w6ÇokÿAGLJf{½?þú½-Ž7Í" A¢EóZz%´8¹y„¤&ÐS¿â}²ôkâÖ?>gk\k&Y4ñ³oÏ÷6¹]üÕ·»o}9m¦~Ý¿Ù>o½>_<1a²dûyMö…e@è[rF4-å«®oàj!ôdrV"­!>ßô†õ•A¬'…c¦kSܸ,²²$KäKp%Ë–xö!^ÙÅ“1½ÉãvdY1Þc' Á–ûœò©¢sGêîȹšlÌøA!Q™¬°©Ó¡u¤®l«l#G÷÷)çŠmµ ryX´Us.Wr%XÓPÒÝÖ¹q¿÷i^x nÄù¸oGÞã<ökWùµdìÐg@óË˪®¤tr›o«h IŸ™!î™"+¾Xéó“ôHWGwy^Óõm€ Ð; Ø{ç}åª @€ @ ‡À%¾‡ß@º@€ @½“‚½wÞW® € @€z8{¿t€ @€z'{O\ @€ ôpö~é> @€ ôNöÞy_¹*@€ @èáì=üÒ}@€ @èì½ó¾rU€ @€ Ðà Ø{ø ¤û€ @€ Ð; Ø{ç}åª @€ @ ‡@°÷ðH÷!@€ @ w@°÷ÎûÊUA€ @€@'€`ïá7îC€ @€@ï$€`ï÷•«‚ @€ NÁÞÃo ݇ @€ ÞIÁÞ;ï+W@€ @=œ‚½‡ß@º@€ @½“‚½wÞW® € @€z8{¿t€ @€z'{O\ @€ ôpö~é> @€ ôNöÞy_¹*@€ @èáì=üÒ}@€ @èì½ó¾rU€ @€ Ðà Ø{ø ¤û€ @€ Ð; Ø{ç}åª @€ @ ‡@°÷ðH÷!@€ @ w@°÷ÎûÊUAès† lãF±¼Ü¼>wí\0 @½“‚½wÞW® è…n»îöÿìݼÕÚÇñ‡”îî–’N)Ån½êµQE}Q¯…z-ĸ׮k Jw#ÝÒ]Òïú/˜í>›}‚Î>üÖûáìÙ3³Ö¬ùÎösßgÕ,5ÕJ/yÌÝÕªZÝÖNšk kÕ=æØÉÜQ£r5}¦–”)cFûöÝlÞàq6¥ÏP+S²Ô1UÓ9w^{Ó1ûÛqQ‹–V6Jyñå«wN-ïS¥B¥øN‰¹ýÇkœüäßïÚ×Ý?LNÖãʳbì ûÇ57WžSqÿÇU!NF8£ØÏ¨ÇÍÍ"€@¬ dÍ’Å^ëòl¬ßÆI­£Úõ켆MìÙ·_µ†W´±%+–Sþ-W^kÿ÷À£ÇìOh‡‚îOÿÝÃòäÊÐiiúØ©2;y¢ž4>ÕYžªûOu7N…@R@ÆTS*‚ ¨ÀÆ¿6[‹†çÚ5m/·ï~û%ÑóÏ„ æ+àoó›>½mÛŽíQo9}úôvøpÔCñîLŸ.?vøx3Æ[bì8Uÿùß—©çTݪ¼y*… *èaOJ €I˜0u²ý6bˆýë‘',Þ|ñfºîÒ+ìÇ^ŸÄ9^²hqôù÷ gïpÑ%Öë…ûÞi ·×òÿt{ÛrdËnmšŸïÎýÁ1➇,{¶lqÊ*_ºŒýüÁç¶pø$ëóÑ—V¿Fí8Ç3gÎlÏ<ÔÙÆÿ8À `ß¼ó¡U,S.tŽz>ÿšÝ|Å56{àûÏ+o‡ŽEn´<·™ýöñ·öçˆÉ6æ»~öè?î ÍSøöÚ“÷uôY~ìõ©=ußÑÙíÚK®°ûnºÝÎruÒý_Ðô<NWŸÏßèi󇌷iý†Y÷g^ õ¦W._ÑÞé ^ç^±Çîºßo뾞¾ÿþõÏ~z¸ûÛ‹ž2|HJªZál_‡ÈaöÒ/‹ ]Ýö2ùm }vºó¾Ð=ëœÄ|Ï.WÁ_§I݆6ù—!Þ¯DÑbV»Ú9þ¹Éò÷_Û;ϾºçàÚÁg|¹sæ²WïjSûóÏVuOl @Á|ùí×ߴ¹ƒÆÚ÷¼•GåéÙŽíåÇžö_õ\ôœtü«·Þ÷×øéýÏLvåK•±ïzü×—ñæÿ½gº‚~#í/lé?õ{ø÷“ÏÅÙþ¥Nõ¾¼YFûëè·|nÝþ”øî?1ûðòÙF@àDØOTü €À)xúß/YF7'û…G»Ä{åBù ZµŠ•ãW ¡`=¾ ¸ ªå¹ÍMϯÃÙ§?~k­›6·¯ÞþÀ¡¿ l_ýòƒu¼ín»¸E«8euïú’M˜>Åîëú¸mݾÍz»`9<ûäÕwìÆË¯²þ®q¡ãóOÙÁƒmÀ§ßùEáTPüùíüFM¬óÝØðñclýÆ qʾh4Á×®>KV.·{»v¶oûýlÝv—½ÕõÊèß'Ø0—_é“ï¿¶¡ãFûíð?Óçβq®¡CuøèÛ/láÒ?­€kìè÷Ÿ¯L½ó»=gÝz½c nÕp!§õ›6Zïý|1?îo#'ŽóÛ Þo¸¬ƒ}ß¿=ðì6nÊ$?7þ[î ¿d¼ÛÙ²fõÏ ËYq|£… ôù4þg»Ù(7DüŸOw²¾Cú€ý^×è¤Ä|Õ€ g­€|š»ÿ­;¶Ùv7ú@–;wí²Ž/üÒ5¢œåO-S¢”[{ ´ßÎzÖY¾îß¾ó‘-Xò§½öÁ»~݆^y˾x«—-vS^ýà»°Ùùöà­w….uÎÙU,ž¼¡ïÚ(U¬„òãì<úEæ}>úʶïÜaO¿þ’½ùß^–Ï-\ø…»¿œÙsÄûHÌ>ڵ؇ €@rŸ\9ò!€§I`͆uöò{o[·Îÿg?ôïkâ©I­Zîœ9íaP÷9Ôg©VñlÝüè}6xÌ¿O¤z¥u­ õ>È^éÕÝÕõ'ü4Àî¿ùöàs]¬i½†ÖªIs{è¹'CÃöá{dÕSüè‹]}¾|.¸º½óƒ¡ke‡¾äz¯ßÿÌã~÷ ÑÃ-C†ôÖ垎öá7ŸÛ”Ù3¬L‰’v«›£Þ{௶gïžðì~{ÁâE¦ ½íy­íûßúø}¯ºu:dWÝ»`µSsßûº ^e)°×µ4º`ÈØ‘.ÿlß‹^Ö• ?ïý/çWרQ³JõcFøƒÉü£…5´_sòUGÕcßþýnß6_bR}u²Fctu²’z×µ’þ+ïw·Y æù}ë6¬·ú5k›ñÈ¡ÿ›·üuŒÁå\ì6¬cíî¸ÞÛ«ÁÎgþàñö”y ç-5ªUÏ_÷ë>?úÃ3çϵ{n¸Õ äËg«Ö®‰–Å7T<ÿΑƄL3Ùs?n½¾úÄþÕýȾœ.è¿ûú[¢Ö=j;Ö®ksÎ÷N{÷íõG—º†¡Ï^ïé&͘zÌý}ÄåøŠ €@²Ø“ÅF&@àô |æzïºøR{í‰g­ùu—žPeÔS¤ù.ôsäÇLžì²µ×»Þú³Cßµ1b‘gm<äzÏGóAº¾k¸ý˜‡ÊÏùc¾)øOã¦þþ5ζ†ækxôÛŸ|g¿ž¼÷a_ÖlWfrRíªçØ€QÃBÁºÊ˜:{¦- :+`L»÷ì± nîàwgÌÁ÷W¯TÙ2gÊ”ä!ñ‘eFû>uÎLÓ°ó_>üÂ50übƒG´w>ý{õãñ櫆 õ®üÚ;öÕÏ?Ø@× €^ÿ’šô/]¹"¬+ß~ט0Æ-þ¬#Ë›æîé‰>dÅ qAð›8}²Ùy^ø÷‰¿K:vTè”uîw©Q M°k÷îÐþ¤nhD†þ)©!£RÙò¡{ˆoŠÃñØ'µœ‡ €@Bì ép H¥êy}ìågÝ\ß|osïG†o'T]õ¢F¦}ûöÙ_[·„vtåªgUÁi4”<2…S:¶aó&+Z°°?­¤›+­aÒß÷ü82[œrdi8}|IÙ•Ö¬_çéÆ\¸`¡8ûçKéâ%B#‚|jxÐ}.¹ jÖñóäëV¯é§%Ì]ô‡eÏšÍ×'(çD?dw|þi{ÜMx­Ësvø‰Ã6ÑõövzéûsÙKª¯ê±jÝÚPuä­šÞåÞŽþŸ†—ÿ«ûk6pÔðÐy m虬u 1‘Iu¾°Ùy¦†ŒQ~/w=õ¨½ñÔóö÷j½ºžuýæ>øú3ëî""{öƒ²×ºÞÿ éÙ(­\»:ØåŠ…¶“³‘É5´tq#(®ºø2øë·8wá_T:;ö¿8ûäÔ‰< €D °GŠðˆy.XìõåǦùÓKW­8¦ÖFž4?W)[wtú_Û¶º@|»sq3ßû~^øv„…ï ßÞ´e³ÿš7OÜת¥O—Þ4\=½ÉMZm?ð/C½úËV-ßÚVƒÄ×Ý?°™óæØO>l¦Mñ _¼ùžï¡ ˜„ðg£ìóF¼:îý~²ï~ýÙª»yÙmÜ\í;®¾Á¾u ÷Õ¿üKª¯ªqèh TiÚœYÖæÖkL Ðišƒ†ÿòÚ»ÖèÊ‹lùê•Áiñ~nrnZø-2åÈžÝm¬ë\å»­ónä@N;¿q3»ÚÉj4X½~¿ÏÈòôýÀÁÑv'¸/s¦ÌqŽkÚEøï=ü ¼ýªëÝùnÄÈ›çF—T¯TÅ/x~^øöñ؇çc@ä °è\råȇ¤7þÓ˘+Ýñ#+¥UÚ¹k§jÃ7«\¾Bpø„?ë׈;´½YýF6wÑ‘ÞI «÷™[TN½§Á?½?^s“šÔ°ÅÿÍëŸ'K“z üŠéÁõâŒç‹êÁÆAÒðð¦®Î –ƒ¤aè5ªTs½¬ø].‹OÒgðŸšó¬€þ‰WŸ÷=Òê‘Ur•ò•â¬à~$Wô¿;wïòòçý{q4Í‹WooD¿ÿâëÞm–›ëýúG=}O´Vù—kr}5:@«­+ˆ]¹fµ®5dPµb¥àòq># äVÎìÅ‹s^óCÏ?Î÷E®zK€TCÎσ~³[:Ý¦œ¬$ÛpW=›ŠeÊÆ[üMZøçØó ·ê¼ëYר••«úóÓ»u”"ï?¹ö¾0þ € ¿ÿ?•dd&  €ÀéÐbY¿òœ_ÕZ5 zg¸^`m?ÿH¿RöE-Zº•Æï?i•}æÁÇü\ušO®º»rdžµ[±f•é½fK¯ôzÈ­4¯×–us'©Ìë/»Ò¯8¯`Ys¨_uóöÇN™hó݃¤¦®C«¿_Ѧ-TØ×µB鲦Eíôz<õ8¿ç^3·cçNë;l /Vy”ÚžßÚ¯€¯EÈ4*àÚKÚûÆÐZý\yÕ㟔´dÅr¿ œßÓªúšÓßë…×,XôLeLs ÜÉM#'d§ÕÞ/k}‘ˆð&×wÖ‚¹~M€;=é?UÿÛ\³zÅŸ9=jõ# ¾éÛÛgïùûžvãÿóA«ã¦|òÃ7QËPÆæ¹ÿßü‚uš/~ó•×ø×ÉM˜69jžäìœ>o¶ÝÔþj¿Ú¿Ö>x³ë‹¾q"¾²Æ»k7®Sß?­V¯z½œRð<#ï?¹öñÕý €$&@Àž˜Ç@T. W›}ç' O“gM·ŸÿÇ»“~äƒ\½‚M)¾9ÃáùÛ~ã?ï}GöD»µÃµv·›£<ÃLJš݃wÙ&7^=ÅzǵÞùþü»¯›êzNCÕƒ4sþ÷š¹·}Àì~öi€îY)¹¾Z— s·g­D‘bþÚz{ËÆM톎wû!ëÁõÃ?# ´hŒ²œ•ÙÆºû_0t‚iåøûÜ+÷ôz¾øÒ ï¾áç¾ýö‡6oð8¼?jÚw< ÞÅWv°ÿ¹·_³n-…{}âïO##ôû‰ï÷þ¾›C¯ó!_ö¶?GN¶gzÌn{ìAÓs®S­¦/6òþ“kÔ‘O@ŽW ]áúUŽú;Þ¬œ ÚÔsX0~?úd×UCŽ‹.êÓpâhI½âz§µVŒ?‘¤àK=Ù«×­9®@=òš ªÕ‹>^=îÚ§…ì¢%Ýþû} ¬ã¹ Þé5ë×&».†®ÀY÷ß¼o]K« k±¸„ê–_åQ/r°î€®•PŠ4й²ÌâÞ™žÔ2”G‹qk(Ž/Öy'’´ÖÀ¶Ûã¼ ¡ò´þB÷[Ö<ûøR´û?Y¿íø®É~@$@ÀÎï@@@T(ÀøTøP¨ € € €ìü@@@H…ì©ð¡P%@@@Øù € € € ØSáC¡J € € €°ó@@@@  °§Â‡B•@@@ `ç7€ € € €@* `O……*!€ € € @ÀÎo@@@T(@Àž  UB@@@€€ß € € €©P c*¬UBˆX;inľ"€$G HƒªÉÉF@à´ÐÃ~Zع( € € € °'ìÃQ@@@N‹ûiaç¢ € € €$,@Àž°G@@@8-ì§…‹"€ € € °{Â>E@@@à´°Ÿv.Š € € €@Âì ûp@@@Ó"@À~Zع( € € € °'ìÃQ@@@N‹ûiaç¢ € € €$,@Àž°G@@@8-ì§…‹"€ € € °{Â>E@@@à´°Ÿv.Š € € €@Âì ûp@@@Ó"@À~Zع( pê–,YbcÆŒIÒ…·oßnÓ¦M³5kÖ$é|tèÐ![ºt©Ï·ÿþ$ç[¿~½Mž<Ùtͤ¦}ûöÙ¼yólÁ‚vøðá¤fã<@@ ¦ØcêqQY@ yË—/·FY»ví,`ÕªUvýõ×[îܹ­N:V¬X1+W®œ½þúë æûüóÏ­téÒV¶lYŸOù[µjåøø2N˜0Á6lh… ¶úõë[ž9êŒg”ÀÚIs“}¿»ví²¦M›úžï\¹rÙÖ­[£–µiÓ&kÒ¤‰ïµ®P¡‚µiÓÆÖ­[gýû÷·;wZ§N¢î=zô°|Ð2fÌè¸>ÜfÍšeÅ‹·!C†øÀ:ü¢“&M²óÏ?ßT·sÏ=×î3gδaÆY¦L™ì믿¶:„gñ=é×^{­}ÿý÷–/_>»ä’K,sæÌöÛo¿ÙêÕ«í¼óγ>}úXΜ9ãäã  .P¤AÕð¯l#€©Z€€=U?*‡HnÀ>cÆ ßûX×°ùgŸ}6Øí?5´]=åÛ¶m³/¿ü2α`Xþ< ÖuBþüùí­·ÞòçªÁáÀqòñ@ˆUöX}rÔH@૯¾²_|Ñ÷|«»wïÞþìtéÒEÍ5zôh??¼bÅŠ~®{äI7Üpƒß¥r‡Ô<Øï¿å–["³ø ¿}ûö~ÿ'Ÿ|KD©¸@IDAT:乿šk,K–,¡ýÁFp-õ¶I½ûêéWCÀ7Þì}ª×¿dÉ’¦^ù„æÀ‡2° €Ä€{ <$ªˆ¯€Û«¯¾ÚÏ[×sÍ O(Mœ8ÑÖâoÑ’æ´k¡7õ¦Ïž=ÛŸ¢yísæÌI0_ƒ üq­8¤Ä®äÑœöƒúlšó®T¤H˜û/aÔ¡ÑJá× ;…M@@ æØcî‘Qa@ qõx÷ÝwV£FÄOvg¨gZ©@þ3Ú-ô¦¤×Ã)­]»6PÇ—/2ò%v­ †õ¯•K,Ê òõÓ> € Ëì±üô¨; €zØ'ÃÜ5<¾ÄêYW òdÈÁ¿’-Z¾È<áùâ»VGçF^+¾<:7ÈäÑ> € ËÇ÷ÿÑÅòRw@xvïÞíé]èñ%­0¯¼ï<È£ýñÍÌ£üz•›R|×ÒêôjPмV|ytn´ki? @ˆUöX}rÔ8‰ÁöíÛ·Ç[jpL+¿+yvìØ‘ä<:±`Á‚þü ¼ÈÌjæ®G^+¾<*#8ä‰,—ï € €@¬ °ÇÚ£¾ €@ +VÌ—ªÕØãKÁ± ';È£…è‚`92odòÇâË£ý‘׊/Î Žy´„ €IJ{,?=ꎜ$Ä‚h]&ˆƒssæÌi9räð5ŽEV'ØäÑñ`;8_½ò-˜—žX•”œY.ß@@X `µ'F}@(Uª”/uêÔ©QK×Êë ˆ3fÌhuêÔ “X>½;])xU›¶“š§víÚþzÊ£w¬+­\¹ÒÖ¯_ï·Ãÿ>|Ø‚º‡_+ü¶@@X `µ'F}@h×®iv½û€¯R¥Š;ÖòæÍ{L>v €@‘UƒM>@T/@ÀžêDÌNEÀ.gè²>`À€Ðpu-þÖ±cG{þùç-sæÌQ‡†Ìëœ 6„Žk®{=¬qãÆ¡}áÓ§O·›nºÉ÷àû‹-j/¿ü²ÝvÛmÁ®8ŸzÝÛ“O>i={öŒ3 ફ®²·ß~ÛŠ/ç|¾ €‘ì‘"|GÔ,@ÀžšŸuCŽ œhÀ~¼êùž1c†ÐÕc¬ŸX9ê×\ò2eÊøÅå"{ã£å×bvš7¯yêåË—÷=õÑÎ ß§À}Þ¼y¶uëVߣ¼Û=ü¶@hìÑT؇©U€€=µ>ê…„ œê€=ìÒl"€iJ€€=M=Nn4/À¢siþsƒ € € €±(@À‹O:#€ € €¤yö4ÿˆ¹A@@@X `ŧF@@@Ò¼{šÄÜ  € € €@, °ÇâS£Î € € €i^€€=Í?bn@@@ Øcñ©Qg@@@4/@Àžæ17ˆ € € ‹ì±øÔ¨3 € € €@š `Oó˜D@@ˆEöX|jÔ@@@ Í °§ùGÌ "€ € €Ä¢{,>5êŒ € € æØÓü#æ@@@bQ€€=ŸuF@@Hóìiþsƒ € € €±(®pý*‡c±âÔ@@@´,@{Z~ºÜ € € €@Ì °Ç죣â € € €iY€€=-?]î @@@ fØcöÑQq@@@´,@Àž–Ÿ.÷† € € ³ì1ûè¨8 € € €@Z `OËO—{C@@ˆYö˜}tT@@@ - °§å§Ë½!€ € €Ĭ{Ì>:*Ž € € –ØÓòÓåÞ@@@bV€€=fG@@HËìiùéro € € €1+@À³ŽŠ#€ € €¤eö´üt¹7@@@˜ `ÙGGÅ@@@Ò²{Z~ºÜ € € €@Ì °Ç죣â € € €iY€€=-?]î @@@ fØcöÑQq@@@´,@Àž–Ÿ.÷†iV göV´Pá4{§ãÆòäÈi3d8—æš'A ëYY,g¶ì'¡¤ÔU„î+[–¬©«RÔ@à” °Ÿ2j.„œ¸Àe­/²ßl ‡O²iý†ûÏÿt{ÛrçÌyâ…ÇX µhieK–:)µÎ“#—µoÒÚ>|RÊ£”È—3·uºúv+Q nƒU³sêZrg§Ü…OQÉ‘÷—ÍìW5»ÐÒ¥KwŠjÀe@R“{jzÔH@àò .¶_~Ó&NŸjw?õ¨]~÷MöÁןYýšµí·¿=£z‡«T¨dŸþ»‡åÉ•;±¤R°7vöT;tèPÒ3qfª(]¸¸-[·:UÕédTfÓ¶-¶ö¯V­L…“Qe €Ę@Æ«/ÕEÎX]bs-°Ÿëb‡ö+x_¹vµ½Ýõ%kX«ž2ñŒðI´·1p8‘›.’¯ é_ßñÃO¤òžF¼n„DÖÌgÙšMëOc-RîÒSþ˜cW5ocó—/¶¦Ü…(@ Õ °§ºGB…@èÒgpsY³ù¡±áêýûÚ¾}û}ஜÊ”³÷žÕžú÷KöôýXÕŠgÛ¸©¿Ûû_}êzç§„ ¯S½†u¹§£©·:s¦L¶`ñ"{åýwlÜ”IÖ¢á¹>ïõÿi›þÚìóÜyíMvM»Ë-|ßÝ×ßbµ«žc÷víl?ð¹uÿäC»°Ùy¦áêJ?îo/÷|Ëö8à¿Gþy±ÓS¶rÍj«T®¼]Ðô<ûð›ÏíÝÏ>²Â Ús7Õ±`¾¶tÕrû¼÷wöéßXåòíý—ÞðEõxî×?êé¿ßpY»ãš­l‰R¶péb{ëã^6pTÂxóõlѪe¡ªÌ×ÚÔofý&Œ°-;¶…öwh~¡-\¹Ìf.^àŸAÓêu­J©rvVæÌ¶Ùõ‚NZ0Û_:?GÖlv~­†~趆Ú/]»ÊF̘d{÷ïóçT-]ÁÊ)f+7¬³&ÕëØª k­k4¨Zº¼5¨\Ãr¹u ¶íÜa V,± óf„iB8º¡ùÍ-ÝuJ*ê÷¬Û²ÉFÎøÝ6nýË?¯fÛµweHŸÞª—­ä¾þ>ÆÍgDAµ2­fù³-Î<¶ïÀ~[³yƒ˜>ɶíÚa—6>ßÖoÙl]=”2fÈhמw±-Z½<´/SÆ#ûF¸kïÚ³ÛÚ6la¿MeÍÏ©gÅÝðõ{vÙdg4{éB_†þ$f¤sЏçßàìs¬¤»?ÝÓÔEó´;N*]Ø9n\kŽHÌPÿ-5u抗²,™³ØZw¯ÃݳÑs ’¼ô\Ê)áþûÈìŸíô?ç‡~YÜsoâ~å‹–´L3¹^ð qÜ«”*oå‹•4åÑŽ¹òÚÆmÙpgªë))÷§^öýî¹Õ©XÕ&ÍŸdå@à `Hüð¹EH? èkeJ”´þŸ|k·u¸ÎJ-îoLÁpïýlÙªþ{ֳβ•«Ù—oõ²Q“ÆÛ­=`{÷îµÏßèiÅ‹ êªV8Ûú|ô•mwáÓ¯¿doþ·—åËǾxã=Ó‚v³ÿ˜oçœ]ÕšÔmÂÓüy•Û¨VÝо«.¾ÔÖl8Ò«Y­Re{³ë VÅ5¼ùß÷mИ‘vï·ÛÝ×ß:?rCõ?o¼ÕÕ®çëªÆ~>ýŸoxx÷³ÿX—WŸ·›7Û+wuõihë7m´Þúù¢Ô 0râ8¿}ßÍwØkO>g,Yd÷?û¸oœÐ°ùKZ^yÙÐw]«dÁ"¶dÍʰ}™¬pÞüÇL1(˜;Ÿe?ºøW}@Ö®PÙ¦.œk¿MeíØn—¹ ¶¨ë©W:Ëx7µ¾Ô åÉgçÏ´‘3÷Aë5.È æ"«¬2n÷¹Õjû`~‡ r‹å/d7hî‡vÿê þp «Ö²úgWÕ/rãb׸ F†Ñ³¦Ø°éýµ¯;¿m¨þZL¯Aås|p:xòXü+0W ¤šå+ÛEõ›ºÆƒµÖßÙs–.r.E]]šùSvººUuA*^ ¤+—,ìòçt÷»Áö èeØ¡é¾`¤ †UFw fPJŠ‘#´¶€â¿±åëטî72…‡OŠáåç¶´sÊU²…®¡fàï£ÝÚ‡ì¦V—X®°Eë.¬×Ī»FŒi®`̬ɾÁ ðÐõU¯JÅK{ÏA“ÇX†téíÆV—Z¾\y|õ²eÉbªW;×p¡Æý²•Õ:4» ôl’z*pñš¾ñÀÎ@3F€ö3æQs£ ë? üÕ÷ô=ûÐcöÊÏøÛY¼b™õ:кú¡íܵ+Î-þàzÞßúø}¿oÒŒ©6ú»~öÄ?´‡þõ”5¬]׿.œo÷u}ÜöîÛëÏYºr¹}özOßã®ógÌ›cMë5²>CX¶¬Y­vµ¾Q@Áõ¯Ã[þ¼ù|Pÿ\÷‡®»nÃk÷Í¡ïÕ]¯Þúž_ü7´/r#¯›‡~Ñ­×ØºGzÕ«¾Û50<ô¯'mÞ¢?üéƒÆŒ°9ƒÆXýµü°ÿA£‡Û÷öð Oû<F³" ¹‘Z¿aƒ"/ë¿k/¥-;·ûϤþ)Q°°-sÁãä?fû,KÖ®t£ö[F× T¯R5Üg³~ûÞ÷’kßú¿6Ùí]i•]à;oÙŸÚeZü—qC]ÿrÿ] {öíó=ñEñçêvÐ Ö¾øRqWÍ¿Ÿµäˆ•®S×]_‹•mÛµÓgÓê÷½Gñ½Ü~Ças=àÍ}0ºÕÝ»渞ïQ3'ûÃê9WžÚªøïº?m«‘A·z»•¯€k(È↢ïq¿¡2EŠÛêëC#”Q  T•¬\b¶¿É±Å|sRŒU©éGüØÖwVèàScÆ*g•”ûS>¥­®QH½ö$@3K€ö3ëys· ãÿë÷“Õlwž]óÀ?¬×WŸØ×»þÐmwûÞò¢.p Oêu’SÓÐðêg À>ùþk»ð–«}°ž×õ¬7t½æõkÔö§gu=ƒJ †›Öoè·Ö¬kÛ¶o³ï]@¬€]©Eƒs}ý¤°aöNž/_æ{ìÃ÷En«Ñ!Öulêì™vn‡‹}°®ºœS¹ª]Öº%°Ï²íáŽ,£Z¥*þ:s\#„î#ø§²µ’¼¢¥ `ß±ûH`íœhû¤U(VÊÚ5:Ï*•(cÝëÁSÆÙ Ä+•p½ö¾ÃíêñÕ?¶®íð¤^í ©'VAžzȵ⹆Œ«‡^ÃðãKk7o´&Õꘆ¾+Þâ;Õ%Ö•oÅúµëîû¢ÕG¦h€Ò×ˬl%õ2kxn×3¯àXÿt_š; »/åzßÕó|ðÐA¸*Ÿv¾áiù†#Ú§‘ ;vïr=ë™ü)I1R½ ‚¡îʨ)áICÊU·` @b†º®þ{Ð3ž,42 x6ºî¾ýûCÁº®§òßýùK[íæÉë|9ÁºŽ«ŽPÌ>O+ þrÿ )eΘÙ&åþü‰îì @àÌ ‡ýÌyÖÜ)¤ý.ÐPwýû—ëݾ´Uëù¯Wí×Þh/öx3t—kÖ¯ mkc£ ìÊ–(í÷erAS×C}ÕÅ—ùùâ[] 1wá‘ 0é¹:n”=v×ýþ}ïMê5°ñÓ&Ûø©“íÑÜk¹\0w~ã¦6bÂX,Ú´åȼéàû>7_;}ú#åû"?W¯û;` Ž]wévÿÍÿ°ò¥ÊøF‰)³gørŽvª§…>K¸¹àJ/<údh_øFÉ¢ÅBsñÃ÷ëunš¯}¼ yiN¹æý×({¶iX¸×+–ÚЩã}y¹²åðsЯoÙ.ür~;·;$±á½ç Þ8k˜üuÏõ§­Ü¸Î4”}óö­A¶8ŸZ,O÷kW¬â{Öw»Þn-RÌ7×ÉÛ#$t]͉Öý+åÌšÝZÔ¬t¾v&߬^s%==ù(ðTƒ€zý çËoƒ¦Œõm `V ¿-›Z ¼)žäü¾’b¤2W¹9þáIkxÒ°óåa«Ã'f¨ 5B\Ýâ¢ðbü¶L”ò»‘I_ÒúÑyV¸çWÞ5ä¤wÃã•ä&ë éþ•‚iI¹¿ oP=³ð9ðÁq>@Ò¦{Ú|®Ü¤1Í]úåO~n¶†z‡§¾nHü —wp½ÊuÂwû :8("êg´zihºþiØt¹¢%ýPt £Öðúhi·[Pî—±Cýœð²®—[C¹µ šJÍEWÒ|ñð¤áî™Ü;l¡¶àXð©Åß4Ì^i›‹>~ît?$^=º‘A·ÎQ0«2u-¡óÝpñŸÜ|oõŽk¸u4„[½ÊARO¹’V~×¼tæ“ÜÐ{ÍéVÀ©TÈ5(šž;{N«êÞ®^% •WÃÂÙnZ@dïº?!?I1Rý´(`xÒ‚wARC‹†±‡¿=1C54ÈRCøÃ“ž©:”´*»†ŸçÍù÷ïBNÿ¸ø*?BÇõ›_¤NùÔÛ¿!b”‰öÇ—»¿ð|ùŽþFµ? @àÌøû½Ïœ{æN@˜xû“÷í<·€ÛOïæÑÆuê»×¬µ·_>üÒ ¸ éÛ~?ǹ¯ÇîzÀÏM×ðu m×ëÐÞ;ºø›†·+¿ö)˜Õ+ÕžíØÙç×sAÒ°ø¶ç·¶í®u¾ë…Wëæ©k!¹isgEfäMî§‚ônÎyÛó´:xF·°]ûï«Ý}qZU[iÇÑÅÔT7݃VÈÿÅ­ýeWÚ}7Ýî^—ß.nÑÊÝÓãnÕø?C ëùÌa4Y)<0Ó«Üüjuv-ª¦€P¯( 6¯áé «Ôð=ë šµÚ»zÚƒùèzõ–†~+ŸL­Ô~aÝ&~…tÍsŽ/i¨³†ØkUwÝë‘`¸¬iÁ³àupáyÕ[¬F½šN=ßj ¨ézú5 |(¹IÓ+æ´_Á¹^7oùŸþej´ÐÜjÐBy:§ž[•^¯¬SRP¬¤^tÝ·‚ó`®¾æ‹«7Y j°8ž”#­Â¯ºk~¾œµÂ|Ó°ÕíÌëy…“OÌpÞòÅ~!@™ÉZÎ ]ã‹FHÏF‹åiÄ@›zMý³Óó“Ÿ3æ¯Xìø[èGQèùê·£º5qÓŠæ/à^ã6/É ‰Ý_xAºÎ_î^52„ pæ0$þÌyÖÜ)ĸ€†ˆoúë/{Ü­ôþâcOû`VCºµÚ{ûÞl³Ä ´ºû7Ý?ô+¼/Y±Üîæqß›.†÷¿þÌJ/iC¾ìíU–ºÅÙn{ìA{÷¹nV§ZM·òü ¿_sÔ5¬Wïq†ok[iðèþódÿé;l —û;®.Y\/ç÷ê¹Wzu·ún¾VWZ¹Öõj»Eñî»éWßvÅ=·úáó/vzÒžr«Â?óPg¿Ýnÿ;Ÿ~o”)XÕ+Û‚Å̘k¥pÍ ¿õÂö~²V ×"sÁ ÷nmåiU§‘r4ÿáVAí^ÿ¥¤ØŸÆ ±Öu»äÚù V+¨ë•iN_R¯ú˜ÙS¬šÖÞìh`ªT«¤Ç—F¹k¶pÁ§^¦àZ#´Ú»^Y$Öš—­UÌuK\p­{ Ò(·’û¹®wùŸ—\ãŸ÷òukü éW5oãX ‚qõ²ç«XÍ…W^•¥…× ç-à¶ ÊKÊgRŒtίGºùõ üp|Í1íî­eíF~˜…F, ›¿®ë&f¨yä?Œè‚ñf¡Ñ ºŽÌ‚€]£K4A¯qS¯ºÒv×H¤Åùôаt­ ¯WáÝqQ\¿#½âoéÚUþ{Rþ$váep¿·ð׆c@ í ¤+\¿JüÌÒî}sg €@L hX|I·ÐÚ*·`[ðZ¶à†Ô#=ø‹í¢Û®±Ù.ˆ/T  E[ØMççq¯TÓ0sÍUOm)³ëµ,äz,W­] ”#ë˜Ãõ¾*@Õ°ù ÉF+æ¯X³*Þ|Á¹úTϪyûè×ïãÌiÖPp-Œ¦@-˜“ž/ØÖpõn!4íÑ’zpõj¶h=äÑÎö©·{ÿAwon‘Á¤$ yתòÛ\Gxjߤ•_­÷˜Á¾7Yå8º¸ZøyÚV~Õ3|¡´ÈsRâ{RŒ´0Þν»ýô Z€Mõ¯$1CÍ9×T…ðú ìàS½ç™Ýzý‚›à˜>u@Ò¾=ìiÿs‡ ´R¼^Y–XRh|Áºò‹µ%VÎé8® |åšÕ ^:~’l‚ÅõÂ÷Ç·­÷—×rsÇ«–.z—¹ÎUp,Ê_^í #ÏMîœc½îx’z…O´. ®ÇS—ã=7)F‘+ÝëŸPJÌÐ7ö¸Ÿ„’¦„¯äyî‘c7EOê÷h÷ämà¦(LsÓ»ßà|>@ÒŽsØÓγäN@’! À|øŒI~Þv2²“Ð(‚bn}‚ñó¦§èu(@ u 0$>u>j…$[@‹È•+UÚ4o}Oó¥“}4šQ‹®ióñ]OíÖ¯—©'ÖûžÚïãL­_¾\yü«y÷ú™ú à¾@àL `?ÓÜ? € € €@ª`H|ª|,T @@@àL `?ÓÜ? € € €@ª `O•…J!€ € €œéìgú/€ûG@@H•ì©ò±P)@@@3]€€ýLÿpÿ € € €©R€€=U>*… € € p¦ °Ÿé¿î@@@ U °§ÊÇB¥@@@ÎtŒg:÷Ä‚ÀÚIsc¡šÔHõETMõu¤‚ €@ @{ Á' € € €©H€€== ª‚ € € €@ @ÀHð‰ € € €@* `OEƒª € € € °|"€ € € ŠØSÑà* € € €ìŸ € € €¤"öTô0¨  € € €{ Á' € € €©H€€== ª‚ € € €@ @ÀHð‰ € € €@* `OEƒª € € € °|"€ € € ŠØSÑà* € € €ìŸ € € €¤"öTô0¨  € € €{ Á' Æ–,YbcÆŒIÒ]n߾ݦM›fkÖ¬IÒù:éСC¶téRŸoÿþýIÎlj € €ÑØ£»°HSË—/·FY»ví¼¯U«VÙõ×_o¹sç¶:uêX±bŬ\¹röúë¯'˜ïóÏ?·Ò¥K[Ù²e}>åoÕª•àÌÈA@@x2Æ{„ €iB`×®]Ö¾}{[¿~½åÊ•+Þ{Ú´i“²,X`*T°6mÚØºuë¬ÿþÖ¹sg[»vmÔÀ½GöàƒZÆŒíòË/÷ûðáÃmذaÖ´iS2dˆU®\9Þër@@ º@ºÂõ«Ž~ˆ½ €©E`í¤¹ÉªÊŒ3ìŽ;î°©S§úü Ø·nݵ¬{î¹Ç>øàkÙ²¥õíÛײeËæÏ›2eŠ]xá…¶yóf5j”5kÖ,”ÅŠV¾|y?¾OŸ>Ö¶m[LÃãïºë.ûøã}yC‡ åa8ET=—çÚ €Àq 0$þ¸¸8ˆ ½{÷Z×®]­^½z>X×°ö„ÒÆíÓO?õ§¼ôÒK¡`];êÖ­k;vôÇzöìé?ƒ?Ý»w7ÍWoݺu(X×±ôéÓÛ»ï¾kÙ³g÷=íóæÍ ²ð‰ € Dö$Bq K_}õ•½øâ‹¾ç»K—.Ö»wo_ýtéÒE½Ñ£G›‚üŠ+ú¹î‘'Ýpà ~—Ê ï¡l;wösÛkÕªeì!6@@$ ¤+\¿Êá$ŸÍ‰ €§E`í¤¹'tݹsçZµjÕ,wîܶeË–¨e­_¿Þ4t}Ù²eV¹re»ì²ËlÓ¦Möã?ú<×]w}ýõ×ǼÂíÕW_µ.]ºX¦L™ìŠ+®°J•*ÙСCmüøñ¦åGŒaõêÕ‹zMv"€§Z Hƒª§ú’\H¶{²éȈœ:S°ën k˜û€ìàÁƒþ³dÉb;v´çŸÞ2gÎõ¦5d^çlذ!t\sÝ{ôèa7íc8Ýì§û p}8öãÑâ\@à4 œhÀ~¼ÕÞ½{·Í˜1Ãèê1VƒO¬õÎ/]ºÔÊ”)cZ.]ºt‰eá8 pJØO)7C `?A@²#€§BàTì§âž¸ p:ØO‡:×Dä °è\råȇ € € €@ °§ .E#€ € € \öäÊ‘@@@ `OA\ŠF@@@ ¹ìÉ•# € € €)(@Àž‚¸ € € €@rØ“+G>@@@RP€€=q)@@@ä °'WŽ| € € €¤ { âR4 € € €É `O®ù@@@HAöÄ¥h@@@’+@Àž\9ò!€ € € ‚ì)ˆKÑ € € €$W€€=¹räC@@@ ØS—¢@@@H®{råȇ € € €@ ¤+\¿Êá,Ÿ¢@@@@ ô°', € € €¤´{J S> € € €É `OY@@@Hiö”¦|@@@’!@Àž 4² € € € Òì)-Lù € € €$C€€=hdA@@@ ¥ØSZ˜ò@@@H†{2ÐÈ‚ € € €@J °§´0å#€ € € öd ‘@@@” `OiaÊG@@@ ìÉ@#  € € €)-@ÀžÒ” € € €@2Ø“F@@@RZ€€=¥…)@@@d°', € € €¤´{J S> € € €É `OY@@@Hiö”¦|@@@’!@Àž 4² €ÄH—.åË•'îÎ3ø[®l9,Kæ³B3d°|9s‡¾³@¸@®ì9,SÆLá»ØF@À °óC@bDàëîÚÀϾ‹ZÛÆuêÛÚIs­YýFQ'wçE-ZZÙ’¥Í^µty«võDÏKé åÉo®¾ÝŠä+ॠäÎkeŠ“>}z«S±jèû‰n\Ýâ"+”'_¨˜Š%ÊØ…õš„¾³qòîp«Õ®Påä| J,S¸¸µ¨Qï\‰K €Äš{¬=1ꋜ"**Ù§ÿîayr%Ü3¬Þã†UjÚØÙSOQÍNü2מw±Ìýw@]³ÜÙÖ윓0åΞÓrdÍf«7­U´Láb¶lÝêÐw6˜µä+^ 0£0ÂQØFðìü@¢ ¤wÃÜ•>õx°³v…ª¶vÓÛ±{W°+ÕjxÒ÷ÃîÿNF*]¸¨­Ú¸Î<*®T!öÇ迱‹XÓsêsŒ €g¶@Æ3ûö¹{@ í T(SΞy°“5¨YÇvïÙm£&·gß~ͶlÛêo:Cú öä}íÊ6—X®œ9má’ÅÖó‹ÿZ¿aƒ¬rùŠöþKoøóz<÷Šý<¸¿½þQÏc°ÎÊ”Ùõ®×°¿‰sLe7­^Ç*/åærg±µ›7Øð“ló¶-qÎ ÿ¢ Y=õ•Š—¶lY²Ú+—ÚÆ­›MÁn¿ #ÂOMt;gÖìÖ¸i-ßk¹uçv›òÇ›»ìOŸïú–í,³›/¬!ð% v×YfõÜpþŒ®Î7µ¾ÌÆÍ™fº/Õ}þòÅÖ¸ZmËvV[¼f…Ÿ;ݶïÚéËÉ”1£]{^[›çʲpN¨N¥ÝðæðÞôünn¿®·eÇv_þ˜ÙSléÚUþüâ ÙùµYø¾®§õ¼Z lü¼Ö¸J-ûqô Û½w?_u®ZºBœ}u+VóS4¬ý–Í6ÑåSʘAõ»Ø­^Úw¤ÎÛˆ¿ÛÊ kýyáÎ)[Éj¹aåysä´Mîw2Á•õ§Ë¯$F®>áu-–¿µ¬ÝÈ&8]GÏýÜjµ¬\Ñ’–Û•¡Fœ%kVÚèYS\Æ߃ܶa ðûhkîF4uùõŒ‡M›`´Vµû©*kÒüYÎl›¿öy5Ø.gÁÝcuWG•µÐ=·qs§Ù¡C‡ü9‘’óT5Üh‹*¥Ê™ž›ž“z¿WµÒoTÏ@çät£(d4iÁ,W—¥¡ËË|âü™VÑýŽË+åë=IŽî÷ÓºNc7£„ÿïA¿Éåëׄò-ZµÌÝ#+𝠭qÿ½@=ìü@8Ë-dV¾T™cþ•(R4Î]È›Ïúýç++èærwîöœuëõŽ5©ÛÐ~ýøËœ9³?÷¾›ï°Û¯ºÁ>úö »ÿ™Çm‰ €þóÊÛV§z [¿i£õÐÏŸ§`}äÄqqʾ(`S0ºähì¿üÜ–vN¹J¶Ð!]pvèð!»©•kÈ–=8å˜ÏÆUkYƒÊçØœe‹lèÔñ>p;¯VC8sr";n۹æ“lßvQýf¡yíÓÍóÁ¡zÁg/Yèƒ'¯‡\/çTxoÞ¾Å5d±².°R€õ» LmEò°Ko Œ¤t>hËœéïÅÂЕ*T4NÀ^Ú ‡_±a Üvû€³‚ ₤kΛ߸Á¾ò.0VZ½q½?¦ò‚T©DY¿OA}ª¸õït2U] $5h.å’eƒ]V²`Q+èæÖop}dªö9Öºnc„n±ß&Žò£Ú7ieš¯ôçên´Å!o¢iú'×ý.xV0ªtqƒf¦ _#ý]+Ö¯õ®ž«’t¿š]è¯3nÎTÓ‚K·´+š^àô1nj…Ý òåqÁ¿¾«Ñ`ðä±¾!¡fù³}ЯãÑRr~ƒÕËV´Vuù}»NF×(Ó¾ikËêl”š¸Æ54,X±Ä5"t $›ì²Æç[õ2CUÐ: rQMÙ`¿µq߯jÞÆ7ž5Ù7]P7îšz†jp)[´D¨,6@ ‡ß CêùûÃo‰Ö¸ó?ô=WÝ»íÜud¨ú’ˬ¯ âo½òZ¤7®]ÏFÿ>Áz}õ‰/oظѶcç.hdµÍ[þ²A£‡Û÷7¿]¢z<ƒ¤SAGäÎuÁ·’º»Û]c\P®@(2ew=ê\ïºz°Õó¨¤ÞÇû.¿Þošé†Ÿ>ÑgS/é?/¹Ö÷\®Ý¼Ñæ¹^óV._÷×&ß  “´¿‚ë záµO½Ñý' ³yìVûGÛ®÷µ¼ÍYºÐb½ú~«SCI Íix³¹ )`zÔ—¬]éƒÑàXIg¥á¸ SC‡zÕU/y*@T}ŠºÜŸ_°ˆ?GA¡à‘®aBÁ¥]“¥žIP¶ØÓŠõ{öíõ í©!`ïþ}Aü§FÈ_÷Œ–P/·æâ7wôՃ¬ûàFRÜ|Áe.x®áë“=kVßÛ¯c ÆóæÌåzà§šü•tEòå75ì„'ž9ów¿K êAŸüÇlwGö©>u+Å]P ½Gq÷vtê…›Áжas›æ`dž’óLŸ.½ïáWFY(©!êö‹®p£ÊûjÔëÔû¯¤Qjph挛·üO;x´·_ÁwßñÃC¿ÜPÿÏc‡ú|·n±]–Þ°yû‘/: ûàmžˆ? €GØù) €1$°ØÝ]ßìvL«”¯dÿ÷À£¡ýµ«žcF ë:0uöLÛº}›Õ¯QÛìSçÌ´NwÞgï¿øºõ>ÈFŒk¿ò\¨Œ¤läË™Çõî"œ_“¦¬ýášzuÿçëS½’ ÌÇ’+¨\ãæÆ‡¿-|ÚD?¬\Aª‚rØ Œ•àW>Úk®EÉd¢ º|±’þ¸³Ó¾U.OŸ>Ÿ7¯`U¥\oº‚Ùf.àV^ m×ÊøA0í 8úG÷¤‘‘Ïè/7$ýl×C¯†5 ¨÷]*¯á郧Œ Ëj´ùbp_¢‚_õŠ«\ªº¯ð´ÒnÒ&¼*É&H;\Pž=K6Ÿo¿!¡¤ÞúP°î¾/Z}äÙè‘{r~ƒjlP£€¦Hé ¦ÿŸß~ð_e®ç9oÙâà°ÿÔ3R£Lî¹BS>´à 1”6nýëÈyGG!èËN÷›TÊ£¯µÝ|ÅÕ®wü u|þéðlñn+`Êá†E‡§=.U€Ö«Ï·nˆ°‹"“v¹ _µzy5t;HYŽÎ·¾'ý3z@”ôüæâ¿ç¦ùÔÓ¼.¢Q!8¦ÞY¬Árí/åøåa¯sÓȃeëVù^Tݳ‚=õLk$‚ê\Ùrø^õ Lî ”„—,TÄ/p·Æý rે}äÌÉÁé¾—ºn¥jþ˜¤+À×\y-z§žè ¨ erù×Cû%ºàÙ¹nwð\œk%¸ÒÍM×T _µq­+wŸ››Þú˜QAî3&ñ(“¼3¹aø‘½ë:'9¿ÁÀà,÷› ïÉ׈\〽SÒˆ ñBß3¹5”¶8Û ÅÇãûÔ¨Íy'!€ ¤6øDH; /²¦õ…-f–Ûõ רRÍæ.üÃßèk]ž³o½Ëö»_-*×åÕçmȘQV­R<èÔæø’z##{$éý-'ÛuÏõ+ÇÇÙyôËšÍG†‡÷¦kXµ†p§DÒ½Eö¸¯± ®§à<|>±¾k¸º‹–J(âz‰wÆé)V{ø0å[ì†Pkå{èÁêãúÔ>¿ØõŽI=ÍšG-ÍU×yz]œ|­V®:iHv´­žàªe*X0ì\Ó”÷ìe¢ö®+¯æT+iø{xªY¾²_TMÁ±’¦4躣\#Á·ò»¶ƒiš‡¯‡¸5ü^A³ž¡Ì"mï‘Ôm­ž®‘AR#†R´ç‘œß`0 ¢xÄ|û«ÝbqZµÓÑ¡í¥^7¨‡ž™FMh‘ÃM½_ÿ‰–M~@Øøûùb³þÔ@ Š@÷O>´ ¥ËÚKž²ünÅøE‹Ù{Ï¿æ•Ûi}‡ ô9/_jo¿ÛÚºžuóç5lbÜBt¦é± †Å·=¿µÍ[”˘æê*8W/d4ZÁKs·—V(×±†n‘2½ +˜ß­F€Kç_Q¦|êýÕðêÖuÎõÁ‘^«uSëKýPððáÑZ]ù‚2¸æñ~j8·æ–‹½)àR4_\ÃσԦ~S«÷ø"·­9Æ V.ñ‡UÕEuRRàÞ›.­Ò¾,l>½ÎÓv ÙV ØÕê­ ð—¸¹ÏzE˜æ¼+UR>]OSÂ{{å¨ÀSÁy0_¯S¶\-’¦é¯^êùna;­’®WÜé™iEö5ëûyëj$Ðýjõs=s̓×{Ãu}íÓ1 ÷׳ªæ^;§aðf‘[5^£‚^hñdþÉéÌ4d_=ÜZó ¥ÛÖo&xõ[x±Éù j­½¢O#ô»Pcˆ^Y¨éçÍ´ Î^~-ÜyúíèÕÀ¡×êM]47üòÉÞΗ#·óÝìüdDH{ ‰O{Ï”;BlƼÙvg—‡íåÎÿg·_}ƒÂiÃ탼០8ÏusÃK.jÝ{aKÝ0u-°ÖνN‹ªiH¿‚T ïþÇÅ|ÖµnxúÏc‡øÞTíPï±îAAü<ûÓÐÊ$ a×{ºwẺÖ=«WXh€+¨–ÛÊ ëÜkèâ‰^ztH}0WZå+×ÜöàujÁ5õ©^ö|.ˆ ‚ùÂîµtZ¸M)šÿ`7ß]A°©kQ£¾®ÖôNq¥&Õëø üçqCýwçš#¯UãuL ëiuuõÊ×;»š ÞÍöZ­¿¹+/ùÓüåüPýüî·pÿå7øg£†ŒhoÐÙÉý uïƒ×kÝ®qïR× MùÐ}Ãîõz?½a@ë3踆É+X×ëÛN4©G¿‰%k4ªœhyäGHé ׯâþ'•„ VŠ*ì{Ö·'0d·dÑâ¶Ö-ð¦áñ‘IóÞDjQºhIAn×ÃÚgܰckˆ´æ¥+HM(é<õd*Õ<ï µoÒÚFf?ì:iŸêeÖÂhᲂJõdk¨·‚Ðw\0¯Þaõ ‡÷dG«„V+W€ÌïV/µòŒ¡ÒÑ®—Rûd’Ã2‚Ôä\GÃòµH\ø³LN9A½^ $½Ç ö½ÿþ*Áà¼h¾Ô^/kIDATŸIý †çÕs“Áv·^ðª¶Èãšo~"Fáåi[oЇÏý|ÒÜ"¯Áw@Ø`H|ì=3jŒ—Àšõë,¡`]…­X³*j°®c_°®ã£fMv‹Ÿºzº‚áÄ‚u•¡ÞÊZ^âz½kûmíÓüõrî}îá¯ûÒþ“•X‡ë*Wó®Ã‡àkŸK,X×yjl‚u}WÏz¬몷Ô D•ÿdëªSx’kRƒuåKêo0ü• ¡öÑ‚u§ã'j~=5’¨‘H½ù)å~=¶@bG€!ñ±ó¬¨) *4$|ò³­^¥êþ½ÜÉ©¤† kµq½®¬V…ÊvÐDšC¬áÆÓÿœŸœ"Ƀ@ÌT)UÞOÖˆ™ŠSQ@`H|Šs@ í dt¯×RoønÞù‰$õ´kA1 Mׂf‘ïï>‘²'¯ ²»!íÁóãÉ˹'_@ ×™›‹#’¢¡·ºÃßEŸ”|œƒ öØÓþ3æ@@@bP€9ì1øÐ¨2 € € €@Ú `OûϘ;D@@ˆAö|hT@@@ í °§ýgÌ"€ € €Ä { >4ªŒ € € öØÓþ3æ@@@bP€€=UF@@Hûìiÿs‡ € € €1(@Àƒ*#€ € €¤}Œiÿ¹C@ öÖNšû7Á €©@ Hƒª© THš=ìIsâ,@@@N©û)åæb € € €$M€€=iNœ… € € €À) `?¥Ü\ @@@¤ °'͉³@@@8¥ì§”›‹!€ € € 4ö¤9q € € €§T€€ý”rs1@@@’&@Àž4'ÎB@@@à” °ŸRn.† € € €@ÒØ“æÄY € € €œRöSÊÍÅ@@@Hš{Òœ8 @@@S*@À~J¹¹ € € €I `Ošg!€ € € pJØO)7C@@@ iìIsâ,@ f6mÚd3gδeË–ÅLOFEçÏŸoݺu³¹sçSÜG}d~øá1ûÙ €¤föÔüt¨ ÿýïV³fMëØ±ãqçîׯŸM˜0á˜|°7Þxöoß~̱Բãã?¶§žzÊ2eʧJ[·nµûî»ÏFŽg?_@@Ô.@ÀžÚŸõCN‘À=÷Üc—^z©­Y³&άתUË{ì1ÓvjM °råÊYÅŠãTqèС¾Þ]tQœý|A@R»{jBÔ8E3fÌðWJ—.]œ+Øm‡6ÝŸò/Z´ÈJ”(á× P9¹sçl¼ûî»¶ÿ~o'Ož`wèóí·ß69Üyç–+W.¿_ö*ûÆo´¥K—šæå«ì+®¸Â7nÊ›ØÆ’%Kü=h!>m«±B®mÛ¶µ*UªÄÉ®‘š6 òëÖ­kßÿ½;Ö6lØ`•+Wöõ+]ºtœ<úòþûïÛ®]»ìÑGµÙ³gûßÂäÉ“-_¾|ÖºukëСƒeÈá˜|‰íؼy³ÿ½ê·¡éåË—·ë®»Îÿv£åÕâŠZ·AÏz÷îÝV£F kÑ¢…5iÒä˜Óƒßë 7ÜàÇúoC×Ñ ýÞå<‹Ñ£G{C.ÑT‹Ûn»ÍªU«vL™ì@@ %Ò®_åpJ^€²@N\`í¤cW>¯Ô÷Þ{Ïî¿ÿ~4)þòË/9õÅ_´§Ÿ~ÚïW-xU@©à±GÇäŸ>}ºV¨+Àûàƒìå—_öÁ·}S ªT¼xqð-Z4T†‚*õ„+ ŠLj xýõ×ý"qáǪW¯î‡å?ôÐCÖ½{÷ðC¦!ûj<ÐB{ ¾ÂÓ[o½åÊ#Fø NÇÔgÏžÝÖ­[ç?ÃÏ×vpOºÿ`á>¾·ÜrKœÆ‹ _É’%í¿ÿý¯]pÁÁ.ÿ™-[6@ªA¤B… qŽé‹œ´&€ó VÁ/¿übz†<òˆíÝ»×çSÀ¨g9]!²P5*¨¡àÉ'ŸôÁtäq5j¼úê«öðÇ¿—N:ù· ¨±"cÆŒÞU婞ýû÷·V­Z…òh£P¡B>¨W}¯½öZÛ³g?7xöòP¾ã ÚP«q"r­Ý·êüæ›oÆ©ƒ~Ç/½ô’¿vœîË]wÝåJ o0 žmïÞ½­k×®¡©A^úC† 1•û¯ý+Øí?åðÓO?Y»víâìçKì iP5ö*M@àŒ`Hüûè¹qHë <¾ùæ¿rú¸qãLCÃX)ýßÿýŸ©wQIØÔ©SíœsÎñß0ë»z!Ÿxâ‰P¹*ðÕ±J•*ùsƒ?j P¥žZõº*½üòËMsËÕq:ÿÙgŸõÁzƒ |Y;vì°)S¦Øã?îÜxÀ÷ðÿ{w&Uu¦qücGE‘EA ƒ"[—¸‡£ƒAF ‚ "ãŠQ‚I0Œ&âJ@pA QP ¢ Ù”]Dö¹ïiO=7×ê¦:Ewߺõ?ó4ÕUu—s~§“Ìw–ïúkëU¼‚lœÑ¢ïÍ›7º][ûöíÝi:u²FÙŽ;\ð½–Vh–[Á™Ú¯¢ YmÐJƒ–-[º6j¶_³É:F3øš™ÕÌü¡* ¸kÔ¨á dÊ÷`Áºî­@Tƒ ’•Õ_uVh¦^³Þ»wï¶¡C‡ºÁŠh]5¢Lú|‘§xçwº~Õ wa ÔLzëÖ­Ý ·‚võ‡fæøë^™=@Ÿ$P°¬•Z0bÄ«R¥ŠiðEçóe„ .èÖßì¥K—Úš5kÜUíڵݱZ½®hðEºÞ‚ Üu4³®ökeÈÈ‘#Ý}ýj‹¶mÛº¿a ¢P@(MŠ¥y3î… Pºš=½á†R7Õ̶ͦ`]? 4µ\[KÍ«h ²Þû¢Ùk_4‹ny·¾ùå—S¼fŒ5©àGƒ €üŒþôéÓÝåôÌtÂú™;w®{ŽúÌ™3Ý2dßð²|ÿ™Õ@„Jtÿºfòu}®\EAoÏž=] ª€Ï/•w_ÿ<ñÄ.@×L·o·‚G-‹ÖRrµEÁ£J­ZµL×Ðû±cÇZß¾}Ý@D&µ»@ÿh@¬ßâ”Ñ£G»Ã5èî÷^½zYçÎM+.tm ¬ø }¾ ìu¬/\Ñcñ,+øU- 6t³Ò~0EÁ»V2hU€ê¡›Ž;FOûÆû.]º¸ÁžðʤA#-“×ßÚ§™s­Ž¸é¦›Ü5´ºA¸/ÚN Á ­ÊPªÞÑÕÐÀŒ¤RŽƒÕ«W»~Ô Zx?]Gÿ™P{´ZBƒL¡ € P̰—†2÷@Ê@@3Ë>èß^{ØU¢o SÜßüEgݸjÖ\%¼üÝÂ>úè7–m+èß°aƒÛ/œi´]¨ÂE³¥šñfŽWÀ®º)øTà.Ú+¯¢c|yöÙgݯ·ß~{*X÷ßéuøðán ¹ö}kFøP͆7X×}•c@õUÐ-`h×®ûX«¢Ei8ðõß«å¥Á m?ˆ–aÆ}cåƒúÃ*oÀÁŠfïõ÷¨¿ =^0Z´âàþûï7 òhß¿úV³Q”O!Z´_¿wïÞîãñãÇG¿vÛ#|°î¿ôÿ¹Ðv€ð …¾o Jø­¨  € PZì¥%Í}@RˆÐþö ÜT´týP•¢ù ZËŽ}ñœ‚chzö»M%º+_¾xÿ³¤eÛš}×,ztf»°™w_J0¦àsÒ¤I¾Z¶|ùr—lMuòû”µ”_{ÇU k£öé+‰Š–eŠ’.ñž|48ýñ+t_ÍkF[«%T÷Å‹»• t嬭*éoÍŒ§Ûo®à[ûÕõ÷¢eêÑR˜Kº¾žëß+'‚ŠúÀاW­ê¸ùæ›íòË/w#J0§¢¥êÑ~w_ÿøz¥ë ND‹úQEÉýŠ ŒîágÕÓÙùãxE@àP °$þP‹r=@ &>‰V§°'z\qÞû¤iÑs|4k®}ßÚ[¬e誃²‹ës%ÓŠ–&kß´‚ÎLŠfÉ5ã]¯s°kÐB{Ö£E3¨šÍWB>ŸXÎÏÄjµ€Ø4c®ÀW ä + ØP+è?%çĉÝ^ëèõU·pùÔSO¹%ìÈçP¯vi«@º’îžþ8õ£V#ø­þs½vžï{s°¢eè*E‡¯áƒp?PþÎÿî¿K×'þ;løUÉÓ•’øÏMºûð €aâMe„Ïäw@X ”f€¡¥ç銒¸©(ò3”z¯%ÛJ†¦ÙaîþqYšiU–ðt™éu^´((WÀÝ£¬¤w ê¢ËáýùÚ/­$cJçƒ?°ëñ]¾ø ãP’²ÂŠöy«ø<áã´_:Zä²£ßûƒðçZ¡eòÑŸ“O>9u˜fÒ»wïî–¯+Öj%“S²@ ˜(§@a¥°>Ôñ¾}¾FaçuNø|ýîgÕ‹2ŸãûEù +EõI:ß®Ãç €”¥{Yêso@ !«V­JÛŸY\Ë£ÃË­Äj¯°me3×s¼5C­ŒõúNÉòVtœ–‡ëÙáš¹}®’næ]ŸkÁgÌ׌´–ìëþz†·fù}ÑãèªU«æÞj °â¿ÓóÎ}QûT”™=Zt¯t|ô¸ð{%µÓRðè–½«è¹é>±Ÿž‘®iãÆ3= O+«Zµjjy¿ ¢¥°>Ô±JȦþ Ûøó ;Ï÷½úç`Å?ö®¨ýáz¤›Ì)ß2àÝÓ]ßç÷Iºãø @8 °Ç¹w¨ PŠ~ÿxôØþsU%ú¯žžÅž®øgÀû M³êšM×ì¶èüyZº~÷Ýw»· h »—?~áÂ…¶nݺ´³èšy׬m§Nüáßxõ‰Å”¤MÃU³ëþ¿[Áoº¢ó•M÷ gC÷ÙôìF‹ß³­Ï‹¸G¯åß+)œ®¥†tÉ•ÔÍÄélµE@Áp´(Óº”àM׋–t}¯ _KøU|ßGÏ ¿÷ àä’n »úY{Øo¼ñF7Ðã40£vE‹”ÔP%úüøè±¼G@ Îìqîꆔ¢€ß» ˜´|ØÏG¿óÕS†ô1cÆø·îUÏ×ãÎÂÙ굤Zûª•¥\{Õ£ÁêäɓݹJ çï©êQ[ J}),©œ®¯Ç–uÖYn&Ý}UR2-'W"6ÕS÷K—]ý—¿ü¥;U³þ~æÞ_Kƒvo$k ¿Ì_ÙåÃËß—,Y’z$™?öP¼úU²ÕãìÂE Úà½Óícß¶m›é9ãá`^³Ô~Ö~РAáK¦~×£Ö´µ \ô\t­P¼ð*=RNý¨ Êø¢\Ê '­'DÔ’{åPÝ•tNÆÊ¢¯¿×§O÷÷䯥㔹_«&´ Ãg‹÷ßóŠ €@. ¬×Ë¥SW@Ð2cÙ Ð4›¬TœŠ¾S¦ÙJ%ìzøá‡­}ûö©z((Wà¤g¯+Û¸ŽÕï*ÊÄîgPõ^ÏÙVÆrÝcÚ´i.#»  k·®å§ãUü³ÐÌùû*`×,¶TYÁ‘æ‚zím.lÿº?N¯še:t¨›í×sÊ• =Z´œ\3» ØõÜze× ¯–ckf^{¥õ84µ+\ú÷ïïßÍ›7Ï%fÓòÀtÐÒ{-·Ï$![øšEý.w­P7íÑW=õl{%ŸÓ†‚[eU׳îÓÍúkf^™ûu¾ì”Ê”)nÖ]FéVøúhp¤[·n®,Ðcü´]Éý–«:øÇ¶i&œ­ýW¿ú•Ûkÿ /¸vÈZ{Úuœ4ØÞ*¡<ꛩS§:ÏK.¹Äýíh¿¾Ú¨¿ %%ôËí}]yE@ —˜aÏ¥Þ¢® €@ hV²C‡îšž3gNên ®õ84P Æ}VoÀm·ÝæfA_yå7»©}áõêÕs ¯pÑ{-#W¯Ìã<òˆK2§%òšõV°¥ÙÓ¢Šf‘5«¯„ðÞxãgÁÃ3»…]KÏðöçûÇÍ¥;VÓÀƒ‚Fˆ²š0a‚ 85ƒ®úðÖ]C³-˜k+€ Õ6ÍË©fÍšîV‡*9`åÊ•«‚m-mW= ¸¨/´T_{ÝýjùG÷±ËRuÔžtÏ”ÑRø!C†Ø½÷Þ›ŽÅ}¦ëëæZ¯ë+X×àÁóÏ?_hùtS†øE‹ÙÕW_íê ™{íYW°ÞµkW×ßáýèzœ<”dO¾ æUo ú(q¡f²?]]ø @¸”«Óºù7Óׯ¥vÔ@À ¬›WX¬48”kvUwxYºî­LãZ¶¬™hšW^y¥›5j” 0À´äYû5K®eÎÑó£õ×ÞdˆZv¯%ä :3)šÕVÀ®{DgP5£¬zjÆõ`E‰ÚÔN-Ö¬s&÷×µõoºš†"€™ (@+,Hóû¤ »’‚Q-»Î´Ô­[×ôSÜ¢@4:sﯡÙÝL‹–€+ÈÓ’öL‚u]WsˆÞ_ÛŠzöwôølßk&:<]œë)ØÕÞóâ-A'Ý+îùáã5ÐSœ:èxŸ3 |~G@ רs½©? €@±4Ó­}Õš¡×n-‰×u  € 7ö¸õõA(Q%® ?ŠLA{8ùY‰Þœ‹#€ €Å `/‡"€ü«€‹¦DuÚž+E‰È”8NÉஹæ6lX®T½Dê©- êCí/NiÓ¦Û·^Øö‰â\‹c@@ ½IçÒ»ð) +ÒL:«†—Pe”!=šÕ½„nÅe@ f$‹Y‡P(R€ÇºÉ× €I XOb¯Ò&@’'@Àž¼>¥E € € €  `O@'Ò@@@ä °'¯Oi € € €@ØЉ4@@@ yìÉëSZ„ € € öt"M@@@Hž{òú”!€ € €$@€€=H@@@’'@Àž¼>¥E € € €  `O@'Ò@@@ä °'¯Oi € € €@ØЉ4@@@ yåê´n~ yÍ¢E € € €ä¶3ì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡ì íXš… € € Ûì¹ÝÔ@@@ ¡Ú.š… €%$Ьý™Öâüv\ãV¡ÿ¯D 1sÙ,öíÙkk—¯´wg¼aKfÏÏâJœŠ”­ÿ+[¶þÜ@œ8§ÇÖêÒssªÎT6ÿ4tB³Æî§N£úöÚ„gó#€@"XŸˆn¤ €”¼€fÖ ÖKÞ™;ZýÍêo—‚ä¢{.öuF@  ´ ž‚@. ð·›‹½F@@ìü € €@FÚ³NA øÛÍÅ^£Î vþ@@ #ÌeÄÄA1ào7†B•@ #öŒ˜8@@@Ò `/]oî† € € €@Fì1q € € €¥+@À^ºÞÜ @@@ŒØ3bâ @@@JW€€½t½¹ € € € °gÄÄA € € €”®{ézs7@@@2 `ψ‰ƒ@@@(]öÒõæn € ¥Àýló§ëíË­Û³¼§#€ oŠñ®µC@ ¤O¾e¤­Z¸ÔöîÚí>¬Vëh;§ww;»w7+W®\ŠjÕ;ÿt}³sÚ¤>Ëæ—=;wÙë=cçö¹*›Ëä̹÷_x}¶bµõxàVkqé99So*Š$M€ö¤õ(íA@ ;·~a£»ô·ÞZdû÷î³ãOmbU«n_lÜbÏü“½:frªÕÓ~óˆ=ô£¶~ÙÊÔgÙü²qÕ»ÿâëlÆï'fsÎE@ Ø̰›Œ@@ ´–ÎzËvlÞjG×;ÖþuŒ Ö÷ïÛgãúÜnKf¾eoNœššýÖìúþeÆ=›ún]÷¹mYû™U>ü°l.“Sçxîá~«X¥rNÕ›Ê"€I `OZÒ@( v•¯¶ï°më?ö­|… öý[ûÚ©ßëÓUM{ÛŸ¾íûdÑîØYã¦Ø{/ζÿ­{¿äµy¶à//Ûò¹ïº÷uš6pA~“v§»÷Sïû£}ÌàkÙû›¦Ú†å«¬U·‹lÑ´Yîû=_}Ìò÷³Ž=»XËœï> ÿóå–m¦Ùý¥Á‚fþ¨QÝšujcƒ:VªZÅfŽ}ÚÞ™ú²þýóìì^]Ý©:þÃ7æÛI[ÙÅ{¹Ï´Z`áßfÚé—Ÿkg_×ÍÖ¸ÒfOü‹-Ÿó®mÿl“ÕiÒÀZ\vŽu¸ö w¼Ú4kÜÓvÚEg¹ïßÞŸvQGkÓý{æÎÑV¯y·¬ýo£ÆÚç+?µ&íΰî÷ ²e³ß¶ü³mÛ°ÑNêp¦u»ç¿­ÒaUÜ5¿yD0H±!¨ÓuAÝδ¾:×^ý˜5ùîîçÅÿÔkE°Ò¡©]qGW'wbðœÿ>jœmZ½Î¶<Õ.ÿy{|Ð}îëŸNyÈÆ+ €@ì q €”­@Ó-­B¥Š.`ÿÍe×Û‰-šÛ)çµ³æç¶³¶?º4U¹Ïƒ}×»¿ÜéÞkf|ç¶îwíÿÓᦽè5ޝc_lÚÊo»ýæ¿ýŸÕ<¡®m\µÖV¿÷¡M¹c´íØ´ÕW¡bE·—[o4  ï¿Ø¸Ù}ýgÒà‘.X­^§¶5hyŠ};wò ÁàÂvÙëíØoÕwçkößì ‚~Ëš Á~û/Rûüç^rAú÷~úŸ¶ß~›8ð>[»ô#7P¾b[ñöûîG ê58 zm®®÷®_ºÏ7}²Îæ?ó¢U§–íúb§-úû,·]à³?±#kÕpç¨UŽ8̺Üý3×, hûÎm%;·lÿºí[lÖØ)vä±5m÷ίÜàǸ¾wØ-kåÊ—sƒ co¸Í­pЊ„esÞ±ÿ½v°ˆzñ@ààìa?¸G € €@ Ônx¼u>À-ÑVà¼rÁb7›ýÛËo°1=‡˜Ÿï5æ7««ê^ø³žvëk\ÍW³îõO;Ù.èýü•ñv×¼§í°êÕlïî=.°7O×ê5f¸ýøw3Ü]Ý«¾¯|XU»ë­)Ö¾Gçðáî÷}{÷Ú¯ÿÃý~ã¤QÖç±û­ÿ“£Ý̶‚[éšÉ× öš.7ÍÆkAÁºÊ¦OÖº vk°z@Á²ŽkÌfk–ÿè㎱æÚÚío>awÌyÒ|"½óßwçú¬_ùý&?`z̾ë;eÓïü‹¾®Ý—Ýr½;\×Õï¿xc’}ï¦kÝg8XÑÖ€®÷ °a¯þÙzþá.wøÆ•kLõVyñÁñ®­ßjóà~ÙÐZê¸ïø@ ø̰ߌ3@@  Zu¹Ð½oÿe†½7ýuûôýe.8\öæûS¯!¦åÖš%ÖL¼Jå èUP®rÚÅg¹Ö+æ¿Ì /´rÁÿ©ìúzFÞ½ þi~n[ û÷JnçJ…Þ_Ïç_5_-˜­Öòò__ú_Ö´}Kkvvk·dÿ¨cjºÃ´\Ÿ/žñ¦}8{A*ÓýQÇÖrç}ü÷lÏW»Ü±Z¢®ãëžÔÐ èÃu¬p+6¯YÖûðêGÚy}ÿ#Ø*P0³5®}9óРܝºž/­º^ä~=±E3÷ºmýFÿU¡¯šÕW?¨ø­ú}ç¶ín`A#*gËþu¬ÿ}åÛ‹Ýïüƒ P<öâyq4 €”‘€–g~t”þäj÷óÅç›mÆ·7Æ?ë–köñj;¦Ñ ik§@ø¹á¿wËÁuÃþ1pþÕŸX«þqþ×b½v¿w [¾®ë+(×ϳw?äfõ/è×Ã]Kƒú|Y°ï ’橜ÛçG®n Ø5ó®rÊyßu¯úgæ#Om|ÎÍÈ«®U¾@ˆÖ[3Ù>XOü¢•>až–Ô«hPC¾JÅÊ‰å´ à`Eþ¾„Òié¾¶"h™¼Êq'7ò‡Ùñ§4IýÎ/ €Å`I|ñ¼8@Ê@àÁ+fw´ê$Q{0u÷jµkØ¥ƒ{§‚Ôu|œúN¿„Pëóžœæöªk©û]o=mu›6tÇGßp êðÿ$ =9˜Q¿uæ»jä-vFçó\@¬Lö3šÚ[®¥íºß‡A·æ-´ªGam¯¼ÔÕz¯Ïõ}ó YŠÊýuĘ`ïù—ÖýÞAvûœ'ÜñúN{ÆÃ¥°zW¬\)u˜ok¥3û»_½  úkù‹kP Vƒzî­V?øâ“ú÷¼"€d.@Àž¹G"€ €@ 48£¹»ó;}%Ø+>ß%€S¹×~Ò%fÓ—õ¿S°´Û’z^»/½µÐýÚáÚ¸du æ•Å\EAu¸„ƒR}îãèqás´·û©[GÙ¸ŸÜaÍ‚Yô«=Ôí×,¶–ákÏ½Š–¿×;¥±»·ö­7jõm7Ûß0xÕ€ƒö¡×–¨k0BEA¼Š’ëµ2Ök™ùº ;»Êþ½ûÝ«ÿGËò˺øeòJb§Œö2žÿÌô²®÷GrV ìÿ›=gé¨8 €”–À9½»ßKnÉøÃ×ýÜŽ¨YÝvíØ™Ú®DlJΦrx£Üë¬GŸ±÷ƒåçý&=àö޾âS›ñÇǃiíý—f»çºë@ŸIÞ”æŸÃ.¸žÔ=tÕ·?;šxN÷Vpª¬èúñ·¤}íÒ]Â7Í¢ŸxzÁ€ƒ.¯åî~ºqÛîŽM‚×f$­Sö{_š´?Ãæ>ñBðxº×­ÆïŽ ‚õ•î±qú~çö‚ îþX?Páß—Åëw.>Û­dP»ç÷´}{öºUeQî‰$A€ö$ô"m@@ áš™¾~ÜkÜ® ÀÕLôÞ]»ÝŒów{|?ÈX~gJ ÝU—¹%æÚã¾vÉG.!ZÇÿÐôh¸ÍAP=ýw3Ý5ƒç©ÿÐãgßSˆü¢çžŸtV+÷©’§)»{º¢=ìzÌÚ¶ ›LÏ)Wb<Ûó÷w éŽN¢}ì¾(›ºJ㯟¯ßÃû׿{Ó²ûS/h¼æjáŸñ^ÊUâv €@N ”«ÓºùÁ3Œät©< € A~w(.“õ5”@NÏ×róp ¾°‚y=j¬ÆñuS{ÜõýŽÍ[MKÇ5ë]Ü¢çºWªZ9H|W0ã^ÔùšmWvùLŽ-ê:þ;µyçöæ3ÎûÏãöªAŠ Ážy=s¾Ö‰ûÙ•Å_Þ;¦á 6xú#eVåßô(xÆ|™U€#€ÿ†Kâÿ 4NA@²¨TµŠ ‹ª°ù€1|œÔXø³L¯^·v¦‡ºävœÁj³~â^N›iï<ÿª{¼ÞÅ{YùòÜyÕ»þé9âÞê‡ÄI€€=N½A]@@¸äæÞ¦½ûë—­tªóM9áÛMí’×ù·¼"€d(@Àž!‡!€ €-Pãø:6ðù1¶fñrÛ²vƒ;¸fýºV÷¤Fßx \ÑWâ[@ °ów€ € pÈ”­^IçôCAÈN€,ñÙùq6 € € €%"@À^"¬\@@@ìسóãl@@@JD€€½DX¹( € € €Ù °gçÇÙ € € €”ˆ{‰°rQ@@@² `Ïγ@@@(öaå¢ € € €d'@Àžg#€ 7ûöìÍ›¶ÒÐd 𷛬þ¤5ä“{>õ6mE@ µËWfq6§"Pvüí–=wFìسóãl@òFàÝoäM[ih²øÛMVÒòI€€=Ÿz›¶"€ …À’Ùóí/¼’Å8ÒÐ߬þv) €@. ”«Óºù\¬8uF@²hÖþLkq~;®q«P©bÙT‚»"P„€ö¬k¼fÖ Ö‹€â+ˆ½{컈 "€ € €ä£Kâó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìØcßET@@@ Øó±×i3 € € €@ìþC¯Ëk…ßIEND®B`‚locust-1.4.3/locust/static/img/ui-screenshot-stats.png000066400000000000000000002731351400440205700230450ustar00rootroot00000000000000‰PNG  IHDRD³&*Â% ¹iCCPICC ProfileH‰•—XSY€ï{é–é„Þ¤·RC  ô**! JŒ AņŠ8‚£ˆˆ¨#8 ¢àXTD ƒ‚ûu,ØPÙ,qf÷ÛÝoÏûÎ;ÿwrî¹çÞÜû}ç@~̉2a%²„ÙâˆF\|÷`€:PEÞš®Dä™±—÷·4i¯[Næú÷ßÿ«(óø.PÂÉ< 7 áãˆöpEâlPyˆß`i¶h’÷#L#"Ü:É©ÓÜ3ÉÉÓ,›Š‰Š`!ü<™Ã§@žœ‹‘ÃMEòÛy!“ózpÓ8<„‹ž•µx’Û6MþKžÔ¿åL–çäpRå<½–)Áû $¢LÎòÿs;þ·deJgæ0@”œ&Œ@¬Úä¾e,–³0y^è xSñSœ& Œža®„•0Ã<Žo°|læ¼Nø³åy²ÙQ3,^!ÏÏ—øEÎ0Gü}.iF´·|^>[ž37-*v†s1ófX’ü=†%÷‹¥òšSÄþò5fIþ².[Ÿ(_#ç{m|Iœ¼ß×OîFËcDÙ>òü¢Ì0yƒ-äZÍfØÙØÙ0y§ÿî··§îDÇ÷‰è¸ø"ç²æ»/Y€䌨¾û ëPŒ 9+çLûГ/ E@Cn»ržL%RŸp^HÅA Dx°pAÈb°¬kA(Å`¨{A 8ƒ£ ´ƒ³à¸®›àaðŒ‚÷`‚ D¨:¤ AÄ„< ?(Š€â¡$(BRh%´*‚J  hTý„ÎB— >è4@o Ï0 &Ã4X6†­a&ì ÃQð8^çÂù𸮆ÁÍðYø |–Á/à1@‘Pt”ÊÅD±P¡¨T JŒZ*D•¡ªQ¨6T7ê:J†z‰ú„Æ¢©hÚí†DG£¹è%èÕèÍè ôt3º }=ˆEÃP0Z Œ+†‰Ã¤b–b 0e˜ZÌ ÌyÌMÌ0æ=‹¥cM°ÎØ@l<6»»»Û„íÀöa‡°c8NgsÇ…â8¸l\nîî ®7Œûˆ'áuñvx|^ˆ_‡/ÃÄŸÆ÷ãŸâÇ J#‚+!”À#,'l%ì'´®† ãDe¢ ÑEL'®%–‰ç‰÷‰oI$’>É…NòHå¤#¤‹¤AÒ'² ÙœÌ"'’¥ä-ä:rùù-…B1¦xQ(Ù”-”zÊ9ÊCÊGª‚•[§°F¡R¡Y¡_á•"AÑHÑ[q¡b®b™â1Å«Š/•JÆJ,%ŽÒj¥J¥“JJcÊTe[åPå,åÍÊ•/)?SÁ©«ø©ðTòUjTΩ QQT*‹Ê¥®§î§ž§Ó°4›–N+¢¦õÒFUUTTcT—©VªžR•ÑQtc:›žIßJ?J¿EÿQ[£îE›FK£;cccêc>ÄúÆ–ÄÊâ¬ãVÅ]‰×ˆÄ·&àbjÆæûÍß18Ñ1± ñÖ“Ë\Z¨±0sá©EŠ‹8‹Ž%a’b“&}á„rª9cÉìäªäQ.‹»“û‚çÅ+åðÝù%ü§)î)%)ÏRÝS·§Ž¤y¦•¥½°‚×éé{Ó?d„fÔeLdÆf6eá³’²N U„®Å:‹—-îYˆ D²%®Kv,‹k%d¤5›†4>=RSéé`ŽGNeÎÇ¥1K-S^&\Ö³Ü|ù¦åOsýs^^Á]ѹRoåÚ•ƒ«¼Wí[ ­N^ݹÆ`Mþšá¼€¼k‰k3Öþ¶Îf]ɺwëc×·åkççåmØÐP P .Øè¶qïè?ôn²ß´kÓ·B^áå"›¢²¢/›¹›/ÿhûcù[R¶ônuÚº§[,,¾µÍsÛå’Ü’¡ís·7—2J KßíX´ãR™CÙÞÄÒ²òòÖ]†»Šw}©H«¸YéSÙT¥Uµ©êÃnÞîþ=^{÷jï-Úûù'ÁO·÷ìk®6®.«ÁÖäÔ<Ù³¿ûgæÏõµµEµ_ë„u²ºêëëjÜÚ7HF%ºvØ÷pk£eã¾&zSÑpDzäù/I¿Ü:|´óóXãq£ãU'¨' ›¡æåÍ£-i-²ÖøÖ¾“A';ÛÜÚNüjõk]»^{å)ÕS[OO矞8“{f¬CÔñòlêÙ¡ÎE÷ÎÅ»ÑÞÕ{>øüÅ þÎu{wŸ¹è~±ý’륓—™—[®8]iîqì9ñ›ão'zz›¯:_m½ær­­oNßé~Ïþ³×}¯_¸Á¾qåæ¼›}·¢oÝHÝæÝ~v'óÎë»9wÇïåÝÇÜ/| ô ì¡ÖÃêßÍ~o’9ÉN úö<Š|toˆ;ôâ±äñ—áü'”'eOuŸÖ?³{Ö>â?ríùüçÃ/D/Æ_ü¡üGÕ+ÓWÇÿôú³g4ntøµøõÄ›ÍoÕßÖ½sx×96öð}Öûñ…Õ?øÄüÔý9öóÓñ¥_p_Ê¿š}mûüíþDÖÄ„ˆ#æLµ(Dá”Þ }%ê5ˆó§ûå)¦{ü)ÿ‰§{ê)q ¦€¨<B» ±Æˆ*z†h”€ííåúO‘¤ØÛMç"µ ­IÙÄÄ[¤OÄ™ðu`bb¼ebâk-Rì]:ÞO÷é“¢tù2©b1ãbïÒŠóÀ¿È?Äù²T0ÖžiTXtXML:com.adobe.xmp 1092 435 NY¦@IDATxì€\UÕÇÏÌöôN 6„Þ RÕÐ¥)  "U@°¢è§ŸŠØ 6»„bEäÑ€"ØÞ[B ½lv³}v¾ó»;g½û2;;»;Û²ç$³¯Üúþï¾÷îýßsÎMeUÄÅpGÀpGÀpGÀp1„@ùSÏ,C—ë—ê8Ž€#à8Ž€#à8Ž€#à8Ž€HÊ5D¼8Ž€#à8Ž€#à8Ž€#à8ŽÀXC =Ö.د×pGÀpGÀpGÀp'D¼ 8Ž€#à8Ž€#à8Ž€#à8ŽÀ˜CÀ ‘1wËý‚GÀpGÀpGÀpGÀ oŽ€#à8Ž€#à8Ž€#à8Ž€#0æpBdÌÝr¿`GÀpGÀpGÀpGÀpBÄÛ€#à8Ž€#à8Ž€#à8Ž€#àŒ9œs·Ü/ØpGÀpGÀpGÀpœñ6à8Ž€#à8Ž€#à8Ž€#à8c'DÆÜ-÷ vGÀpGÀpGÀp'D¼ 8Ž€#à8Ž€#à8Ž€#à8ŽÀ˜CÀ ‘1wËý‚GÀpGÀpGÀpGÀ oŽ€#à8Ž€#à8Ž€#à8Ž€#0æpBdÌÝr¿`GÀpGÀpGÀpGÀpBÄÛ€#à8Ž€#à8Ž€#à8Ž€#àŒ9œs·Ü/ØpGÀpGÀpGÀpœñ6à8Ž€#à8Ž€#à8Ž€#à8c'DÆÜ-÷ vGÀpGÀpGÀp'D¼ 8Ž€#à8Ž€#à8Ž€#à8ŽÀ˜CÀ ‘1wËý‚GÀpGÀpGÀpG Ü!pGÀp¶tž|òIÙyç·ôËôë˃€ßû<  Ã)¿Ãú(-ÒÛÊðݸÁÄ~ãM7ɆE‹¤ùßÿ–lkëæ™Jý÷œî‡#;Ç6¹ÇI†YNvÞŽÙf³ÿ=bߎsû!ÔÎ'ÂBB=×Çr²x¹ãTU•T¿â2嬳dÒÞ`±úµýÛwÊ¿ÿ½<óÄÒÖÖÖ¯d†zœ²pKC˜å›Ûq,-ñâ}=̶´HÓ=÷HÓßþ&-< 3¯¸ÂrëÓö‡ßÿ¾Üú«_õ)ÍhŠLŸåñ‡¿çž~ZN?÷Üa©þ"mO­ÚîêtgY}ƒ¬¨_/ë7ICc“´gÚ¤Z:dfMµÌ™:Sjgm-ÓÊˤLa zXàñBG`¸x饗äúñ<ñÄe¿ýö ÕøóŸÿ,üãåCúLœ8Q6lØ 7ß|³<ûì³ÒÞÞ.ãÇ—… ʨߦ”¬_¿^~úӟʲeˤ¼¼\æÍ›'Gq„l½õÖòÑ~4ï¥þùR[[›7ÌO:1=µ¯9sæÈw¾óY²dI=ì~øárØa‡É}÷Ý'7élÙ®»î*o}ë[CX¡4y·Ýv›¼ÿýï—©S§†øßþö·Ã öï|gmº¸”|0¼WÎÒ™¿vÚIzè!ùÉO~"Ûl³\|ñÅ¡°¯~õ«2aÂ9ï¼óz}OÝxãòØc…t¼·H7wî\9餓Â;íG?ú‘<ÿüóòá8Ä¡<Þk¼ÏÎ<óLùÌg>ÚA|•“'O–Ë.»Lî¾ûn¹õÖ[»‚HMŸ>]^÷º× mƒÎ(ïP® R„ry¾ìe/ëJ3’wì;auä9áÚùì³Ï>òâ‹/Ê5×\‚Á–ïÀŽ;î(¯ýëÃ7ä™gž‘_þò—áA¨£EvüñÇʧaàÛüüM¦¿ûÝïºÒ^.¿üòpŽ÷ù•W^î=}Œ²2F "Ï=÷œ|ï{ß“ÓN;-<ã´§£>Z^ùÊW†pûó—¿ü¥à;º·gñ†nÇܲëÚ^zé¥2mÚ4ùë_ÿ*úÓŸ¤EÚ<Ã{î¹§uÔQ]ñFòš!]dHoÕç4Œût„mb?—v>±íJ§I–©¤Fˆ¹¡¿,qsûFŒ„pM§1:…pË3·¿)bq[®½Jß©}ÕA3dK&C0…k§ïçáÐ)ÏrSQ:4ïz-âñºùçŠåòðʲ¡©Q•„SYYJ?Âý(7KsSƒÔoX+õ«—IóÊ%2«£LÞy¿ðµ²·v+5/k ƒXeÏÚpFöžŠ·t䯻î:©«« x:òÿV5L:<étZößùÃþ:º§Ÿ~zèÜüJYv•gŸ}¶p¹ë®»dõêÕò†œJãÌ™3õ{8¸ïÅN©ïkOíëœsÎ ÕÆÆFyBU\ÿõ¯…A5k_´UÚ)êÉ7n ƒ3:·=¥±3×¼Ž ÕeÌÜàšÄ¬@Ô^ƒ¶ß~ûç…^ƒë§uV Y¾|¹0{‹¬Y³FöØc@8ôöž¢n'Ÿ|r¸·¼n¿ýö@|{ì±]÷›x”õóŸÿ\¶Ûn;9ãŒ3B?ŠòæÍ›'t»AèÅ× ‰Lûú¿ÿû?á]yóŸÿüGî¿ÿþ@Ð6!ó›ßÈ.ªÂ\¥*ߥ–¸N¥Ì›÷=DÄ8GH®Á„ðvØAV­Z%wÜqGÀöUÑK®›÷ÿºuëä׿þulz衖ԷÄ@©ÛŠåw 'ȤI“ÂUñ¶ó¼“hóŒ<òÈ#²×^{…8Î6“ÉmTÚ™7x옭í'Ã8îéY$ ¤Dh,LôðNø½šLÐŽ!+!EïÔÁ2„lmmm½$ûÉú4Ó ×^ûß,ŒTøï™ÿ ñ9ö‰kñsû›‘!z‰Óu>_ºd¾Šu¶ú cKÝ†ëæœ’Ã&„åbw’&Vâ%…°äùÜ90˜¨ïø¾f2cM¸æ_ýê!¿ìAÓi×v²F5An_ö¢Üµt‰´IZfjgpÎìmdŽj‚dÚ›õ×"í­úã—•öê´´N¬’¶­gIkfoÙÔÚ$|á9¹ö“ï’­7vÈ™'&gžq¦L¨¬tbdÈ›ŠèŒ,–.]:·¯Ö§Í’ì¾ûîa¶’ƒŽC¥¾+ NøÑ†Ù´iS¸ÝvÛ-lжã‘u•^›‘Œ@Oí‹N• š!ìùóç‡ûk×® 3þ º/^ˆ¼…:£]( é I¡º„Žb¡ÄÖ'L¡¥ƒæ‚†š[hr …@¨­­•bÞSäA{1è¢]` å¡-‚†š!ÜsÈ6Koçâ-íYemÞyyPWˆÂO9å”0ø ƒctü»~ž/4CbüÐÞ âAi÷ÒÇH,4J Gb\GÇÕ{-û‚ÏÂŒ3º%¡½Ó€¡mÐFŒé±==‹d¿â¢8yC[Å¬íµ¯}mÐ.œ2eJmÄî7«FdQ¢äA ' bᘰÜVÁè"Kº#űøq>Ñ~xÇé}[âçˆ,ù[˜ž£6]ôçMH£Ç]&v>϶h ¢´ø k2\×\rB„f²^‰µ[_xQn_ò¼L™8Yv˜³žU6UIl¦A·­’Ò_Z ‘lG«”µ«ƒ˜Œ:×Q³eH´A¶„ð”o;s¢Lí«¥^5H®|à·òåë®’žý.9û̳¥‚ëâ8[4ÌŠ`&ƒ`ãn²råÊ°Ë ‰ FŽéð÷àƒ3ô¨—Ó¡`ЂɌ 1ßþ¶/Ìeh¤gÍÌäkÔ™Ø@Úeë2ëËi!¯ @P³‡\@“cÅŠá~2Èfð‚÷)ôž"œÎüã@N ]B[x…:ä3á}výõׇ÷¦.Ií fŒÑF2!-&·ÜrKèCcÊe$2j÷÷¨;Fh¥PçW½êU£Î—È?þñyê©§ù A…v¤•‘˜Æ°Ï=‚¤„<cÌ×Жù¾Úé3abØv¾Ý²øáÞ¿\Õ!‡4.h˜à¢½1ˆ¦Ï5¦*¥–žžEÊ©¯¯—OúÓ]ER— /¼P >˜ä¹÷Þ{CÿBgß}÷ =]‘Gðþ4z}»‰³íå¾™9Büp.Ng™s."3 2Œôè"GrDÄHíAºž„<ùnvœK[ƒòg2o¬Ép]sI ‘6mmj’o>p¿TVO=¶§„‡>MJ„èLG› ºíš!ª¢$Hø) ’Í‘!ª6"eÙíLd¤¬¼C*Ri©ÔZ¥ÞDª÷ÚI6캭|bñõò½^+×^õ]Ùc×ÎYÞ±Ö`üz±‚³)˜Ã ttM={wÕÕX8ðAäÇl>, Ë€{`lëQ)wq‚@ÚíB„kÓÛn»mh“tÈQùïIÌž=ž¹g?tþ4QêÒSY~¾w D05ùç?ÿÈÚÚÚ08á…i  hóž¢4î#$ ƒzö/¹ä’nƒ1:‰ Š(‡Á?Ú ö^$ýV[m%/ùËÙ 2{ölÛ [Ú&=´¹7¿ùÍ €ó ¸¨÷êøÓ,ŒøR‚-Âu@t0»éU,>úhxÿcšNGydÞ{ï½Ãsq…ÿ°£·½ímqrßß‚à¹1çÁf:ÃýçyÅdeÖ¬Y˜äœµ“b.¿·w´åÑÓ³H8Dgl®;O=î¸ã)B½hϘ¾ñ @KvÔˆ¾Ûz ë MÆ#ŒsÑ/’ÛvÅá±øGÿýkdgÐÑã.R„¾¥¦ï"EÈC…¿$!­ azÂrûÔm[(¬[D?.JFˆ`5ûó¥ËäVyØsn­T¨Fˆd›$¥H¶] ÕðÈ2Sö• éh“ŒjˆdU=´]÷iPÓ'L‘6%G66Öi{ìP7.•ZÓjÕ­jJIÕ‚ÝdÕîäà³_+_¾ðrÎÛÎ.ü¼\GÀdÐêX°`A(Ur#Dè´ 6ûJ8{t:Ì>|áÂ…¡Lgûxñ™yBÈÄÿ8}D€.NQ!"úÒ¾h¿ÌòÃi° *Ú…[A ûv›µ´••ú[+Û·}GÀÞÿû߹г<3G1íŽÞÞSFÌ’þMozSÐã\—¶…CÖÐÁ×ê“?ŽiC桜؇H8ýA[ ˆ«¯¾:øÉ€ˆƒ¸ÁZ§žzj¨?3æ_ûÚ×Â{t4"Ì–óÀA-/|ì» ø N,h0[ÏÌ;Z1üÐ&„ŠÉÆ8ï~ÐÆ‹MfÐâž3¹ò­o}«ë!®q‚]¬zGÇyôô,R&ßs YG»Æ× ]!j¾ô¥/ Dú¨"Db ؇(ˆ%>f?÷ ±ìXßyI2$yL:{w†<â2ØÏ‘!ß)Â6˜ËĤïXŽUºÌc‘þ1r„!>Tš‚­í[£9Â,;IfO @x !B‡ƒ!³-‹ÕŸÁ6ö̬0€`›/OËß·[&É{>«,¶}Y™lùÑüž«KËY‡•è744„Ak2 õDÁi0æ1˜Œáhýbë2£ ÓR]>*foLA„?[È)ˆ*ÞGœëí=׋}Ìa°¡²sP „ÂÀÇ ¬jaƒ!´ÐðˆsËŸ-ïC6.Z´("8e…\ÃT†Á„B{³´qžÝ/už–[~¬Jöõ¯=8U}×»ÞÕu ×â3 ž)î#b˜|Ë;NãûC‡@©ñ·ü’mç†{Ï*2F”0ÑÂsaZq:|ÔÄÏc¡wtœ–ý|Ï"ÈÒ—‰óåܼyó‚ÆÙój^‰³`V·áý3îø'n©„:©@`X ±plçlß¶19q¡çÃw5·ß•ŽüH_—î³#AraA3„ô ¤‰ÓÚqœO._böæKdÈqí¬ý¨û;8 XC2ä³ü[êRÕ²Ûì­µ54I:§ÒÑÖ¨d$¶J‚(Ò¡„HFÍd:RêìP÷wÞjgÙz2iU DguÛ4~VµC*p"¤&3Ym“úgÁ¼WȬ‰8\m—ývÜW~r÷Ï$uОò£Gþ*ëÏ;Gm@¯í|FÝ­÷ ;Ž@_à£G‡T×hÒ©‡ ±™@ ,Q)B‡—å,™…µN_ËôøŽ@Œ@_ÛÚt°Y% 6i ƒ‹ 4Nýl—Ã>ñq¤G[f‰WÚ?% Ž‘¾Ö%$ò?ýFüÑ `à‚@ºB0 y`$ż§’•€¡=@Šäsì L8"¿ ÉežÍÉhœ?uE“SÌñ™ÁŒ4„Ú./”¯Ð§éûhÁ°lîÏ~ö³à{Ê4uòÕ›{ƒæZ2¬.ƒ†!ƒÚ7¾ñù¢û¹-ú<·< &e¼k Ë÷N¦ÏÁÏ¢‘¶Vèmqm›|9O?ÍÖXX–Ý–ƒæ¹Ç×;,Ù›×ÄiFä¾>oÝ$y–û…Tñ1û1áÁ¾þæ?üpœC¿öŸÉ½O»ÈÍ7$V¾æÚ£–H²DÒ$‰“d?1¤ôÐoP bäó< ËÚR2ÚtõýѬ&2ÁD¦£]É´At Ò®~D0‘i‡QÍ5’ ¤È>[ï#3ÆOÕýŒT–UÊäªÉrﲿ˦–Mªò_“–òt…,˜³¯:Q-וgšƒI š#÷/{Xî~â^YݰQV=ú¤œZypPõ1èzEG`H`V–Žá|b³¶¦Òš/ŽŸÛ²ÀÌ IÊ@®~¨ÛŽ1™aÄ1kR†º.ÉòGâñ`Þû¾\oo奄ä5qiW¼#! CFÊ}Èwmh"B.ÃÀHn+Å Sè]LúBqèëðþ7s¹Bqû6Ø?…ÖUò½ë~×{‡óÑ/eäGŽøˆÃ~îü|õ7Py†¥–Ñ Ak$·…ÔèÚçœCvÄ?-CZäí–YãgH£j’TUTÊ”ÊI²´áiÈ6H…: A;¤2U)ûm½¯Ò"iiV"%«ÎV1¡Ac¤vævòðòG%¥~F2êpõÇÿ\,{¨í-ÎÀ\G`ì À‡”Ž|Ojv„£ÒSøØAjl_é`Ýÿ¡n_Fì廞¡®ËhiQù°êº÷öžêú$Ë+Ô®’qû{<îC¾º›/—‘Z¿|uÞÒÏæ{1˜Ï’9„L|3ï|í¶‹‚…A"B$>Žãñ> ñÐâ°t!rÿÿ-¹öÉWI Ê æ0¹ãP®édzóy¶Ckž*ŒŠSÃÓæÓKEBõÏú¹é¹§äU;Á¦5ÍŽŽMÒôâ)Ÿ¦>?T[¤]ÔL&Û¢û-Ò–ÒÕeÒª’R2D_=÷™7q[ÙØ¶Q}†¨gçr̤:äÙMÏ)ó©dˆþ«*«’³öÕ†˜–]™­ˆ¬æÿ6¡²F&© |Vµ¥”f‘Ìþ»Ê¥?½B<ðU#ÕzõQ`]o½õÖ >Їø¡’µk× ËìaŒ#KÅ¡zKÌku©ê²JÙIìYiûsÊD5»Éyóæõ\ü2<[£V{´/¿PØÃªâö /t[0_|XkÔÍqˆ‰J2¸á!UGT—±F­°7ÌX*õàR±ët¤P“tqGÀpGÀpƒž$‡TÛ9Û·m¬=ÒSþ}9O~h°5¢ÃÊŠŽƒÙŒåK8a&Éc;ïÛ@¿‘ JQ\ñï¿Ê~ó÷Öb¤}}d+uyÝt‹Úë×K{£6Œj4B”Ä€ )S3™¬’Pê3dß™ûÈnÓv dHuy…šÊTÉ䊉rÏšªóÃÎ*U¥«å•3rš!˜Ù(YÒ¢"A´ñ•¥Ëd‚ªÈS„H«–ÑúÆrÎeÊ=¿½«×qòΰ4'þ¾÷½ïÉYg• .Ù1vªøÃä¿ø…Üu×]€‰f’>6‰Ø¸âì‰ãþª ,£‡#5l„­,ˆÔC §N$6É,9‡¦±ÜV.i ;ðÀƒ—{;ßßí•W^)7ß|s 9ŒõŽóÂáÒ¨ûÒ¥K»‚¬îÔ‡Ÿ±‰ØÙƒÕ{ÞóžnKv%Ôo~ó›rÕUWŧ´O½q†èâ8cÌ!xGI;v‘èýÊygƒÎ+ÍQhï©<†#à8ŽÀ˜BrÁ„ýäOÂvHÏâ÷g«ùÍÒ&ËâØˆx¿?åxš‡€R`}†í×?󸌟4UÒÁgˆz©n‘†¥+”îØ$2®]6­^§ûª‚‰Ly‹’:`U3™Lª]j§l+ÍZ -jbS¦ƒïqÕj*3QV¶¬’†Žµ‰.S‘jÙæ¾ê;D¬ŠÖõÚ#Ù”-ÔX·´EâVWUK…êÇÕTˤñeRõdyaïùÎw¾Ý· ‹b‡‡+:.å.ƒÖ½‡ä`y7¯½ï}ïS‡°ßËìýö·¿ ËÆ}á _KkáX Oéµµµò‘|$øIèK}n»í¶à( rïéïxÇ;‘fƲeË‚¦[ÊÁÓú‡>ô¡PÆ¥—^*8dÃËv,`iÒ›Fœ¦·}ò̇9άp(wÅW –ÉNì¨3"Ë—/š#xÛg¹4œB à‹å÷ò ×Ešž~Ü„¸wß}wñHÏ .ƒƒ×G’ Ydu‚HäØel#€çÛA„ࣄåOѲã}eD-½óï >?ðûÁ2'¿¤ùîw¿»ˆh,NŸ>=Äý‘%YÉ;rµš\{íµ]e¼ýío·Óa»û°ÏþóÁ±Õãoû[·x×_}ˆgÎZ œ;wn8Çr°ŽŒû’>$Ò??øÁ‚&Z‰hó¡ É’ÚÅpGÀØ # ;CØ󹰮mgpÿÿÆùé~<6é*ßâô¿O9賑ժIôÓ§”×ìy¤Z×鲺›$]Ñ*«ÖJÅöS%5)#Z-óf©CUô6 2:´QeuIÝ9z›…Ò–m ¬Fµ@Æ•Uâã©Æg¤B¨–¥ÊåSöVÿ!)]M3ÌcÐ^€ÑæˆVR™þÉèÀ\+*Ëõ§šR!ÕÙ*™”/ »ÖÊç~|•œyæÛ6Óp(tâÎk¼_(M±a žÞûÞ÷*Qó0¸ÿô§?–]¤Ã[H˜udÐM|:²¿úÕ¯„Áºyµ/”–4—_~yX­—·¼å-aùÑdÌeøarrÔQG…4x\÷»ßLY®¹æš.¿,1.ñ~2Ͼ“Wœƒ ÌPÐ\8:ùä“óf‰i?Lf8à€€)+5p­hù@Ü 1 Ëò+$,©†0`ˆÞ$®{oq=¼8 ¼Ðøa%MI˜@Ãèì³Ï&\Éãdü³ÄÝá‡f¶¹ßüãÃ@–eð\F¥~N19佃É#Á>ûìˆgL!—y]vÙe+›wþlÐ’`yVÞu]tQ0cämy^WW!!.ÐÌC(!ÿûî»/,½ËñâÅ‹Ùôµ2Ñ´{ê©§ÂyV(áÙ2pGsÐL- áñ¾Åç\|¾ØôhåAþ#8?f9ZHúgŸ}6E`ö±}ÌŠ)ù6®sÉ3÷ ‹FÀïCÑPùˆ£±­ð^GøŒfØÇÄûñÏÀµsv\Šm2O;¶í´D†×ZýÎ~úk_ëB¥UW]\«înÖU¸þRâÉÜt 9_ûê·ëäú@e¨q¢¾}ÒQ.D~üÔ²õ¬m%Ó²!!õÒÖZ/å³ÓRÿÜ IW«žÈêõ’­Ò—‚!i]>·¬L‹Qã°­‘êt•²|ê¤\&(2¹|¢<Ñð¤ÆÍJµúÙwj'Ò¢f2Ú!ä£ÿËô=Ç)Ó¼9¯Y§Õ©*¦6UJЍ3Ö ªaÒrðtùÁu?èŒ;þ2@‡ 9öØcÃNrodÕ¦“Êx˜ØÜpà Á´ä°Ã Z….ëãÿx 6Ž>úè°4f.æ4¬P: žXBìÿøGд ÃKùC)ÔŸ(POdHOõaP‚Ö³´˜Îà+ÅeËC€AèG?úÑ0¨äê’Ç¥¾bÚK›švÏ¢ËØEJ´;Ù•+W†w&[ó)„ÖZRxC¤Ô×× Ä«Åe™ÐXÐÔ@Ì”íÞm¶¬+˧šÄ„>—¨ ‚¶ ´RlIjKÃÒ‘hnôWŠI¶dß´ñ…?(È ¾o„LÔô·>žÎpbàýÉ;‘šwIá½ùo|#hL£ÑGÿ2_<Ò¡éÙÍĉ‹#0’€¤øÊ§>%ßþêWƒÀÛul4^Ûs)å½jÅ)2Z¥O„H£vfn~ú~™;uš.­Û «É°´nƒþ¥fn¥¬¼o‰šÏèz2ªÙ‘mËèÀ!+åe)ÕÙaÂ\ÙyB­*x(A¢¦0ãT;d¼:R]×¾.üÆ—WË>“ö ¤G³.×Û®Z$ÄíT Ñ)4MÐQ?"'h‡À³àSD³ „IÐQRd\e…Œß~+ùÎí‹Ôw *%Ã+ ژ탔@󢿾@Ðt`PƬáët)&:Ôù„5Ì?ó™ÏÈßøÆ MR ñ’/fçÑFA­™ŽëP ;×É`“h‡´Ÿüä'Cû'?ùI²ð4#fÆ,XLN=õÔ@”Qµ#<2Ôð¸ãŽ Î“Ç °>÷¹Ï…ç'À <12!ßý÷ß?haƆٚ UÉN ƒ_F;fVÛf¾-ŒŽÑ…^1ïâÙÅ”óÞfvóûßÿ^¨,hf™žc´`¨Ë®»îÚ£‰³ÿÇ| iûš”‹ÜqÇrÆg„'ƒh°ŒÀ½á×Íö?¥V0CsçÃþp—4ÐŒ¨­­ Ú=§Ÿ~z!‰–IêƒÖZZÿó?ÿÈHOù˜ö¡)0Z„kBx'ãìaf{†hùõ$´‰K.¹$óŽ5?IäNï1ŸS,åhrÐA…Ýýë_a Á‚¶÷ùë_ÿ¶Fšà“Ê–ûC›„¤é¯ô–žº#<¿hJš6 m€g 4cõäþÖÅÓ9Ž€#P -:[ηûÁ ¿|„,Ä4k,D€9ææ|ÏÑÀ‹-ðÏ~ö³áÔ`jºÅenÑû:ÆëUâ8ñ~¯ Dˆó‰÷{JRLœžÒáù%ª‰ù¯{ï•{Õâàߺå™Ìü{õriS¿YÕÁT&£>?Rº¬®èj2éòvIÕd¥iõF)Ÿ\&íë¥zZe ? 0œöJ%4T±CKéV¥ÕÈ%].O«©ÌøòÙyÜNa4Cp ªÓYÿ…NÓsŒéMçy5Á‘2§IVËUâE]”hgªC*Ê5Õ©È–Ë‹3êåïÚY< ×9üo†ù÷LE‡­íçYüYÔ™¿øÅ/ö™2¼YÙÛt[ –øÅĄ̂#[,2ò0¡£ÎÃãïÇå÷ußêç‡fÈŠ+Â`ÕÂûš/ñO<ñÄð!»óÎ;»}Í'®W_Ózü!`÷žÎÅ×r* ¦|}UYnòÜcžØÉc ˆ Ûhs°Ï€Œ$ ûgžyf 8òL1K„̰hûV®„<þ÷ÿ7œã™` [«ŸäIÀìBY˜ò@îAL2Ðc†Ÿ/õÅïÏ1jfÊãr–,Y|KpŽî~ô£p €!4⸔E&Bø¢ã)n< Ö1ëaÀL^\?¾qÐj ƒïžp‚M 3üh»áÓ¿øÆÀb|Ðt ŒÁ.þ |î¹çžPO:“¼ŸÈƒÕ¥H‹d1ç/¸à‚þâ‹/N[’ã$vÍüкcÚ íë…œ:÷Üs»²O–IÇ;‚„0œ`cCÛ¢]Ò¶(b¶†`6óãÿ8h¥ÿJ¾? ޸Ϙ[ÒþÁ\&.›öD;æ^|⟯|å+!ûÇåÇñ¹bÓc’ƒœrÊ)ÝÒsŽ<ìùæ8ΟãRI©óEóðr5Ií0IÁ³‘î§‘Xɰ|ǼCì“/|$ž+õ}H^#d3}Þ9 tñ3Ƴ¹ß~ûÉG~É4=3`fB…ç-+ÞÕ¼×vÙe—ð®*FCoÅ—¿üå@fC\ócòL÷Ä[ßúÖ¢ˆÀRåÓÓµÚùRâgyöw;˜m…ûÀ»ô^šP^²L{7¡ÕÍ;’>«Qâ«.ö³Ä$ïQ¾Óh&ó±2FËvØë¯÷BŒÂpÇ$Þ·sýÙÆùÄû=åULœ(ípázø1Ç"£²ªJöÐɬÿ¨ÀjÕ ©}aÈŽ_ê·§^Ÿ‰·iã95e¤}àCÔ7Ú§´_7['ÙÑ6M\Òœ£ý³¥ÚÏüéu×Òä$%ÿ©ŒG«oÌeÚÇý‡îT†§¢Ühv·?û€l3kŽ´ëR¹éŒÎTeu¹]È”®óÒÒ*3_9S^¸ã™²Ë5ŸY'“gÍU¤LfWϔٕ3ÔwH[ðR™R ޲q Ù­fg c¥˜N­]:÷螌ΩBˆžÿï¾.q£éZ4L‰ÕÁ„&F+EtåÕBÙy†üì·¿(šè Ì—Ƙ R¬ÉJ¾|âsçœsNè3ÉOý&W_}uPáFE¹TÞûKUo«c±ÛB3«ÅäÁõÓé°™òbÒxœ‘‡ZtB:¹6#޶Bg—Fò˜0œNš£I:0¨ºB àp’ õü¶ÝvÛ@”ƒŸ aÚZ ˆi‡°ÖƒbÎQOü"°bÕÞð†à”˜Ž4s4<Œ~ðƒ‚YX1yaÑÓì9$( ÔÒ”¥µMÀ2èäB"¡Ã53G …=ÒNIÍâÒAK®!_㬴Äû‡csè éÉ„¿¶Ä ¦ƒpp§îfâ! )áˆÞíhy C皤b¸hØÅ)Ä;œ{»É³rÌ#H;Ρñ³Hgjø!bþD À˜Ù4BÞ{ñ6¸6B„{ «ˆQWL:1ï9ï¼óâà^÷‹IÏó€YB{0¨†°‰ mFƒ ¡ÉsÙÊGˆ@`&gž åÒh#D ]Ï@Ãð7W,´3~hàÑ/ëÍÇä5«òþŽåÉ'Ÿ~hÏB~òŒçÓº" hH+ˆ•Xø>ðCc˜~ZRIÇÉqüRåç™o¿”øåË$œƒh†¼€Ì,Æœš÷BAKB„ î/ý„÷©‹#0ÒÈh¿sšjî¨dîmj±pCîÛµŸö £6ªö)}Lú1/Ó¾Úb,¯¨Kµ=? “+&!ó´Ï1ò%‰§i¿{jôÿÇ:á×¢iWêÛãÚÇ’ˆb~mzu_ò®âR­"j&£&3˜Êd2jÞÒѬy´Êø­«eÍ£+dê¶“dÍ#«d\uT*á±ÇD(‘Ñ©R!5é*Ù¤„J}¦^öœ°›”+i‚I \ ¿Nâƒ}§vžë$= eÔäFÏW¨óVªÉh¹©¬""º®Mš|”(©ÐteªäoÏÜÌfйFâ ÅÆí-ªßÌ*Ó1fÒ[ü¾„àêÓ˜ÇX:^ʼèé(Ó±´óƒ±-Nðæ êè8/^¼xÀ×ÀàY˜þ`¯nýÉÇÓ÷ŽÉ‡÷"ÁÂpüËàŠc KsþUßÃç‡ÅÇ‹N ´ šÌÂÓAfÖòÁò‹·<Çh`عøÂ|˜½'œg’çÓœaB¢·¥%Ãt¨8‡XXò˜0#R£î<ûöô Bm¶ ÒQáµ|YBÂŽ.\Tí¸'œ,ܶø¤ ç¦;Ì~ÒÙ„d±ø,á– «ñpáZ8æ=̲Ù1š9ÌÜÙq)·”]Êü,/fx!9àb’bÄ÷敱x”0c a³h#Cèd3(".„x‘¤ç˜!ÖnÀ›v‚á~@|0àcÐÅ b”‰@ˆ%ë±Eîªá1mqÙ"ÉcÎõ–ÞHâbòcyð~³øÇõYx)·”]Êü,/òí¯Xñ"³/§ û\Û`Õ“vŽÖT’ Iâ ¡ËsYè=¹È³’$C’y¡‘‡f[¾kâ a•$C’yPÏš±ƒ™O¾¼ãs¥Ä/η¿ûàÔß´…Ò¡áÎwŒw,Zy&ÉtL^ðE¬a>Ä8Z|ˆL´9!séïÛùѺåzK]wòì³ä¾;!ûñÏ2³sv\Šm2O;¶­•Áq¥¯¸ö1û£/ÖC?®šÁ÷©¶æÑêr™¬+¾ñÍG#“—?(Ñû¤¾KÑù‚öëÔ÷ÓÞ÷ãúܼs0BüÕ âo¹¾G(ÑŸ¾âTŠøpEÉúL‡¬nX+m :é?%4Ú3Mj6£/5sÉv´K¦¹Ef/˜-Ÿ]/uK×Ë8Ùš¤~BfWÎ Ú"Uj.S‘®-+dñ»)¹‘V2íŒ`Ô9jºL5O›ÇORò9d¥¥|õ)U>qòí—¿|ù¤sÖFÐ*Å\3éÃ+®+÷š÷½@LãØ´Ýøæc®‹ä»‡!Àÿ \)î)…~ç­ÿdÛ•Ô=?Í3îŸu•_ª²Z×~¤ÿ®j÷6¨vãùª)‡‘‡tUNÚùKÚ¾ÿ®»íµ—Ô+9û¸{“š2ߤÕ)ô%¦ëäÛc:ùCšvÿ‡[n‘íçÍë" 9?UŸ«­t¢k4JÑ&3K×é S™ª^7oPsõ¢¦2’R5@5—Q%ulªúº͗»¯D VªªZÉÔŠ)º¢LUðR©D¾CÖër½;Œ«U%«f2mšWŽèИzI è{ðA˪öG'!’#>Â1"e²®e•"<íšW[ç/·/™VÉÔ5KËòFyî…%2u—݆üþ0ûLJ”Ù×R ³Òh‚° •rØGb»ÆR—;TùÑ™@%•Î2>p¾È¬¾‹#Ð’êç̼ã\-|]Ð9å˜A#³†ÌÜ£Ý ¤f¼´)ƒÞ½ô£·Gž94›ðýÀøõ¯}È[qÌm˜¡G¡óÌó‹CR´*bG™„3 6óŽcá]bfvž9Dy™Æ€½,9ž#TõpÀ)ªIO8Y¸méò®¡,»ˆXü¢0#Š ©A„P&}´¶DA³‚ëÇdÉœòB6~ к@«'^6š{€Ú~>a6ÒV›x‹íÛ->ä9tbø@â‰A;4ÒÐêF›D ™¢Ð0—¡Î8úEâŽ`8QàOoé!g Ñ‚ÁÑ.‚©™9)¦ÌÑF@j`ÊЛpÿížB0^1ÈÒ'µCh'½MnŒv2Ñ®} [Ì !‰cÁ”Í=² Gôhì™à‰çwt,˜R@<› áÄwôïZÈóØ 1$8š&¼£0Ä‚) õÍ Cyg`2cr»Îà&¥Tù$óM—¿dÞ#íM4BÏ=÷Ü@Ä2)RHÐÒƒðÅÜŠï¨Ý3Ì;Þû|ßy¿&û…òõ°"€|`lˆ°Ÿü…ÓêJ¡T$…æÓõíK–—ï‡ÊŽ?•t¿N'/QŸ8§¨vëj:s§¾{ H¸nÌc×oV•j0¤“1_Ð~]Fǘ÷éø’x,Û{ƒ¾;ߢf¿ø%yAß­8iEUÓð…ºÆ™ê î‹úmR´SÕ—Ö<–·mk®ÓtTBDÉŒrm<JY¨ K™vò+µá¶56KS]£lxrì¾ß®JˆTJ[{›’Ú˜32½BW©ÑöÝ¢„ ˜¦N'®Œ“Jqt¶}L_ BRjÃ¾Æ GêŽ%>6´¬×•}uõ™˜Q"$«¿´®>³é©¥’šT&Ï=ÿ´ì³s§ý~±7¨ë(6Ažx `¡“ÎóDí×)Téy™óñ¦Ô£™iã_Šúç«Tœo¼Ÿ/n1ç,¶¶O:vtèb OGÕt:%ÌÔ䛡.¦¼bãX]’õ*6½Ç+ùîç¬ @V08ISÈ´Œ„1ù²á,¡Gû¶²Çžtn™¤SKÞ DQeFò€™xò' mœé±oÂû ­&ª ò G‡da€ÌÌêÓtœÐL„™7o^x~1³DÁä ²´ÉŸ••ÜBL@ª0£ IaCÞÞ;VO:Ø93€ÇnNž…õ„áÄÇ$r’ÁA®‡<ÐR#_|iÐÑäºð#‚–× Ô?/¦™c×ÅuؾÕ#yœ¼Ö[9ÍÇÒ3ã >˜¿@Ñ~1à A0ɲë²t=ÕÒ€ûÙÁ %ð2Ãé,Z€¼igæGÄÊ‚±¼Ñ,áÝi3âZ˜m©ís¯¸Û@ófõ¶øñyÛ/”žÙ{4a´2åY ­Rí…ö—/ï¸Üî[=š¥Ÿ¢ªÃhH­˜ˆ‚LäÙÄD*YŸ¤©m‰Áyo’̧·øÃ>õ5s1»6ÞCøs²² — ûªf­ I&±)ÏJL^-­ÔY å…¶N Ñ*ä}È{-1 'M’Ü‚à†Ì¶8hñ,Ûàš4øªÀl†o‡I©ò±üzÚ– ¿žòïïyë¿éó¥‹ý$‘²Œä1Ï8æD¶¼«³Î:+´´"ÑöCÌáz8Øþ$qð%)Ö]ÄF2³dXtL/+vŽmüÓç8ä˶B>äoÛ¸,òÏS¯.á\,Éã(¬ä¸FyçÛ}^ß+§«Û€XîÑ>-?“ï¨áµJ|¤µß¤Qµ=>«Nò+ÐÖëá[fòGí§Ü¡ÏCjoã{Ä퓟è(•¡Æ‰ú¦‹­ôê kCÔÖ–:iS"mmÚÁmÑNŸ® £DJMTÖ=µJ~pâdé¿—ÈʧVÊÕo»Z.~ÍErý·®“ñÙj©Víu¦Z©[E¸ó§È*bæ0´/*&çõî³­PZ¤2U.k›W©ÉŽÞ85Õɪ™L6Ó¦õк(ñ‚ùÌK/<©Çêhµ:-KÕ¶o8„$ª‘tnC˜­å£nëè(30Œm¶£Ü¡Ê“³*Ì€Ód/ñót‰Í-ƒj j]Æ´uüq`žÂl_òD 2°‡4`†ÂÁ;ÏǬ @‡'”´1ìÁfÝè# >ãÕ’Ç!’þ¡*#&/t°!)0Y`J]hÓDcü™@j2 .vÕþá™ÀO¦?µµµòþ÷¿? 8ŸWæÞ–æf©oÔ ÈŸ2ãzö„e,^¼8h÷%ùÓí’êÇ5“k”®h×hªQ¢GZgVƒ†ˆjƒ„-ìDˆ6«p¬q•ÑýNÖ®L5Q0—y~ÓÓú ¨Á ŽU•i×_FÉÌg–¯}F6lZ£¾H´í,n¨ïþ+ÁÈ`ÚFÛÇÓ³ÄñìÂÀ¯`øs`æ™W~|x H2+Kg†kÇ>˜ŽŽðÛÒpþ;1ô5`€e³ÛV:+ð3Á¬ŠÕMÌF<>fiYȳëõ½CÛI.!Ë€“3ò¤WkÀD‹‚ d…‰tvl[ÈIꜴI¦#ŽÓM|<йŠgýI aƒ‰¶Í¤Åü?Äç’û¼èxñüÇy@z˜00¦SyÊ;)(§NÌÅ3átÒÁ™Ïgü¬1Àå¹$ ­H*“|÷3i{Ï=ã7Zr‹ëfYœ¦½ j yT¬í#Ä|Ð$Ó¢éÄŒö-j»‹f ˜BJa–aþC, d¼+ Ë7(³¸¶eu ´ñȯ?R(=„3ã´C4E ðT@œA˜ð¼¡u±¥Úhæ[€kÂA!›|„ß7Þô¿0KÚR‰ÅÞs´êbá=”O áâ¶ÍÌ¿™?©¥Ã{ó˜¤@tóëI ½bÍœ¯ò~ŽÍ,!ãc0à +U>q9ùöK…_¾¼·”sL6ð3A;ÄÞïæ;¢Ìξ}Ö|&r–o#PjŸb3±ólíG<ÝçÙ¥A²YÂ~œÈåÆUì#¹sakÇ! ñÇâ'Nûáè@ h“™T{V'õj?¤ËÚ*!’.ÓÕ^ôæc“ª¬%zIÚñƬKGF›jg˜1R]]ÈV]š—©ÁÊ2íl•i×P – L_‡Ò,¶ËÚ3˜Ët†1†¹Ì*uȺQÍeÐáתš*íJÖ´gZeÍÆeÕ†¥š«jeðÀ œê‘kØîKxBô·¬@Ô¢‚øðÒ´|‹JÔ‡H–/ôN¬³A-ÝÎ÷!«¢£ZÞV^Ñ {‰XL~¨ª2 à‡àÜŠN'³ïü`í\2¸e¥ Vâˆý$ôR…nÁƒuÝ ñƒ’ `H»gvLæÖ®h;ž,ÔHˆžÂYÖòbË.ŽË@Ÿ˜ `—ŒöIë›íËF›å—/ÌÒ÷¶í-ò6b'YÇü á”,߈d^Ä+–Ìg(óÕu å£åsÛm·M5L?hOv¯ÉÛÊDÅž_|.äþpoâÙiKÇA#…Ÿ qlêøœí£Ýcç‡6‹iÖÅç!×âü, m#Îõ5½¥Åü€yà`•kLZy¿”ÛÁÌ;YOÈ@ü™™áh42ˆÎWÈ-sÖhy¡91†ù©yjËV[ÜÑ´Íwý­?Ä«™z‘ÏQ¾r̬ÒÊ£FÛž§Ä9ù ï~ž fý!+Íù1D#&9<ûù„ È´ H{´!©!0ÑL’ÝÁÉ:—*Ÿ|uŒÏ• ¿8ÏRì'ñ(Ež…ò ¼bËD+•I´CÐüäù¥ÿ‰ 9ÂÄZ˜˜e¡1B›MR,}º&Å7ŒË,QòØÎ³%,'Y}÷…q ǹ{„»}8;㱯ò ¾ÊˆËØ0¶üLØò ûçÆPᘼøq>–;jfál{’d˜ ®=•?ŠÏNEkˆL¯™"ëVIKå-ªýA£Éª/m|Ê¢·©†$ˆ¶ dµ¤çU«´Èr ºÿûå¨#ŽTâBI]I¦"[)iÕÉ–ëÒ½+?  BÃç§Ã{Í®³q¦sm.­å=[÷„šÈ(U¢!™6užŠéަ_§dÈÚ:ë¤q¨›ÖL·êbâ¤ai ìƒ8°€i¡Ð7O؃QÞHËUt~Ø÷"Ì¢ýå/ öüÌÈàè ûNfø]Ƙ‡ ÅŒ3íS4AâYÁ‘‚8ÝB±¡Âi¤à1Xõ@Èå•]zG€+Æ-U@ǃkL›ì;•ïš“Ú!ÄI::¦ƒˆSPÌEÑÄa&:©é•/ï±p’:îkÅûñõÇ«Ùy4çå´–b°Ã¦–±`:þøÍȰ8‚îã S7Ó£OÂ/)4¥hPå“Rå“/o;W*ü,¿-}‹¶ Z!Ï0¦hø¾Cû .È9ü‘ú‡ ÆúÆ|ú]ô…îw#28FŒÐ°c¶Œ5ó@äâpÌù®ç’tIÉåÞ¹|º ¹ñk1—iû–§åÅq2ÌâøvÄ#P´†ÈìÉÓ¥yõižY£«Ç¨3ÔòŒ´WuH•ª`”WT+)¡Ä„!"íj>ÓÖÜ*UåY½jµ|ñKWÊŒé3‚ br·ÙÎ@IDAT{{F*•Éf«$£þG2)]¶7«y„´Ãd(©‘UBíˆrUGy¦^Weh­×™—&%a(SI%FÖÕ-—ÆæÁG+¡¢–þ:Ú:dkuüW ÛdqØÚþ@î ƒuVša†ÇH‹ä—L‹ê'>ˆêËÇß|ÔQå ‰q‰÷RùØo ùðñÁ\ßÊ•++™zR®­­ 3š}É;¾¶x¿/yxÜáEÀü öýc`«vy}EÕÌÈzª×PáÔ×zFüž0Œ²<Ï‘…ÀPÞ{,˜T*?!bióm™Æ0ßÒ®ùâ¤s…pèo=qâûÁ!1f hÍ™€1¥IÁ´Ùê„&G,¬ò’\ÕËÂÑþ¡ Hs¶ialÑÁÌÉ'Ÿœwµ(‹Ë*%\V;oÛRåcùåÛ– ¿|yä\O˜ $ÏÞÒS&zñ†£\´CHCŸ¡ÍAŠp0Šɷ·º eøÕWqÚŒü0ƒ°œtÓ‰IùÑ!÷€´äeùYfl‰cùçÈpÍœ32„râcÝyrÎ~–'DZ$saC†k\—Q¸?8)Vœl»M­4ÿùaYýøêTµQmÕ7© Í&]XMVô¸½UÍVZÚ¥qc“ùƒäØìÿ;”ЀühØÔ N‰ f ·(KŽŸØ–âÅÉj…:JUjEY>­!A32DwÓêo¤*]%kšWʲúç5¿eb;Ídš[¤n£:XÕòÉoR°…ºÕe€E­t¶Ûv^qYâX0Â0ƨY†ð±ÅîÔœ¨âÉœtl#;å’'$W)ĽmÉv´;"¨þãWcfqâü’¯§uGÀpzB€I‰xàÍݬ6UH’„*ÌïØ£ÀÀ;6-"/´Y™ÄE䢋.ê2Ó« ,N ÍQfíóõÌtŒtIB„sý,ü¿`Æ”4“Á?DrÉ_Ò ‚&O¾¥³ 7ÁŒ&ö;açm[ª|,¿|ÛRá—/ï-ím‡ìÈG>ò‘®Ë³IH´Ghs´5´G ëŠ<–wz $ÖE+$ãƹèŽ#ò"#X&p‹¶¶oÇlmßÂtÛ•Žs”Á¹¨,ÎuÇ÷8*áon?îÚ/ÖÉw†¢MfæÌœ%“ʦȆ‡žSG©KeÎ.³eÆ´ÉÒªÚeºÄm匔Ì9dº.½[.Û0]&Ž›(s_v¦\{Þ¥e“:FÕÆP·~C¬_¡–ûT…ŒÕjçm/JŠTtTÿ Áɪòh„tªO)M¢š!+š^”ÇÖ?¤þBš¥EW¸iV¦¡q½lRbÒ¥CÍpt£[³:kÕôiÝ-¯(“Úí¶ŒÍã?K½>9ª³¨ä¾ç=ïéº6œŠ"7ÝtSpR×PÂÔÑJÁæ¹bK…Æ=ÔG!4pJ8A»]Tñ¢Î,ˆ‹#à8Ž€#0Xà+$ÓÀŠÏ%÷Yʺ¶¶Vž~úé°1ß,Íš0Í <±ï[Þ9Ÿv‚¥+[œFh„šà䇨K…&plB‰t8ýM ~VµäÃMyxñÿÔ§>µÙŠ}¨zÁ¨¨êBÈÀ‚çë@Lœ$–[Œñ†Á?J|.‘¬èCî²dÉ’ ÂZlB+›­í›Öã9ŽÀÈDÀŸå‘y_†¢VCqï1cU Høé­l–gæK2 ªùüè›0)’Œga#u;Xõe™Sœ³¼s\FL†°/Ú"±ÄŽnc‡Ü‡Õâ8L´@\°ä» ÚºhØ*@ ˆc22…v/¥Œ†O¼êK4C¢àÏäTùX~…¶¥À¯Pþý ‹ïcÒ“&.ƒýø8™ísŒvH—I2õj³Z«{Xî\~»"êª2ke}ã©oÞ Íª!Ò¢~CøeT#$“Óɨ™L6S¦…šÞè¶£9# ö9X*£g* ú`ã]"I›â”‹Í*N¾`¨“K¡1‚Í"ªƒ%¬Ü‚wíšA†@TÄêL‡U`Ê(•8Z*$=GÀȇ@¼¢H¾pV)$… …ÊÓÆßÿþ÷Ý <üðû4 ºôó i®ñøã÷3§-/Ú«,sŒ¹-} ŽMpÍòëh%'%v¼m„FSä¤ì»ï¾:ÆêÞ±D Õ„UFbyÝë^·Y?'¹ |SÄRª|â<{Ú/~=å=’Ï_sÍ5A“mŽóÎ;¯`U! Y]âÃ4ÀãœÇ— C8óg…™¯ýëqß|äA¾s×ÂØê¯9Á9È ý…UJsûv®ØífisemV^²NÇBº¤ä;—Œ3ÈÇoR§ÍÓuòùËŸü¤|ULJÛÖÖÊ›Ï>;”º•*6¼SÛîõGYH^¸PN9ãŒO„*c8ÊÖ¡’'uœ\þ¿²zõÑ1AUnšEZªÓJ€4K}C®ôÒ¢$E½T×Lñ™‰R]¥ËH¶vÈV{ϹûÍ–ÏÙWîùþ¿t…š²Ð [•á÷Ÿ»ÿ#¾à£rú—O‘†õõê $¦¶gÛ¤UW‘iÑ¥uÛ @´œf|–(»ÅùŒjtàxU5A C$[LePI)QÒº±YN8úÄÿ2x½ mŒ[Ûï%I¯Á,›‡Š/ÅÃ;,Ìðôš¨@ÔdÏÖF Ã鑬'ª·ßüæ7Ççñ,Fl{ ¶`~¬V°ä"³0\×~ûí×cÚÞÐr¡þÉ4ŽùË_Êu×]'ïÿû{˦`8ª©n“XJÇ÷ ¥ñ0GÀÙ ƳŒFÞå—_|f±L'öøhî™üô§? ïd[Þ ¨f¯yó¾ƒ8Ç,‚H´æ|!`>Á¬6¤îi§|"ùê"ž>ýŒ{Ÿ¬K³ÆÂà©”åÚ²ÙV“˜\°ÂÑh‘Râ‘ïšé÷ðH È3f„¨É‰"4xju``uÂAvÒ‰*š½nå¡%B(6feL#0§H.¡ÜS;àyG»ÄÿoVV©ò±¼‹Ý¿bË(6žaQlüÁŽ·ÿþû ?¤§º™s«KOñ,|¤n‡µÞŒÁ”pìÒ1B2·o´ƒžéή¿`2“;áœOІ‡>V­].óNœ-úÖ]rÐGö•}ÏÞSÚ”i×}×OoÀ=?ÿ§üüs¿’ÆêYײNÖ·nÐßF©S‚…¼êÕyj£.íÛ¬«Ù´èj6­J„(íˆõRÖQ¶J¤ÚÒ²Õ”9rÀž :—q*ÅêG˜”àt 3f'Ìn´YÓ3”cÏòžÖ©ŽóÂ^–òXyÿ½9ôŠÓ&÷ÑDйí¶ÛBgÝÂÑLa†Ž~¬láÅlé@ˆl·ÝvÂ,Z,"óõAÄqU¼zG§˜ý+V„õàwÜqGA«ÅÅpR"Àûœ™^fÑxƒ(F•š}äæ›o„«‚ õvþùç‡U°Lû Ÿ¼Ïo¿ýö00–ÿÔSOÕþU§/+T`¢ˆ6Î:ÿþ÷¿wS³/åµx^C€æ¤s;LH0f'ªä•O–/_Þí4íe4‘!Ý*?ȬöAÉÈгçÒŠÆézlö›ÏÏf8IáùL:`å9E¸IÁoH>IÞ»8ÏR哯ÜbÎõ¿bòõ8Ž@@ ‰ŸÓý¼„‰‰§¿2Ðò­Ü¹.Ž#­Ó ÎS•Hë >ÄÍÅëÚ·t–Ÿm£r­þÝêgá!0úCú ·êÄ h‚|KuŸ¢ãÑM¹¶îÍ™þûÞ{å9uiñjõuÔ dû•ªMÒ¢“ð¯×> –÷å|"ݦýš*Ó¢ar».’òuÑ0^WTÚMÇ…£YúDˆ¤õÆž«ºÖÕº¼îz%E” iU2¨©%«f,-ºEC¤Mššu ÜMº<®:>Õ_Ù‘ú5 òÜcKd¯wì*û\°G§G_X;ýÁP•)qð—kþ.·~i±4Ö4ˆ–:%B꥿!j"³II–Fõ¢ 'Ò®G6[®dK[©‰ŒTªç‘ju!R)íz¾£]—þmh“SŽ?K&¤ó0ƒC|Çÿìg? öNs_U ™9€8€œÀs9ðždÞ¼yÁzœ°¡ÝÑ×òPýÅ,¤«¾§ ÷ ²ò‚†\_ÛZfLÐvÁn6Ù)€<Â$ˆpêÛâ[³±h²à‹[ÝX}¶Ø<<ž#à8…à=Ñm©]Ô>3¶ä4~xñzË[Þœ*þú׿ïän¸A°ÝgІŸT®!YÈãþûï?´äx'¢}B\Òä´x¯Ær饗 *áïr4W¸Q_Ê¢“c‚óï8 „óŠW+C3åF%"ƒ|Ò‘wmmm˜gä`Ýò+[oƦ™ý3gÎìõò}ôÑ0&øC‚ÑnòI¼z á¬~â"áy¡Ÿ‚OúGIA›†þS,ÉÉsLÇY¼xq|ö1õï5'Í÷}%fbcáçVÁ‰Åòà\©ò‰óïiŸ÷M)ðë)?ï@L è~7Ò0ýS;èDÂ|}®æëwr«¯}MÒªÉ5N5vRs'}>wÒ1@×Oµ· <ÊõÛ7Gß­¤ÛA'vP· S0Éå;Uß;½ð‚ì´l™ì¬ùì¨f3UC3UQÑ'\G²^œ$,/é5½[5@¾©}–ôÚ_¡ÚlUC4FQKä Åeù‹/Êõ]z§NÒ 2uút™¦¿6ÕP}2÷ûÇÝw-’ :¾:C1;Iûwè˜ñÁþGF04]USŽC\~'}œì¸Ã.’Þ¨DÆz%”i€iêæ–¦ ÅÐ 1¢¿&5qiTÆdcÝ&Ùæ¨YòøïÔ×Ȇµ²óÙód¯‹÷ФNµ“È/¥¿²ªJ¹Ñ£ò›·ß.tYßòMߨ'íªÒ!mh…  ÒQ©uVÇ©R¥ŽWÇ«V5ÍQRD›»2Êü鯢¹\Î<þL5¡)þúºPÑ0A¹?¿|x¢UA‡•:¢Ì\`/Šje¾øœCåóŽ;î·©í×Á>úŸýìgƒ?’žÒØyì^™Q„ŒÁ¦-”÷¢6v‹“ÜÖ+[H§ø¸ãŽLoèÀ3ÃÉq2.ªžW]uU -èÀaÆÃì˜-7–ŒÏy|ưÄžÖ™!åZÌ\&Ÿ%‹Ñ@¡Ñ?KUµè˜0ƒ’ŒkÇØð3Æö ª«h¸`ÖCz‹Ó—-í¡/ñ=nñÏšcåX uŒç5yÌ[pœaÁ{ó»6ÞAœ·c¶˜ï­\¹2üЈÃ@cC8iQ×7‡Ž¤3gNPÓÏ÷žÅä†V\³Û!œ3wÌrx¿â£€0Þ­h²zÆo~ó›@ÚuÔQ¡,ÂÉç’à|ðÇÀàrÑ¢EaU3–ÅU\öHÚŒ{Ÿ¼¾{bº„op2N¾cÁISLlùöÅñÑ"BC(ȶ8ÎHß§îƒQGžCÚß¿øÅ°T1[ôGâ²è¯Ð§ŠÅ´±,÷ íÔXðÿ–ì§‘W,˜ÏàT“|˜ˆJúE#äý„$IšXáßêRª|È~ϪýXÎÙÊa[*üâ<º¾ÍÃÓ÷¯Ÿ1ØÇÏK×¾¶½¼Ÿ×ý+:7[Ÿ¿V%<–)Á¿Fµ&édŠŽšõ™zI¿Å/©¹G‡~[›”4aÿ%õ “ÒçrŽšáW/X tÂu¹ŽEš•˜ùñËdÔ$¹2V©9Èr5}ݤ$÷T]Uj¼š…hcì¬jžút…%/ÆÒDçûÚ&£¤ýÞeòúbX9^ñú«^×éxp‚NÂÔ&Þwò?þ6|Y­}‡gTÛ5ß]‚ ù¬’EÒ~ÀL%šÞ¥˜½YïA©¤¯8•"þækŒõr5ªð‘ÿý˜œ}ÎéR6_")éPóÕµVIWªK…jèÀ4ÛÖ®d….÷¬¿¬þiXÕ(S÷š":0nÜÐ*óÞ¶½†eä‰o>-éª QzE5Et¹ÜÊ2Yÿp£Üö¦{d›×l%³Õ™³ÆK*]¦DKév:Me5< ·áP5¥ŽUE}Œ¨ÓºvÓV×$çŸô.™3nÂq/×E0€"ÌÈ%=H‡€"þ@ Ð1¢Ó›¢¡íÀŒä3l¨LÓ!ÆvÕ|tðá|AYJÌEø€3ÛÀÌu‚à(Vø°c‹º6Z)V3W”gÎÄ(ÃÊ£l:à_|qèZ‡4¦(Ô Gf?ÿùÏÃ50ŠŠ(š$`Jçž5f²‚Up<ˆðú¤ªm¡aCÌ”2sÂÀÀl{Ñ~yImÞ@P :ó”Ñß4k ¶-TOs±‰ï4ÐÐdƒ\`f‚¾öž5„xo¡of…Âó…ñNBó­í+“-äˆ9âæÝÌûÚVÕ@Ó­i§@çÝŽ'[ÚòRdç==ïd¾1|CƲ$¯R¿á^@DAޛЮÀ  ŠïY,µµµ ŠÏÕý…  &1áƒLú(ô»n¹å–Жc|Ž9昰*_|Žýw¿ûÝ/•̳Êê>ï}ï{ƒ6yýPWgˆÅÈF;dzÄ LÌð|ÑÿâýÀʃ±æ.š²8_¥Tù0±F?Í„wZ]&¥ÄÏòô­#PŒ»ôXP4NìS¤C'FË´ CbÔ)±ßªf íÿ7 ¦ùeqË z;§“Ê•:6Y§ã¯5ŸùLÖëäÀü‡’i:ÞÙiåmÒ•¼Út<ѬÚ'uìU­Di³©¥Î½I1qzË£DáŒKéoœ¨.м_§8-Ô1ç_Ô~ßpd¶~Ó!7vT ×?*6wêÊXê»1bŽãçé8tšjµž­¤+Õàc¿"ӋЈ Ð?}rªj×pÂÇÊ«:\îyd±d7j×’öª”4W©MWK›’"•’ªÔØYµÈQ~¤MÛúº‡êeÎç(KÞ–ßm_×$Û¿¥VÉjy⪧¤jRdšp†Z&ã+¤¼²Bêîk–šIm2}·Iʬ(á‚y =­f1ªÁ¡$J6…ÖˆÒ!ª9Ò¤>FRJÄÌLo%½îü°ônÍÖ.+tðÎU6‘2"6£—/žy †¬`-{—¢¹BÙ4>Ôš™½€4€°Îo_èäõe8Q#eÆ­‘‡ôÀŒ$åá Í4QX–5R®é­<ëlðÁÇt†N³ ¨}Ž=\Dò¶•qzË›òé 2)BÝñ‰Â²Ít±¦ 4YèœÓÁ¡ƒ~˜²¹FHSå$…*fzú›G2O?váE ÔÏ2ïm›1ÆÌ–d7«VЉËmR§c¼_0‘Az §³b³Ê†i)“|ã<-œs=ÇŒ‡¯Ë ¼l‰Oâã|’oß?kœ·üÐd°}¾M?ë Ú0Å„¶pËc$m»nIGšöÅ–Éà˜ï[ìã‚ïõI'”BÏ_S5q¾ïÅ–‘7£a89õ¥_EÇ–Då² “$’].Úhmä« ý žúf&LêYhçlKˆç*΋I54Åâ%~!Axnzœ'ó< F>ùÊŒË)%~ùÊêﹸŽýÍÃÓõ!Åò@¿kÝ$yŽo›Æaiݵ:øž­ZŽÛª_ŒŒ–õªÙn$Çfyþªrf¬›”Ôdg4ýÆ5*Ù é‘VB•xÈ$4ïtrx¼­H³>»„…Ð\œÀŸäqOçr †×\™l~« ãÆ—“•Åßæ._W—,µ‹#Ôå:&„0iÒ òß«eÀÑÚGx•Ž×Ww  8N}NǨôWÞ­#—ë;îIí\ šyÕú=zZÇc¿RͼRÉpàÔg .Ͽ߸êyõƒeÓ:]]†~ݸ2i§„HY‡”µé¶­Cµ=Ô¬%­Ìˆ.Ñ+­i)›¨¦.-ºŒúþH§ª¤£1-óOÝ]*ÊÆË³ß{F|í É6gdÅWɆÕÉ^ÛS¦í=EÚ7ò¬¨¿š£&¢d‰z Ñ<3Ú;ÔoH»4ªVJ«–Ùðü‹ò­ÿ¹Y¦¢QÒGaP¿¡Ô¢é<ó ¡ã”ô~]Êré,Çö¯¥Ì›¼@Ð9쩃Xêò˜mbÖÔÅpž€Hfæ×„÷:ZÜ/LYbá¿!¹q830ÌäN^qy I ‰O’ü—@ð¢‚Y «‘¡éÁì6e2‹O³¹c/IJ>hïavƒ™%³Í|Ë0±«b÷Ü®ÇæÅ ˜y ’Ì'™Ä“6± «ÇJL˜ôæHžÉ4ŸÀ1Ÿ@8ÞtÓMaâª'=–n¯½ö þÎxŽc¡¿E„Làô&§Ÿ~zÐÊMÆ+U>É|ó— ¿|yû9G W ò‘"$´óRd£!“ô¹™ðÚ×s™ Õ¼zQ¿qAb’ÂöÕ¢Ióí´szœb….òUrÄ‘øgÖ­ DK½-§¥‹ó°taÇé0¼¬s®p‡ù ÄHƒºH0aòã28ÏÿR¿G,|k±mԾ˅Š1ï;HHEÚÀÁj©V—±: Ƕ³…ô£ämfÌ”¯~ýji}©UÊëÔ€e“š³4W*GQ&­ÊU´«L›fÜ®À=Ó!SvŸ.å-¤"S£È$©L— ™¤ÎOS²ý‰;ÉïÙGûøã2qî Ùû# dïî+Ï]ó’,Y´V**Çë ¨Ñß8õ7R­ !Au¢šªQC™J]y¦L¸êlšj ¼ûu—É«jwSÝGÀpG`ð€F#.VÐ2rx·Ývë¶²³+hèÕÖªv¤vL0/ŒWcŸÎ„æ~8nŒ›ŽóÍ|Ibf8nf% Ð 5жC+sÞ ñÁà Sû¡áÀ/Ÿ ‚Ϫ9˜Ó°Ï²Áh8àlr, D¾Zbé !B:ÌaÑ"@SÀ44ãü ×0­g'Cbd:÷i¿røcB#)hrÑæ§«"ôD†XÌ”13Fã„ç’$´»Ð[¬ƒ²žÌr!pªÔȺ«¯–tñ„zuR>N'"qÅ år¬¿V¼#ãUã>z¿"8hm×#þ…riŸW3‘gôÙ|N\¯Õw€Åð'¯ëxí y“!VõäyV—‰É‹‡ï˜ü o[¼Ñ¸í—ÉŒ]èq‡)Ÿ¼âJ¹üó’ª)jbѬqªÅÁ¸ã¥R5“¤îÁU²Õ~ÛJY;¤F¹”¥u›Â ˆ²êºMµhðÈ¥fÜ4yüãOÉÞŸ^ f2:ƒvõ¶òÒ/—ËÓ_z)˜×Tm]-™fÕÁ\F5CÚ²º¢M{›¬W3™Æ•/Ê‘ó_#—¾”)Û¥€‹#à8Ž€#Ð…@Rƒ¢+ Ÿ;¨éã?„åÉÑ€`ÀçfŽ”uÖYg>FøNb€…o'´õ,ßøˆÂ®$˜¶ Âμq>ͪ[8¢fûyõ Ÿï: 5Ð œ`…-f§éè ,“ŽyÚ'˜šŠ>¾>®ÎåÐöÀôžÔƒŸ•ÅÖö!®ÖÎ(ñѬä3´W,N?!´dƒY/H,°OJ_Ë䞣±ƒY-d÷3)œ}š(eô5ßd½†óx0ë~8­ç;ßL!í /ÀbÁ¤Ø:à,ž_]]]0†ÐD; rÅH’ByñœñaІIÏ Ä¤&¤©ù+”uh>—\r‰ð‹%_™¥Æ/.¯?ûùêØŸ|¸·:m­”íOÝUš–5ɲ_,“ñ;O’©¯š®¦1íê/¤Uê[2²¦I·/-‘ƒ§í*_¾à R©=Åõô}GÀpG ”à³_|À™Ùǹª9¿fÕfü1…`°iÁ "¦bO:´>dA(àÌ4v~ÂÊ.  HñB^ùõ}ü±â ³½8‚DßnäË@­f~ fÌ$€zàsÁi™AÇÿyæ|`±úyQ·E‹…m¾ø~®oÐ>jkkïo)=6 !‚o~¥ÈJ|“õWÐþÀ™*¿H©ò魥Ư·ò<ÜèBÀH…Tw­¬N˜þV)é9Mµg«%–ÄmQ_/©É‡‘!¥åc[ýN½¨ßÒY:é0I}ùLÖo#&1«Õl´N—²ï6Ï•ÓU'v,Ÿn's…ÂòÅ÷s#”Ú(‡64ÐÚ}ó†Eò‰«>"œ&Ùéêtê,ñš*ÇÕÈòEËd÷¼LÊÕÔ ‘ru¤Z­í2uªKÈh§MºnYE¹Ô?Q/+o^*µì®NWËTDÛ¢vVܵBÖ<´F&6]š'fd݆zÙðôƒr|íò™³>)ÌQÎ@/ÆÓ;Ž€#àlQà±'Õõ^(ZÌü¢-‘O0}Áù„%ÏéÅ~:âxh‡0›ÌLqoÂJÌd÷d²Q(ÓVêêͤÀê²zõê¢ã[º¡Þæ½êkÍåù}ÍwohëîmehñŽK ìW¨ª>K>R$Ê$­¾0Ì]’R -¦2i%9qȤ¡Q(ŒÄ½…w–Ðõw¶j‰õEÞ¡ÄÍX”k+y Ö±J^ôÖ³Â,Ö{?öNɼL—â­¨—úЉ’.ÏJzÖximRmr]}'«Yu¨ªf5i%G²êIDŠQÑp%D2­)™°“vO®–gð´Ì=sgÉVêòºê“¤jÿYR£¦˜Oÿ\—ê¦Þ'=#—¾örÁ‘o•J혹8Ž€#à8C3·=‘!Ôÿ=‘!„ÛŠ3ìç“Bi“ñ™ÝÍçCÁâ 7í‹ÛÛM†bÉ“ÞòòpGÀpG  ȆÄKíɧQÁ’¼,Ñ[P ¤ïJWLœ®È¾3ÒÈïÅ©Ÿµ>öÕ‡Ê7Ý){µí%-­Õ%y×ê¬X“T½llÈHS¶Bš•ðhÑgZÚÒê|U·zÜ–­”¶ŽòpÜšI«Í¬®P3g¢L>v;yü©&H£¬ÛX'ËW¬–ÕÒ$ín”iMkäg^'q†“!ý¼_žÌpGÀpGÀp‡@1¤qЉWÌÅ›W©Ê+¦NgHSÕ|5œ£KÍýì7Êoïþ³|ùÆÏË UOIj·*iÖey7ul” 5êhU—ÝÕ•sÕVY—ßU…ÌfX[:ÛÞªàp˜šU»duž:E-Á^5Mùú?eü)seú¥2QY½÷u¾œqé)2Nã¤T3$(˜ä«ŒŸsGÀprt³vTÆ~ïGÆíöû02îÃh¨…·•á»K# {#òi‚ÄY¼ø\©÷XÆˆÂµÔØ”0¿áÀ©d&31dzâÁ‡ÊkõwËßîÿo‘Üßð/iš3WgÌ‘Š]~WªVŽK©v‡’"Í›t èv%DÚÔ”F‰lFÚ”èhmi‘ÆŒê„Ì]*³n\)~ìírÊA'Éä´®L£ñ\GÀpGÀpGÀp¶`ŒŒè ¬ìÁÈÛó”\C$¾ªj=xÇÉë:Bž[¿ZnÿÏŸä¯üUê~5}i—Œ:‰KŸ$i· êx.ÛÚ"é–&©iï¦n-¯Ùí`9âøËdmæK¹:|KÑ(Ñ&‰ ò}GÀpG J=ëÀç(ÓCG O÷eéàï~³Z…Ϙþ!œoYF5#Ë{ˆ»Yb?Ñ/J}ïûU Oœ; Ž@1ø3[ JƒgDcs“‰Ë)Ì#×]c)²œEC$ƒî`E¶Cvž2]v>ô¹ð°S¥EדYQ·NVlxQÖ4¬“†æ&=#ºòL•LŸ0Y¶š:GæL›-ãõ$¦4Á6Là¸8Ž€#à8#[ŸZ'WÞýB'©Ÿ¨ÔÜI•²èä]g;ñèj¹óù:¹ú¸åî%uò•{–ÉM§í!íJŒüôáÕrìNÓdjÍ žóÖÍO:Ž€#à8¥D ¥ŽÅ³:é]r‰I‹R#q~%®,ôUÊue¹ö16þ嚇C†¼ÇU¦mœÎ‰í0iJøõxѾjLØx€#à8ŽÀˆ@`be™Ü|úžý®Ë¾ÛL”«ŽÛ)¤¯kn—ïÿ{¹±Ã”~çç GÀp‘„@ùË_.mÿøÇàV)&3úBŽÄ鱆`ÐW©?_ž~üñ¾&Õñ¹æáA5™Ž ò2GÀp|”\ 3בê-ß• ­ò­-—ÿ,o§×¨9hMÐ|$Ý£«7ɬ’/¿v¹ô¶gBµ?ø‡gå‚ý¶–æNÊw~®ôvú‘¥'é~úÚMâmeøn|©±¯9í´Á'Db¸†ˆäˆ‹ìm úŠëÁ‡:殹¯8õ†}1á%]v·˜=Ž#à8Ž€#°¥ €‘'Ö4mö[ÛÔiæ‰Ì'ï\*õ-ùÄ¡Û2äW­éºüƶŒ,­kÇ Èyûn-»Ïöý#à8Ž€#0š¨:á©9÷ÜÑ| ª;×}•(‡sL_“Úø\+×<â"ú—é8Ž€#0¤LŸ>½ä³Y5ÿllëwÜòÔf×rÎ+¶’·ì5KYµIŠ7ËÏNÝMÆU¤eï­ÆË:%K–׫q%Sl"‹ý¦©æˆÊü©Õ2±2]òúnVÉ1rb0îý®¤—é÷¡¤pnÑ™y[¾Û;XØÿà¥|÷Ý¥ù'?‘öŸ"ÃÛf%ã3¤üe/“jÕ é¯ÖÉš~Ûí·—»ÿügyþ™g¤]Ù’¤¼¼\0“A3d_%Cú‹Ó@1r"­°§wGÀpF ãÕ‡ÈoØe³êT•u*`>¿¡YæNª dˆEÚmæ¸@ˆØ±oGÀp-ˆþhJlé¸ôv}ü\'D[ÏÙpG` GÚǪ=Ik&+-]-ÍÅpGÀpG`Ä!à&3#î–x…GÀpFYõª-¤â¹Ã”*y¡®EÖlj“éã:ç XÑ./¤Ãf†ÿÁ|†Ü8Ä”¦s?œð?Ž€#à8Ž€#à8ƒ‚€kˆ ¬ž©#à8ŽÀX@ C‰‹GV5æ½Ô]fÔÈ®j³õÄJ¹þ•òö}gËcê€õ¾å›dûÉU›¥©,K…sO¯m’IUeRSî~Ï7ÉO8Ž€#à8Ž€#PBœ)!˜ž•#à8ŽÀØB§ªï¹íÙ¼ý‹Sw•ÉÕårùÂíä3w½ §þüq©V’ãÐÚÉò¬:ZMÊ5½Y°Í¹|ñR9_É“S÷˜‘ŒâÇŽ€#à8Ž€#à8%D µjÕ*×Ë-! ž•#à8Ž€#õÍí2¥ª\RŠ ù¢„sMíR­NY{‹×cà8Ž€#à8Ž€#P®!RLÉpGÀSU[¤qS™bPò8Ž€#à8Ž€#à 7P8†žƒ#à8Ž€#à8Ž€#à8Ž€#àŒ2œe7Ì«ë8Ž€#à8Ž€#à8Ž€#à8GÀ—Ý8†žƒ#à8Ž€#à8Ž€#à8Ž€#àŒ2\Cd”Ý0¯®#à8Ž€#à8Ž€#à8Ž€#à 'DŽ¡çà8Ž€#à8Ž€#à8Ž€#à8£ 7™e7Ì«ë8Ž€#à8Ž€#à8Ž€#à8GÀ5DŽ¡çà8Ž€#à8Ž€#à8Ž€#à8£ 'DFÙ óê:Ž€#à8Ž€#à8Ž€#à8ŽÀÀpBdàzŽ€#à8Ž€#à8Ž€#à8Ž€#0ÊpBd”Ý0¯®#à8Ž€#à8Ž€#à8Ž€#à wª:p =GÀpGÀpGÀpGÀe¸†È(»a^]GÀpGÀpGÀpGÀ8©é{ÌË“M¦±¥˜h§ÊÆUõÃGÀpGÀpGÀpG`°p ‘ÁFØówGÀpGÀpGÀp‡€"#î–x…GÀpGÀpGÀpG`°pBd°öüGÀpGÀpGÀpG`Ä!à„Ȉ»%^!GÀpGÀpÿgïLàmª¾8¾ ™…Ì’yH’9")¥È”¡’$•„BÉI%¥¤¤¹4*ФÔ_2Ï”$s*ó2Ïü×o=ûvÞuß½÷yïÝw½÷[ïóî=÷Œ{Ï>ûì½öZk“ $5*D’š0ÏO$@$@$@$@$@$@$u¨‰º[‘ $5*D’š0ÏO$@$@$@$@$@$@$u¨‰º[‘ $5*D’š0ÏO$@$@$@$@$@$@$u¨‰º[‘ $5*D’š0ÏO$@$@$@$@$@$@$u¨‰º[‘ $5*D’š0ÏO$@$@$@$@$@$@$u¨‰º[‘ $5*D’š0ÏO$@$@$@$@$@$@$uÒ'eŠ2fÈ E _"»÷ü-ÿüûo¢_*mÚ´’NÿOž:%§ô?¾’&MIŸ.œ:}ZNž<ßÃ#ºúôé%OîÜòïÞ½räÈ‘X×ä%Úó+Ñaü@ž·@‚û}Zï[(I§÷6î|8î\ÊK¨k%×vwÿ]?šóêÒ}>—[W¾À>šX»t%%Û`×pÏš+“ÑÄÆ¥)œoWF½õ7o^¾ö çÞ}Àô|eåÍ—I€H€H€Hà|!$ ‘âEŠÊ¨a/HjÕUás‰¿­”Gõ—K›L™2I‡6wɂŋä§ËÃâuEùËåÆë®—ç_iû÷êÚ]ïÑËÎûæØwCž#¾|Òã¾eÀÓCäÄÉrUõ2åÓ òÕÔ)rw—Î!OŽ äÏ/wµn#—–½Ô”?HÃú dì§É_›6Y’íÑS.-SFú=ù„lÙº5Ñ’™á‚ äÚkêʺõëeãŸ$ÚyÃ=ÑÍ7Þ$·6op÷÷>ú@fÌžp›wå[¯¼&”®=–2¥JËã={Ë’Ÿ–É+¯¿æÝí¼^îùP)_®\À<üüËryiô+·Er%:‘•+V’L3ʼ… ìÒ½»?,å´\÷rlÞº%’ÉI´k½9jt,¥Ýá#‡e×®Ý2å»oeÑÒ%a)í-1žy˽gu¢-â~¾ýêÙ·¿tëýÈYç-]²¤ôíõ˜o=:ù?7ý%_|5I~ÿc£o[¨…¢—‘Š*ÈWßL µk¢oosÛírõõ4Í}׿áºzrçm­íZÏŽx^V¯]cËÝxPÓy…ŒÒºe©Ö1ñ•,Y²Èè#eÇ®òØ€~ñ=œû“ œDWˆ@òÕÇŸKž‹rË g‡ÊïÚ‘.[ªŒ ÐÆñ—|*5êו¿6o’‘O?'·ÝÒRZ´»#¬dCÉ2sòw²hÙŸBdúì™rðàAŸ’%Ô‰¦OüF ((Ÿb»þñןÒè`ÙÆy¨k$æöüyóÉà¾äĉ2kîlULl‹ ’†õo”Çé-ƒžyJvìÜ™˜—Œu®ömÛI­5eøÈc­ô•«~³Î¥÷ºkׯóþŒsùÓñŸËñÇãÜž’6üoúg)þÞ³'*²X§Vm¹ç®»eò·ßøÒ3}ÖLY¾âÙ»o¯oÝùº0ö“Ìê(«vjkT»R¸·³+ZTÆM¾f)QÒ½k÷nùzê7’6MZ¹è¢‹äšÚµeÀcËÈ×^(ëBI¾¼yep¿¦N…ÈÚuëL!RªD)_R//w™où2UèA!Q©%m}¸u“ï$\    H6‰®ɨ#À,¤ÐòËo¿ÊìùóäÛißËÊÕ¿I–Ì™åè±£ÒåžNÒàú-Ó/&cÇ}"#F¿,•.¿Bêt¿\}U-9~ü¸,ÿu…<2 ¹‰|ö…råeî·?H£Ö-¤Âeå¥M«Ûe»*`‚ßÞbß;µ!>ñByîåMóæK¯×™_§Š'eÏ?ÿØñ3TÙ0õ‡ÿÙ6ŒF>7è)©^¹ªu.¿›>M0/iºÉE¹rÉðACµQµüÂÚå­±ïɬùsíØÄþhÛúOt¶æ.˜ï;ýuA‚…¿€{‡;Û™ÒdͺµòöïË~Á…S…RCµ¸(W¦¬YÇüñ×_2öã-¬ îPŽPº\©V=¹ræ”ÅË–Jå+*Ú±íï¼Ë¶¡3Û²Ys©]³¦ÞË,6Ê‹ý~ÔŽmR ¬fΙðÙ³e“æMšÉe—^*Ù³e·{6aÒDq’«kՒÇËô™3Î:¾L©RÒò“vÌ&LúÒ¶7kÔDªW©*}ö©¬Z³ZºïÉ¥÷Ö(°VY¢ù}_¹gÛÛïÂ_lJ©/'O’ŸµsÉ–5›ÜuGAg N=ëTy3mÆv>Û!‰>ð ü¢ÏL ¹ÿž{5­…í>~¯Š“òÚ©»£Õmzÿÿ5 (Ý.»´œ´º¥¹,P@6þñ‡Ì_´HfÏ›c§ƒ;¶ÕT«ªtéÒÊŠ•+å£qŸ ,"2¨kÜÀÇúʆ¿Ëþ) n¼Q.P/\gêÿ¾WËœRvp¢k¯®£õCAyyÌh{NK+.?-_.ûÕzró ¤Z•*R0{nÇ}1^~ßcM€}¡TA9Íž=»ÖµU qR;ÜßúÊ`‘K.±ûW½½û÷ :´“¦L–ÝÿmçOªÙóæZ…óÏš;G†?õŒ*.o’i?þ(ëó ©¢2×Õ½VJ/¡éÙm|p\f­ûözT¶lÙ"cÞyËö}°Ó}z Ê›ï¿#곊gÏÞª†\W§®|öåxc€{‰:aì'˺ ëm{ `l±?Êþ—W°û³}çˇ{nà²w{‹VR£ú•rèÐ!™ á,H¼ÏîZ­—zvëaN!WÝtP¯óˆZBp_Ÿ0Hžyá9³È ö̇“®p÷qõHÉ%Lé—–Kµ]«VsPx•ÓzGôÙ‡%_Ö¬Yeëöm¾:7ï@uîëï¾+YxÝ{w{UˆŸ”Ño½.P.]¨å¾]›¶fY‹”X#Á'Ð9¡x*/¿ÜÒ¸‰º\æ±ô­^³F>ŸøEŠs±Œ?H€H€H€H L4„yp Ýàž%Ü-¾úèsùyæ|ôX?Ù²m«LúvŠuѨL›6ކvúôé¬õúˆ—¥ÑM eáÒÅ:j¼OnÖÅ«ÃFØ~è`A0‡e|çÕ:PT@žø¤”¿ô2ù\;·¿¬üUîÔNþÈg†Û¶ôé/4ú±eíàÁDÇV« :&S?›hn9Ûvl×v6[NWUÒ@î»»£´ÐÎ7:<è„ÕÓNÉ[/6‚íÈEµÓ ùmõªXgþA;÷S¾›z–uHÇvíeßýrà੤¨VÚ‚€wç{:JÕJ•­ÃtèÐaëœaHæL™­cßJ;üE´Å,oÀ‚pÚ´é¬Þ¤áÍÖ¹œ¥ ñ|jÁÒîŽ;¥lé2¶_R}.TX®­sï¿’š¥;iuK ©§L(· äAZîúåû.t±Òx R ÜÅ”샲„uPÞAòkG6äew(ŒÐE' J€|ùòJ÷.]¥tÉRvLýzõÌ]ì7U¨Àt¾¼*ê`1€SRÊu×Ô•6jÊïý¿D• ï~˜fЩ†ëXû;ÛZ>Ñá…2¤h‘"–âE‹É¦Í›õwQéØînSfàøÖªd"â±ÊáÎ]»–?PPÁ åð×U+eÃïJ:Ü/gE4$ï@uîn½Ž(üº© ÊÉTP€2õ1”IÕ´làž;%eã í°@çܧïÑ{´œ¥Ówæ U*ãYo †n³L!   ˆÑ2$2‡}X`ùÑøÆ†Ö¹é~_ÁÿÛ¾/½Ÿè'£ÞcÖ P.<ôXOùqÎ,Éqá…òÚ»o©Oú>ùâë¯$w®‹dýÒÖÐÕ‘Ù™sgË„¯'YPVX$¶ ÑÑ@:XáÈWªpš¢Št1šŠN.çú^;İ”X¸d±)zF=ÿ¢æµ@¬ÓžÐ¼=6°Ÿ™þctqtrßû¾Àm±L +Vþ*PÊLŸù£±Ù¦£¢I)ùÄ¿Xn8k (‹ÐùüöûïlóЃÍB&gŽ:2Ÿ8î"(?P€MÔr kˆf77¶ï/tdø«)_›"¤_ïǬ£_5µ.BÇV=HßBµ$‚B ë’R`Eà/è mÚ²ÙbÀ c¥¬9 œAYX¶üg;ŠH”ñ?geÊÛ[¶²ŽöfKSO•-Gô9ì3°¿=½»?bV&èˆïÒ˜(˜^|u”¹Á@arïÝä&íð?ñôùròWr·*a~œ5Ëgcù@YoÒ°‘ÓgéñAͪ¢qƒ›Í*å6UÔ {ñßîÇŽ“ACŸ2ë”Gºv;cÕPH1% FégΞm “jK—X9@Þ0Š)Ù«i:þ(‡úÕ7_—Åš&t û?ÚǬ° €ëoeJ—Ö‘ûS¾xAeô>ÀÊV PR®×N¸sÙX·aƒŒÐxJP*ö¼)‡Ð)†ÕŽWÂa‹gåû?N·ëàY¿þÚëL1k¡zu¯³Sþ¬Y¬\¯JÈ»Ta_AB}Ž:)gŽœ–Ö¸ê&X ¾0j¤<;xˆ)·žÒkC"ñÌ{ó+(¶%_ž+Ã5kך‚ «Ò›è?…È:«·Ã-ËÞ:וÎôª(zP•ð(;ã'~iÏ)ÒS¡üåö>EþŸ{i„@‘ˆzüÆë뛂ܥÙ{NX}Aa³BãM}§Ï?Þ%P¨Ä'†‹;/¿I€H€H€H %H…F뤦÷ê70K뮾F:êHíLµ®˜üÝqTX„LÐfÃn¸·Ô©YÛ6e¸ ƒÛ%è7f²Áˆ<,>~üê[³žøæß©òåµ°g)W¦¬].4XZÔoÙÄ–ñ÷ŸKK—•ÏÞùÀÌÆ§ÍúQÌ&ä‰-è¢Î¬`zJüâfôAç‚ô-\¼XƒZV¸N @+çöÊjí<S¾@N¬ 0J³ñ¹ æ=Æ{þs]^­eËò¾Ç£è€ËNymô£sV®Lµ‚ˆ±öIŸ.vÞ|ŸãÂ’Ÿ–Z9 ?«Õ )¤Êƒ@IDAT–°œ€…:ÛPDAV­]mJtÖÑùƒ+Ë4íhb9)®BþM›7ù. ¥D•Š•Mé‡ûü¡*8+)(¾ Pì<õ\L£à(+8¦Å«£ŒcžKç"ÈŸ;þç_~1&p%Gœu â18“9êŠ7âz}(4œÀ-Çuú1r2îa›Õí÷aPßþfeò“*|¾Õz ’ʤÖg<{P>Áº IlŠíj…¥$â-_±Â\V.S 7<û”{pÁ>©‚xþ¢…±ê2<Ô°dÀu2©…‡ccõ#¶èôÃñ&í\—+[VJª[÷=Ç…9¬SX/pßÀŠä\çƒRrèð¡%mu“÷Z‘zæÝ5רÛ|PzÀ ŠX†¹"‰w”%¸…ÃÛÛ[çº2«'üCV¯[ãv5k7üȘ1“Õ;XFù‚UœxÏù»*³ „‚ þt{‘*äœ"ÔÃo   H­Ýe¦šºe <Ô”Û¶o—·>xϧŽ|}´1¾J}Ð Ü_ÛcôðÍÜþùWGZ'æÔéð§Óm®Z_{çMÁuáÐAc_L?É\l]ÓF-!è\`ðô“¦xAãµiƒF2ùãñÖ!´BÖ¡·swŒ 5,5¼ÒôæFjßÉ7*é¶Á] â›RöL#ÄLˆû¬ê4Y-IpþÓ~l1L–ü´ÌfP@§Çcf˜ýcÖ…¤”?7ýiV IÆ?Òá¤Ûý]ÌŒ¼”º¯,P‹7[ ¦RWðщ¿’È­÷²q!tR/ÑÎ7ÝbÔ1 äúé„Ï­sŽ2…Ù>ô2Š;_R|Ã… ï¿W‘sÏc¸ ]ˆãĹ­<@¹w¦ ò‹§üpww\rL;׸pyð*3Ü~þߎûODGSjcÄÜ{ï5½ÓžâœŒ2¥ ¬„àFÔ_Ýn|®þN‚ßHk­Ï x†X°øžMÝvH$ .Ho<¸Wå5&EYµÙª.†‹5€4\'nP%$ÄÅܰúÆNü9¸õø‡mƒê[gtüaâ:̧NÅÜCœ±,œ>|Ä-Æë;OîÜv/ñ6êÈ3ÄŨ@GfÆWSÍ"кµëØ(yí†×Û5>?ÎöoѸ©}'öÇ¢%K씈Ûá¼êH ‚5ÖÔ¼¢sŽ`ºS˜|#°ç /¿dS{;˜îþªÓÚ…À‚ÒœzýQóÁž=ÔÂà[_£juûŽô”^ˆ•‚釟:ÄÜW,Ši˜ µÄÌbÙÅ|À²W¼l`‰u :à£Õ qeÆ}1Þ:¿0SGg¯ÿAòpŸÞøû#îErJs-§°ÚBÇñPîÑ!® N"!°JþÔÓæ6ã,2Àôy-?È3bØ Èî¯Ús% b@{." %‰ïyw½:Û뿌dC.×N§{>aùƒslݶ-–"!æ)¶Ýc} æ\N œ÷O=i{<3„)©S«¶Åö€ëÒŽ8{4nˆ‹Oƒt ­`6[t|# .”Ÿ°Î€uˆ›Îµ®¢…b–F^‰‹ƒw,‡Ã¶Z桎¨Ìà6õ¯*”œüóï?€.Ù²f³ÕP†ÆWp_áqJÍPu“SÚ¦IS%ô™oš±?fò‚uLN„çÅÝ(E Ál`XKH8¼mGýðÖ+n,‡<÷Œ•c$FqõŸxñzn5ÎR ûyÏ ^—.l3ý`êq«¼ãœ¥Ž¡ @j%¸~Jq ÜŒ/+f/²ø Žˆ™Žk3Î@`~éÔ®ƒuBÿÚcÚåEcgÐîö6¶>!ûÏŒcôôéþƒ$^A‡kØ §,øÝ“êkŽF%⊠qèν_×üòÌ€'eÜÄ ÞÃmyœÆéýPy Ã½æ;@z/¯ ï|4VÏwP¸§“ÀõЏpÀeâÀö#?¦ª©?¦©„ŸúÓOýTésRŸk'½GìÌF™3¾};åSÅ+®°zñ*¼‚Ñut4¡¸@¸ ÔÖ€¬É:mk8‚{t—Îü“A3ãõ^àš°°@ú¡˜IJy¬GO;}ö ³[?0å®SäΚ;×fú€¥Ð‚Å‹ô9¬bhÄâq#ú˜U °0@ì(Sà„<€ :²ç"á°E?‚ÕJž#äaÞÂùºîj X …S½k®5%N¨ô`F¡¾½3EažÜ™û ,¾øj’ªn:r$Æ ‘ÛÜz»`jé„<ó¡Ò×v¸V¯RÕ6»À©øSfc”Cn}8¼Ýuüë\¬Ç3Š{ EÇÀ>åìYCŒ(&QVð"ø0‚„cæ0ÄtB¬'Þs•V|þµ*0a‘“Q- ðòZZ¹cùM$@$@$@©@¢[ˆ@éÑ®K'µF˜n³¶4ÒŽfÉbÅeƒv [Þ}‡oDyÒ7_›oóMõnú×^/ˆÛ •èŽý¦u–üü“5àJhGI_…‚¤“º~`*A¯ÀDþžÝMóT¿'䥧‡kPÅMrß#ÝìÚØ \i0úì/˜ §ýƒmDVWé£5Ãtê^H¾Ú :w·n#ïŒc_‡!Ÿ|ñ¹ÿ©å7:O<ý”Å€ùEítcšTt ^|e”™m‡s!t` ¨Â¨Wé¦ûÙĬ:ÝŒK/]j&áèìC ‚é3Ñ<Øù~K:ÒãÔ=$9V˜î¦ü˜ÅåR}à¦'† ”@¡‚¸è@ÜÚ¼…¹Y!ðh(E ÍB1…"|‰é/]`×w?kA_ëÖ©#]túÔlj 0ñëɦD uî„lGüŒ({ÿ¡$‚¥SǻۛåÅgjÅ3ú÷?þÐ.…©„¡°A\L= k ĉ2®'Xyï£lĺªºÿ`&Œš¿ñÞ;¾Î<ö»\-0‹fâAÌ‹ïÏLg½J;ôØŽY „ $ÈŠëÁ’ÓÊ"VÒ‰ ¤á:‹Hî¦îÐ¶Žœï’7Þ}ÛÒÎ9ÎuŸRCÿpCBüXb¡ë Lÿ +µ®­g"¨#ÇÿÌí"¿ª,A è\£\"ĶçðŠ-Ò!b¶4kÔXƒ«þ`WqÏÑg_LP׌Uf½ 5<'ÄJ`1ˆòX¢X1UNŸ²ºlÖi°¸€„ª›°PÞB1›Qc¤$䙕޸¶#Æ Ä¬B4þ‹§Áoïr(Þîø`ßP¦.Ów ÏP”¡<@ñîPàbÖÄ‘A]—@‘¾ÓZî:wè(Ítú]ÄÕyå×â:„ëI€H€H€H UH“»|ñ°,¯OúÏ_=\B0¡/¤ðíªÌ@çÕ_Ð!Ç–©Çvg’ @“t¬‚¨„ Dº´éÔ eÿY§@g #žqÅ qÀÔÁ;¡àñt0sé ä_I—%c|±ýanVPüœ« sq£õáœfÕèäAãZtïúäX›lY³†x6Púà>ræÓÔÚ'®u˜)3#9Kï~H]b”ÿ|‘På å!£þ; /ä ³XŒùŠ™í÷îÿ¸¹ ¡óæÿÌãÜà lK\ðŒÛ/®ã±uÜëüŒ;&RÛ ,Bé@e&©ÓŠ-¯H[\Üa­‚úʪĔPu˜ÁJÏ]ùHÈ3Ÿ˜iv®P¼ƒlÞ“ÇOúô?nZˆ[ãu©ñ߇¿I€H€H€H µHR…HjƒN~ÏU!ι¹ $…Hr¤×$     øHô"ñM÷'8¿ ÀÒ.¡¬®Îï\2õ$@$@$@$@$@)-D"|Gi!a༠ èAU\ƒ«H€H€H€H€H€H€H€H ªP!U·ƒ‰!      ˆ*D"A™×       ˆ*TˆDÕí`bH€H€H€H€H€H€H€"A€ ‘HPæ5H€H€H€H€H€H€H€¢Š"Qu;˜       H B$”y        ¨"@…HTÝ&†H€H€H€H€H€H€H ¨‰e^ƒH€H€H€H€H€H€H ªP!U·ƒ‰!      ˆôá^äŸß·„»+÷ B Ïå%‚lå&       H …H$(ó$@$@$@$@$@$@$@QE€ ‘¨ºL @$¤É_½ÜéH\ˆ×        h!@ ‘h¹L @ÄP!1Ô¼ @´ B$ZîÓA$@$@$@$@$@$@$1TˆD 5/D$@$@$@$@$@$@$-¨‰–;Át DŒ"CÍ ‘ D *D¢åN0$@$@$@$@$@$@$@#@…HÄPóB$@$@$@$@$@$@$@ÑB€ ‘h¹L @ÄP!1Ô¼ @´ B$ZîÓA$@$@$@$@$@$@$1TˆD 5/D$@$@$@$@$@$@$-¨‰–;Át DŒ"CÍ ‘ D *D¢åN0$@$@$@$@$@$@$@#@…HÄPóB$@$@$@$@$@$@$@ÑB€ ‘h¹L @ÄP!1Ô¼ @´ B$ZîÓA$@$@$@$@$@$@$1TˆD 5/D$@$@$@$@$@$@$-¨‰–;Át DŒ"CÍ ‘ D *D¢åN0$@$@$@$@$@$@$@#@…HÄPóB$@$@$@$@$@$@$@ÑB€ ‘h¹L @ÄP!1Ô¼ @´ B$ZîÓA$@$@$@$@$@$@$1TˆD 5/D$@$@$@$@$@$@$-¨‰–;Át DŒ@úø\éÄá#rêØ ‘Ó§ãs÷%       ¤%&¤Í^ÒgÎÖu¶1eÈÑãT†„…•;‘ D”€oœR½ôáHØ ³ çŒÜ‡H€H€H€H€H€H€H€’‰@¸ú‹°"t“I¦;ÉË’ „O Ì0á+D¿4÷$       ¨&@…HTß&ŽH€H€H€H€H€H€H )P!’TyN       ¨&@…HTß&ŽH€H€H€H€H€H€H )P!’TyN       ¨&@…HTß&ŽH€H€H€H€H€H€H )P!’TyN       ¨&@…HTß&ŽH€H€H€H€H€H€H )P!’TyN       ¨&@…HTß&ŽH€H€H€H€H€H€H )P!’TyN  ó–@š4i$]ºtöŸ6]ì×dÚ´i}Û°ß¹Š;?Žw×ùS‚ø3óæ y+ŸY³e“@Ç,THräÌá=™»8L£U\ú\z£5çSºÜ3äßÝó„õ®¬¹uç—fËGÕCÑt¿ÝýŒ¦4E*-®~ˆÔõû:(«yòæ‘ì^˜Ø§æùH€÷&<€éÃÛ{‘ @ê PæÒKåáÇz[f÷íÛ'uXNŸ>m¿~ìQ)]¶Œ-úÁ‡2ã‡éñ†‚Ê«o¿)ûõܽ»õReJKÏÇûÈOK–Ê민ïóEÃ2d·ß&5k]%é/¸@~_¿^>|÷}Ù¹c‡%/}úôrë­¥FíZ¦¸ømůòÁ»ïÊýlûÝ÷v”+*W’ãÇŽÉçŸ|*K-¶õ.,ý‡ –çž*{ÿÝëËêÍM›H“æ·È§~$3¦ý Ý{õ’²å.•'û­›·øö‹†(z†½4BÀà뉓ì?Òu>§Á=C.ƒúö“í[·ÙÏÆ·4“FÍšÚò²ÅKäWG‹yqÇEówR×CÑ”÷ •*ʃ=º[’F<ûœ¬]½:š’—äi‰æú+Xæ3gÎ,Ío»Ujj½ŽwdÏßËøOÇ ž½h” 4×\[WÖ¯['nü#“˜(i⽉Æ”1¿1e÷®]Ö€œ?gnbž6¢çj×ñ¹öúzò£*'&ŽŸ ÅJ”Gú<êk$7hÜHêêöÙ3fÚv(?Ú¶ooi,^²¤\uumõÂùõ—_ä––-}iGçö·_•~÷­ÃÂo¿®4fÖ®‹µ>˜’H•!PªÕ¾æŸÕB4¦õ|K“{/»ür_ÒË•/Ö3z>•_FÎ,Dªò¿n$_­Ï…S:×ÑÎjj“YÓ´úlßÞÿ”¾ÑÎ Þ^}ûîÝÊ_VÈï¼+_~>^­üÒIç»HÕ+«GeÚ¶¿[nms‡dÉ’5*Ó—‰â½‰?EZˆÄŸ  H¶lÚ,—-"—U¸\6oÚ$±…Y÷¦?ÿ²õ^5jÕ’†ÚéÏ‘+§üñûFõÈŽíÛm4N`=Q½Æ•rèÐ!ùj—ÞCÕÌ8‡)V¯üM~ùùgÛVM÷…’ D©Rjñ¯`,'Nžû¡lÐQ¯H Ü*U­"¯¾øÒ:6%TÉQ¥z5©^³†Ì5[®»áz9~ü¸|1î3Û^½F ;&g®\’öŒëÑ©S§å´þ§9ã:Tø’KlX‡øË%E.1>`³é¯¿ü7›ë +ÕkÖÔ{–VVªEʸ>–#‡ŸµoR¯¨]÷9¬×]¼`¡\£÷íò+®°ûŒUt(Nž<%Ï?ýŒÝ[¤Ê¥¢Å‹ÉÛc^7k—"ÅŠÉímÛ˜b7“¿œ(+~^nɆ¢ Œ¿ÿfªÜÒª…ìÛ»O†}Ú¸ÅU~p`ñ’%¤uÛ¶’7>µQõ6o&M–¥‹G?Ëhÿþó**3 "Ó¿ÿŸvr²¨2®¸¸g׿_^ ¼‹¦gÈ¥3зËK8õ,cP¾ ^\Hvjýƒgo¦v¶a…vG»»äØÑc¦xDyìܵ‹äËŸ_¾ùJïù‹¬@×OêuæÈ!*V4ÅgŽœ9¥rµª’-{6³ƒ²´m‡»Õâlƒ|ôÞû–Ô§½ûõ•'OÈ ÏT¬RÅêÍy³ç˜Q V8!êyÔÙWê³uðÀA™8a‚Ô­WÏ”™/{ήì¹´<°»ã®;¥ìe—‰V€f0cÚtY³j•í…{‹r»ü§Ÿ$wž{öìöŽ€Bqê×SdÖ3i†2r§*FæÎš%ßNþÚ~§¤Þ›øßMZˆÄŸ  H¶lÞl 4î y†¬[³Æ¾ÝG%mdwè|¯äºè"Ù¨ w4ÔíßW2iG Ò´Es©Wÿû½çï=ÒñûÜ¡ö1cëì^”;·ýΛ/Ÿ´ït¯)ZÔ:«™Ô,ùZU(ÜÐà&Ûž]аZéøÀý’S0;wî(:Þß9Öy#õ Γ'NZÇ È©S'í;OÞ¼f%‚Áýû­ÑŠ ûöÅŒ„^”[™ýþ»qn¢Ö 0_¹b… ë(2ü­C°¾ê`€ó’V·ß.7ÞÜP7–¿wﶆñ}ÚŒ´@ñPèâ‹åç¥Ë´á>Û.ïFÀ©{Êöqe Ášª\CÙÙ¶e«Þß\¦4‚iㆠ’OËF—îݤdéÒv®œÚ‡¶íÛI–¬YMé„r¬üàÝ{÷2¥Ën-;%K—’6w·³ódÉ3j-üBÝ/(Ñ ,siYsI*£ÏtþϨy‰¶g(X>퇮¼ª¦¹‘eʜɨù 4%Ê×zµ¤ú{×n+kÕÕìjUÒU®ZUN?a®zÁ®ŸÔÛ ¸C % É¢ù ì>^U»¶]öÏ?6š•ör%†;·ïSªL VV¡\ÅóQ«ÎÕf…ç Ï\0V¸F­³Ñ‘‡²íUºÝ«u-\% *ˆÍ!ŸKÛÉóú¿š*×üö›ü¤uÁeå/×sÞ'Yõ™… žD:/PwÃôéÒ :óÙ²e7+†‚ Ù6(Î!Áòk;Dèï'ÈjÍ“W ä¥Èúµkm5”\Èê''ù °uxVãºGê6 tëùˆ)ÍðÞK›6*‚[ ÃŒ3ÙyáNYíÊ+mðïU(ñ^µëQÀCQŽß)QxoâWi!f<‚H€H @G±0.ÕQ=ŒæC1²[;•öJƒ&1±Q#FXÇ£a“ÆÒ¬e k„Ã…#‹Œ†ýõçŸæ:rÇ]m½§ˆµŒø“Ôíd6(1ÚK ˜ ç/P Ö~Ö­—WF¼hˆa#_4ü Ðqº¦ÞurôÈQا¯Å%J(Ž`í)‹ dñÂ…v/wi#¾üLyöZõÌ›3Ǭ9`+ÊÕªYçpÁ¼ù–×zÚ)CÙ›¬–7St$ŠÞý—úªóZmÔròÒsÃíþgS%Q°ò«"t 1Z;æåW¬ü ~öi™F˜àhâgðB|`ôÿŠJ•ŒsÁ³v¡$šž¡¸Òn=„Ž>bÔüø¿irðàAi­u ,aPo@©øÑûc¥”vê±îØÑ£râÄ ÙÇù“Sj«õÒ¥!Fÿ›ßÚJ®V·™ÿMýÎP’`ÄVh°¨V#ÆcÁÜy!Ë*”Ä9üyãE$,ïâb…úëºë¯·ã†?õ´Y A‰ ‹ælëÃ}.mgý€Õ ò¸`î|S ,Ñúy¬ó— úÎyTãVAP/@ËÂÏ>þ8d~#Y·A‰¢;1ÄÿUÒúâ­ÛÊë{V›xß¼ôÜó¦@z~Ô˪¼ºÑ¬D\:‹jè Áö.ìúHŸÕÔÿ¾*E‹5å¬mV­\éIQß¼7ñ¿TˆÄŸ  H%ÐÙˆä•W]%tÄu~€8°@GYX‹äR«H!C‡±Gàeî/ÁnKÔ„½Š6¢5k&eÊ–µÝa*îgnF5\G0ÚˆŽnr(DD Õ›ÝlIDб†i>:_ç ƒe72¥dë–-êòó-㣱æÖ!;¶m—Çô³˜$pAB~û¶˜à™¾ýòÈo|4Ô›éH/$cÆŒö]¨ðÅSˆà¾Ã5®B'õ•*SFþúãO©D'2(A\ÊÜ_¸UAÌ“^-[˜¦·j}»1DYÈ«W–«rÛCÚÆ°ò“_ù@à*AùYýÛ*A¯c¿£…Ÿ%&ŒujýÂÒÜÇ4¨ã?ªG¢é –Þpê!ŒÈãYƒòVjÅÕªâê ÔãÕí.YPœ¢üÁú$9–=pÛùCÝAPÆ!¨; Ä‹"¤ó´ÎEž0â+’ ªüBàNlƒ¥ò׳î"¨‡VyêÝ`¬|u¶>—ÎÏ©WPçCB=—«V›¥:çGõáÙƒ²Ëq FùïÖ{…çý1oÈ®;Í­&X~#©9tè %J¬øJ‰Q,yó¿Gn›·nCý %êC”E¹.ÊåS¼cÝŸZϺ÷ 1 x7¦ὉÿŽÝºŠÿñ<‚H€H€R,×Ù‚ . igæŒßèØ#î­…Ôoß Fž`Iâ\H¼#høøûwëÕÓ:¸Ë—ý¤1¦›ûÇéÓ±Gr1Òé¦ÄÉ)°|x²ÿÀ¿n9¦´æáéݧ0øyƒ·A ³~H  ‚ð͇Ÿ7¬C`ƒ­}îi³ÍÀZ1‚ ,l éÓ_ –ÅÁÑ£Gl4ÐË,Ø9c:pPŠ@0;‘W`9‚|Àä߀CéVZ•_!Fçr&+fQ’9Kf[‡ÑQÿŽ,œ„*?ÇŽ·]üЉ»~G ?—¶Pßýñ‡à¾ÖT7 LϼP­kÂoyHîg(XšCÕC8.uè$þ³çY¶d‰Å“eÜŠœà9tw»ägAU¬xqs ó¦çšëêšÒc‹Zt!n긺@¹‰x1ÈK¸eq@¼Œêjœ;muçÐ#†Yì¼{^àžì¹tׄ®{5ÕõÊLÜüð„Æ»Ùävó}ííþn]ͲeÒ„/LqŠáæ×w¢$\Ø©u¬îo ¬»©QC™7kŽ,Z°À—§Ç Äsñÿ{ä¶{ë6—ÿ¬êÚçêöíÛ¶ª’|«Y‹¸cŽûOÑÍϵKobóÞÄŸhÄ"x \”\Œpx+ì@ûœOë\cØÿ„¿$4¤þëϧ¼1­$Xà7[@}s÷ìþÛú÷ï?ÿÚÈ©ÿ5Ü3åÖ§´:Ãå+’ßu9røˆºaä ¸'ø‹?{·]ÕÖ±s¿ãúFÝw€»gçC=ˆ@váGG _üŠg‚²á7ò²ní³"AÐNLý ž¹Õ}åÒFQÏÃñ.ð£¢Áîp“€5ÜàëP<›€Û#¸²V:ê²PJ&ªïø~µÌ€Û#¿`´{ç. à ©F9Wtü±DG¦ëWÞy•Ç Þ…›òØÿïoL¥ˆÑAÄ1yùùÖ¦@g éÀýŒ”¸ÎFµë(¦¸Ì€,DVG¿åÖ–Ö>‚+€“5j¹3qXŒ 8&üða K¯xÛ¡ÊFÖÓçÁ”Å0U/§1 œD ?—žPßÈ;\B`Ò2l‰¢g(XšCÕC8|”ñ§>aõ ñz–˜ú¼ P»ºn]µ¸X|V ï1I¹ 2XÁÁ½Á[æõ!0wÃJZï¹àªóµüߦ3ƒÀâöUV18ä¤`õJ0V¨£·ªå ¬?.Q+ (Ü`ùç•pŸKƒ÷&êŸÃúŽ¢JcÄB\©Zu®V«—êg)Dð^ìÔ¥‹ÕP4 ¨“PùuûEâi««ï*¸7aö0¸Âz¥Q³&f ·Kë|(DŽ9bÉÉrF¡ …\)ýÅÿ¹íÞº Ü!P½9ú5[†[òh³ ^5ùOïóÛóyêÌ3Ÿ&ml%—g—ó~‘÷&þ·0â h<áë—À'Ì?@O\ûžë_|íUkØâÁEu2tøp †÷@‡Žn¿I Õ@ƒuF„1ÚC=–W_é›IÁ fäë¯ÙK×»»?40ã':³:¤çƒ@9P±reAŽÏˆfbç Ö†5¡v3ÇxÓµêוֹ½§s§33ªÜ ‡¸ô˜…óæiã·Žt}¸»¹& ÃLñà‡4ôÒ_^\’)SŒ…€ýˆ² .yóå5åÚåÚ釹ù:u9‚ V:3ð‡‡UÄP¸Æ²ËFŠ/¯x… {ò)[€lY³Y§ÁùöiC8” S¸FMÔá†ro—ûu†‰u¦l€eÎ~β®u¾sÙ^°P!›¢yÅl1Þû å:¦˜å ˜¹ƒÕ%EŠ˜ûÊRU 8qfþ õÙ⢬º ð,OS§|ãv‹uþPågÝê5Ö E[¬ßàA63’×ê)øù2æ” N!‚ø!™Ô¤>%I8õ”‹D‰xPÀ¡Îd>cÕæî»L¡†Y5ÐYm×±ƒÎÈÑ^-»ô™8ãºIfÕÕÚemcÄ7ñJUÞÀJ ñn÷aÑüùÒRg}A½å—«‡C•UwNïó‡u¡XýúË SˆôÖj Ø.^²„;•}‡û\bgt诿©¾YSཀ¶Jî<1wtäýñK\YΩ® =ïc»œ8qÜâf$wÝæÒ Å*â¾ ¶Ë€!ƒm° ¸NK€°¨×§i ˆ»W ŽÁXÆ87.w.|ûß#·Í»þOUNÁbu{‹Ûn5ºuv,(ÐG½ð¢;$è÷QULAÀå ï¡”&¼7ñ¿£iãHÂŽÀhćï¾gÿÛ¶nµ“ý8mÚYëv•è;úö;Û˜?uô¥Œ)"ä#€‘ñ¬pyŒU‚6ÒàŽàæ¿Î6#õ¦ÓšÆÔ%ïÛì eË•³†C ­÷¸hYÆè”@ˆK‘N`Ñj(g6i| D¾ÇèF¡‚YòA¡áêq|RžÊÓoª8€éðµ²8ŸÄ8Ã?Ìøaºà¿ Z= š=”ðÕ‡ëä  høôcjS4á—`´ –(Uuôðî{;šß<’E4\°û×ù"±~Þ¬Ù÷+DG?_9Êwéiß}oÓ΢c4fL)¸¿4n~Æ:äŒ%Çâ µq}Ø”vhhÏ=3S‹ÿqþ¿1E'W`]sÛwX\‚÷ÞxËÓþû&ÅoÌâA,oƒëkHtä 4‚É=Ä5Ê1í&|â@Q‚à°¢ƒ;DIuEB`Éﵓ—„*?èP¼ü‹iƒ©/]þ‹L×@œXí@’›Ÿ%"î…uÒù¢GölW—Ǹê¡)“¾²Î'fÝÀô»® ”«°r@®ZóUA‰óaŠ×æ­ZÙ~‘þ¸ZÝÆ 8ì/°à9Bw@ÝðV,_n먂Ù+çRVƒ±Â¹1}8¦i=¢ Y( ǼS—8ó|Ä÷¹üðÝ÷m€§Žæ§S—t™lÃÅ=÷ÞüdÓzÎII­Oá‡,CÎ%¿î|‰ýÁ^gÁ‚z p¥–yN¥ Þ ¨ëZ©"³gëÀ7êÒQZwáý‰YÄ`é†8@¨#Õ¥‹—X=Å2¬ôRªðÞÄïΦÉ_½\âÿNvìßýÿýH¤%øHÃdÓ»ù£a õÞ›oÙUàsÜK#ª:xH0÷wÇûï3Ózt†Zµnm&¸¸óÉÙˆŠÏÜà‰”•8OóòcÌB;Ì™9S;ï۾όx!–…Ò|cÛ¤Œvê| æ°kóx£A ¦_~úÙF0ªsàÏ?þTZ:å˜r€Y!*VLuA§&®yÙm~@@gÓéŒàôëÛïû½òÖ6ºÐýþbjÁ+³Š{ü‘^fº‰‘¤¸æªÇyàÖ€¨ñ0ÝÇ ¦Ã ›4Ò9é§èòB›r¯–ŽxOþb¢¹-à˜{tt 0[žÁP×ÀˆxÍÚµ,r>F…–é‹,4n0RÓY4àÑy„{Fˆaæ\X¿÷ïÝg³Œ áÈ­éIˆ€;øÇ%}{ö>«Ó>êÍ×­cÖã-ÿŽEÃçFÇn ú¹*0JvÖ]˜I (ttW#aÎB$’ù”ö„®Cceù$näÌu:íã]‡ýÑ9öš {·Gã2ÞÙˆMÀžÛ1*Œ@¢þ%bÀªÄ;r eÀ¥ª(ý]gÕñú“ûè7\  B‡ê|XÈ€”)áH\åÁo‹—(aÁiתµäNvm ÌÄáF¿±>%ñC~RƒÀ½oŸ¾?üq)=ïçRVãbWÔ½6ŒgîFÏéL^xWãýï•ø<—xG@Á‚÷~Bå\ò›Ðk;íXÄÅU?!ßÇT¡©Ä¸ BAåO)œsƒ‚ÁÆõ®ççÓ>©ýÞdÈùŸ’1®ûq—™¸‚õéeŽ9¥`ÍB:½Ô'Ö ºLGŽ1MÞ\}Båž/>ûÝõ‘‡mÄ %g !nz/5qÃzh ñÒïÒ½›<ÿô³±¦¨ –ŽÄÞÄíþÄ0w&Äî:ð/„©u55†·-âüéÍ D-Ê—/ŸìÕÊ £ jR|ßCªßþIí4­D…GtL!\ÌSŽiÁàÓ‡Î:( 5rø î²ü&d'€‘ID‡Ç¨9‡Ö£/ð»&0­GpÀ ô9)«þ¹P†àÙ@™ÇˆæªGÃ1 ²eËnsÕc=Ì…èqtÐñ*ª ÉKU‰ÈûÙ²eµË¢‘ƒçVN`îŠçšP×@Gq0 'žiX8Ë8Ð0­¦)]º˜ªø6µ$ƒß2F³h:`E…(:)‰-[6o1“{(lNkk¡^3\ zûœY³âTx H—·Q³\•µhåÕ:ª}§{Í\Qô1š 3YDúÿNÍû¡,S4dI$óèú ]‡†`°V|ÁñÝ?¡éOŒãý]`üωíqí·X?ø H+~Žößê7,kðŸ$XÙ ”¿¸Êâ3Áeñ0·¬*Õª™² ³3x%%ñóæ+%/Ã…15ʹ”Õ¸XåÑw¦¶ÞªïɵkÖXh0…•£¿Äç¹Ä;"®çÒÿ¼¡~ŸK~C3!ÛD<˜ÄW™ì\؆¾Õ¹J´±;×|„{ïMhRQ¥A´õ¥‹c‚ôÀ”fW.Þˆçh¶Ž²N÷™™û=5|˜Ô¬U[M±?3%4“ÕÜmŠš–,]Zz«… *6t¸’CT#Ÿi°½>HÛí-¨’7pøáûïmzBäÖ˜W;‚ÞÝlyØ¡¦­ôôP³”ùBÀt¶AãFÖáè7:`ðQ‡OèÀ>}­ãÒ½w/ó_„r)’Ór•® <ï[·l1…Èœ™³L‰ ÅÞB *øƒF‘&þ³6@ñ«)H¨¹ê1›”!¨^xv˜E“G쌪 WB]S°B0uèLu§@@DŽÝ®ÓˆbÄiò—mT#p@z§æÞ³•\X–V[lVP¾$öhÅáq~ÕFbTÕ<ÀËÁÁí¼²MÓ …Ò9iü³lAÜ ÌÒùÁ.6…¢wÿ@ˑΠ4p ¤¨ÞyãMm5°ºÁ 1þõĉqZö¤.Ì# 8ßM™bnî°æ„ë"”°Ö„bŸB$òD•BxkDb˜ªÁ×ÊøwA›êæŠw·àgõGƒÀú*Œ:‚"¾sƒ»ó%õ7|ò–.ú¾»&Ìòk^1sÁ=÷wÖ iålSz¿i©0ÊŠ† L HAÙ¨føöûÌzD통¬Jâš— CÆ( ¦¦„À£†** TIXªLSîÙŠ˜v1sþ¤¯¾8Ò÷|༸æª/P €mÇh±ø[õÛJSX؆8>03”“P×@u­º‡ÀmS¶®_»ÎfŠÀsHðLoAd{­Ëú¨ °½‚x(—ØÊ\0¥Ta EF­`u–'o^‹WFX²ÅåÚ…‰w¢»CvîØa10s@£fͤŒN! A}J"ÿPéávHÉ~Z²TðO!8›\ì>x'ü¸gŸkH€Î'¡[©Î \>й«L¦k Œ úû¤!v†øòCàz¢”&03gnð˜½#ó9qüx3KŸ7?0#´_³v¿ý·“'k;Ïêyçèvùw&hÞFi!éÓ_à›§ûèÑ#ê¼2ŘGæŽñ*IM#”PBà.áJ„¸bˆ¸}&}ñ…YAÁEn?Ö[ž~b°ÅÙqÏ@Vu; 4W}uy¸ç˧N§÷'éב ¤.Q§AÇ~‘Ûk ‚–­o³»áï.ƒ•P–ü¾~ƒ<ÕXÝ»wÉ5û„)ûP u›ÁBþðáOnÁˆïT5ÃCg┘z¾÷ñFìj}WÛð’ M󔇗 î•Z Ìž1榄Ò.$7¨k‚—ÁìØÑðüþñÌ@ ë0DÖ‡û êH\sÕïÖ¸!XH`æ+È¥—ÅXfÙýpq²d‰q£k”—NB]£„N?w¡·£JÄú©©ŠŸÖªè¬ªÊ(DNŸQÀ8å ”¿¥Õ*±>×<Á½­í=í±RPßA¡™˜ Ÿ5 5¬ñ ùG@KL]Œ)ÏÅ?®zpYD€Xœ3|„+‘θéJ¬ýrçÉc§J칈‡ƒ¸6[6mŽ¥hO¬tGê<ä“0Ò©_jÈ£·¤¶üzó-ˈGh®®êŠGh« íîÔL®´¦”ºßŸŸ‹ÑæÖŸå­–¼þ‚É#œÕn\ûxAŒ8L³‹8sˆ!í‚A77½á–A @˜Ý/Üc½×KìeX„#n&fÂs u @A@A(D0ãüÒ×i@#i|K3AEgæØ0}‡ÂÁEGoØ´‰E²/« L­ï©Qàû‡é1˜{Ñ!_®\Fƒ0b4Û!xxÏEPQGË<åç’~“z@© ¥%‚«"f˜Ëá f³§ÓÀb*;d]8¾„š«Sa6¿µ•YlÝuO¹(wnsUñ^ÓM‡  xyVV7¯ëG¨k``(?áö‡);ß®1ʧp¹¢bE‹”Ž)o¿ëNɘ!£LÔ8˜jÔ¹³¸:›¾„.ÃÍ/IXäÍÓ©L‹—,añïä\åï]»íPX˜ P#êiH¦L¡ë2(ˆ"™KX„>`±8`È`ùRïkBøJ.„=û<&_«;Þ/ç£OÂîZjà—òè-©-¿Þ¼GÓò-ÚN@ ‘~:ëZ%mŸß×õA³Zÿøý±ç”LÌjsÓÍ7ËøqãvòãsÒ”P÷Ê/&Í€«WÐiÞ¹}‡µ0qä¡G1—i·:úh«à žï¿ã\dÆÀ Ø ÝøÏžà`ÝþÉñ™WÐ?à¥1KßÛc^¸Í»³2‚IÏ®ÝÌ‚·çã}ÌUòõW^õîñ嫯­+MÕ•üá.]#~í¸.øŸ-x\{$ÃzøÑ#²3déâÅ>K oRàWoXD`^nH|ç÷ž3Ëð»G0X¯`DÓ|æ×¸¨laоqÃïS!¯Îªs.Mó”ŸKúyLê ·túñÜÂ/,XuÄW–ª‚³P@+ ¼ƒÍUEëï¼'ÇO·z$—¦Ãßíç¥ËÌí ÓV:#4ÙxV„ºÆwß|£SmÏRÅî%X´‚*>fϘé{þ×jŒ¼Œ‹q“à¾óž:‹VwÜn˜w«‚á]]‡ØI!EŠµÙ½pn( 7ýµ)A—Aþ+ H¸ã€)”IEŠµÑ‰`'OŽüKObn»«C{ã³\LÌóâ\P¬ÍW‹È&·Üb3%öù#q>òIåÔÀ/5äÑ[ R[~½y–eLÊP¯þ 2K­Íkêó>Úäβ!!yM u°üÿ8mš|øî{úÿ¾´Í•û"éÒ£›Íè=·èóŒÿtœìÒÄilÖ¢¹í‚~ÕC:ã Úk8ϘQ¯ØLf°ŒíÞ«—÷4Q»ŒA«`ó?gæÌ°Ò &_é$#Ñ&°†þ]û¹Ñb>Éj!òòó§€…Ô.°û×H1ÞˆøŒÑetn¼‚ÑNüÇgnpïñ‰¹Ü­óýgnÙâ%rû{|ëñ ¾õÚë[+Ýȱo]ðîõ#ž}λÙpït…û4ÈêKÏ=oæë2fЫç>=U¬ ñ $"t‚Ÿì7@ö¨ #Cú”PÓƒu½·sÀ¼úÒÈXë1ËÉÀÇ·)^ÍU¿H8CášM2ˆ ï¬ÜIž×^e.lÇT‘éFÜv|»L<ñò‚À È¿žÂ3Ú¯Wo«§\žaé†(‡àJåhRÊè‘/Ë¡CíP¼=z4èåêt_Ðíxq?ÿô3¦äB°h0üzâ$ß1¨³ñïäÅa±ë±Hçߥ#)¿ *d.]p‰ÄÌ_P°u}¤‡ü¢S£1PGãÄà>c†$ÄZiÕºµÅΚ¯Ó¡~yf¶LS|‡ZaziÝIÖëL@3¦M÷Çòu7Ü VM¬Ñ—”ùIìs“Oˆ¦~©!ÞRÚòëÍ{4-×»ñsAÃ+p£eieµÁÖ°öÀ4ó¢Žúû;W\Ä CLÀUú^‡ -\6 ýÒü§ö¾/R¬˜îÓÆ¬T1ø÷a ð@RrÝo òö€ã€ÝàP±Jeµ¶-kà ìýå;ÓÚÉî­1+©».”GWô³è~—ºKÃÂËhï`-±”]A²’ Mˆ‰Áµ@Wã&Í››Ë3Ú²0&€Û8f…ÔRWíÃÚ¾@ AÌ·;ÚÝem•va÷ÙGŸ£ûzPråºHËô µª¾U–-Y"°ŽJH™Åý(©×†U4ƒq(ÿ…õ{ÿÞ}6K!Ú‰IamŒã#Y"Ò„éË©y 1¬$ð— 1éßÉðÁ½Ç%×r EHBÓ’ÚæÚN(/YP2`–('Þe·.¡ßÁbaàEªžð^+-Á®c⪧àÞV ¥˜ðßÿ\oÛºÕw¨sò­HÀfŒIˆD*ÿ Ic¸Ç¼¸íêfƒÛ•›m¯*óa…~Ðð@¬™ujaƒ™Â\AÆÑxÃ(eµ5Ì’ðСÃ6âß z¼ŸYáÞA…Åù&ä“°;–ø¥†€ÀKëËW_)wuì EŠ5+Xš´¸íVuQ~K'ñ?^0>`Uzgû»}W†µ‹Sˆ¬þm•ÆVÙníì0pè‹W §òxŽ ì:õë)fí‹ ù7« ¾ÏµÌÂ]eㆠvÏJ—-cÏÍlµ‚Ùô矲´ÚbK»³ì9ÇSpÜE@IDATdÇû°¨Sˆ¼2⥠™p&èAwâF ˆ'¸œyÝÎây8w'€Üh¯¿¢íµr#m, ÅY‘¸õY²d±s®]µÚ9pµõ L„ÔÙ‘¼–4P¸`D£7”/+É'a7!5ðK yô–‚Ô–_oÞ£e Pв ]«=``‚‘yŒhç?°ì¦¿³GÂÚÛ,. p§üÂy+UÀU^ŒÜCRrÝo òð@v0y{̘€ ªL™3Y—°ÆEÌ—sçùÎŒ¸lO?1Øfî«X¹’Íôîí;ßk³÷%Ô¢Õw¡$ZÀûq3¨ˆO–-Y¬î2—©Km[ÁÄh@`tnrÆ„ÉïàŸ–,5÷1”ã„–ÙRªAìOçÁ€¸¡(ï} 4«å?ýdùÅ=¤DB$’™çµH€H€H )  ä˜_|ø;AìˆsÏòoÀþ´˜º ŒâÈ€'tºÝMv¬kpÇ5MŸí…ä“°›’ø¥†Î4˜‹€sS€’Å]7%×ýxx×!X8bˆ€,qºõê)C2W%ï~c^~ÅCÄ»ËWÖ¬©Š‚²ê"³Pcb¬–Íú¾üV­zõ}\J”*)%J—2ëÿã¢é÷þ}ûåAHZ!U2×Û%šÇªW^i–¥˜µ/\qeû{gRôïÚ&X—Ð2 ‹XK99üs®ª±K0 sÍu×ÚŒN?ÜÓ]n¿¤þŽy‚“ú*N0µ1FÓŤqûDã7ù$쮤~©!ÞRÚòëÍ{´,oW7Ü0ü¥h±âê²Ó}Âh7äo5A̸”¹ôR©^³†‚£SïäÔ™QoçÚ±F] ´óŽá›£ÇÈÜY³å‹qŸ›…JJ®û“Pßxß!ŒÜ4ÌÖ± u¶# ÃÕuëZàQw¾sæÊi‡{&Â9_4í+&S†¨ÌÐ'™ËÕi›Ï.¼TºAg‰Š£òæËðà“'OøÖ'¤ÌæÉ›Ç”.~â£À…J/´mžÒAž?6n” /¼Ðž!ßE#°@ ‘@æ%H€H€R'íÛ¶YÆsä¸P­9âϾ¶×ßT_ƒ¥•—ü èÌF¿Kî<¹íDˆ˜ï X‘ø[—¸íÑúM> »3©_jÈ£·¤¶üzó-ˈ= ›˜!Î_Й~@Ÿ"vF³!^EóZ°U¸/,]´Øgíý‚@’ u”|ÕÊßìwæMtvÍ RV)4îÈDalê”oRtÝoóãã÷ß×øO fF©}M8g]ñ?Mõ4°ãžyñÙ¸~ƒ”R (ºàŠåÕù*p­ÅÄyóæµ ëE‹ó¹ZeΜ9d¶vlßaû mqãÍ m2“¥J<Îkq’2 "Ú(ˆÁyo×ô2fÈ(ÇOPײÃvo`…éYfh!ðÖs% $œ¦ÁƒÓÙÎU>|÷}3®S÷éÔå <ŽéŒ15/Ñâóh£Ó@ŸoB> »c©_jÈ£·¤¶üzóMË[·lÖ)A/9Ë`ÚÔïÔ&‹*+n4W™Ï?þÄFµ]Ú—ª‹Œs«ÁŒ&^qŠ(R _¢ÓÇêèþØ·ßµYfCÓ‘Â"Áµ!)¹î÷r µ¼{×n›ŽûafçŽÎq¯½<Êf3Ì©Fáj eè#¨9ÎWÁtº˜¢ùĉ“rï÷©2­¬O1W¤XÑÙ‚BÓíBAÑüÖV’/>AÙ% )³Pˆlþk“MŒëÀç½7Þ´ç Õ·KÛíÕÊj·¼«ë0u$%Mþêåéž„cÿ&lųÏÈ5$@$@$ò ô2X05ó‹Ã†'(³0ÓÆtuþAà*ª¿úÝ2³YLã{¾ ù$쎥~©!ÞRÚòëÍ{´,WªZE£Sà¢í/ÙÕ¬1Dàªè•¼Ú±üÌÓHõÑn=ÎÚžUgÒD'Ô:TÌ ‚NªS¦xÏ™Rë~o“zа߳ço›¾7©¯©ócºá¬Y³ù‚´Ç÷º°LÊ Ó>{ã„„{Žø–ÙÜyòXùäÚ‹¸=ˆgë¬Ä– 9Ïv}ó¿-Dü‰ð7 $"ot:ÅÒeÊ  4”ý•!8_õ5ÌÇú|T† ýä ç.©_jÈ£·¤¶üzó-ËË—ý$°Ö©®³œ(/¼Ê9sH¹äÑ~}-ÆÈœ3cmwç€rÜ_‚m˜Ñ&2ÛRjݼEJ`Q/§NÆ1Ôu“ú:ÈÊâ¹ ÜnÎE‚ëÅ·Ì &2çB á¤P†àÜá"áPâ>$@$@$pŽ0eÝæÍ›¤fíZçx†¸Cð±r———ï¦L‰{§(ßB> »A©_jÈ£·¤¶üzó-˰â˜òÕWRQ-Eܬ3ÁÒvôÈQ  7Œy³gËdukLJI uRòá¹I >è2ZÜ—H€H€H€H€H€H€H ê Ðe&êoH$@$@$@$@$@$@$è2“ÔyM       d%@…H²âçÅI€H€H€H€H€H€H€’ƒ"ÉA×$      HVTˆ$+~^œH€H€H€H€H€H€H 9P!’ÔyM       d%@…H²âçÅI€H€H€H€H€H€H€’ƒ"ÉA×$      HVTˆ$+~^œH€H€H€H€H€H€H 9¤ïE3äÌßC¸? $9cÿîû´ w$      H)¨I)w’ù       ›"a£âŽ$@$@$@$@$@$@$@)…")åN2$@$@$@$@$@$@$@a B$lTÜ‘H€H€H€H€H€H€H ¥ B$¥ÜIæƒH€H€H€H€H€H€H lTˆ„Š;’ ¤Tˆ¤”;É| „M€ ‘°QqG       ”B€ ‘”r'™       ° P!6*îH$@$@$@$@$@$@$R$‹Bä‚ôéÅûfº´éÿǦI“Æ6yÏ㿜>]àã“ëÂ'6mZ —­÷>âžáQH ¥È–%kœY ÷‰óº!5?/qÕÿÁx¯Ûš×„íÜBå/¡Û£=ÿ M_(> =ÿùp<ÚY2gŽ3©ÑÆ(TzBm•_€HÍï—8 BlÖNu¹P÷íñÔ aèÏå>C† þ«ù; „*ïI™Ädé.ÿf¦äÊ‘SN>ey;uê´lÞ¶U>š4^FøŽœ:uJ^ü¬ØŽu•ÿ¼å–SgKÓNmeïþ}2ýã/}ÛòôéÓ¾ó.ùe¹4ëÜÖ· 1*”-'Ë].NüüœtnÝN_£4îØ&äñÃú ” \ Ý÷•†u¯—a}ž ê„<Ž;@´¸½qsyöÑRüš*±’Šõvî*3f”õn”7>~_¾™1Íöùâµ÷¤x‘¢±öÇoœ&}Ÿk}ë&Íå¥C¥`òV¯ÅÚ˜B\”3—¡†„”¯÷í•ëïlëO>ÜGоD¾Ÿýc¬õÑþu2êk<+KµÜx%ÚÊH¨{Vü’"òÉÈ7¤û“}å®Gºž‘^#ÿ»G~˜;˲,¿.ï©õýâò‰ï`í\ÿjm?¼ùé2ΣÌ:|ä°%-TÝÖµ]G©Z¡¢4h»?~\vë%Ï÷}2–²/yLêkc ÚUkÈ-úþÛ¸ù/_Rö«âÿ8Vº¢ñ uÏ×»IþÚºE¾›õ£½_~Z¹B&Oÿ^îhüŸò*®üºÌ§Ö÷‹Ë¤¾ƒµpŸ+”)'s–,0e6!xÎðÞƒ«Û°½ÈÅ…­>ÔI¦Îš./kêêj5ì¼òä•^ºJZí`´| ½ü¾éOy{ØË’/wùnæt™¯fè‹ùIžý’íì¾vo !9sä{´1ôÛú5f¢ìŽ •·¾³gÍ&¥µ±ŽÆÖ†¿þ[onêÛ|IÁ‹¥Q½újö½LB³€*”zvì¢ ƒÍÖÙœªy‚¶¼ú•}çkÑ ‘lÙ±Mâª};râIàþ½ä…·F[CÆÿP4hàè•Bù þýå‰nÊôùsdº*¼2HðpHIu¡7q-£^€;Ä6íÔ:¹íæf¦(Xµ~[•b¾¡ûßœ¾üdÍ’Eª Íœ¥ }ëÜ‚YÉ›;·ÅC€«©¸Ê ¾ƒ[iJ(9vìÞe®³0™3ôyë@,P× HÑ‹/1W[o^·¨É8òŸøxóh9!åË{>t Ÿèþ¨*h_µûáÝv>,_Ûºi,7+—æh,#¡îYQíoÞþß3¼lÕvN­œÄ•_·=µ¾_\þ#õ¬k%Ô÷èð¯ü~ެŸ±Xž}l o/X݆ô¿© >tðGô"}´?qÿdø¯D*k»N0†pû‡" £p^;}¡oà)P—¯úÕB-`Ð=¢©N6—™6M[ÉU•«Û])¡šMŒèÃÿí­qFÏJ`JбÿíWòÒ;¯Û¨ ,`Ê—¹T®¹ò*;3F²0Ú%~ò9²_(ÅÕ_#}qm»¶f-mø—j6‰0Žƒ²£KÛ{´ÁÓ˜† õCƒú¬onˆù™ÃúîD»µáŒ¸+×…Ö’VS%Ã¥%KË ¯±ôÌ[ºH¯•W£…-Íw·T“½i±ý>à>ðáˆ×4N@&–»É 7™ßFÔaÝêœ;ÿÞ-=†ô÷™†Ï\0WšÞÐÀüè1ÒÜôúÒÿ…§ý®ÊŸ$pÁ”l° éÔú.i~S#k„W½¼¢\[£¶<|(Ö…Ñi«_§®´ëù`¬õˆ™PQÍ ŒxÖê€XSÙXµõèpŸôzfÕ)9û%ýäpÙ© ÿw` ²â¬$þÝ¿7–}j„8,)IŠ*,÷µi'—–(-c>zÏ—50€WöØoùOM|¼ùk9¾åË{žë\+9tæ³)“¼«Ï›å¸êëh/#y ÷ÊÞýû%·ç™+¿8†ï/¹¤]vàþW¸Ÿõ>Ôbòõíò°õ2 X݆ToÕAƒµl0·AXIàùª”×ÑÆý’Ó‡ò9UmÛ¹]:i,©á²$ øúK°sùïËß‘#Mõp²)D0úsüdŒi¬>™ü¥|®&¯ÅtÐ!ÎrÆ4Ö{kÒ§‹I2¶G»ìVSæa¯’úµëÊê ÏÊ—]¡Áß6YÒQ)Bké•'^f?Û4kç64=*/ ü¯Ã sÞ‘A#„2‚‘×yK›bÃVÄã-°æðšÉBã"Ø*-.‡ôí=°On¨}|­&ŸÍT™ñé×1ÁÂ9ç:} _Nä þäP‚T«PI²eÍ*ÓæÍr›ùM!€ÄæymÈpyºW?uãJ'ïOøÔFþ½ h¡ñ Ô›1®o5¬Hž}t ÅD@ý˜š¥VÕ+å‡ šþSÅóÔórYé2rË}íβ< TVÐñ‡dRw"¯@Áì¯$ðn?—1j^¯Ms³™ôÆrLßýϪ[|ÅáNåâ…étjâãÍ ås)_ÞóÜÚ°™…Niå*šËH\÷lŸºÆe×¶W2ë3˜/¡„ï—P„"·–ߨ¨ë¤#–O`5 …H°º ©„ë=,)+7¾ÎÚßp“ŸúÞgR¡aSŽD.'Éw% í}ǰŸ.ß|]}i©¿"É—R^9hª‡“M!2îë/}AUÁ‚ŸäuJŸµ)w®˜Ñ¯-Û·µ-ÚVÀõeò[© L6™±`žLøv²¬Z¿Ö!­uñ*¼é¶-K¦,²ûŸ¿Õn•ï,S³“¿÷þãí{מÝr¡ZŸÄWÐà΢!ã’pÒèXÌ$ôåwߘ†û—Õ¿©åL9u¹ßv çœûˆuÚogþ`A¥à6ƒx*ßꬰ’¡@¤ ôzú îœW­¶-_&wkcÌ â•V ›Ê8Uzïh§ÁW3[PVì릙Cò‚ÆùqÁï)Rì2\ÿß蕱oˈ·Ã‹st¾Â€KâÛϾdC›ß·z¯*+«¿9ÊNŽ ÿ«Óᢠ3ìÍçÁ»ñ\î¾ønŠÅ³€B EXTz¿·ìتA&S/·|®åË÷¿zµêÈ=îs«RÌw´–‘`÷l—–ùK4P·WPª7¼û`™ï"ÉûÛuä]*0HxU•«ù`užÉÊ—U'_î@~ý“÷uv¶NR«Ê•2mîLwÊÿíeˆR´·Ðw¢œ?¢©N6…H¨Ûõ‡F .zqëx••50'üôQaD» &F~çQµéÿÙ; 8©ª/Ž •¥K@L$¤[Dº»»»;¤»»¤$”éTº$þçw÷ÿ†Ùevf‰};ó;|–÷æå½ß÷ÞsÏ9÷kGÁÕ«E{GðOÄÀpŽ{üÀ'pƒÆp·ïôù3êbôŒœ>Éa%óò7c>1•þòÿîH£÷R¤4 ­ß!]<~DRª¿c|®îâå¿Ìi_þ¿ÐƤ%¸{-T«ŽðÿS׸ 8àó^&ƒ«5– Ì{ØÚc x›À‡ÿw‰sžéê+u™Ù©µ%ˆ¥ÿßvA¦Ù]»y“… øÆplJf¡Ëׯ}Êoܺ–¯-1J†™RŒ)ÃtA_—‘j‚Šj¤|WS&÷®@¡|âô)A jÄž‚dRvP’„¤s¸V-]N-ó+›òŽäÂ5Ôj#ÆN¦Ó;öÁZ$í»ïË@}wü#ãnVž÷ý².‰öÉc}×¶îÚamò™¥]ßwÏìÈÉãREãÃÆR¦£ øíP@àîá°~qGÇ»û*—,c¬Jׯæ¸1b(nüÿ ‡»² .áÊê< exDÝEãýø‹ íÔÓ¸A9—Ï2d’ž!ˆè/ŒÂC>íT¿bW`›¶o“Ûwo˘^ƒt†”MPBLE…¹»'‰n×<@ðšŽøZAñ±–.XÌQhÍ]±D>Õm˜ù&’ˆ5PBcl× qîöad І•k˜Àz˜ o¬Îã¸Aj+–(mbtTÓ†%b´¬Ú¸Î Ât–Ét&ƒoÇóˆœ12î°xÉùEVG œ’´wÄT¹¤Œ0…”#–<ï51zXFg^€» ¢wSHÀÛ.èûÜR§ËÅtpÄ Øð©II¡3OA0S³lÕ`š£fLrü-Ô÷‚mpðuA#¯Û.&j<Ê@”—Ö_PK_`K¶DuZÁ`zf+¯ˆžoIpï öO]8Gª}WÞ¸J"ðec}kâÜ™>oeÙºÕªðIg¦ÓE0·ºžT“è* ÿsË%:íh £AqLw°ß·ù˜LºùïEß/\:U²ärâÌ)GçÛÍíÂå.»}Cžž‚â?Ò‘ðêe”„˜ú®Ø“Ô-Ó“ø{ýâ‰7÷c– Xƒ ?eÊ5 ä­PËfÈÔ…Á—m˜¥ÛÕkjÚäh—·¨Ù@ûKwt†»ÞÌF˜ÞëGf3Lbp)šZ±#ÞØ[›Í T×yÄs£ØŸ€]ÊaÛZˆ b~Eg½oëÎ2oø£0@ą̀Òcø û?aM!”:«5hÒ¦™KŒkÌÅË—¤Û¤Kã–Æòœ¦´[³¶Ò¹Q 3²×®Ocý wû0µ»ž×¸Jmi\&Í{R)þz`Ÿ¢«,˜ßùïÿ•úZ™Æ"ÀÁ’¢l‘’²uÞ I™ã‡•‰+¨ˆéR¥ECáÿªŸŒâ¢5+¿;އ §´¸º®µ ÁUDuåÿ•5/rÍ ?o6•Ë¢5+ñS¬ûpIÞ +§®ÃȰνŒb®4ø±³7:(ßœ·y#mv¿:¶ˆ«±f̲Ò\Aë«¡cm ïËJ:J%аνeQðóVüÖls÷® Ñ ‰ÝKÖÉ L½{ÿ^é«1«|EP6S÷³:,¼_›.¦ 0Z•ƒçÍ4YÄŒg½G•ù#&jþï©âþŒÀ]Í9÷u>žžó‹¾_¸>¬CŸò]e¬ÝÞOÏ ÖQ˜yc”ÎFØTgÚ»®qØÚèåÒºÌÓûÁýaGà‚ö`Å 7¦Þ-;…îà‰£ÌtÊH•§²­A§Ö2¬Ko9´v›<ИJhOTkÕØÌÈv¹òîa9‹É'O%VŒXfêù Më8dùä3©­} Äg¡Ø›€]Êáñ>Mó$2¥f÷¯q‹ËûþY°ž@mËeÃM2m¹ëµhÑLð·¯]u™>ŒnÁµÆUþ<í‹ÿV\ŸfG– ˜#f¨­'®‹© ƒ FÜ¢Fâpå ºßÕom…¿—ó½¬ãNWi±ö?ÏòY¯ “é½+6Êw:qÐ`µÏsžCÏKï.¾AË ìy¯ÃóHÀ¸Õà}³‚“y:><î‡5ã•«ÿ˜™‚¦íƒX;Wâ|\å›ÛBN ¼½#VÛkJø&€6ú•þq(rsã©lƒå$¬Ðýù=À·\ÿÉ™%×íO 4ÊágÑ]„ …ˆý£½Rè¬ñ”2¸ÞDÐÁ ‚·Z>ÛÁc‡í0§Î›-§±\)T­¬’Ä4 x™À³(Dlë2ãef>u»³þ”«7ÏU\1=hЩ …; ¦Ýµ»´®ÓHîÝ¿'õ:¶´{R™>       …ˆ “@$@$@$@$@$@$@$ðâžÅBĶ³Ì¼8^H€H€H€H€H€H€H€\ BÄ5n%      ðaTˆøðÃeÖH€H€H€H€H€H€H€\ BÄ5n%      ðaTˆøðÃeÖH€H€H€H€H€H€H€\ BÄ5n%      ðaTˆøðÃeÖH€H€H€H€H€H€H€\ BÄ5n%      ðaTˆøðÃeÖH€H€H€H€H€H€H€\ˆäzsð[=xüNî!       p@€"áà!1‰$@$@$@$@$@$@$@/—"/—'¯F$@$@$@$@$@$@$P!“H$@$@$@$@$@$@$ðr P!òryòj$@$@$@$@$@$@$@á€"áà!1‰$@$@$@$@$@$@$@/—"/—'¯F$@$@$@$@$@$@$P!“H$@$@$@$@$@$@$ðr P!òryòj$@$@$@$@$@$@$@á€"áà!1‰$@$@$@$@$@$@$@/—"/—'¯F$@$@$@$@$@$@$P!“H$@$@$@$@$@$@$ðr „‰BäÕH‘ÄùÏS–plФÉ$räÈn!‚$M”XbFñÔqÎ÷ º)bħŽ« _‰(¯¼ücAÚ‘Ï眇ó_T^Öu^4<ŸB“€§rߪ;ñ´ßÓõ=íwwo_Øç‰Ÿ/ä1¤ypÇåñóÖ !½¿ÝsÇiwW§Ú=oÞHùyƒò³ßïmpï®§úeÂkÑ¢=ûMyF¸"àéÛ W™yI‰uÇ„õåK‚Â˸{A/ÖÏæÅ{ÇAs‚ßû×l‘Ø1cÉ£ÇÌÑ=–sÎË´…seø”ñòèQÀöw’$“îÍÛJÎ/³ÉÕkW%R¤Weï¡ý2~ÎtYµqãNQ£D•6õK…â¥å¿ÿ™Jàâ忤ǰ²hÍ Iò]Ù8{±ãx< Ç;î¿kßoR¸jYÇþ°\™4ð9râ¸ôøa ËdݰCª¶l(Þâr¿»éR ?ÎX ‰?ÿPîÿ÷Ÿ»CÝîËŸ#·ôkÛYÒæÉâö¸ÐÜùvœ·¤r©2Òoô!ºMáÜßè;tM6ïü%DÇó ÿ%ðqº¤w뎒­;Iâ åúͺ¥ô3ÜQ?á@<ÛA{h¹WÊÔ¯nε{~äŠGP’ù[=Ù¶^ù®pñ§Øü¥mƒ<åJ˜í¥ –êe*J2ÿãüYiÓ§›ì9¸ßìó÷úò)p¡¸ÁSÝôÖvy6a¢Œ–=;Ëäù³ tÒ½ÿÌúa¼i™0Úöè¼Oœ3Ã(?*8.˧_Ș^eRÚ™Òkø`s~óšõ´Q˜E¾,‘O Áq¹³~%“ŽËÿ\‘­»vH‚O>0Çâ¿]K×É„¹3d„*_(ÏN`Óö­R°Ê÷Ï~âK<#›¾e —±BÐÁF½ÄðR¾H a¼ø2gÄx>y¼ü0eœDÓNÕ˜Þƒ$IÂDÒ¼{Gɘ6 ïÖWßÿ2Fq™&Õ{Úh] gþNÿ‘ä­PJþÓ€NMZÊ€Ýü†§çïïü®^¿&9Ë „ åá«Zh{XüèÙ²½Ä{ëí@·~ýµ×dúÑÒyP£…ÒxêàQrV÷³–,0Çæû*—4ªZK뢦N².`÷üZéäÒ3¬'‡L-£¦OrÀA;ïþ“Æšm…¾þF:6j)%kU’“gþ’ª™?j²|^,¯Pñ÷úÒÎ +žê– I°Ë³ Þ7#hŠCñ÷ƒ‡ïÀÑCòÑš;áƒßñÛ¯Ò}ØÓYÀF·é—­R»m3iR­Žv6bšcߌ[îܽ#ÐZÇ­Ú´^JÕ©¢#°a;„Ò¬ÆÉáu?Ë‘õ¿è6·Ò¹§éж©ÛXZÔj qb¿iÎÃè‰%¥ SýÍO0èÕªƒã™M0ÜŒ´XÇré»2gúT^‰ðŠŒœ6ÑtÈÑáœ4o¦”)T\¢DŽ"û’/‹ç3Ê P¸yû–Q⢡ Á»S³u£ ÁïÕ²m¯Zw$Oœ?´™‹ç;·$cþF‚ý u¿1?˜Ž.¬Ø¬Z&9¾+âÊäïCíÔß¾sÛÑP¿výº±h@'ìÊ-%ãfM3 €·nÊ@µ¾é½©pº_ÉÙ?ÏIÃN­ düà±#réòeÓaÃïF]ÚHë>]‚ü`õg½‡Øïëâ‰F oݺe¾‡šÁÔÇ”þÎå+¬©¬¿\j‰œ;k©Ò¼ÜÔ÷&,Šð(ÚÖÙs`_ d|_¤¤±*´¬Ä®jù ëfK‚ƒ;5n%£§O– s¦:×Îù ”PþpKÀ_ëÉ[·o;¾Õ›Ú6€r{ê‚Ù²X-¤ J”6JÂã§O Êû9ËÉ…Ë—¤°*J þ^_^úÏSÝ4vy6¶PˆÌÿ¾ÐÎÈ‘ßOV}N6ïø9(7ó{÷þ½f™AL_4OÞOùžéäÂZf˜”á|˜M…•ÀRÊŽ¿®\–ÒõªIó4ï :æÄñ ” 'Nÿ.•šÖ3³:’ M»MeÖ²…Òªguù^ÞxýuÇ~O+í67–2íúõ0Ö8«ÕtÊ”A#Ll–ºí[hÇc„|_¤„4S~¨8ÿã´|[èÉè FÈ }ט°CùðÞ;)̵Þz3ŽQ‚À lÃZ¦ÓkÄx#ºQX-›0Ã4DK×­&+7ý(úôXw„D0’)^³‚²ë(¥ò–*ÊÞ´sLáØ¤k{¹¦#=;v(fh¢lÚêÊpCFöPp`´–B3´#:[YBQ„‘}˜Q[G•jï$Ib~V(YZòhÃ[\ëÍØ±¥o›ÎÖ¡\ú0ÛªX¢®,ξ׉â%0Џ·T‘†Šö’~ÏPÌ•ÑïÖj[´œÙ¾g—¡ÇšÍ„ÐA-+lÙµÝlƒ ·x7áþ¶aÖbùòãÏÌ>ŒöÁ¬å¬JNü´Kf«{ Ê _‘ ªð¾s÷®É±È#2·ãÄ1ÜϪû¤%p•Ag?®–3þ&°l´Ì}‘÷/2~bbdm۽à@gèö;¦Üë e=Êg¸où‹xâ3zÆdùðý4Fy—ÚºªJŸ‘O\ü…Spù$¿'dPžwiÒJ]O†™òýÉï¯%K”Dš×ª/mûv{êæï$I*§Ï´s1H†¬jß•t\öo :\0ípúa§ü:%‹«! ÀzR¤Ê·e%vŒ˜ÒÇÉ• ß \œåῢ)¶ù{}éÌ%´×=Õ-Aïo—gf.3e‹•’Ìj¸¤Hš\2¤Ik|{ÇΜb: tôÿÜÅÀ/·~“è” ŒX»÷ÿ&E«—“fê{ß°JMõ­khöwÚßh ­ó¼½Œ¥›¹Ë›qØä|˜ú}ùêó/MR¾/ZBýÂJ u‚ìÜ»Gv.ýѬã¿ZåªM¿åÚsâ“òË¢5ŽýîVÐ鯮q¾«WU¶ì èŒÁlVO3dŒ†Ãd#»÷îil.2@ýQç¯\¢¦™c4ÎAT3ÂV$O~õñÿMΪkb‘X‚Ø…«Ñ*@ɃgS *ÁÍ¡ÊܳQçÖ¦Sƒ}qã¼müâCËJ²_~Ý)û””4åÕ–[:º –§Îž1#øpS€ ðcÈÐI‘Ô\n’y—ÐI½{÷žQŽ9ΣµGÒ„‰fy‡>(zêwh¥ »æºüÏ· à‡«,Ðzh¬‰Ê)n28 –$×Ê·v¹ÊFÁ9rêks %FrFö`Ê"”k”kˆk ¶ú[š¸G³~+™‹å“èÑß0ÇÀª 寤¹3é3¬Êr—-a”1æ€pü_U\#F|âÿ¼tIj–­(ýÛuUEøq£àDÖ`5â,×ÕJV€þ,P<ÿе þ5ȨqùâßJáÜùŒ5\küQ\ñùóÒE9~ꤲùÆ(Ž`™´ïðAÄã1ÏþÎï›ì9M0~Œ*‡¥ Ý6Z•ì]õ5¸ iAývÛ‘ß\0¡LïÚ¬©càFÙ“Ø%¿žÒÉýO°¬ý¹žD‡om5KÀnaÎríÆ Á`§³°¾t¦úë®ê–àîÖÏ&Ì"t¤õÁÿ nΛ¹d¾yÁa#¬ \ \:0š ³KöjC§bӺƬýKU´”+ö­i@âØÙKZ‡yuy埿uDjˆ1ÃÌðAZɨ-ÕüÛ²ZIâ]Aº-Áèóo4Ö’÷S¦R…ÈDë§ñ‹ƒ ~HJ&T®{5(£%»T!a ,UP˜Ô«XÝÚ$Ñßxݘ\'Œ_~þu—1ÛG,T´EU!âl–iôZZ øØq@/³»–vïªBaHçÞÖáFQW]\B"5Î |ËŠ©ùè²ukŒ9ÜQí8¹’ÁãG™T¸$ÀBn=Èjâ\hº:7è6.Ĩõ¡uÛdíæf´eÝ–MAão$‹¸! h¯±T‚Àvý5poú÷ÓŠU6!ÛP²Á•£KÕ ê¾s¶ba?Þ;4lÓªÒ¶hõòŽwŠ=ø{7í`ý…îau¥ƒÏåò kqª¬Ð ¬’AY±zê<ùDc! œ ïÒ²Wgiׯ»£ÑÞ¶ow)˜+¯|[ ¨qBþ¢D ì6¥ìUUŠø«ÀÅrÞÈIÆ2®yÏNOaC”¹U^>q–¤Îõy wõ©|lCp|¦©"ñÂ_—$C¾ìrO•ýˆ«€o)mž/‚ÄÇ0CÌ-/j«XgÅ fOJ¨n!|vÈoHÓË〠?דß,jâKž8}*˜¿®\1V^ÎcE©m‡ Λ̺¿Ö—OÅ ÁÕ-žn–Ï&Ì"ž ¬ùiƒ© a *M«×3ÖðCgS-•*X$èa‚Œsãû©By|ºãª"$KÉüÒ¸K[c &‚6Bàæ‘íÓÌŽT ƒnÅ0û‘¬Nñ6R«ÅHHMÇœÏÇÚ^°ƒÂTÿCX_ZT¼³tW·Mžm"˜’nË&Ì4¾€@ž)M€44+4®íà «‹Vuªo~]W×J¥Ê3ÂEkV8Žóö Fƒ_ÍŒ@àÞŸ}”I¾ÓÙ*,käÓqV*YÆX¼ &³Âc¾Ž<#°*‚bF†•k…8 h¦P€C¦h°dÄ>ÂÌQøvQ¦O˜=Ý¡àô!ÍCkõ+úoâÏ`ö5ë]B€k”ï˜üà‚ˆ?LQ e󎽿†ôáú8w|àrû‹:n× ™Q(B©Ø²vAuG-²‚Ò†ëÌ¿„Ä“_Ä”Éß‘œ óMh£`v3ç¿s`z—N"€€ð¹+›ÀÓÍkÖ7õG–O>Ó:(§,Ó¶^HÅ.ù izyÜÓü¹žL¥ÓI» š2¶ÀE|D´åT®®ç§eóöŸY_>ý …êwu nüIúŒ&~ÖíÔ– ³"áIš¨Ÿ}{mÐ h:ô0}…yu¹FµŒ?µu>‚ij­ò•¥uÝFf3:òöÓ ªP: xâæ¹ËÍôœðgî:´ŸtmÚÚÌsàèaiܵtÖèæÝ[´5àÐa°ASª(æÚ†©ï²ukÃÚïiÙD¯=±ß0ùiîRãjƒŽ:"T¾•ufêÛ©#°¨À4Çú÷ tÙù+–JãjµdåÆm·~ –¬_z´hg¢´c$~`YÇGb¶˜&:à f—X©>¯ça·®t‰ø+}tv—ßVn’H‘"šŽaÕÿû îÚ·ÇÄ™ùyájù¦B)sÁ(ÁÒM9÷o×Í(È`Rºdí*iQ»¾™¾3Ç´W7­þ:ÍqUUÁÊÖ'P>A¦/œk,u0:½`U£U³4ð?Ÿ&ÐepóÕÑY)à®K!+~ÞéfÝ;èŒÕÌû…™Šàª0aÎtä’΂EÊðn  bå)WÂNnÝ«‹Œí=ØTÚ\§] ónãXXQ%Rå¶«LŒ%ÄI*רf˜7Ö­|¼èJ`ÄQšªÓtC9yC-ÒÊkynÅFB£ÓìîÑÙàÒ‡@Ìþ83”eåÔB Ûù£'Â>B-î0’Œ2«]ý¦²eþJÓI:ùÇi-ÓëûEüð©×¡¥ùètð°àºü÷ßR­eÇ»ªŸý ¿'18ÐŽ ‚Y¥Ð~¥Áº1kJv L…TÂS~Cš';Î_ëI Šbpô¸‹ï®îˆã¶P­*ïhVðh«ÁÂâÏõ¥7¿Ô-Y?ýÜ :Ž™1ÅVÏ&B¼OÓ< ¬ûWo˜Ã"½ñZHéÇ`ÄðªŽê{rÁHÜRÐq±‹à†ù–Õèš.h3ßÖQÒàÒŒ‘RXšü{-À•%èùž~c¤昖IÐãaie¬ žWXf@T°/þÛq;ÌýžUÜñƒåÐ “å\t\¥ûñ ?~ä°€Á‡‹ÑéàŽ÷t=\“â»ðn 0rp‚ÊndÁÅÐ î¯DŠø¬§ðx       °ZˆØêq01$@$@$@$@$@$@$@Þ @…ˆ7(ó$@$@$@$@$@$@$@¶"@…ˆ­C$@$@$@$@$@$@$à Tˆxƒ2ïA$@$@$@$@$¦ò@IDAT@$@$`+TˆØêq01$@$@$@$@$@$@$@Þ @…ˆ7(ó$@$@$@$@$@$@$@¶"@…ˆ­C$@$@$@$@$@$@$à Tˆxƒ2ïA$@$@$@$@$@$@$`+TˆØêq01$@$@$@$@$@$@$@Þ @…ˆ7(ó$@$@$@$@$@$@$@¶"@…ˆ­C$@$@$@$@$@$@$à a¢y5R$qþs•ш¯Dü¹œ!B³Ëù:A×#Et}¾«kúÓ6pyå•ç{ôàÎ!ëü Bz^H®ÍcH ¬ W>YézÑýÖuüu鉟/qyѼ¾èùvgé)/ºßîùÑôyâ’ëÛ½þö”GOûÛ*!áácÞxíu··A;.¸¶œ§üâÂv¦n3ŽvzzŽî²‚vôkÑ¢{HHžs°'‡£žâûµú…ž²…÷>räÈžãþ0 –ïóóõŠ_ÒÞ›äÌÖ½rzËówvÛ>ùyþ*©_±º£pÿ¡KoÓkàSwzûÍ8‚ã?MŸQR§H帮…íÎ×?ròSçsƒÈOs–É·Š>ŠS§1œ_}õUçÏ[P~Y°Ú3z s^ªä)<žÇHÀÎ äÈ-SŽí WËò 3¥n…ª%rG’3¦M'Ó”ßVl4åZé‚Åû°R2_!Y9q¶ì[¹IVL˜%}ð¡Ù;f,Ù³|ƒË¿ß t _ýÆ}«Ú eëÜå²WùŒï3DPæûª¸{—Œœäò]èÙ¼Áá¬ò}•KæŸ ;­‘ 3IÑ<ù½ Á}K8Èø‚áâÇ‹¼_Η+S¸¸©¿CÚáp>7´×Ýå÷Fù¼fÊ<Ùµd­à›úð½÷IB'ªEÍú²gÙz}ÇÖÊÄ~Ã$Cš€òØqP­|W¨¸ì_µ9Ø»G‹U6ÍZ"ͪ×uƒçƒü.?ÃÔO¨‡Šå-àØï¼bçgêœÎð¾Üsl^£žüºt} ¿Úe+Ê.žçÀvÝd\ï!¶û[ÙC ú‚'6î”/3}fm v3ztY¡í¯še*{ wx—€]Þç õ‡›V}ºÈ”sÌ•Q)¡£=kèXÓˆ:iLˆîxôä IôE:DZh4Mš7SFL›èØÆ{¸që¦dù¶ œùóœ=ÄTÀsH™4¹üÐ¥©QN;"Pb ‘8^iÛ¿‡¼“$©Ì2Fum+šÖ5ÊŽéƒFÉßWÿ‘u[’B¹òJ‡Í¥T½ªrêÌF92oÄDÉ\"Ÿ\ù÷ùº\‰@©êÚ¤µ$OœDÖlÞh»¯þèÖ´¤JöŽ©YAîß¿/mê4’)FHªeäñãÇ>•mOïR•– %¢Ö–ùúi¦è‰ZÇA|…Ã:÷–ÂÕËÉ‘ßKšTïÉšÉsåì…óòë}n¿¥Ëÿüíó|¬÷"¸å‹¾_Öu1ˆÑªVë§­–žòX£L)£Š…BÕÊÊõ›7¤b‰Ò2_Ëë rÈÝ{w¥fÙJ’íÓ/$Ç÷EuÿM£<Ô¡›¨ò½Ù™MûnjiX¹¦I×+¯XB»JGUŒÆóv ]P¾#¿ÅkW’¿µ>ÁµVLœ%C;OWo‘Ck¶jø$ˆÏìÏþYfÞµ¯T(^ÚŒ2Ðc:7nÈ¥Ð×yeñ˜i‚}ƒÚw\ÏŒš¬Ÿ±ÐhMžb“Ö¾gY´ /F®q½Ì? t:´­è "»ÿ(-µáäÊäéõh¯É¸^ƒ$ÁÛñ¤KãVí¸³À:¨{³¶f“»kæü"« íÜË\£'U¾-kFSj¥a ¬WVMš#éTÉF!—IšìZíše®ûﵫ²ïÈAUZ$5·)”ëUú—Õ?m0ø=÷ËRmˆ~_(@ÑQN+äEkWȉÓ'åᣇ2gÅb¹ø×%)¤]tøÿ¹ú¯ã/W欒'ëWR­U#¹yûÖË̆-¯…rãûÂ%düœé¦1%ê  £7sҖi~‘Dyz—®Ý¸îxP&viÒÊ(ÚŽë»ã¬ö9,YU‰eäæ­[A¿?Ô%wß’?ð1Üü÷"ï—uY˜•ëÔKúam²ÕÒS§.œ+ÅjU4Ê$üö;M;P:ðn¤¶;Œ!×nÜ0åïÂÕË%WÙâa¦ A¢šT«#ÇNý. º´ H¤‹ÿaõàžC;ÊP6Ôó  <~T.]¹,É%q\ÅîÏÔ‘Ðp¾âî9â½M÷^Ù²ë£ø‡"uÿ»w¹îذ…Œ™9E&ÌáØ†*ÛÜ1´ `Ðhæ’òPû‘îýXÖlÛT;êîPîó";½Ï¶Pˆ€}â å ílÃêÃW…ÞèTñ®4ïÙI-W&HGþü£LF±‘ŠË_–2 kHËÞ]Œ FD!1Þˆ.PjÀ$¸ã ÞÒkÄ`©þ])¨#ÌÏ?úØ(ZvìÝ-å×(^z·êhöeýäsÝs ,_¿V¾«_].h‡kÑè©+FL³ÿYþkW¿©|ýevé0 —±èi¤#Î2¹ÿpI‘$™ÔïÔÚt^¾WÓÚ¦Õë8bÖÁ#|¨ŒÑ¬Xâ;‡{ÀÈ;#‡Ì±î®C;säÑ‘÷tF»¾sï¯Ú±|$Esç3çâ?(MÆ‹/‡Žslã ¼ 茮ݲÑq©×_{Mòëwºe÷v³-Y¢Ärî⟎ýXùóÒy+N€Û¦ç.ÞþÒŧÜBðtjÔR;"ÃMƒ6Ð}ôÇÛʾÒÎ|0ÒÿŸŽnú¢ÛŒ§wÉù1wjØRÖÿ¼EÖo 0¡÷VP¢3‡o&Ó£zô7ˆ_~Ûmиû–üóûájýEÞ/ëzµS¶|ÃZÛ¶Ë<åV èhÆó–Ô-_EÚÖm"C'5O¸ñÂÂVX GM–cë·ËÌ¡c$QüVöÃdY§}s£¤…œ+Á{ß\ÝdÚ©EbPÙ¶{‡\´¶£˜4abÙöëk“Øý™:ÎWÜ=GX} í€ÿÁ5[ÌÀ%ÚïÎ1]r”)"‹×®|Š‚?•mî …Ñwœ±dþSœ‚nØ{ø€Zö–7ý ûø;ìØé}3—™²EJ©µÁ§æ)¤HšLÒ¿ŸV;eÜìia÷d^òQèeÿüKù¤È×rñò_æêqbÅ–DñÊy+—Èà £Íè/¬cÒªo+,C,(´™ý}Ål‚rZN’Õ¿+/óV,‘Ù}­úv•võš*ù•jÈ[7™J;wØkby”+ZJ†OoŽÉ(œ«•./eÔ­ÿïðý÷ß2 ]Ws:â¸@‰õu¹âf$ïÝ¿'}Zu’ãF{‹•›Ö©‰[Wù,C&ùeÏ.ãVï­·eåÆMlO×DER»}3£èÁM¬Ö˜(ù‹ÈÀñ÷,¢Ê‘%?®2#ðÁ&‚;Hà @³=¢k?ùK;mV¹…Ñëkׯº2FñÝCÌ~ùw–ëjÊýæÿ÷[ÛófË!1U):gùbk“Ï/­‘ÿ«7®Êëuå”O |à‡«wÉÊ”Ay²}%›=±ªó'VÉ´CW«lEy?Å»2jú$ ‹ÛoÉŸø8€¸YyÖ÷ —Bü– ê¶Ôa`oc¥åæò¶Øå.9t¤\±oµ‰%'ÕUbYãöhÖδÅ&ÍŸe\ࢗ·B©0k?@œ M6ª{é2´¿Zµ®G‚žóVì7Õ嬗Ì^¶P`© oÏ4hžÂÓowσƒhKö]¿¦ceú@VÈ€àÎ÷§²-8x é¤ Û"Õˇèµpw­]€… ;½Ïa¦ÁèÏ þí¿ý*3—.”¹j>~ëömý¿ÿéha€i¬óSˆ1 ÉØowA¡sxK‚ôN^0Û‘ì>£‡Iž,_Izu‚¿tÆÒËçÏ:ö£#e)C°1¢Efö§Iù® ›òD¹ɦÝ;˜}0téÊ_ÆåÆlÐÿ"F|E-PžÍìüµü@ ‹K \±÷Á(FÝ Õ¬Mj©òºÑ|ÃB#8Ùê*UŠÀ' ‘"¹óËÚÍ›&ò!¹&Ü`õbÉ¢5+¤Cýf·Œ.£Ò‡e …B‹Ü²Ð0ýàÝ÷ŒI¶5šw]ßa|Îí«×:ù7Tùá€ÇEå)%Ê·ù‹Ê Uzjô:ß'¼¯C1‰ê ÖüV~¾Ì!¸wÉÀÐÿJ¨"õÀÆŸ·Z›.þÀ VpcÀÈøâ1Så¾Öý½Gwß’¿¾KŽÄiåyÞ/Ôß½[v4±ŽÐV³»xÊãÓ€?X 1¬vbà6Aû î¶Ÿ¤Ï h—ÚMÚÔi¬î4'Y)ºJ#”=ó4ñ‰Ó§¤…ZCÂÛ3u•/_Ù†AÍjyeuÒKäã3èdE ‘àòʲMŒ…=Ú_ýÆ — —Ÿô‚cÆíö%`§÷9Ì"ÐZ[AU]=*øáçÍöîS»âÄŽm¶¿xá©}vÛ¿o4Þ\ \b–Ž›®®1oÈÆ_¶Éü•Kåð‰c’åãχÃÚÂYœƒ ÆPKh˜] ÌÎOŸ;«~r‡»±ŽmÏ"Q´£¥ ”A÷¹£&©Î÷Á1PrÀTÕÌ_µÌBj?°—QŒÀ-’k¢!ì,ЪoW3êÂêN—+˜È:+nœå: ¼(( Ç÷l\À¼Î¹,º¬×$ñºEÌ1Ç c +.gÁï󗞸ÑÀŒ;×—ÙÔ®–óa>¿þ·~·è|—%¸ ‹°sá ¼·Òü,Kwï’uRjý6{Ù¢@#ÖþÈ Õˆñ ±u q÷-ù#ë}q^>ïûUóûŠfðep‡îærÖ”—h³ Ðx"~Ùâ|›0]I­"Ý0ÏñEc‹íÎyÙ{ø Q6&Ô Ùv´ë¨Ûbê`b+¥Ö?,k´ib¶!NÛÂQSääÙ?¤rËfÐ ;ÂÓ35ññÿ,eˆ•M´›3g °š·¶¹Z²lme—LiÓø£rÉ2R g)]ÿ‰u5\Å7†@ÑȲMäøéߥ«º9 ‚¯oûug ‹vçý\·';½Ï¯Ø‘ȦíÛäöÝÛ2Fg&A`(˜ûaÊJÌN21HÔe»æa«²ºòÏ?föøÀcúLD5Gc暯©û *0âi`Ê4( B"1D`R˜€Â\´žº­¼¡çßÏœ6†à6’ÿ«¯MÇ,OÖÆ}S¯=‹À f}UK—5Ó‰¢ˆY ,Á3B‡fœ0Ñ„rd€Æùêó,ÁZ¯Xç¢Q»dÝj3­&Y–ËÁó^sÉ«åCÁ’/{.Uˆ¬´nÃ% ¼T…ÕÍ ÁŽi¼šÄj ‚zÓzy¤³ÅT/ЉÔŽp‡ƒ:³äÎ’ÝÄÊAã¼~Åjf$Ïjã˜Tɒˉ3§ ló™ºpŽTÓøHˆ›`š«ÖÖò~¦G‹³ðÈÇÓ»„<¥øÿÌa˜u"¨ø:«eZ?dÒF.bgAÁ˜[ÝK j'bZB<}K¾Î'èûô÷‹¼_ˆ6jÆ$Çf_`\˜ì"žòˆXbK”‘R¥6Ósb6»øqãšcÈĹӥ™‡"½M«Õ6m¨#¿ÛQ!rÏñ<¬geÈîý{Í,ȦG†uÜì©òQšõS’‰L8ë<,íúL‘_ÌBk´ùa‰r ít¸É†Dü½lìó»ŒõGÉRí ù$ÝG:Ån…àä1aLÀ.ï³m-D0»@Ŧu¥oëÎÆþ já°ê§õm?C·‡KKµÖeD·¾²gÙzu;¹e*!ä¡ÕPiÓÌ%Ææ¢úÁuûa€N'ÛÒXÅxºøLªŒ ­SŽ0ʇ}Gé(b€yë4íT$Õ pŒÎ4ÅFAº éë˜*ÔÓµ÷#.Éø>CdãÌÅfZº Ú9Áˆ%.=•[40»v,Zk:-;÷î1³â8_#¸õ«–J%UêÀºÃ’ç½&b4lÚ±Í4l8j]ŽKx©*éÈfLÖ¹w ë"ÎNÞŠßšï ‘ÑGéìRM«ÕUóëëÒ^gh²,Iðnö9T昨îf÷ÔgýŒ™Ê²&ÁE çø)ût:e4” “ šÝKÖw<4öûj¬%_Oïò åêB+3_g+Ðf:;[òU¥_›.Fñ?Z¾çÍ4<}K¾ÎÇù]pµþ¢ï—«kÚm›§<¢­•iál™>x¤*®ßºáˆoâ¼Ýnë0Ë 3õ´®ÓH>-šÇåhªÝÒÌô ¼|Ï¢±­ËÌËÇÂ+%иJ-Ë èvë÷˜YSÂE€ÒßÔ¸%_J½Ž­¨ ±—$@$@$@$@$@$@n ÐBÄ-î$      /žÅBĶ³Ì„ØL' @ø#@…Hø{fL1 À  Bäòt       ðG€ ‘ð÷̘b       $@…È äé$@$@$@$@$@$@$@á"áï™1Å$@$@$@$@$@$@$@/H€ ‘ÈÓI€H€H€H€H€H€H€Â*DÂß3cŠI€H€H€H€H€H€H€^"/§“ „?‘ž5É<|ÖSx< ØŠ-Dlõ8˜       o BÄ”y       [ BÄVƒ‰!      ð*D¼A™÷       °*Dlõ8˜       o BÄ”y       [ BÄVƒ‰!      ð*D¼A™÷       °*Dlõ8˜       o BÄ”y       [ BÄVƒ‰!      ð0Qˆ¼)’8ÿ¹ÊhÄW" þ\ Î!‚Ùå| ë‘"º>ßÕ5ÃbÒkGqæë)}ÎyïW^ “WÊS2¹ŸB…À¯¿ìuCRþà«, z!|[‘#GºÙo~ûSþƒ«ëBú°_ôüÞ'¬Žó”¿ÝVùòÖ}=ññV:Bó>žòèiHÊëÐLÐk{J¯§ý¨W^‹-èeù; ¸k'xJŽ»çŒ}Áµ<]7¼íwÇÐnßnxck§ôº{ßC;aÒ#ß¿f‹ÄŽK=~dò÷èÑc9wá¼L[8W†O/=’áÝûJí TiÞ ƒ·ã¼%×n•BU¿—k7nÈÆÙ‹ûòñãÇŽëîÚ÷›®ZÖ±ßN+ñߎ+ûVo– å’³ž·SÒäè†RµeCÙøó·é š‡g,”‰sgÈäy³ÜžÇ$à Ê)!}Zw”d_~(;ØÞ²v‰9Šœøã”Œš6IVlXèüHò]Y;mž”mXS¶ìÜhÌè1dÁèɲhÍ 6il }þðÃ_ò_ g)[¬¤|*µ\ºò—,[¿VÆÍœ*÷îß“…c¦JŠ¤ÉžzÜx—Úôéf”ÏxÏŠäÎ/±bÄí¿í––½ºÈ忯p»ké:™ òªT¡xŸ@…&uäº*©($àËÒ¾÷¾4ªZK²kc$¨ET¾¯rÉN=åÛºUeóŽŸ%q‚„²bÒl©‹*óV<éDDU¶ï&‘_ lE•(J”–še+š¼/st•7ÊÊdÉeD÷~F¹m‹ÆN•Äñ˜Ž}•æõôýzbåˆÆ_‹šõeâœ]÷æmåÝä)¤pµ²rÿþ}i[¿‰L4RòW*m\ñ OÛ2¦M'ûõ•‚UÊÈ‘Ç%Mª÷díôrF~=°W }ýtlÔRJÖª$'Ïü!%U92Ôdù¼X^£òu>žžå‹¼_W¯_“œeŠºx&OœDVÿ´>Ðö°üá)(GË..+—1ÅJ%˨¢yФÿ&›Ü½wWj•¯bÊñ¯J6û‹SPkù¯bi³ßÛyó”Ÿw’$“™ÃÆI£Î­¥|ãÚ‚odÆÐ1ò÷¿ÿÈ[6™ä¢Bý”2Y ó8ç!½¶³£h“µTAçÍ\îÚ ¸]¶Ï¾±3¦È,'eÖ»wMJ<•mÓ†Œ’?/]ÒÕœrëömUêÕ•¥fHžr%äþÿ…BnÂæ’îB1Ø£E{mkU1õÃ{樂Ù#ÆË¡ãG娩ß%8¼”gíG?ìRWÛ¿áÁÇ‚QG­·/½Ñ_C†tîi¬AVM™#UJ»¶XI/¾Œï;TŽmÜ)¿.ß ZÏ&Æ­ÈbN>§¶ì‘•“g˧2Z»Z4¬¯ûٜ۪N£`Ý'9­T-]N~š³Lö¬Ü(Xwtøš×¬gî}tÃvÕs€6Üc:âXïÒ¤•äø"‹”ÈWÈTÒŽº’íÓ/Lë¹»&:›æ,hÇý¸Mº4m-s†×ßEœ/gF?À„BÞ&ÐLÇNžú[=uë<ÙrÊÖ];ä§íÛL§Ö_‹×¬”òÅ¿«Ýš·‘‹ç Ê>gb¸XÞR£Uc9xüˆó.¿X÷§üâ±fë&ŽÑê¯]•½:2ñ®ì;|H¾,žÏ4v‘!Œ†£îxýµ×LþPþ/\½\ŽŸ>)=”9ËÉ…Ë—¤°*Jü§‡ü"ï,m­wË\_f“ÜYs‹Ý›·nyºµ×ö{Êã”ùs¤hõòŽ‘ó[wnËkQ£:Ü V®!ýÆü ÖÆ×My½`Õ2Éñ]‘0Q†š§üÎýœ½pNVmZoÒûë}²ôÇUò}‘’æ·’Ñji0aÎ4Ç6k%ƒZ•ìÚ¿×<Ûˆ:i=ck?—/€»vʱt©?Í;QÆ}"ÏâÎÝ;&îÊ6X‡¤?­Œœ:Aþ½vÍ(@FOŸ$©µÜwî¼¼œ„Ý•Ü1l ßîÌÅóõ” °t ª AêÃKyv¤ÃîÎvª«m¡Á£ÀHê™>•#¿Ÿ»'ó’ïŒBoLïA:²•Zšuï ?L/tDëó>t'¼“ 7 êuh!Ã&USºRÒ±qKsLëû´é,½F –ü•KËcGÌH å77eÐcZ]·} mÐʱ„4S%FH£ í4•YËJ«ž]¤r©ïÅÙW¯¹ŽHVÔQ\·vÛff„iu%)’&—Xª,ùeÏ.ù:KvÆÖ’o •S:Šw(w׌¤q0بjm¡þîý¿ÉQ-è¾W“VK )]¨˜ìøíWk—$à5µÚ4•þc†«[Ãý§î‰†Í›±bÚž(~|I¤£þ– Q›$A"™¾hžµÉ±Ü{h¿±Ø{ø c›?­øSþÑp[³yƒãñ¢£_ WÙ²+°û€²yýÖͲnëOæø·ãÄ1ñΪ«©%p•ùïÁ‰ûfkS¸^BÉspÄÑÉô˜^e‹Z]m×ú’,Qc&íœÉ?/^¸Õúç|»Z‘÷Ëùzà÷¯ÿ˜aæy8ï ëuOy„:šqõ¨[±šië ™8Út<áf†´£`™uâ§]2[_ÇOfÙò”WïüùKÍûn%:û·]º `ÿG¤“qãɶ«Œëùîeë}®mq륻v,ûPÞ£ÃÌ“[vK_mã[1ù\=g«l³¬HðîZÿíxFYœ0Þ“v†µ/x€êê0s™A‡?óÇŸšÇ‹Žt†4iåü¥ 2væŸyä(ô¾R‹‰LrÈÅË™|ʼnÛ(>àïlIŽÌYŒeLÖ’ÚÍH#Igm„ô9ĘPßÒѱŸÝ©fr¥ÓÀÞ¦aQɨ#‚™U‘óÖƒª(ܽwOúµí"´Ó†F¥;©U®ŠM°ÜŒNüqR~Y´ÆœùÕW¥n…ªÒsø@Ížo¶;ù»±$ÁH$ÒâJ°i…‰7:ޏNþœ¹¥ºŽz{ºæYõ„ÀmjÞŠ_WŒ²W/S^âÄ~ÓŒ†ÂÇö¸v&Žê(=…¼MÎà–!0Ó†•â|œ.ƒZMeŒLB øí¬#xˆäJÜ]ÛÕñ¾¶Í_ó¥øÈL‡3hˆ~žì9¤Bã:ŽÇmYI\S+g¹®#ÝoÆŠí¼)ܯ'WÅGír•å}À¨¨%`ShgA\±8šâãœÿàÖŸõýr¾Î7Ùs+TXàØYÜå1§Z¸TP+=¼p¯‚ÄWŤgËö2wùb™4w¦q5™:x¤ä.[ÂcÛÉœŠÿ¹ÊOÀ;ø›‡u‹ó7ï® }?Õ»¦Œ©ß¡¥D#º´ÒD“u€+³Zbá:”—GÀÝsÀ \[VoÚ`Ü#1HÒ®~SÓBÛ×]ن焴3öÜ'°ØB;òZTß ¢ëŽ!{M«×1ÖRõ;¶4ß÷¬ÆJæbù Çàždx)Ï‚K¿¯m·S]f ‘GÚQðÿŽ‚ÁÍ\2ߘ¼ÂòŸ¯E 0u~,«ë\ç}v[G¡wñ¯KeÒg…Ù›%Pœ\Ðã0:`ɆŸ7«\;çuäk—jó·éèáâµ+eÉÚU&ð‰ð¯W±ºuªVt¯›5¡ŽL{ Øú~ÊTª â„  ±Óm:oˆRþÕçPؤ7ÛðF]`–œBÇ,X¹L•ŒBJ!Œ¦oÙñ‹$KœØí5-…/–Àêsç¤P®¼&î \ `ÚJ!»ÀˆÿÔsŒkY¯V̨Í$k„‘”]åî;z˜ùÞí–v¦'l@IàÎrçN@p%(~ $Ê_é;[ @®ÜÒ«UGi¢šÑüø áÛj¦àØaçÓÕBc—± ´ÑÅ1Äý-Atr4K!… Eÿ:Äá^GN³Nq¹\ºn•ôÔaªäïHÑ<ù5ŽÂ S ‡ôš¨œ hÑ—®[-Y4ISuA¢€ À=³-ÁLÊÞJê†Óÿ¯³|%™>Ì`’\©äwf Y|Ï¡:qŒ³Ã4…"<ÿñý†šYfŠÖ(/ç.>]¯¡‘Ü_¿oPÃÚd»eHòh%zƒvš0ƒ #ƒu6Èz§Ùô°mgGë\o-Ýå.‰ÕÝÒYbªë«rÃùkm»‡ŸX £}埿ŸúŽ¬ã¹ =A­`Um¹|¸+Û¢}GÊ—%òw§3çÏ™ÁTļtùrè%ØfW†Bsý¶ÍŽTç¶Ý;ÁÁIx(Ï‚K»¯n·S]m›"Aö©³˜xÎñ,pL¦´éÿ'*»Ëž“„ñâR8 h)Lãœåô¹3&Þ†³ÕH¶Ï3íñï:m',M ¨Ë ¬h`6Q]pÐDÃðô¹³fÊÅ•~4³ëÀõe‰júo©Ý5'%†óýœ×¸1«*,I­#–ùåzmÒ‡ëâoìŒÉrW0žø#Ø «Â_ç“o4NÉ|µ<ï5¬Zª.VŸIѼùå75ôdùbnÆÿHÀË>LÆøªcÖ¼ÿPfæÔÑ7Ä»ÁHw—Á}5ÞjǦÿY+qâåÇc»ÛÁ2äÝä)¥Hµr.•üÊ@³Vì+ˆÅtâÔI‡‚ Û3©{”$ç.\° ×Ëjß•7!ΙˆûÖÛjY0‹ÂÑ“ÇKšµÊ}ÌJ€z×øXùv·|Þ÷˺æg2Éc}×¶™ÜÚo‡¥»IŸÑÄYqΉÝË3ç´úÓº]êê0s™ñô°¡ À<ë:oÔ$Œ1+VmüQºèét[ì‡B¢j‹&XÞÞU›äÆÍ›ûb¹æaÄÓ‘.K0Š\¹y}Ö¥ìÑ)w¡ÙðóV©Ý.`dãȉã2H}â†wï+0 Ž)¢1÷DlHå¦õ䇮}d§NË‹Æ0F£;ôïe]ÞíiÊdïÈÔÁ£4ÞAY¶nm €D­ût•Áz¿ZD·†V¶Qç¶ÆJ'fôèn¯©áuìñT¼w× jä|Ä%éШ¹q¿qÞÎu° ˜ÿuÜO†é÷ˆÑ}ŒÜ5èÔÚLg—42ö W*ÌD6¼[ß@ ‚µPžr%Ì6Œà¢.t¥€F£Á­QgÀm3rõ94еÂóX!Âý¬n…jÒ¿]73:JŠæ ˆÀ•±DŽž"w´Þƒµ$Ž·:ï¾ÎÇÓ³}Ñ÷ ×O¥mçØfžîéíýžò¸jÓ:Ó¹œ1tŒq/ƒR ^û–F €´Âê5‘$aÖ¸'ŸUë¢rj:Þ!»ån˜íV$˜IðºnׯG 6›»4#>füiîr3ý𵲪ֲ‘»S¸/`à¤U¯ÎRKû´î¤Ó@‹ ?ÊÅí<•m£§O2më}«7ËÇ58ëzùaÒØPH©}/¹sïiÝ«‹Œí=ØL£ÀõuÚµ0 M¤ƒRuÊW1ñY¬\ؽ<³ÒéoK»ÔÕâ}š& `„‡'pÿj@L‡Ho<èÔé/¼– °°°‚`½ðÃàÅûW§{ …—;Áq¨äPq»hö/ÿý·Ë Œ ´°æ2wu~pÛ0Âøºj›]5¼q4Ñ0¹´®wgÙþ¬×¬W©º|©f…å=±by–ûñXðŒXã{„‚„B¡IŠ7¼oAã.…æ=½}mŒfã[reõˆöAL¥Å‘+ñ>®òÍmO@ñ˜0n|ù󝋯ÂâÉž€5´mbèOpïPÐãÃú7¾w´ѱ~A~Ñþz™í¹çIÏ38 KrK‘ëÌÄSÙë ¨Gâ| __Ç·oÁÝ$¾ÎÀWòuõƒ›µDŽå~ Ã…BÄW¶·ó{ð‡ N`Mœ$¸sÂb;fáÁtq>Y¿c+A4i %ð, ÛºÌÍ?;ü9r«yù`OD0Ç.Cú»ß.;Ò§IkÌ<'ª©4•!vy*L „o´ ßÏ©'      ø?g±±í,3|š$@$@$@$@$@$@$@$Z¨ -²¼. €m P!bÛGÄ‘ „*DB‹,¯K$@$@$@$@$@$@$`[TˆØöÑ0a$@$@$@$@$@$@$@¡E€ ‘Ð"Ëë’ Ø–"¶}4L @h B$´Èòº$@$@$@$@$@$@$@¶%@…ˆm F$@$@$@$@$@$@$Z"=ë…_‰ñYOáñ$@$@$@$@$@$@$@$`+´±Õã`bH€H€H€H€H€H€H€¼A€ oPæ=H€H€H€H€H€H€H€lE€ [=&†H€H€H€H€H€H€HÀ¨ñeÞƒH€H€H€H€H€H€HÀV¨±Õã`bH€H€H€H€H€H€H€¼A€ oPæ=H€H€H€H€H€H€H€lE€ [=&†H€H€H€H€H€H€HÀ¨ñeÞƒH€H€H€H€H€H€HÀV¨±Õã`bH€H€H€H€H€H€H€¼A€ oPæ=H€H€H€H€H€H€H€lE€ [=&†H€H€H€H€H€H€HÀ"yã&žî‘(~¹yë¦\»qã©C#EŒ("Dxj;6›0Sˆ¤Lš\ZÕn(™Ò¦—Çú/úëo¨Bäº ž8Zf-](?6œw.ùQâ¿W=~Z©Q¿Sk‰=†ôhÞÖA"ˆUxàš¡“ÆJŸQCÍzxûïí7ãH¥’e¤ÿØá¡žt4êV¨*3Ï—Ëÿü-s摞-ÚKúüÙCýÞaqƒB_畫׮ɖ]ÛÃâö¼§ÀwV,OyûÍ7åÔÙ3ÒqPo9pìˆ!3ztÙ0cñSt2ÎõÔ6_Ü€ò»EÍúRäëo$fŒ˜²ý·ÝÒºOWS&ùb~_$OQ£D•&UkË7ÙsÊ«¯¾*›wü,C'•?/]|‘ˆ«sg +ï%O(Í5Û6•]ûslÃ75oÄ$Y¼v¥ü0eœc»¿¯`УNù*R GnÓÆ:rò¸Ì[¹T­YaÐø[YT¦pqÜ¡‡$ø<­£ýÞÞ”mê4–rEK™AÆýGKïQCäÈïÇýò™†·ççœ^<Ãï “øoÇ•}‡É虓eç¾=;f,Y?c¡ó¡ŽõnCÈ‚ÕË¿}}¥d¾BRý» ’4a"ùãü9iÛ¿»üvè€Ël¿+¶4¨T]reÎ&Q£D‘_öì’) æÈî{]ÏÞ#`—v_˜(D¾Î’]†tì)݆ ºZ8´ØÒ|(û•hQ£É„9ÓO£ÃÀ^2nö4Çï +“æÍ4›`i²{É:É_¥Œì=ìú£z®gýô S zC!‚ÂéüUþQ˜"¯C&ޱóãgÚ|@2¤L¡âR¨ZY¹~ó†T,QZæœ$ ä»÷îJºÔHäÈ‘%ûw…}0÷ž³Ô­iI•ì)R³‚ÍoS§‘L0B T-n;)žsý|GÔ¯XM>N—AòUþNþûï?騰¹ôoÛUÊ6ªù| ggá;ÉòñçRLß•SçÎ8RC¿+H”ÈQ¤|±RR£LEyK•”ÀJ,fÊ¢âµ+Éßÿþ#ißM-+&Î’j!±lý¿*‹R%O!­j5 (þj_¯©Ìú¦R)9}î¬äÌœU™&…«—•c§~÷«gŸ#É(×ÚÕk"_—+!._2Ït‚ö²”* W¯_3ÛëJ×&­%yâ$²fóçÍ>½^(W^éР¹”ªWUNùC ™7b¢d.‘ÏåJçF- |•KË=µD;lÁ¨IòEñ|†±OòyæìÒî Þ×$¶¨Q_¦/š'³—-t(Cp;(1um«ù“ÆM(&Ã+—N’ ‘Œé9P¯Ýf*&ŒBLðÄâ#uŠTÚ!š(Ç7ì3Ka…|ôÁ‡Ò¡~3ÕÇÓãE:šÇczae3 ]WÙ¹x­ü¾q—¬œ8[>ÿ(“9/Nì7Íu m¶¤t¢2¼k_ós¾$YCÆHî,_™uüWY-Tv,Z#{–oöõ›:¶‡d¥YõºòÓ쥲}ájsî믽fN›:p„äûêɈ÷»ÚA1ºí7ÖQ¸X½E:7n)9¿È*C;÷’.[ÉþU›¥ø7Íu0²Mù‰;eÑè)’&Õ{Žd¡òÀþéƒFɱõÛeõä9…£@Iõ¹´©ÓPš×¨ç8‡+$Ú¦.œ+ÅjU4ÊÜëö;MGú-¯@¼£»÷ï•®þk\Ö°ÄŸ?L%¿/\BÆ«2´êF9hÂ(ɘ6¼÷N`+àá)I%ÖQà[F‘׫KWþ’”I“y:Ígö£ïç׃ûLž®]¿n¾Ëå!]ê4R4O~ÅÈÁcG}&ß/+#g/œ—†]Ú˜o בó9\÷;µû¼®A僆LpfJ›wþ"ëõÅuX~  wþKÿ~ZçCl¹7(CâÄŽ-ÕZ7Vóï]Ò§UGI©# Xj¾dìt¹xù²”iPCVý´^†jÅœõ“Ïõ#?%ÓÍ5 ¼f=;ÊUu'ò$P†|*µ6rÚJ¹&µM§kx—…Ò…Á«‘^u\V!Ð*C:ég–݇t<(aŠ©ò¡I·2lò8©W¡š@+iP©†T(^ZÆ«eÒ%KM©ƒ ÿ1£Çt\&jÔ¨&m(´à÷Št6ªRKFN›h:‡1Ôä¹`Ž<ª$J'cgM•ã:ÒF£•íòõkå»úÕå‚„‹FO5LqáI’åL§+4­«,nÊð.½Í=‡Oo4È3–,9ËŸvOp$Œ+$ð’ À ˜¸qÞ’ºj®Þ¶nãæ€JEh­ ·Î]n”Pn~š>ãKN…=/÷vœ8òZ´hrÂ}Ü(„'ùÉÊØ™StÄ7 lßMZ«%MírU¤ß˜ü$÷bÚwîÞ‘…£&ËAUžCñ]¾Ø·Žüc€¥Hò²ïÈAÇ6®¯»Ì¤Ö‘>Xàc·$AÜxfd¿Ñ)† ?Òa"]Gzøs4’“|™Þy“íÖ¿Èø‰ÝÌX(§ùÑIûîû’ËÌ›z÷~gÞ{O]N~³HÖüwïÁªM× ü@­ZÉ­üÂ2 „Ëܺu‹Æp>#ðlp¥á4û=-‘Vh”a È“=La”Àââé|ç}pYGü¢‘¿œ¢´> LP~„èX“A„?_å8÷áA2)yIDAT{X®€VŽ`qòƒcãÅ‹K/g{àZož/ì»Ä–f:·nß’uýO ÄÅkVr'f¥„ƒ-7…._ù“¶îÝ%¹CâÆ‰ë˜}ŠDx‹¼] 0­Ú¼>¦Š-ߋΠ$+-­‚ä¡ÎëþغŽÐK´‰P¸ã=òI½&´~æbÊQ¶ˆ(G ’íö9È¡øèÁëïq2ð*eËKòÁ@¯TÕ©¥l8Wj§!ý—E£@n‹žÎ‘†tî-9e¶¯1l*˜+/mœ½D [Pšâ½qƒØ@¿§Ž‡×ÏW:s>›rÅKQþJ%%I6Œ‰‹'L§ÊÍëÑîCûµ«V¶"­Ý²9V¾‘+ N« Y*B'=I¡<ùiç%Ã胩Ä,;õû¢]!wñ_Îþ*®¾&4æûÇ9êGrWjç±° Übý±C ÷ï¿8’U.ýù§ãc’DI1‚ßýæÑX¿Í ò"#ú •¶ñlP>làœñ}ÃÂDÌõŒ>ÃÝΓ7~sÌý‰ÌG·Ë<óÞ/îÄäLÀþ„O<\“Ïœïül‘4Ì™¶±*>ì¯>3¥Öel"²g‡äN*V°°(DàÚiÁàð3+!/q> ̦èr™ß ˜¤Lñ ®¡ƒwb¨U€[üBØÜpºq3l°ƒYªX(w~ñž{ptà®Y½@ðÛÙwäXL·ÆQ[³§8GÙŠàÙâ±[¯sëpÓz[Ô¤FIà?¦×š,IRY®ž6Fr>´Íþ&W¯_ç0±Z”—Ã,C¹-=pôÍ9`Ì‚ú=õ·û宼˜xÞZfÆ0¤ÀŒkð1 ¼Þ)T„j±7yl”?._z¨_„~ÒÙ Bn¹ Ô~îè öžŸ.^ãÎûõsô°S¿/ÚsˆwÈžT¿jM‰WuÆïltÞïOŸ‘Õ C­ZÌìómäôÙ3ì ’Ž‚æÍ¤Iœ/ýpŽ4Ç{Z"ž®*[Æj|ÒD’+!1!ÂB ˆ#EVeˆIlŠõÌÃ7a=*q}¡¡¡”íÙ¬ŽËæÉþº$8Åç6—ŸIá¸FT ø@gØpÃÞGçØuZE Ø•@ð€’=Þ” Êt©ÓÊÌh'$ØšÔÞrpg÷Çι©£¯K´°Rc*v#¹¹Ý€’$2m¢¹F .ñÜ ]·*ÏѶÆãm ½(º…Ǹ>ƒ$wŠ©˜ä=·ô/Ì6]º'€ÕRNèŽ)YëujNÚ¢MÛ·Òh¥ýâËò·ó¾+ò’!©? É—.úŽ š÷~}ˆâsî8x ï?rXú¡±ùýâO÷‰&­m;ÊŽßd‹ñ¹Åîñ;sçß=¯ý‰·²"çOîû^ð†¼òÏœ=ëòTŒA0cÝÈiA’sÅåAº1Ú Ø©ß# ‘Þ£‡pÜüiq«Y¡Š$ÀÄLí4£ñœøú=þgƒ}ttœÿLBPsœÝ–ðЀõ‰U‘yPêVó„AY}±Ræÿ¤^cI&ˆúL<†àÊ tš”©y怬’lT6ºùSqÁ#Â(2¤KO›„M#—€s¶\cËrƒ€7r¸ †®R©²‡ÿAþåï‚ääi?­JÙÁÿP$0”™˜ZÛv ›‰êÎÝ»âÙ™bRr²TÔVMˆ)‹/_7Õ2™©¦ìÛïò ž„\!|Sú"(#âi‘ØVE D¸/ש\]’#ámÈrŽíx&÷qǵmƒ¦Ò.ÀzÛ­YÉ äœ<,ºÊÝß3gÅbjøÑÇ6¶¶üN˜±dÆù:ÝxZîa‹ažf¹fÂòÍ´¦›ìM¹ËâRítZ@}ܼs5¨VS¼M ‰˜ðt®¹iÇ–€ªç㪠¦™ÅÌtÓÍ¡\œ´Þô¯03^lh‹-xþLÇߊ k5¶!Ϙ? ŒD;ö÷úy˜ŠF6(ÔcÃ=õÇ{æªÌHòÛ¸zmIEwµ÷*HŽ›µ!›‡¿%+8sÊ^ëØKV0c_ ö¤bÊpLCÜ”ð¦äÍ‘KbƃÝûÉŒdð´1m–±Áû ì,vé÷E{È n <êthÉÙ‘;QK~ˆ‘%®|˜y0‚çÍsÑ0àÏYu‰;í*x9Uã9²ñCÄÔº°Ä`J´ByòI‘ø‘Z÷íJ:tçÎ\3žê™ifæÒ…²3¤üyõ/Ú¹t-aîlkNç:#¤šÏ|-p… ?’“Ìõ£×xV„Ñ@5¬k_ªÏH$…ÛXé¢ÅåXœ—&¦«í?~kY“í‘ý¯×¨Á¢Ü Y°’§†¼IÛùû‘ä2rÚDš9|}·q—(Œúö X”`Þ¾w.œ0u.”MàŒ Û¸’Âú"«7o ŽMZ’übF%0“Tî‹8{|¿ˆSJ' TM"d$ÆÌ3[®’éx`åpãnm££h¶øtr`õ9¸êKñpÃÄÃ&·EÙìVˆÖüÜÀ€ð=Oé~‡Ã1#OÃ.mI±íVÞ¨.,ù0¤ —J*ÎC†œWµÛ75õždÕªXUŒ#K'Íw© îõãYçb{[ŠŸ|@¢yüáýfZj7 §£ôzO(l½‚qPFžhû¢Õ¢ä†±°ò‰±Ï¼G:埊;S‡GY"Õ q´ŒÛ¯Ø ûËÙ3ÔqP‡‚¨pÞüÔŒ“ÒbfJ(M0{%a3VÁ,”ªD·‰þu»ôûâdÈ÷êW n_ Kx— UrGEnpBI‚M ¼4üÊ#]š}".áµnd6‰v3cº'éÂå‹áAæXq|eo LctþâæôpKt„`Es·Þ!fžîp'FòÊe—«ùÑawWg_¿Î[}<].ˆ¡|w ‹§ú›z?®vÈ\ß_–x’$N첸ØèÏŠËŠ[6zz–””›UOüÜœ›íÔÞXûc®`{ëgxÛ¯÷ÜÕdz-YÒ¤‘¾°§¶?ÒµÙ‰ú,z{ÖmVÝXUœˆÜ[“}ßFËáö=Ÿ%+umÑ–òdîÝ»GÉ’&£k_£ÑÓ‚hÁªå² _{pMeLÿ$…Þ }¨-{v¦”)RРÎ=ew e0J÷ødìg“iȤ±²îoÿ¥O›ŽêU­NÃ'OˆTÑs¼ümž¿œ2ÈN·ÿûÏã5*—yŸz´jO¹Ë§TÌôÇ-û©på²ôÓé“Ï‹èÎþºêÕ¤k»ˆž¡ãC­¢)ógÑœå‹#tž·ƒË+Aû÷¥ÿ•,ìòЙ£&Ð'~¢F¹Ü¯ý‹Àø~Cè™§3QÅFKÁ»·lG•ÿà¡Jüqù•¬UY¶—)ö.5®^›ž{6 ]ÿûoiÓVn\ë8§ê{å©Qõ:”%Sfúåì¯Ômè§tø»od?Úº¡]ûP‘üoÒ…KiçÁ½ÔÌpn¯;Î÷ç¼ìZÔiH劗àv=;ñ#-]»ŠVlXóPµjT¨Bcû¢ y^q¼:(l³Ñ½Ê{°z«FŽÈХù'T¬à[”8q"Ú}ðõ1þ¼ò—ã˜@_iY·}Pú=J—:-úõ õ9ˆ¾=~Lª­|<ß}o¿EðÛ²xÕCy£l±‡¶†èjoÞ)T„Föú4²ƒGP£.md[õ •©s³Ö”(AB:ñË) ž;“Ö†lr_8o~jZ³ýï¥Wè̹³4ÿó¥´dÍçŽýPª—¯,íÅ‘cßQð¼´ÿÈaÙ#®]¡DYéçíýú uÜ.òûKåñÀýÚµ7e)”+ÜtjÚšjVªnÛ”y³(hî Ç6Wmꔩh ÷o]Iÿ±ÃiÙºÕ®vÙrÛ«/¼Dm6 ò˜mÉšU4jêDºs÷®”×#OϺµÂÄÌZ/;¯{êç:—Û.ýÞQˆ”xëm×w0õ7‚šwïàxøs½–fŒœ@‰%¦é‹æ:˜õ1ˆ¦.˜íøì¼2cñ|ÙO“CkC¨Ljôõ÷ß:æwŸ‹ä+(/¶È*D"[ák<ˆ+T¹ 9û[d/áö¼ÑÓƒÙCĽv¶îÝIåê×p[?Ý8ª•«H¥Š¾ÃƒöãŽJ1™;˜3Ÿ_ÌšæŒ ¦ 3§Ê¶7þ—ƒ&~:ŒŸ‘ê¢à Ó¼åÒq=ôízÿÝÒÔ»MgªÒ´.<ó UaåȲàYT R)é”ÎLç.\ <ï§7oRûÆ-hõgóEÙâM©é(”W LªÎ•צËý)úõ³ÓwîÐ_np”\1ØíRæíw¨Mƒ¦ô|–l„çÇ*x‡^½~Þþð}Ù<¦Ï š4`8Y•&Öãm½IÍ:ò,•«W]†u«T§å“gSÎÒEèß[ÿJ#6óñv¿½ýs¾ò%|"½Uµœ·Kùýþèloò½ž›Žpÿ´ý§½ÜîpûÁï},ÿŽ«µh@Û÷í¦ÌO=Mkg.bï°D¬8^MØ}6|5ëÞžBvïeýW VŠ2ðÀÑÃôV¾Ô³u*^½"ýþÇ*÷N)š9b½ùAù èØP×ò kÒíÛ·©{«v4gt•­ûa¬V:;nD®@a…¶»(7\y0É_¦ÎŸM W¯p|ë?ÿþëXw×ö_¹vUî¯ã@^Á}ÍšùÚ°í+ëf[¯§H–œærßiÔ´IÔ´[{JÎFñs—Ñ?ÿþCãï÷§<1òö¬[+(̬u²óº·~®sÙíÒï‘‘)´~sW,¡…ì b4%Æ'}ºÑéßÎ8óòÛϰ.O:†Ž‡ì• ¬sÆ9êóòó/J'îçíiÛâ/¨BÉ2²«^m:RÆ'3ÐÖūūÂq’›¸{Â[æÈúm¢A~3wÞpGÂâƒó±/wÓ!ö¼éÒ¼Ë𕤉“Ðôaãä»ûwèF¸_Vi]¯1 ìÔC6yºfñ7ߢ ý‡®ñݦ/”š«P³Zõ—{¯xI)ëÉí‡èóis H#Ò¥§ùã¦ö¡¼Ÿr£Ÿ A³ÛëòÙ§3ÓªéóèĶ4oìd±˜à¤n-Ûò $¬üæ"èLìÞjcöY—¹Ù£ ÖZ#°ä¯˜2Gîïðý(w UüŸ@6öîhZ«.}¶øbµ‚’xüý}ão±ôÍY¾ˆ>ß´N*}ôØ÷Tˆ;Ÿð‚ü}ó†t†’&I"ŸkWþP¼!àyu7ô.-þb%ý~ñ•gE ´ä9_ùÍùŒþºzU¼º&Ï›I/g{ò½þ†œïïÿýzî7n㻊2uùîÇèÂŋҙ3uÃo|<·#¦DÎ3Î\'–}Úv¡Él5t~Q·6ýºQסýE™…fæ9 „º{«Ãìe‹ÅsËxOÝøç&%I”ÈárÛùxãçí·ø:¨|sDÚºx‚jÚ=o×õ·ýÑÝÞÀð·çкÆÊÌ{ìù ®æ.Y¤8í<°¶íÝ% Š_Ùäóëèã>¬É“%c¥HJºøçeù /ÂÐÐ{ôÜ3ÏÊçgžÊ,ËK÷÷Ÿ=NúŽ|½fŪ4má\i¯óûk{dçΞ“^âwŒJÔèÀÆŒOž V½»Ex‰Xÿ^õᎱã((¦CiS¥¡ZËKpX÷>ô[û x±}ÁÖßóÿ [4¤u[7\ôá‚Ó\÷@ƒ×®OºÊZaoÒó“ŽÜ0¾M=†¤YËŠ+šõœÙ£'z-zv­l våëФ¥õY/®(&`:zì[ªËa;V 7”Gø^ŽõtM(K`¡€rg {øüxêg‚’#[= ¨'”E° Ã"‹àØ©§,?hR›:ìMUË–§úU}÷Îh^»0¯ß¡•\ÊÂàj—(a"ùŒÿjWù¾ýñ˜ã³»h±_z.ìþÁ# Š£§¦ºí[Ê€J ÿ&à‰'(hàH e±ZlœkU¿ZMJ"% çØ%:©hçà*;eð(ÚÁmÚÞÃä˜,™ž¡ß~?ç8+çÎÿ.Vó]°AX ~{OgxÊlòë%:û&<)øF^z–C‡vÜç¨W¿v]hÍW釟O8¶ÅÖ•¢ÕÊ‘5ÜÊÊáʵktóŸèµ_¦^Üö¿ÿn) ϲÈëðÁûñIÁDVÖí \fPÛùx»÷Þ~‹¹^ËAO±Af×òõbÐ8øÅW£˜µ²‰îö}×w ¥o6î`CÊ>1¨`PÁ; Mªí?¶eʘ‘ÿÂÚxíÎZº€&ó{¥‡‹-à>Í î+nÜ‚CiÝ–MìyxšŒŸJ0\M0‚àAý›(FÒJ¢_?+Çâ?„Ê@™údš´Žmº5àõ0bÊDºÅž8Î/ ü¡4ò䎃4¬[ßp9ÿ<µýæzègàù1e¼ô;ÌvYž»p^Š ¥NÐÀR£ ñÆÈÓ³î©þþÎÌSÝì²ÏS?×¹Œvê÷Æw.Üãþ k'h´÷Ÿ2±"=…ìÙ!ûŒåý*+R­O•4üÛQ‰ZžÚnxB£ºakˆ^Ê—(-9üÎ^ø]ò¢$žÎ7%-]´¸LH~ˆ?K»FÍÅc9m0.xcäéY÷Ä"P˜yªcLïóÔÏu.Þ%vé÷F»Bä,[C!° š„©ØÊ WA\û^Èú[º‚éî½°Ä:ƤÙìñ`Û^²³òu´*¶îÙéPˆ@9ôïí[œ8pˆ£.xÁÁâQÉölVÑ®ùþ;Ç©XÁ`3 ÜZÖid6q''©h©Ÿf „;rÝ–/%” ‘Š%˲5b‹¼€}¹&\ø¬õ·~Â…à+†¸u‚ dÆ’ù^©t9ö"Ù(¡ǹ#á«@!b.¤p}é¹çißׇÄ+áIPˆT,UVâu‘Ó "òr¶å‡lÎwÀ×ßc>êÒ ”,RŒàåón<–>Ç×ãù­Ïž_®ÞPÅ>ªÀ‰SŸ‘P¹Ûwþ£ÁLjkt¢„ Ã’(QB‡’¤Ç•/?…°5öw LïÄéS¬ôWØp•sóJð¥A3¥}ì8¨•‰½``%C~ü–T|#Ð}Øê=r0ulÚŠÖÌXH/¿S@F¾íÿG-â|üáw»hâtºÄí8Þ³Fb;ÃÁÝÒÕoÇáÜ!qãÄuü» ûT¼EŠ,ìtwMØí ¼Ÿ-˜Ó1ØÅ8MÊÔ„p[(¥6n‘DðÁƒFÒà.½Ä;p&÷ƒÞ{§¤ Å3Ž}Õ’~ úÑ+9d÷.'¡D®9„AÃS,ßûï®Þ¥A3èƒ&uýí„ Ã‡õÂSöJ€(¸üá¹C¡ìBßÓ(=¦ÌŸÍʯ\„¼e˜ÂW©V®­á>¼áüYÊ7¨)c¿)CFÓŒáãéý5¼2òô¬[=N¹ 3çzÙé3¡<õsËj—~o´+Dà⊙0 0¡1ßÿt\¡\§N˜Ž\jüñi¯p.« ³f¹:.ýùg¸P „mÀ³#¢’3’Cs µ±X¯ óMæè²›cYFÖz¼uY«‘_¡8X!‚$·_®ibc­×3ëàƒ|1Ö2aý4ÏA'Þ,UØZRŽ_ò°œ`P9zz¹„Çå_N–x$ë5HËׯædbÁnPòÏ›éñZ®v¢cÞ*C‰<ñ\®˜2K*…>ýZ;s!Õn×ÂaGÇŠ5(+< Úºåüûy§PQyvÿ¸té¡)ÆS%OÉʺ0EñÑ¾ã„ÆeÅû îÑP¬œÚqXòlxúÚ7ü•Sçˆ5¿n‡–›&œ³¿'Ì,I–$™,×ÌX }$TqM¹¸‚yv‚ÖõšPá<d`åúÈÀÝŠçyÈ0h´*DPcåãú¾»û-âhxe£>£­ƒaía HLµ7flÂÐI™<¹ðí0 —ƒ`ƒÅžÄP¤@½óÀ^y÷à3ÞHÊ ƒ""Ø¿pÕ Q†`?BÐ÷p¸f)ö$ÀŠf `j_Xsa,R‰^®žO©Î¥Ch-¼œáM‚±&Ó@> ãøì‰‘§gÝB$ИÙõ¾{ëç:—Û.ý޸΋ŽÏ!»vPƒk‰—ˆó÷%t²ž:ï÷§ÏÇOþÌÞ.ÙdÐmÊãåWÍ*be@ú´iÅ¥~Òìé„¿ƒG¿–xOÇA>®üpò'éôÁ"`c#§ûU¦Y[Ç!0æ»Vq"ÈìÁá-?Éîh&äXEäIÁ/íÍ;·Êe嚸”!È®nʃ%ò)üþÇyQ\ÀÕÓ–öã©ÄòW()™§‘ëÃWy•-øFwU£lÙup¿(Ž>|¿¢x$!(¢eM‘|xCÙ‘ZD¿Oü`©Aæ÷Õ›7È’£B‰‹ÏÈY`¤Pž|…®Ù†eÃ>ë¶'ù¹»Ã"ãü;…´(äF÷ '… 1oÞ±U”!u{‚C aÖ,ÔÌ®uÚ·p(C°o[GGq¨¤a¿ãÀlï0£0’ úŸä¨9°úKé©ÙÒŒÐÉÿî?kf{ .‘G3jAû›.My§ N<¶ó1\Ü-=ýÑ.ajOxÌç.¼¾Ú½ÝlòëeL´7È‚°à´©Ó8Ø!슟9MÙ¹ˆw¦Žþj×vñô*Î9P¾CÜÖy¶1XbÑ?“ýœo I:­‚{‰0õÐÐP:qê$‡q?xÿäæw”$¿ý¦·ž§ë@½j5ÄsÇú xBøžû*ùy¶¢{|OwÞ‘÷õ<»‡òßoÞ%}S&(ãð?(B¼1Âl•îžus=祿3s®]?{ëç:—Û.ýÞQˆô9H¸òÕª‰L×íµ ‰ý‡Â"îñ?#p;Gî翬™Ã2k›ãì¶Ü°õKquGâP¼‘Ú~#ˆŠ“&bj.X¥QŸéÃÇ\9!ðÜ@lçóY²4ùžá0pÁkøQ- É3ºÙÂ.Äp¡Ä4kp‘M•"æü"ÅÞ,üÐ Öœc–hœ <éÖ¢ NL΄G¹&®äIeÞ~—Ê/!ÐK±•c'VÂ÷Á:U¬à[÷g‹æ…SöËúßc%°aëWô&ç'C.Ü'L>€þ¯¹O¾|ùó¬ <ñË)GH›/çØéxÀó©3ç&‚÷6 Cxv×ño‰±½1òö¬çÍù†x•[ëìï̬u±óº·~®ó½±K¿7ÚCfpÑY©Ý®õåìÈ­ê6–iL1ÆcH…$„°A¨þœÙ³» éç¼Ù6Ÿ1°¯Ú¬‡›  åS¬¢ó?_J…ó†½ìŽø‘§äê,³© ãÐ äë@½ ˜WÖéÝ+6PéÚUÃÍÎ઒íú÷ø»mKV‹B/:„&AÐÁ©Ç‰E‘Äp?[aíF‡§×ˆÁ®.õж¥kW‹2á3Fõšsxpø,'þÂL<ð¹péê;zˆXGðCƒÆÒPÎ)ðõº­?~\ÆoYÏt¼0{Âð>jÙ³³ ÚQ©ØÎÇÓõå·ˆ\˜¹gÛ’521¼Pvnãé²ºÏ ôs;svô÷0Ë ‚˜eoȤ1r&ò˜õ3\¦ÇŒvðiݧ«LÃŽƒvrÒ§Ã)ô^(!ìzþçˤߌýc¦‹kÇÒµ2”îÈ¡cíã÷Éá5!BDöCƒÆáT•h$ÅW—Á}©)+†víÃÆâPð`ZÏï{_å…,Ïù½¡ 33èØ¤}»i‡È&e%÷‡z oŒ¼=ëP*¢¯_#ÀÌÔÅÎKoý\ç{c—~oœ ù^}àŠáðí+×eoüdI<¹]p„’$2VúÈ}côœ… h÷­É=»¶hCyØeÓÌÁK Ó®A[jU™ýx1F„ b|a…°ºø›ka /(_Ìô„Ö}‘]”k¢sW\$Xu%|³(DT`¥GX’«kc:`ä«ÉYº¨t¦#zms<î_z.?Ã*JÀ€â\ggì‡R %â0í¡+wJ@ (% ”€PJ@ (% ”€Wÿºþ`Z¯ÕIEND®B`‚locust-1.4.3/locust/static/img/ui-screenshot-workers.png000066400000000000000000004503761400440205700234070ustar00rootroot00000000000000‰PNG  IHDR,6›W ¹iCCPICC ProfileH‰•—XSY€ï{é–é„Þ¤·RC  ô**! JŒ AņŠ8‚£ˆˆ¨#8 ¢àXTD ƒ‚ûu,ØPÙ,qf÷ÛÝoÏûÎ;ÿwrî¹çÞÜû}ç@~̉2a%²„ÙâˆF\|÷`€:PEÞš®Dä™±—÷·4i¯[Næú÷ßÿ«(óø.PÂÉ< 7 áãˆöpEâlPyˆß`i¶h’÷#L#"Ü:É©ÓÜ3ÉÉÓ,›Š‰Š`!ü<™Ã§@žœ‹‘ÃMEòÛy!“ózpÓ8<„‹ž•µx’Û6MþKžÔ¿åL–çäpRå<½–)Áû $¢LÎòÿs;þ·deJgæ0@”œ&Œ@¬Úä¾e,–³0y^è xSñSœ& Œža®„•0Ã<Žo°|læ¼Nø³åy²ÙQ3,^!ÏÏ—øEÎ0Gü}.iF´·|^>[ž37-*v†s1ófX’ü=†%÷‹¥òšSÄþò5fIþ².[Ÿ(_#ç{m|Iœ¼ß×OîFËcDÙ>òü¢Ì0yƒ-äZÍfØÙØÙ0y§ÿî··§îDÇ÷‰è¸ø"ç²æ»/Y€䌨¾û ëPŒ 9+çLûГ/ E@Cn»ržL%RŸp^HÅA Dx°pAÈb°¬kA(Å`¨{A 8ƒ£ ´ƒ³à¸®›àaðŒ‚÷`‚ D¨:¤ AÄ„< ?(Š€â¡$(BRh%´*‚J  hTý„ÎB— >è4@o Ï0 &Ã4X6†­a&ì ÃQð8^çÂù𸮆ÁÍðYø |–Á/à1@‘Pt”ÊÅD±P¡¨T JŒZ*D•¡ªQ¨6T7ê:J†z‰ú„Æ¢©hÚí†DG£¹è%èÕèÍè ôt3º }=ˆEÃP0Z Œ+†‰Ã¤b–b 0e˜ZÌ ÌyÌMÌ0æ=‹¥cM°ÎØ@l<6»»»Û„íÀöa‡°c8NgsÇ…â8¸l\nîî ®7Œûˆ'áuñvx|^ˆ_‡/ÃÄŸÆ÷ãŸâÇ J#‚+!”À#,'l%ì'´®† ãDe¢ ÑEL'®%–‰ç‰÷‰oI$’>É…NòHå¤#¤‹¤AÒ'² ÙœÌ"'’¥ä-ä:rùù-…B1¦xQ(Ù”-”zÊ9ÊCÊGª‚•[§°F¡R¡Y¡_á•"AÑHÑ[q¡b®b™â1Å«Š/•JÆJ,%ŽÒj¥J¥“JJcÊTe[åPå,åÍÊ•/)?SÁ©«ø©ðTòUjTΩ QQT*‹Ê¥®§î§ž§Ó°4›–N+¢¦õÒFUUTTcT—©VªžR•ÑQtc:›žIßJ?J¿EÿQ[£îE›FK£;cccêc>ÄúÆ–ÄÊâ¬ãVÅ]‰×ˆÄ·&àbjÆæûÍß18Ñ1± ñÖ“Ë\Z¨±0sá©EŠ‹8‹Ž%a’b“&}á„rª9cÉìäªäQ.‹»“û‚çÅ+åðÝù%ü§)î)%)ÏRÝS·§Ž¤y¦•¥½°‚×éé{Ó?d„fÔeLdÆf6eá³’²N U„®Å:‹—-îYˆ D²%®Kv,‹k%d¤5›†4>=RSéé`ŽGNeÎÇ¥1K-S^&\Ö³Ü|ù¦åOsýs^^Á]ѹRoåÚ•ƒ«¼Wí[ ­N^ݹÆ`Mþšá¼€¼k‰k3Öþ¶Îf]ɺwëc×·åkççåmØÐP P .Øè¶qïè?ôn²ß´kÓ·B^áå"›¢²¢/›¹›/ÿhûcù[R¶ônuÚº§[,,¾µÍsÛå’Ü’¡ís·7—2J KßíX´ãR™CÙÞÄÒ²òòÖ]†»Šw}©H«¸YéSÙT¥Uµ©êÃnÞîþ=^{÷jï-Úûù'ÁO·÷ìk®6®.«ÁÖäÔ<Ù³¿ûgæÏõµµEµ_ë„u²ºêëëjÜÚ7HF%ºvØ÷pk£eã¾&zSÑpDzäù/I¿Ü:|´óóXãq£ãU'¨' ›¡æåÍ£-i-²ÖøÖ¾“A';ÛÜÚNüjõk]»^{å)ÕS[OO矞8“{f¬CÔñòlêÙ¡ÎE÷ÎÅ»ÑÞÕ{>øüÅ þÎu{wŸ¹è~±ý’륓—™—[®8]iîqì9ñ›ão'zz›¯:_m½ær­­oNßé~Ïþ³×}¯_¸Á¾qåæ¼›}·¢oÝHÝæÝ~v'óÎë»9wÇïåÝÇÜ/| ô ì¡ÖÃêßÍ~o’9ÉN úö<Š|toˆ;ôâ±äñ—áü'”'eOuŸÖ?³{Ö>â?ríùüçÃ/D/Æ_ü¡üGÕ+ÓWÇÿôú³g4ntøµøõÄ›ÍoÕßÖ½sx×96öð}Öûñ…Õ?øÄüÔý9öóÓñ¥_p_Ê¿š}mûüíþDÖÄ„ˆ#æLµ(Dá”Þ }%ê5ˆó§ûå)¦{ü)ÿ‰§{ê)q ¦€¨<B» ±Æˆ*z†h”€ííåúO‘¤ØÛMç"µ ­IÙÄÄ[¤OÄ™ðu`bb¼ebâk-Rì]:ÞO÷é“¢tù2©b1ãbïÒŠóÀ¿È?Äù²T0ÖžiTXtXML:com.adobe.xmp 1068 566 C?e@IDATxì€\UÕÇÏöÝôN lè]‘ R”€¥(¢ b( ØÅö©Š °€Ø)b;"Š`@”"UzI( IH²ÙÍöÙùÎïîœåîËÌììîÌf6{N2ûÞ»ï¶÷÷½wïÿžsnÅ£?GÀpGÀpGÀpGÀpÊŠ´JÕÇ«â8Ž€#à8Ž€#à8Ž€#à8Ž€T:Ž€#à8Ž€#à8Ž€#à8Ž€#à”NX”Ûñú8Ž€#à8Ž€#à8Ž€#à8Ž€kXxpGÀpGÀpGÀpòCÀ5,ÊïžxGÀpGÀpGÀp1€c¾ 8Ž€#à8Ž€#à8Ž€#à8Ž@ù!à„Eùݯ‘#à8Ž€#à8Ž€#à8Ž€#0æpÂbÌ7ÀpGÀpGÀpGÀ(?œ°(¿{â5rGÀpGÀpGÀpÆ<NXŒù&à8Ž€#à8Ž€#à8Ž€#à8净åwO¼FŽ€#à8Ž€#à8Ž€#à8ŽÀ˜GÀ ‹1ßGÀpGÀpGÀpG üp¢üî‰×ÈpGÀpGÀpGÀó8a1曀à8Ž€#à8Ž€#à8Ž€#à”NX”ß=ñ9Ž€#à8Ž€#à8Ž€#à8c',Æ|pGÀpGÀpGÀpòCÀ ‹ò»'^#GÀpGÀpGÀpG`Ì#à„Řo€#à8Ž€#à8Ž€#à8Ž€#P~8aQ~÷Äkä8Ž€#à8Ž€#à8Ž€#àŒyœ°óMÀpGÀpGÀpGÀpÊêò«’×ÈpG`,#ðè£ÊöÛo?–!³×î÷¾ø`Ù|óÍå3ŸùLÖê½ë]ï’ÆÆÆ¬ç<ЈÈÕ¾æÌ™#ßÿþ÷eÉ’%qô°ÿÚ×¾V:è ¹ûî»å7:Û´ãŽ;Ê;ÞñŽp._ȶ뮻N>úÑÊÔ©SCüï}ï{aùþ÷¿?g[§..ÅEà¾ûî ï•E:s¶ÝvÛÉý÷ß/¿øÅ/d‹-¶÷¾÷½¡°o|ã2aÂ9í´Ó|Oýä'?‘‡z(¤ã½Eº¹sçÊ›Þô¦ðNûÙÏ~&O?ý´|êSŸ q(÷ﳓN:IÎ?ÿüÐ⫝̸ùd! ¹ùæ›eåÊ•òæŒÊÞÌ™3õ{UüwX `ñ,‰@±ïk®öuÊ)§„Ždkk«<¢*œwÞyg1²öE[¥¢~»nݺ0x¢ó™+ h¹†äupœ¯.ƒ„i“ŒžÄl8¹ÕV[…äÏ<óLü>®³BȲeË„ÙOdÕªU²Ë.»B` ÷uƒH8æ˜c½å}týõ×bêðÃï»ßÄ£¬_ÿúײå–[ʉ'žú?”7þ|Ùwß}Ù Â@,¾f H^Ú×_ÿúWá]¹òßÿþWî¹çž@`Ð6!…ÿøÇ?ʪ¢[§*ÍÅ–¸NÅÌ›÷=DÄ5;H®Á„ó[o½µ¬X±Bn¸á†€íëU,¹nÞÿ«W¯–ßÿþ÷a0xàZRßn$ŠÝV,¿£Ž:J&Mš®Šw°…óNf Ì3òàƒÊn»íâØy¶©T*hsÒÎ,Üà±c¶¶Ÿ<Çq®g‘4f•±0Ã;á/j@;†L„´¼I³¦qô¢ì'ë?ÜL×^~ùKYØ ÿ¥—ˆ€8Œ}âZüÌþd…ÞCâô…gK—ÌW±ÂVaL¨ÛpÝ„)yk¹Lì^RÃêC¼¤p.ž ƒ‰úŽŒ`2Ö„kÞç5¯‘Ë.ª†E·¶‡UªIqý³ÏÉÍK—H—TÊLíôÍ™½…ÌQMŠTw»þ:¤§»S?TüÒÒ]_)ë¤kóYÒ™Ú]Öw¶ÉߟyJ.?ï²ùº9éMÇËI'ž$jk¸‘&á…8ÅG`éÒ¥¡óù}±Ù,ÃÎ;ïf!!ø°×ê3±ÁÎ*DÅúõëCevÚi§°¥ÃNGÕŽ‹_SÏqSE Wû¢ÓcƒZ5d›m¶ #ö_|ñÅ0cΠhñâÅh[¨3ÂùÒ.Ÿä«KèÈåKìç…ƒ´\ÐÜBÐðbfò MfñiRÈ{ŠÒ‚yáÂ…¡“Jgûlµ™ú}ÈÄÿ8ƒD€(N3! Ó¾h¿Ì¢ñé¬ *Èù [ûj›õ³•q†Z+Û·ƒGÀÞÿþ÷¿ùij33·0íˆÞSFœ’þ­o}kpã|•¶…ÃÎÐ×ê“6ŽiC惒¡œØ‡EŒþ mÁ%—\ü4@”A¬`ÖÁqÇêÏŒó7¿ùÍðM„³Í|'p`ŠÆßû.~ ˆ 3èÌv3sV ?´ñ mb20Nãû£´Ùb“4o¸çL~|÷»ßí»@ˆeœ$*ùÞÑq¹žEâ@šd{Ž!Óh×øZÁá'DÊ\ Ý£Š°ˆ`Ÿ|,ñ1û™_ˆeÇúÎK’ÉcÒÙ»3ä—Á~†t$ùfH ¶Á$&-xÇr¬ÒgþŽô‘äaû!bâØâû¶¬²Óͦt…|û!eÁ[Ze­¶Ö›ß.•JDHW›jS´e %)ôÒ’¢G5/RJLô¤SzÜ%3&L—-g4ÊøÚqÒPÓ 7?ºXãT(+¦¿õoQ[%ÕšåÔISdÞ,ýð/{RªßºŸœýç å]øÚ×.³e…¨Wƃ„‰^7[Û78Fó‚YjzÌ>2€€@Â+f+«-8}l¼™™ ƒÏ 3[ž–¿o7M’÷|8WYhû²2Ùò£ 28=U—ßé0·´´„Ae2 õdÁ©,æ˜DáˆýBë2£ Ób]>f?ì@T?[È#ˆ$ÞG„ ôžŠëÅ>æ ¨PIÇy$Â@‚a`ãHV%°Á ZhHÄ‚¹‡åÏ–÷!ý®¸âŠ@Zà´ò S[ ð!\Ú›¥óî~±ó´üØòcU©o}ë[Áéæ>ð¾k°óqý!¶1à™â>2`eÈ÷±¼ã4¾?rË/Ùxn¸÷¬bD!<¦å§ÃGJü¼Aæ{GÇiÙÏö,‚,}™8_ÂæÏŸ4¶žVóAœÉ²: ïœ5ÇÏ8q‹%ÔqD‚Á dð Çfû¶É ˆ ßÕÌ~_:ò#M|]ºÌBŒ¤Èœ 𤇤 MœÖŽã|2ùs _#ŽkoíGÝß‘ÂiH_º÷.iª¨—fo®w½M*3Z=]­JV@RðAa«$…=JX¤Ô ¤§Bêéþö›m/›O&­jQèìj—ÆO«vE ÎjÔ$$­m¯Gÿ,˜ÿ ™5‡œÝ²×¶{Ê/ný•T컫üìÁ[dÍi§¨-ãå½ ~ÔÝb¯°#0và£D‡ T³Ò醬°™4:ó,iA‡”å™Å´ÈØA˯´ ¶}¡A/ï±Ê>PT|qúfÔd}‰£5Ú2KhÒþÑÈ`ðŠ ¶.Éüýxp€? l *HQfîM£÷T²d Ú¤E6ÇTµœgÀ‚à—"¹Œ®9¡Œó§®h"`Ê‚™>˜Ñ…0C[b„òã6âôå¾ Ë’þêW¿ ¾LÓ%[½¹7h^ eÂê hè1è|Ë[Þ’-º‡m¢Ðwà¹åY0Ìâ]˹lïdúüL ikùÞÑ×¶Ég‘pú)h†ÆÂ²×¶Ü.Ï=¾n˜xaIìØ|$NS–ûú¼õ“äq|’s™_H³ìëo›ˆsÒþ™÷iY¡ùÃÊ×\sjY$K$M’ØHÆñãŠ@…¾ôEÍ©Á‡|åÁ{åÙ® ÙfÚtõ=Ñ®& ­Á¤§[É ´)t YÑ­~,0醰PÍ 5 ¤Å›ï!3ÆOÕý”ÔVÕÊäºÉrû³ÿ–õëU5¥Rª+kdÁœ=ÕÉfµ®ÒLFм¸çÙäÖGn—•-ëdÅÿ•ãj÷ *‘E/Üp F€YM>ôtV³‰ÍzšÊf¶8¶i#€}>“‹á\ýH·/'2C‡ãΤŒt]’å—ãq)ïý`®w ÷Ô`ò*E\ÚïHò¥r¹Ù® Í<ÂÆeã#PÎm¥tò½£ IŸ/}Þÿf–/îPΕûÇÐZJ¾WâcÝï{ïý*ŒœÈñqØÏ„o£¾Ê†+O°”-šh]d¶}û„Ù1dDüÓƒfa&ñ¾†m§Ë*FÞ¡N`Ç¢\¥‘#!ƒ2 Ii®\ò”<ÔÒ&»o1O‰:ÕL­×¶¢Ä„n{µ*”´P‹nQâB6eÛ­Ûž*|VtÈþ[í'³ÆÏVÕĨ«©•)µ“diË3Ò’n‘uXvEmE­ìµùžJ[TJ»iuƉ‰3·”–ýO*ÔÏEJrþüŽÅ²‹ÚâtÊÅpÊ>tt´s©‘q­Š\çËÿ ½†Å@ T÷¤Û—oÙ®g¤ëRŒû2ydÃj$ÊËè=ÇÝûùÚU±êS÷!Ûµ˜/‘r­_¶:oêa£ù^”òY2‡¡¥Ä§”ygk·})Dñq÷iˆ‡„¥ ‘‡þ‡|lIÓ°O¾J:Pn0÷ȇr­H‰8ž…gÙŽ4®Yª0*‚F § §|òÀsGs‹üæ©ÇäÕÛÁjµÍŠžžõÒöÜ*©ž¦>'TÛ¢[Ô $Ý¡ûÒU¡«ƒTªfE…’züš¹ûËü‰ód]×:õY¡~«uÐRÑ#O®JH%+ô_]U,˜µ§6¸JéЕEÐÊ€¨Hkð`jd’ªŠ§U«HiIí½£œõËseŸ}^¥ê–Z¯A ìçµ×^Ô,ñ>RÂÚã,‡†-+öx,é…Š*u0ïÅÅªË e ±³cÅì¨):ìÿæÏŸÔXñ/OðpŒúeìÙ<_ü|çPU°gžy¦ß2nÙâóÀ£–ãETwÁ OѨ¢â‹/êwaÆ’v¨Ñ‹å¦Ã„:¡‹#à8Ž€#à8Ž€#°I À€>—$ÏEÇ!Çfû¶µ/rå?˜pòC‹‚­VVtÌB,_ÎsÎ$ylá¾-; &,Ö*…pî]·È^Ûì®+|´H÷š&I×êò¥•jwÞ,Ý­ÚêѨP’²¢JÍ@ÒJ6@9¨ÏŠ=gî!;MÛ6õÕ5j R'“k&Êm«îP'{½Õ¨«¬—WÎÈhV`F¢dFD…jXÑFVUY%T•œ’ ,:µŒÎ·,SÎ>CnûÓÍ\“w€%±“ÿá(‹-Jž.Ú1ö–¬~õÕWËÍ7ßì±À2Ƕ[Mœ q<Ae’åÎpØ…­«•ÅÀ5JÎS'„A<¶µ, †¦Š±ÍV.i9·Ï>ûoç>Ôí…^(øÃ aìsœ޵pÄEÝ—.]ÚwÊêN}ø«‡½8X}èCê·t\_BÝùÎw¾#_|q4¬}êÓ=GÀ} îÏ»ÅÈÏÑw#WcÞµ`…sCs$9r¥{IŽ€#à8£ÿ&ì'z.hWÄñ,þP¶šOЬ m²,Ž˜ˆ÷‡Rާ) ”–XVÿø‰‡eü¤©R|V¨'‹úiYº\éˆõ"ãºeýÊÕº¯š˜€Tw(É J5IUtKã”y²ï¬Ò¡&$U:8WS¯¦ å…ŽÒÒÓ¢¶½UªqQ/{ÏÜS}W¨NÑÁ´þCû"]¡DµÔ-mޏõuõR£ƒîq õ2iüD™T?YžÙ½G¾ÿýï |19b„‡(ǹá38gýpH–áÂÁ×G>òuú£°ÚŸþô§°¼×W¿úÕ°¼ð˜ÝØØ(Ÿþô§ƒ½ÿ`êpÝuׇDxÑ~Ï{Þˆ4X÷M¶”ƒÇíO|⡌³Î:Kpü…·åXÀRc -†8Í@ûä™ sœ&á¸ìÜsÏ  ,…³2œ¥Qg4,XŸÍ ¼®³¬Nñ 8pÂÄ2iÙ„kƒ("M®÷!î­·Þš3éY)À¥?xÌ.'A£ÆêAÇ±ËØFÏí8>ƒ¨ÀGËK¢]Æ{ÆPzÿûß|Nàw‚$/N`Ióƒü`ÑÔ›>}zˆ;ƒ#"K^’vÌ8ò4¹üòËûÊx÷»ßmÁa»óÎ;‡s_ùÊW‚£Z«Ç¿þõ¯~ñ~üã‡xæÌ““sçÎ a,·‰àèv0éC"ýsÙe—ÍC´ñÐbC -䯋#à8Ž€#°Ú·Gzÿöž }}Â3çú¶½§‡þ7ÎO÷ã1E_ùgè¥xÊ2A  +Uãæ—ß'캯Tt®ÖeK×KeM§´®xQj¶š*“R²îþ•R3–:ÜDGOZ—,möX(]éÎИT‹b\U} &k}BjÔÉfUEµ¼bÊîê¿¢BWÁ ófÿ!)´Ù¡½S¥R:pÖãšÚjý©¦€ÔH}ºN&¥ÆKËŽòåŸ_,'ôÎ 4òawRãý|i =Ç éÃþ°)߃ï/~ñ‹ay<:¶ù„Ù?ÅħÃÊî ¦Í»y¾´¤9çœs‚W{´FÞþö·‡e"“i0á‡IÅ¡‡Òàyûƒü`0Õ¸ôÒKûü‚ĸÄûÉ<{L^q~ &0³@óbç˜cŽÉš%¦3ü0 yÕ«^0Åc?׊– Ä ±°ü¿|ÂÒW~VHâºwS?‘„¦ žìÔ$âÍš“O>9˜%“ñ‡{Ìb¬ÉÎÌ0÷éïÿ{h²Ì˜Ëè@ ØÏ¦p¼/0Åc¿Ç{B“9H[Þ;gŸ}vÇÊæ]‚?´ Xþ’wÔ™gžÌëxך@J755…CÈUˆ4ÒÊDÈÿî»ïK›r¼xñb6A S­L4Ì{ì±Î <[&ÙhÌ™i›¥á|¼oñ ‹Ã M6¤:‚s\–û„ü~òÉ'™fŸýìg­˜¢oã:=sϰ`ü> Õ˜8Û ïu„ïÁh–²À>&Ø®…Ùq1¶É<íØ¶Ãвi\õ;ûÅo~³•N]5ïE5ãÿƒ®¢ôÏ"O’n­c¿m´¯~½NZWF §5,”«Ÿ?v¯l>kž¤:Ö²"¥þ+º:›¥zv¥4?µ\*ëUÏbåI×éïDE¥.OZU¥Y+ÉpÐfûK}e²m=꟢Z&(Y1¹z¢<Òò¨ÆMK½ú²Øsj/YÑ¡f ½Úä£ÿ«ôMƩҼ ׬+Õé&¦$u5JZ¨³Î ª¡Ñ±ßt¹ìÊËzã–Á_Ї~xÈш¬ ÚtFYª ’«®º*˜NtÐAA« ße}îsŸ ÄÃa‡–pΆSåKÇ9ˆ!–zúÏþ4èØRþH õg  A“‹¬ÈUh=0[Ši¾:\ʉŸùÌg Z%‹]SÚKGšVmbÎeì"€ÚDç /¼ÞulÍ ÚZIá½ ÑÑÜÜ,š—ecAÓ17´'Lx'Ù²™,OihŒQ-3:huØ’¿–†¥ùÐ|ª’-5È ¾ hý¡‘‡!ȾKDzL¤ µ>žÎpà½ùÑ~T>øà0Åä+{$…÷æ·¿ýí )ŒFýB4ܲ šrÑLl¸8å„$Â׿ðùÞ7¾´ßß­cšñÚž‹)Ví}H‹Ñ$­ÚiùÃã÷ÈÜ©ÓtéÒ] „¥K[ô×* skå…»—¨yˆ®¢šé®”ÒR]U¡"[O˜+ÛOhT %0ÔÔcœjWŒWG›«»W‡ßøêzÙcÒn”h×åP»U ƒ¸½*:3„¦šêÇrí x|ZhvКJZŒ«­‘ñ[m&ß¿þ õJÆÆg̺A ¹0T_h 0øböî ºdçlÂZÐçŸ~X“mŒBˆ‘lù0KNzÔé Ž”Àts *hEpXzÞyç…Žô/~ñ‹¡dái†‰3Ë ,ªöÇw\  ÈòC 9qÄÁÉmò˜З¿üåð¼àÜ•!f9&ä»÷Þ{ÍÌ«0§2A“(Ùé`p qgbÇÌ Û̱£ãrÆg„CÌŽxæ0@ýŸçØÌJþò—¿õ$óÂóGGŠº°æz.fÏ<òÈ@®Ñf! )¹á†äÄO B¹`PÂ)®›íA?|`†æË§>õ©>ß+h  YÐØØ´cN8á„>¢Y~:{Ôm#´“>ùÉO†Á;d"ƒpLΘi-Â5!¼Kqâ‹0³Æ=ÃÌ ´Ûr mâ}ï{_8Í»Ñüë8!¼|Åê}÷Ý7„ßyça A‚–÷¹å–[ÂÖH |NdþÐ&!Q†*¥§îÏ/‚¦ÍAàYCà ¼Xýv¨uñtŽ€#àäC€ï3Dé7uæù¦›n ß­ý÷ß_–,YÒ/)Ä1V8˜Ç¼3h¾çh°Å‚öó—¾ô¥TJM±¸ÌMz_ÇfJ'Þ0ažq>ñ~®$…ÄÉ•vר&ã·ß.·«¦ý]ºåMÍX/¾â ¹HŸ—ã- áüÙ]û|ï{òÕZ?SÍÝ땤{³öõ¦¨ÄWê3tRµ/aî hr×ÊeÒ¥~#ÒªQ)HJ}NTè²¥¢«TVwKECZÚV®“êÉUÒ½ºUê§Õr‚aŸi¯TÂA#´‘°Ti]¥qTVËãj 2¾ºA¶·]XÍ lê´ÒKizŽ1-é W©ÒxJa¤µ\%FÔE†všz¤¦ZóWm‹štµ<7£Yþ­ÂWe:/e˜}ÏTYØÚ~ö˜…‡¢öûµ¯}-̎ѱC†“7+s`cÍ ŠA¿X˜C#µÝïiÃD†S&tÈyb\âý¸üÁî[ÝâüЬX¾|y”ÚùÁæKü£>:|°ø°Ùàb°ùÄõlÚ±ßî:ƒGßP–˜6÷†¶Ë8y ¡@Ç„Á0Úì3`b€ÁþI'ï ìx˜}Æ æA´Y«e“Çÿýßÿ…0Ú2ÑF˜38$ñÌ® ”…© ¤Ù[ôcÀ@Œr¤Ô¿< x™iŽË¡ÃÄLa @ö³Ÿ…k`€ áÇ¥,ʀЀ°Á +:_à Ã`³´äÅõãS­Ò18Î…dcR˜!GË _8øEÀ7*þàƒ¦çŒâ7Bæ¶Ûn õ¤³Ç{…+TКzó›ß\hô0ÇgRåšk®é—¾í«_9 Óéóñξï¾û‚/Þm{íµWÐF@#a¤¤m"Ÿo™npmæËŒïZËñ䔽›çIŸƒ¶…³ØÏ“¼GùNÓJQ÷‘Âr6zýõ[fžó]4qLâ} Ê6Î'ÞÏ•W!q¢´ ××¾þõh¨­«“]t²é¿ªù¾R50gj_2â·úíiÖ÷Þ;µ¿ñ”šjNÒwæþê›ë úœ­“`ûk›&.iNÑþÙR}¯þòÊ+©ñ&%ðîÐ ÀÃÔ§â³ÚÇýîWF §ê|¥y]ÿ佲Ŭ9Ò­K‘V¦T+­Ë™BVTè:2ó•3噞);LQóÕ2yÖ\%(ªdvýL™];C}WtµªQ5.;5l¯çXé£W«BWÓÍ´wÝÓ‚ñbA˜*ThøKûºD‰¦ëÐsJd¨æ&"••huˆ®<¢ZÛÏ_ýéê‚ ‹|×?Ôs0·Ü@ÈŠBM2*ë”SN ^fùˆã±Ýä’K. ªÎ¨òË‹{±êmu,t›o†³<¸~ˆ›±.$Ç)hIÐI@èDÙŒ2³õÉcÎá”ÐÒÁ@•“A; éÒ¹`ÐÍoÞ¼yÈ $?HÚZˆiW°ÖƒV¨'vù¬D‡g³¨ãÓñCC¡£ôñ\0W*D W rÍ>C.¢AIA!#YrØfè)ƒN($%\3ƒd´8p#¹pJjŽ—XZ‡›|,³Â ï ŽÍá#¤$þ>Ì&mdp§îZâ–Š°…ñÄïdˆL´KngCjtZ€¢Y bÞ½ÜÞ)FXณû€`¶‡@ª†ÆÌ:ÓÁÏ ógÁ€ S #,˜9ä}Ámƒ_#,¸÷±°zuÅÔó•ÓN;->=à~!éy0›Ah&À*±€¤Êh4y.‡" ˜³ŒÉ™Û|ù£Á3Ú‹|×3Üs¼wiÃøŸŠÍ$ˆYÚË}ìc¡ÝÇqâ}ÌœsoÑZ²÷aœO¶}¾;h $¥h_•‰¿(ˆv®?žS~]tQðIFt´úhàed„9Úph—¡-Q…óÓ:!ÁdÂû ¡€ eadXÐ?ê€~ ÂûÔÅ(7RÚڗÛî°ƒ\§müªÌ·k/í0¶lÕw$}Lú1/Ó>Ûb «®©‘³´=ß«“óµÏqñ_5©š¦ýîUªKüŸë„\‡¦}Aß³kg´H%Ÿë×¥Wñï%÷ë*õªa¡f j‚)H*¥æ=íš®SÆo^/«þ·\¦Î›$«\!ãê¤V ‰]&j‡_‰†^íŠi¨¬“õJx4§še× ;Iµ’˜| Hį—˜`Çš½a½¤´‰š”hx:¯`¥‘”–[‘VÂÒB×%©$%2j4]Õ„:ù×·³\ו ×LrbŒ;Ð1*ÒÌîÒf02PüÁœçÃÍÇóKÇË—:b:^Šm±p"$®#ƒ7:È‹/îÇ)tŸA³¦…ÆãõÖ¬Ýâó¾Ÿû}v ô #fÉüplbç’Ç„£â‰Ï ‹i24¸§ ™Å¦¶ƒ¾È!,¿xË󇃅ÅÇqäÃì7çy–xnPÍÇY"$y[Zòa°ÊìaˆKsΈÎQwžYûaòш6[ÈѨ¨Z¾¬`a`Ç . ª­vœ ';o[|"ÐáŽóSÈÌRÐ €±ø,mŒ–¦,„!ÜC;ù ³TvÌL(F;.æ–²‹™ŸåõŽw¼#`É“ #–¸7¯×Y ‹Gù+AãØÈ :Á˜FB¼ÈÒŒ0–ÉF ¬Ý€-š8„ƒ1„û1Á€‚+7Q&a•¬-ÒpïP}Ž ^‹ËI6Pz#aˆË·Æòའfñë³óÅÜRv1ó³¼Èw¨byÄ[ˆÆÁHœv4ìsm¥ª'•´Å$Y‘Ä“9fVt¹ê’°'óHçÊ'[8dlÒì-[<†#¹òÌÎ{­­®š÷Z©ÞÓV?®Ýö‹¹…ô5° oV-2"˜÷ :„ClðE¬a>¬hGV/ˆF´!![é§[øhÝr½Å®;yZâg€ýøg™Y˜c›ÌÓŽmkepgôÅ:yö9Õ¬½[µSW Èdmû|óѨÀ¤ãoj¾ÿ¨¾ РøªöëîÓ ·Ý5îçT+ö˜Pk|„É âß§ÚÿÿÊô=‰"ý,NCOSÖ¤zdeË‹ÒÓÕ¢/ý)áÐjS³}øÕŒ#ÝÓ-©ö™½`¶¬{r4-]#ãt†i’ú©˜];3NÿY…Ю@*´‘ðí®íX­ûj ¢E…’êXCo JZTªÆÚ.}HÖFËÇ…ŒFèQ–¸{ÛÛÞVô¸0 €16A}—ÙˆR”geŒÄ– 3”ÌX f¶$[Ýèd FE4[64x1šØ`ÐŽÚBĂʽͮÐae6…A&Z6K§a?Ö¨€lÀÿ…9 ä<6­æ¨ÈhÄ$T¼ÜÿdúHqO)ô›·þ“m‡{-–O&ï¸ÖW¾ÅnY!ýT;¶EŸƒw©¯4|XܯÚh´óçµ}ÿ[' vÚm7iVò÷X{«šêþFßYô%¦ëäØCª=Ašvÿ75cÛjþü>Rð©ªu±™NDÉk²tµÎôT©ŠrûZ5Qßj "ÚAWsU¢PÇ—ª¡Kn{Ð6rë…¨‹ªÓMU˘Z3EW© þ)j•¨ÀwÅ]uëqJr¤Õ ¤KóÊú¢U/šAc} ^¼iÕžè%,2ÄD8FâJVw¬P‚†ß­yuõþ2û’ê”TS»t,k•§žY"SwØiÄï³p8Ha´ØÂì0š¬äAƒ¤ö‘Ø>¯ØåŽT~¨šãð“N1!œü1»î26HªW3sóM´4𵀓GŽÔ1kÄÌ7Ú±@ÆKG2(ÝM_êq;âYA£ß PßøÆ7†,X6sf¸Ñ&@˜yç¹C­„Ø‘"çðšy DZð05 gÐ QA^6ãnϳš³Eû7ÛmpÀi¦I.œì¼mé¤ñŽ ,»Nür˜o4= pÊdÙʸ3hym [B\?&9æ´2<°g¶.¹,/÷ǪلÙ<[-b ó’¤@N ÑB'ƒw7$›‘ ´C˜YÝh“H>S ÚªôÔG°HÜQ yþ ”òB-±"˜R™[Êmƒu…Ø´$Ü»§Ä…°‹W|±ôÉA2íd IƒÑNöÙµc‹ù],´-p7Œx‡›ñx¯ó.µwUœ6y/x¾ñi”Kâ|sÅaR¹P)vûÊW.D $x,˜³¡9ˆ@á Aüñã7ZÄ4ͨ/øÚ»’ãØ©<÷Ê-7YÌaøŽá„ù"Â{Ÿ|y¿&û–‡o‡äc:$C"ôÛ†`5ñ/‰ ùô}ûr”×W—°3ºþ¬SRüJ¬{Ÿúd9VµC¢¦!7黃ëÆüãaýfÕ©ð¾:YòUÕÖMéØðneQ¯ÒgÿíjÖŠ_ŒgôÝ€Oäjú¼Pýñœ¤¾È¾vÎ9!¬Üÿäuºùüª§Ãò¡]íMºBi‹j0@X(ÙP­¤G)5ѨÒÎ|­6ЮÖvikj•µ®–÷ÚQ ‹ZéêîR’¡FnJ¦×è*#ÚŽ;”ð ±Ò¤yUˆEhã˜v@UT¨Ùû'©7wô*”˜XÛ±FWNÕÕCbÂB‰Š´þ*uõõ-•ŠIUòÔÓËÛ«YÊ ¤¯á"M2*~^¦I'€ÉxC=F圙f˜gÊA˜/>DŨ¶zÅùÆûÙâfy°µ}Ò1€£#CÇ›n:̨póñeö ÛLq!åÇê’¬W¡é=^ïÀÉp4<8¶{GG”ÎGò˜¸ þÑ®aÄ ua–(£]à°ŽN+j¡Ø°bê`êœ ñ=f ƒyf²ÉŸrѶÀIZ\'Þ;hó0¤£ yÁyH°Ì¼`oNÇÍHH‹ùóç‡ç3HL± H›üÙµ'·ø1€DPx±÷…Õ³ìl`ã·†N˜Ë…ç‰É¤êýtÔ¸ò@;‹|ñå€é ×…0³ü\7xPüŒ˜f‹]×aûVäqòZ‡{lå 7K–ø`ÞÁÀ‡öÃÌÚ&Gv]–.W=Ôs!#DØ`‹tR8%¥3Í;vf%+ ’ÂòF3ƒwõAˆkçlK¸ís¯àÙj!„Û9â™$Ã-N¾ôÌÞ¢I ˆAÏm•²h/´?$™·•YŒ­Õ³y‘³÷ÌÒçH§˜(‚ìãÙÄ(YŸ¤*>m©§žÉ|òÕ§Ε¢¾ÌœÓOŠ?:¼¯¬r¨òÒ‰-…0kÊÇÇ£ñRg¿ÀKQîHåÉÀ G~ÌDÓQd&O×óu°ˆÍ+ƒ d ^]F´QüAÐád¶'yÌ•@4`sË ž×´mŽñNG'…´ ¼‡#ÌZ3GBP˜$-œz@z@\˜@Œ0„D@%ŸA$u¡-" ä„b? YÈ€B-žù óü¡-ã_Ó–ÆÆÆ°¶<§•ù¦#°20:žäO™q=sáDÚÅ‹öˆâ`†Ó?Ö³Gx¶8Ç@"”Ž?×”4 ‘7?̘‚-sîïRÚ“-EJÇ?ßÌl3a¦ RÂ~¬¤Â*ˆ™…@º26°0 €31rÃŽ“[®#6=Ižè8_zÚ(D!aÇ;B¬h«àGØ@u¨åv‚‡»&¬ø¿K,œmrVSÕJН¹Xû¼ƒ’ï4Ø’Â{~ apjä*qiבå iNĤX}«Á´/+;Û6IÐdӮſ…½,Þí£IÌl‘:ÇfŠÇýëXë‘vÅJVhJBºBŒñ#>÷•ïj¬]ä>Ï:Úm#5ðâF³èè¬Wl°ÏÖ~œÉìÇñ¶„ëø¥X8‡|2dE_þÕ]«OØÚ1ÁìBáldE\ý.ÕúŒÉ ;61Yaᘓë^Xž¥Üæ5 Žzº;¥³­YWúh—ŠJÕbÐ>Uhsj+ÒÙÕ-ý”ªöé£=Ý4B%t‰Ñ¦ÕMrÁ—/¯¿Q~ªq&7(ЭÑT#C)ˆJá„ @›"la/ *´ù„c«Ô…î÷²gUªÉ9ÈÓë×¶®%8ÞT¢¢[)%+0Yöâ²vý*õ…¡%h§pmóºRâ–3o¥´ñµ¯52^Ö :6%aÈ (?>0tx2;ÊG—kǦ‘2³0tüùmj8Œ¦{JGÑf‡­ÞØ#ó3Á܇Õ)ÌÆ6>féNH)hqÏ“Kt2 äÇŒ6écoû˜ñCÐÀˆÕEø²:ØÒ:³¬e,tôXt~âYsâA¨`BÀÌéc1ÿqXrŸç—ŽÏmœ¤„ W:]’¼Kâ,qòáÄ S<“ y Î8¹ã¹ŠŸ:öïÈ`Bx1$“Yž™°P6eXx²¼\áÉx~\6ä5 ©èNë‹¡Yí`tÙP%,*«tµ½ÉJZTÔÖÈ’Ÿ—n¼ò*íÑ“Rç—Úé¥á@\Ô×7(á šVÏk¤+ƒt³UÚ¢[Ïâ “séÀ¸õ(=Áb¦¬‚9Hï9æ£0Y¡;ש9ü:UÓ£[É”îT§¬Z÷œ¬X»TsU­ ”B=~(BCÑ{&Ý–0Àáåhù+³,‰-_><½X÷zG¶ð,I†dy[yÃÎ0“A!ùᎎ??'J|ü™ç{Î ’A,+.°"ClïŸ)ª M©®³ ÂÇH$ó%aXÛ1—oíÁVÿȉ‘–>‡*bç`Ù>á 4ñ‰Å©§žÚO ™ó&ÖYŠÓÚ9Ú¿lç,Î@Ûò o#^’åpÌ/NÉò¨HæE¼|ç’ùŒäq¶º·|´d®»îº ¡…iíÉî5y[™8v凅ƒÌî D‰¥³c¶htÄvðıe~-^œí“8mÓ(‹Ã!¿âüìÚ:&„ 6½¥Å‰(?òÀ'£˜À³ò,~1·¥Ì;YOÈ:Lâ™z4ùиÊVÈ'sægy¡yqef j! 7mY`‹;š¶Ù®¿õÇÌ3&,0Y£m¡I†³á±ŸßøhHÖ'išÃ}A“ âˆ>Âû ²›Ái¾É$âãÆf칇ô/’D-y&ëAX.lûÊ•…C,›)a¼‡²ÕÇÌ.-ýRÞ Þ¥luN9æü—<’}j»Gœƒ°¨l´:™„@»ÍIÚ ýF„¶F» ía6ƒÆäñh’®H×¢ïý~„Dò8ΔsIësÓç£Béfü:“̃Ók¾¡qŸÀq*qõαågÂ~”oØÏ¤×ky‘7ûÉs™°P3;Ï6—$ÏéqIpÍUþ()œ^ÒOÍÖô†)Òºz…t¨†EGG‹zm ÛöÎõªv¢?Õp€¤èQûÖåÅ̶§;œ},ÓY™{î½GémK)HjÕ”`Å]D÷1AФ~-Ô!'¾)‚¶…6ÂJm[p•ª‰ñdÓ#š‡RªQ‘êR皘¦¨¶Åj%+^\§³?øÂÐô!Gm¿&ö÷ö ?|ãI±‹´¼íÃK‡›Yç±"¨luÔQ¡#ˆ)Žñ)@§ðÏþsPo/d¦{¬à5Z®ófÂJ-t‚1%a¶½”ö¼C½:£ù:K#…ÓPë?ZÒ¡¡Ãòµ1Y1Zê>Òõ¤CÉ€1&+Fº¥,3\¼|crIR»‚xøÎ1²‚c:p8=ÄŒ? ÙÔt‰7V?U±VD2˜âAf f‚Ö›9?¶0Û&ïr´.Œ¬ Z¯ø"Á”.›c\Ë‹lì3«ŽÛ¾¬>¹¶ð± ’MâU~ìühê+bvf‚ù&¤…ILÊæÒ0±¸LP hU ´žIH_Ú"Ï»iDáËeÌ[”,ý@pžsñOÇuap Éùq̤u8Ö1¤…ë€rƒýÞÉmÍÓâë¶/¿¸öãò{^ Ó½ÃâÅç}¿lÈ«a1{òti_¹JÚg6èêê,³:%Ýu=R§4BuM½’J’ø¢‹@IDAT¨f·¾[ÍCºÚ;¥¦®ZÛ’ ú[¹b¥|í‚ eÆôaÂn%2j«ªµÕIJý_¤*”äHk!mxJ\@: ¡öDEµªs<ѬÞù;›u¤MIÊTÒB‰‹ÕMˤµ}]05¡õMÓÓÕ#›ÀºrWBcÏlmŸð¡ jV ¡ób¤ÂPóÊ–?Tq!*¨//kî¨ì2+…ĸÄûÃ)‹|ì7œ|øÈ ÖÏï…^ìøÙêQ·±±1Ì,&ïøÚâýÁäáq‡†€ù£(5î ¼b•ÚR—7X4̼)W½F §ÁÖ»ñsaPв<ÏòB`$ï½ f L†ò•Ÿ$[º\[fw™ŽM rÅ-·ð|8 ·®h±`Ò‰Ù`L0Äù¢…EüH$ëÂ1NÇ VÀ 1÷/6#=Z± ý‡/|á ”I\ÊMÖ…ð\2Øö•+ Çì%öGÃ_ÌÐÚ3áÑDM äÍ`êžLŸï¸Øùb yˆF$ycZg«}àŸÂùÊÆœƒU»Ð® .}EÌ -C£ mÎåËÏÊ-§íˆÕWqê§³Ÿ‘~Z ŠqŸ–EæÒ!hWŽ{@Z%Çûåß—¡žµü5ûᚠ˳ avLÒÇ~q~¶oqâãÌþˆáš¥ìÑ4R8åÕ°˜·E£´ÿãYùð#êt³Uµ+Ö«‰ÈzÕ´P“ =îîT³ŒŽni]×&‡|l_9üãÛ²% 'ZÖ·¨ó›‡‚šþ5:ûŸ Ø –:Å g:ÒTêC²Þ%*‚fd…îVª¿‹ºÊ:YÕþ‚<Ûü´æ×¡Œh¯H»j{4­SœZ>ù±bIE„nu™UQ+”-çÍß(÷›ÙQ˜[VC(…0{À,„9‚›6ª¬±­b)Ê%Ï\ŠÁ–gÛ¶¤ÇûꫯlVýâ£BˆTqñ‚çß/¢8Ž€#àŒy ûãK ã³ Ÿ$ <˜—1pd Åà1©ÂêO¨x——`µž|ä#yû`3ܘd¶Ð,0Gņ|‘°\3Z"±˜&GFí”SN >…gÅ —ìpe(ík 2Ï<óÌ>3>â2G“‡%º¹–þóŸAk [ÿÇLË*£\γb‘ }:Ú Î†¹F„ ˆ|ÚPøÌÂa7ûH±É=´/À ¬ÌÉÎ…Dcýý\¢çúÎ&ãqްèŽL` ÁÙn MaÚlmŸ¸™ý¾t„QyEeÖwן8*áof?>Ý·Ÿï\_$ßiò:Ýœ3s–Lªš"kïJi.•9;Ì–Ó&K§jGT颵3*dÎþÓuiÓjÙâUÓe⸉2÷e'Éå§ý\:Ö«ãL½éMkÖ†Áô¹ºúݪj…×ûÆù[©YHÔôÔÿÁ §ò hTfC5+–·='­¹_ýU´K‡®PÒ®$IKëY¯Ä ¤Hš™èF·4Zuæ©é+u·º¦J·Üj¤± å™çwT‹¡N_*¦¨®~èCê ¶òo~ó›à ­ïDwp¶†V¶»ÅÔñ]wê°‡pÀùÝp»MVq@õYsÂ5œ<=­#à8ŽÀ¦‡³ü±˜S–Üg–—øÇ<,ñÊ·G¤&Ì䲂Jì»'”eK-ZܱºeivH‚0¨È€ÀJ+ôg8¢Ua>bpD –8Á4Áür‚û„¶)Ç~‘ð]—x)PVíáž™)«wÄ$„@¶•7¬ÜÁl‡Ò¾ÊŸ5¤š¤&\NI!ÏòM,ÙD—¥+÷-~K0ÕTÄ $vâMÝцâšs >Hèošv…ÅCs,pæÉ3‰64ädZ.y`0¯8õ‰çägÎAM Òsß4œ1_ÈO·Aã¢/ãþ;}yYYÂbƒs'¹%KKkÙ'-¼ ¶µÚF©o'¾"]$¯IHƒ6 ]·~¹ÜþÜM’jêÒ“²f]l©/ÌÊŠ2qûÙìå[J]m½jS4fN”7÷zùé§‹w¨¶DUe`Áù¨\qÅåÁÖó°Ã•ÓÏF°éVWVÊ <¼¹£ÂhN s×phgPi…0N.15ØÉûD»ÒC^àŸ#l¾Ÿ{€àßÂöí\¾­•ÍÖöóÅ÷sŽ€#P:ü,¶åžóHÜ{fí“ËW2[;PÙÌøó‹%™Õs~ñ@™É†d¼8rÜ/E}ñEÀ2’qÞL2°”® >1߀¤0ÿ Ïé2õÌ³Š” þgp˜”8_ò#]|8F*ü|ík_ëË‚¥T1 ‰óˆ÷-b¶0;gÛ¡¶/KŸo ~8 ³¸.1Yébš–W.G²v~8Û¸ÃÉ'NK_“â ™”³ÕBpzÌ$×1ÇÓïúã´hW˜ãdÚ@\?&Ç ;Î=÷Ü~šhô©ã¸qžåº¿ÑêK_¢±ă Ç*ü ¡ œ×æ!Hqai9NDù„˜ú'“_ØFûáº9Îv¾/ÜâFù„2’áv>±ÝX¸ÎÔöù>]@`õ³Å˜ë!Õ¬¿ZµÇŸÌ¬ô*}¶×kû¾?‹Ù—]BNÞ¡ÏÇbÕú[[¤ÉfË;¹)œz[N²ôÌ1páÁIײI¯OIE[…²]²lÅÓòÜŠGeÕêçu¹ZµÚ‚D«j@4­_+›í1U¦Î›(¯>ýUjJÒ«nÅ‹f…ú´àq¡úµ8üMGÉ­wÉ’õOJS—jM¤šÕüc¥<Ôô€Ü´ìz%,þ§«‚¼(kZWIsûZiW ‹õ[Á/¥©ŒvEJÍ@Ò©*müjZ¢Ûžö”,Øc?©ÍÒæs\fуùˆâÃ"i»8œ‚p tÙe—¦8¹¼ÌF੼TÂÊxY®© dDBrÝzI1KBÅg%‹…¤çãŒ-øÇžèsõ¤ÅµKy#À,~,¯}íkû©ÚÇ熲Ï,n,?üp|8f÷1ý4õ{!9SÎjOÉþ “2æ{ÀÒ²MÞÒ }‰0ŽW‡¡ŸÃŠ%ôÝ쇅X˜é·sñÊ>qöKÙ¾ÐzE»,éKql‚cfˆ´™“2—"ÆA2+y°Ü9þáXž²²"Ÿ@}ôј0Íç8>m_ ˜%±:+„|ë[ߊ£ø>dÜg ³¸vŽ­þÂ`6³ò‚\Ð_p ™Ù„à ö7Hå߯¼d8Ž…tIÉ–ŒSâã·ê²âÓuR÷¢óΓoè¸n^c£¼M}ý ›)Ñú~m»SÔa>ÙoáB9öć=Áœ¯Œ‘>—WÂÊuèrÎÿ}LªšÕGÄUMi騯T‚¢]š[št¥Ž%š¥¾a‚ŒOM”ú:]G6Û}†ÌÝk¶ìsÊžrÛî”ÊêªÐp;•¸à÷ß[ÿ+Ÿ:ý3rÂEÇJËšfuE‘ 5»Ó]Ò©«€tèÒ¥]ZN;>3”e"<¥Z=8æTM È I×SÔ-*”Èè\×.GvtïƒRš¡qk<¶¶_@²¼QXÞ U4^~tP˜iÉ›`€“¨“¢ ÓÆG×…·í¡ Z"Ô?9“Åñoû[A]ó£ýèP³éî¸ãްÅj«|Çqãý|iüœ#à”R<ƒ¨ˆCšÆÂ;gï½÷î ¢Ü÷¾÷½²lÙ² ¹Æ ÌáX­ › ÙÆ’x¨ŸuÖY¡Sº1ï~´ìf̘‘-™‡åA ÷>YÜ_ÿú×~A nŠY®-Kl…0©€v°Ñ"ÅÄî9öB~¸d'Ëb ÊXЀô‰WˆÏçÚÇDÄÔÿ-#”Ç3 ¤¿|‚æÏ5Â{MšlRêöE™ô÷øÑ® aÀÑÞ7I uà“Ä9[݇Vª|­.8á4ò©²x§Û{=W|srmeäŠgçËu»QëÍØIµ#ú´,ô8ˆ†ic »F hH¯Îyý“Ìq8OxRô|È#“_È—ýè8``aQx¿8äkç’ed9ÞX¸¶·µ…w&!÷èxæËj6AÀdæÔŒVÙÛUˆU9—ë‚ oWJóU;ìE]méjõÝó?ÕÈ8~Ñ¢pEŸUÿI_øÄ'd/5·{µöI&©yÿ#ªaö=ÕP¢œbÈHá”W ™¿Å\Ùw¯¤b­¶­½×º²Pk[Z—:í>%:”DhSB¡MýL4«ÉF“ú˜Xñâ2™ôl¹ñ»7˾ŸÞSöÏOR’N6y¦ŸVžÍ$bi155S ›?¾í–d;Üö5ØJ±Ú}C#+HŸ$fqF>\sÞÁÖËão"däÇaºŸ•Pàò‰§¿*prMŠLXŸfÇnšñR£RÙ!n&^ß¾¥³ül•÷«Ÿ'£?¤/¹VIS&öѤø®:s>VÇ‘ë3+üÜžq8{×í·ËSêjá5ê?©EÉð U£C'·ß¨“'¼ïîÎh†]§þ‚êÔä ëµóu`¯…wÒñÜh“ ‹J½§êzÔ+uùÒ5JZ(YÑ©¤L[GZÍ4:t‹†E—´µ·ê£ëuùQuŒ©¿ª9ºþõªyê¡%²Û{v”=NW»0*ì™þ`Šªt`ÿÏKÿ-×^°XZÚemG“ÍÒ‚ß 5Y¯$H«ú¬P… éV "®V²‚%ˆÔDjÕóE½µÒ­á=ݺ´jK—{ä"™P™…¡á;ÀùW¿úUh80àh' VM;K:Ït†?¦6M¹„03|è@£1ØòPaÄQ(ƒ~Ví OîdäJ¼¬”ÅÉ·E­’,´Epr•ì¸áÓÎSÿ¤f¾¼í4Aè à•=V“´8¾u±‰K Ò±7 1Ô£™gæÎ[gfMO?ýt [ÞĵvÕ¼—Y•»pÞÕ„¡mÁ{ç¿ØÆ_zé¥ýò±f_yÆ‚v†Å猯"|á8õåxÐ…Sg4>8Ï÷%^%êøã+$ŽA8éÈ»±±1ÌÀ¾ímoÛ`f9®ÇXØ¿ñÆû92ƒDÇ'Â@‚::Ìdƒ?jéLd“äšÕ½\d¿R`šM²M\Ä>©Ð:åyd"…vν ÿ”ä}à<ƒ÷RÊPÛW!u‚¥†¯ ú…ïÒþyRÐæáýKr’(>çûŽÀˆøIR€sú§þ¶Ö ×mô9ßæž{d3u¢Z©NNÇéŒÿvjÚ³šˆo§}÷¾Ÿ®þ!Q­ß¶9ún%ÝÖ:°µº˜¢Ï¼‘SµÝo§¾n¶{öYÙ^óÙV5Œfª3Ý ¾ç™²Ã5%ëE çËXž×kú jP|GÇ\÷굿BÁ~FMÀиxP5à‘G—eêÛç§ú.¸IûhPLÕ÷á4ýu©“ÎG3ïÕÿèä Zku\t¢bö&íÜ c½ûòø¿(Wh4 ¡âGv„l»õ²¤éqI+i‘®OK‹*6TÕôèVÙ %”SìY·îñK5¥e‹CgÉÃ~T¶~ÓV²ýÉó¥[×$yàÒ‡‚yÀÀœéûž+øVÈ+ÿïeR3¥Jºt…‘nL?‚Ÿ ½ò*=µÚÆ´<éuÔ©©µœ”–„_ eàôWÓ^-'y’šˆdØ4*?A­e¨ª-áze¡•@Ç”>Nfþñ@}ÄGÈœ9Êèd4*˜-`OÚ_úÒ—‚s©ê†j%Ëh½ýío^¤¯ºêªÐñfŸkÇDØabêc*œQ.³‡Éòð|~ñÅË?øÁÐ9À…%€lÌ=¶¡hU°=ö¨tr-Isƒ™N48X"Ž¢©ZÓ‚ úyþ¶øl!eø€³¤q޹Ò'ë§Ë¶oñÙÚ~¶xæ8¥G ØÏ Z8Ldv}ÈSÞ1&¥Fd«ÚnŸüä'Ãû’8øßá‘‹*öóÚA`Åû.^ ÉÊÁÇËÆùc—ú:aFNccÍRŒ LÐæ€Lá=&«0ÁðÐC4AÈ—ºñ­áù–0x¹âŠ+¹Â9üáº\%Æ¥uä ßÎBÊÄ׃äX{ÓO¾ƒT&h!²ºE,¬€UHqš½_Šú‚u,huÒÑìŒÅ&Zm96Á©ä¯ýk;–÷¤­ÇxúçŸ~_v §èSpmœËFrÄ èÅ4&æì“ýl µ}Q.ïžX+—vÉh‚#Òx¥8Â!o蟙ÐOÃL$ÌÖ²Õ5Ž3œýRæ=œz…´#‚½>/aÂ9 h®ûýÌC4îlm‹ª °\ýÅÔ(Ñ»™ú‡éÒg~­>«Ïë œc¾3Õ¯ÊsJÆü^ÇC·(¹þZ½¶SôÛߨZèMz­±|R'I¦©Ùéßtã 5wÝ.³è@ãKJæ¤}ŸÝuœõÅì/¿ÿ½üDÇLÅ‘Â)ﲦv!5Ú >ýŸ•“O9AªÆáËB 5Ä´¨¬U#Õ¾`ÕŽ®n]åC‘úK럖­2u·)Òª¦ ­k;eþ;·Òs)yä;Ke]jI i¡Ë‘ÖVÉšZ康Þ&[°™Ì>PW Ùn¼TTV)QÁR¥½N5YM³]JŠ@Vè©[ãt5µÉ»Þô™3N×ÎÎÒðìZ’[¿ IOÂɸ¹ŽˆóÂgBR°¹£ÌÌ>&˜é¢£Iç“5¤ÍG`¤GÒD–çÆÈ%ñ ddLXÐÏ£”O†Ú¾È“å[yG™Ðç‰ ‹… "2&$N;í´P'ú›×\sMxXz¶`Åjr.ŽÀ°`l¥ïÀ¼¢qbÒ¢GŸÇ*úí:NjÒ8äE>ã)í·· ¤ù¥q Z…vzÒªQ¡û:`U'›]êÇ¢-Õ¡¾+ºefåfræÞ–6- yöHGŽ}ÊŽä[.Šfžˆ!°£Æ±%KuAPP6 õ^>  긛Šê`Ðäõe™•c&­ fßžU5#HÊãƒMí;Õ-3|à¹d ò죈frV~õgVÀp„Äà:è’·­l2PÞ”O§H êN‡ƒeqéb—I ¸w|ˆéˆ¤ÎdŒ0*¤ ÊI (>ü¨˜5dž~ì8CC ØÏ }<ë)Ù¾*˜Ýe•ÊÏV´Å yjé 1ðÑqŠà$™+ZÙÌÓråO8³Ä â´½á ofç™ÝçÎõøVðÝ2À%Üêkq9Ï7³k„˜šPG‹ky”Ó¶Ôuã[ V¡eâ—„ïRì#€ï,ÙóÇoª4ßåBËÈ–ÏÆ+E}ynÐöA‰N8bÅ“Ž"íš¹?œ‹ëƒ6(¤ i;—A<÷'—ïúU þã|¬ŒB·¤(ýpÚW¶zÄåÑŸ¤ok @p&I2ËÇpŠó°sÅÜ–:ÿbÖuSËkD±×ö¯ðþ&ÃxF4K—¾¨ßÙÙJÎS“õ”ú¯iVM#!úeB™_‘õJÞéK¢7š~ãZ• †”¨Tm«WÏLBsMIËñJä!íªIɹ0$¿X’ǜ˖I3¢¸Fõü“NPŒSmËcô]…¿ Ì9¾¥ý–2ÅQæ2ý~Ah´éûî/ªv˜ö^­ã¬‡U; ‚ÇšOéØÂãƒ:qqŽNÈ?ªýƒÓU³²^¿Gë8êwÚ)–ŒNiXpQx€ýöÅ—Êkî'ëWëê 5p\•tŒS¢ªGªºtÛ¥&µÕÊ‚+s¡K Jg¥TMTSŽ]ÉC}OTVÔIOk¥lsÜÎRS5^žüá²à›ûJZ—"]þ÷²öÎ&Ùí³»Ê´Ý§H÷:ž õWA³SBC”ÌP/šgJÛ—š¤»¥Uµ::µÌ–§Ÿ“ï~ò2ŒA ƒ^ü=Œ„ÐQÆG¿‘:HI/ÈÅ,—N1¿R À\Áb—‹Ê)ƒGÀØ40²‚«ƒø„TgzºjV ÁWEröòR‚ÙOöÑnX¹re ,ܶÉ|ÄN…ÙŸ¯Zh&“ÔÁ™ ù µ†¹¾/°ñ BÕ}¬ “±à—¢PØ7Ò*™O2ˆ%4°Ož«ÇL0@@ I`¤E.,裡q·i‹‹¦“0Lp$Ÿ'‹c[HÀ‘òm•lƒi_Vß|[&r’Ú#É4¼ßм¢º8EC€A~6Ò‚,\ã@Z¬S¢¢aÒ 'È5I˜²h‘Ô¨Æ÷s¦¡¶_©ß*•:± ¬°D¾J^˜ qÑ£ó”~›!Bš#s‹çÑÆŽ•×/pã°ÚÇ¥ª™‰FÄE‹:Ü4arâlŽÃ«ä ZpÎdj°¡Ó/䀤¸Bû8à,Öê VÖHm{[E¥m1c¦|ã[—HçóRݤëÕ\£½V9„*é V!º‚G—fÖ­=Ñ#Svž.Õ¤&Õ Å$©­/52IcVÈVGo'»|hyèsËĹ3d÷O/Ý?³§{¤CgÝ?ø†³åÕ;©î…‹#à8Ž€#°!gœqFÐÚ²3 p0åcÖµPÁ/ˆàX né,Īàøïte†3)h¸A<Äbi©ƒ hh™¡‡™‰9w„˜€ŒÆœÅ~Ì@óË&¨˜£Ö޹û,†Àuv6UYœšÆ2Ø%fšøDÁÁ4ãü¸ç˜Ž€³“12/íc‚Êó‡­lÂ3‚&+¤1ðÎ%hàä2[Jðg"ÂL´råS¬ðb´¯êÂóáˆ/&Z’‚É1ï V=r²"‰Ž—ˆ€˜˜«þåêÔgÌêK.‘gôYoVß ãÔÜ1QÜP'Žõשƒkd<ßæL~-pàÙ¥ÚiÕ,0²ái5ƒxBÍGžR'È/ª&‡Åð'YF߉òßÌÉ «q2œÕAb²Ââá»"&'è[ÄÇo´l 6 ± :âÀCä¼s/”s¾ò ©›¢&íJŒ«Q-–/µúk¨™$M÷­Íöš'UÝê(³R·x¡P-ÝVtTÉÜC¶•†qÓäáÏ=&»qšÌ•—Ì“ç»L¿àù`>R·y½¤ÚU£sÕ¬èJëŠ$Ý]²FÍ@Z_xNÙæyß‘ï’*í,&”¬Ê¾uGÀe 4c:ØËÁ ‚>&ø¹¹D;Ph?`&‘,ËŽmke1›Ë`Ò">GZ h@@6¬X±"8Æt‰ãr éÀjF ØHƒÙ›Í6C,ฑ™c]˜Ã¡UA>Ì*ã+m LâÐø`öx±ÎbY9lms=®•øÌVsŒ™¦w‡:•“”²^Ì8}R[&ªùÜoÌ=!›¸8ÍÆ©¤™'RÆ`óMÖkc—ºî}¬´Ãr¥´Kˆ5ˆŠT%œön¦TÕÓSËâG†ûð´®:À=@óÈl¾Ê#Î{ˆÓ¦H‚™9×¥¦JÕúÎRRñE%àѧd $Ð =q¶™ýõú-ëP².çY¡í¼M' X!S•ª] ×r°|úŸŒúïg‹ß?FÖç.Å‘j›„ÄwåÌ“N–&ý0\üã ¤¶AÙ݆JIÕ©éG•éõe1NÚžê–Éož­$…ú¦¨© ¾(êt[¡d…ööyQ¡Ë†l~À47ašl —­~V8 PïðT3F€6¾±ø Gx¦!/ u¢:œ²Ê%-ÅÀ®\®Çë1аA…IáœþV(©6Mµûf«–íP_ Ï«Iƒ‘ !¥åc[ýN=§«+ÎRÿ“ÔÓdý6bò±RÍ"›ô;Øo€œ)§_ñ–O¿ÀÌA¾sÙâ{XÙ P¡ö»¡Ý ¥Fß¹ê ùüÅŸ– ûL“ôtu9u–:"›*Ç5Ȳ+ž•?ö2©VS4,ªÕÑf½6V´+ªÔ¦.¢3ýéB¥U5ÕÒüH³¼ð‡¥ÒxúÎꔳJµ)´­kG`ùÍËeÕý«dÒAÓ¥}bJV¯m–µß'G6¾JÎ_tžL0‡,C¹Oã8Ž€#Pvàá?›)E1*Jg‡üK¥*O ± œâ+i’ï<ªç¬Tèu@Väò§1P=Gò|)ïýH^Çh/ËïÃh¿ƒ#Wo+#‡u²¤R`¿\µ›-ÙH‹(“JõÅ€ô`Α”a²l6uŽÌ™6[Æk ¦"ÁÆI­¸8Ž€#à8ÃEàÚÇVË…·>ÓK–'2›;©V®8fÇDhïáÕÿ[)7=Ý$—±­Üº¤I¾~Û³ò›ãw‘n%.~ùÀJ9|»i2µ¡$ŸÒ¬õñ@GÀpG TTÔÖêDrgñ³I…bq~E®- Vªu%Ìî16nåšGJF¤—U¥jœÎMm=iJøå¼¸_õ#'6~ÂpG`XL¬­’?œ°ëóØs‹‰rñÛ…ôMíÝò£»–ÉÁ[¾*È ö„Ž€#à8ŽÀ Pýò—K×þSÚ’b²a0äEœ®„5ƒÁJã6ÛÈã?<Ød£:>×rÐë_?Ød£6>×Ê5”¸†ÅH!íå8Ž€#à„ÀôéÓ‹ÎÚ§Õ,±µ«GÞsÍcÔá”Wl&oßm–<¸b½:‹n—_·“Œ«©”Ý7/«•ÌX֬Ρ•ì°‰ ö·›¦š*ÛL­—‰µ•E¯ï•#¥¸÷cº¢^¦ß‡¢Â¹IgæmeãÝÞRa?þã—êw–ö_üBºï½·4>-6l”ŒÏŠê—½LêU³²b¨ZGkúy[m%·þãòôOH·.±)Iuuµ`‚fÅžJV §¡`2">,†R1Oã8Ž€#àñêÃâ'oÞaƒ,ëªz• Ÿ^Û.s'Õ²Â"í4s\ ,ìØ·Ž€#à8ŽÀ¦Ž÷¡hlê¸ t} äù¹',Š‹§çæ8Ž€#P¦@Kàx3—t¦ÒÒ‘ÒUª\GÀpGÀpÊ7 )‹Ûà•pGÀ()iõ©äSaÜzJ<ÓÔ!«ÖwÉôq½|þ½Ë[BµB:lBøÌCÈCLEz÷C€ÿqGÀpGÀ(®aQ4(=#GÀprF G‰…W´f­â3dG5ÿØ|b­üøÞäÝ{Ζ‡ÔAçÝËÖËV“ë6HS[U±M&ÕUICµû°Þ$pGÀpG`˜8a1L=¹#à8ŽÀè@§›ºîɬ•½ú¸er}µœ³pK9ÿægä¸_?,õJBØ8YžTGœI™ ¦% ¶˜ ç,^*ïRrã¸]f$£ø±#à8Ž€#à8ŽÀ0¨X±b…ë²DOî8Ž€#°i!°¦½[¦ÔUKE¯"E΋këî‘zuÚ9P¼œø GÀpGÀpœ¸†ENhü„#à8ŽÀXE`ªj["n RJÇpGÀp¡!àF·CÃÍS9Ž€#à8Ž€#à8Ž€#à8Ž@ p¢„àzÖŽ€#à8Ž€#à8Ž€#à8Ž€#04|YÓ¡áæ©GÀpGÀpGÀpG „¸†E Áõ¬GÀpGÀpGÀpG`h8a14Ü<•#à8Ž€#à8Ž€#à8Ž€#à”7 )!¸žµ#à8Ž€#à8Ž€#à8Ž€#à ×°nžÊpGÀpGÀpGÀpJˆ€%׳vGÀpGÀpGÀp¡!à„ÅÐpóTŽ€#à8Ž€#à8Ž€#à8Ž€#PBœ°(!¸žµ#à8Ž€#à8Ž€#à8Ž€#à wº94Ü<•#à8Ž€#à8Ž€#à8Ž€#à”×°(!¸žµ#à8Ž€#à8Ž€#à8Ž€#à Šé»ÌO-©§rGÀpGÀpGÀpG 4¸†Eipõ\GÀpGÀpGÀpG`8a1 ð<©#à8Ž€#à8Ž€#à8Ž€#à”',Jƒ«çê8Ž€#à8Ž€#à8Ž€#à8Ã@À ‹a€çIGÀpGÀpGÀpG 48aQ\=WGÀpGÀpGÀpGÀNX óhÑ¢™ÓÁÆæž·§{ö¶Ï>OÇÿÍ÷jˑ뭭_`ÿobmË–l}]þk¶Nþ›ØØ2ò-j4ýѶUìoî-ú½våÖíÛ®l<¥u p#†þf‚ÕíHÖ–xûLF$@$@$@> Í`‘2E iT·dËšU¢©2 9rô¨Œ›Ê3 ÚÅ5£—*¾ o¼öºÇ,¿ÿ½¬\³Úã1çÎQÃFÈ_Wÿ’ÖÛKDxÞβºÝ±M;É“+—Çä?íÜ!Ÿ9Ìã±ðÜ %¯P‚;V,Y¿i£¹t§¶í%—Öë÷?ì%ÇNÏâíZÿú¥1šÚ ¯]¿&gÏž“y‹Èæm[Éjó ͧ³Þ‡&oçâyŽ>R.]¾,ïtêð@²lY²H·w»¸öC ¿råŠ>zD¦Ïž%¿ý~ÈuÌ߆{»ï/}0÷íÚCšÔ®'$¿ yšÖ®/ýÞëi.óJÃÚ²nKH}7ìky¾t9iЮ…Ì]ºè¡‹‘(AB9¸á'9tä°{©ÜCŸÏH€H€H€H ²ŠÁ£¦]Ú¿+ $©ÓÓgÎHêÔ©¥ú+¯I§¶ä½^=äÜùóÒ N=)Qüié?dp@\aéݽ‡@Y·‹Ý?ï‘7®ËþƒÊ£g×î’4I™}ºtÒ§G/ùxàg‚ígŸ)i¦IÀƒßëÔ¨%éÓ¦“‹—/ÉþdÖ¼9Æ@Ò¼QI¤> ÈbÄçïùågWç9Eòä&¬™³”½ŸT¡š=®)wüxñ¥n­Ú’[G…1å€*ÍKW®0÷h2òŸ:5kI,‘†2´nãWîüq^bÇŽíún7Ò<™Z¾UÏ5öØ/£¿#—uâ-¦˜`t¾Võæ9mÖLõä 1h<[¢„\»vM–¯ZùÀùÙÕ¨^­:¦~N›5Ã¥r)V¸ˆŒŸ2É<×6o·$ZŸáÍo­z¿c´N‚'êZÚ4iŒÑhÆœY¦® “ð®'öÆv©oçî]öë}Ÿ¨ÿiÓ¤5Ïx±6òäÊ­ÏüM}wþ40ŠåΙKª¿úš<ùÄrè÷ßeÃæÍ²fýZ“ ‘8öt±â-ZTÙµgŒŸVÃâ ²tÅ mGΛ«V“reÊJÖL™µM:gøà¼8qâ¨7Bg9~ü¸Œüf”IÛªéÛúž”ÿùFk;ˆöïÞŠ5!ïZ¹RedÊŒ ó|N9­œ×ºÞLI«Q­º/ö”\ÕöxÚ왞.ñÀ>x`8ßÝýÚ.u|§¼õfMW›ë­mòÖî£.úzç(D(vlø1ÄøcŒ¨×%õØøãV)˜'¯”*^B>6X²fÌ,I%–ý¿ý*ç/„ Û4z[ª<ÿ¢yÞ{~Ù+½}"ÛvþdJSFëîGß—ñӦȫ•*Ë)RI‹÷î÷TÉ—+ íó™©WM:¶‘ÃÇJò¤É¤ôºÏÈ.È„™SeȨ‘Æ“ÇSžußy[²fÈ$Z¾#éõýßÿÛAY·y£|ô¹æ«ï<…H€H€H€" ݼ~ã†5E·Kûަãþfµ×µsõ‡Q‚¡ Û¹ë€å'ªÎÆ|èfK‘‚…L§ûêÕk‚~ãz C;_Z{&->ª -F(ˆt‚Ói§lÖMrD;ùÕmX§¾ëü(fKÌüct>a ÀùÉ´âÕ]ݘ äË/þüS‰ØRõ¥ÊFñÀñçË—×ÑÓbò³a¶é4’<ªpa$5^¼x8tÉ J1ägíì:e™*ßó-|À»¬.]¹,Wþº"UÁW ÄÛ8±ãÕU!O¯Ón ø#æ…œòŒà¾_¥ÒKÆ´Z­”êR¯Ö[’#[v“.¬þ¤MVÊ–*íú_PŸ•ê¯V“òª¢óÊÒ¾u›:¢‰Ò¦N#©UAö$0ú„<ÿ$®Ã0¶a_\U"!©tJ*Ü'ŒqP¬aЂ™%sf£¤§L™BÚ¶l-Ù²d5ç„w=1Õ?åtŠUm}œÿñ>@-[j8@éM•2¥4x«Ž¹Or`¬È>½z@µ—L2ã"ê^ãzõ±ç×Tã^Ô`žÿ³Ï”Öo7Ç!=bò»ƒ I'‘š¯¿¡^TÏh=ŠêšÎEãØwÆA°Ž¡\!¯¿òª ­À´x–Ý;u•L3šãö}…² æàÝųÁH<ÄW`„ÃÔ(ü[®üyóJ+5~ÁH…Æ#¼¯+úTÛ®˜2ö‡IróÖMiÙ ‰¼Ó8äÝu]$@$@$@$ÅÃ÷9jÌw:壮1>@)¢ƒÿP´ÇMš –,2îÒPpF#pù«¾ÅªTa4|ÓÖ-ª4Ç—¡Ë:ÒŠ‘ËC‡È'½?2†ˆ>ý?y'F\¡àœ8uRV­Yc”™¢Û¶/ tô†ÿï+òÙI¤Ïî:g ‚»¢]J•°ÄªŒþøÓv3 …JTäQ´P£ÜÁÛF„MÚ9…± _°ÊYB½'ˆ}öwÙ æÉ<m†2/(¡äå­3ÏÛʹKÏîÆµ£›PªœÏ±4 »öì6Ïrùª’ZGO*ó°x€8c4Àkž/<(‡ ‡ÌïÛ³·ñ0A¼’`M‡€ £ø3çÎ6F­W4v Œ[ÓÕ«bö¼¹ÆPѽSyQ§ê@! Ïzâän½–œûàisôø1'fáÒÅæ=„7ŒlxÏ~Ü2â[Yc» ŽO˜:ÙÔ_j¼^Ý(ÂÇ4.Jy5†ÀÙµçûªôÜ2Ó»0²Eù¬*d¼/ƒ‡5K4šÔo(/¨BþA¿dÆœÙR_$+V¯ëÍâ,'êz•J•åæÍ›:m¬§ñJxùÅ—ŒWÇ›jHûtð@Wr(]½úö1ÞZ¿sÏ+ µ~¿î³ @…ð’‹jp@1‡Àxƒx>h‡¶h»®÷;w•jj|¦ÆÀ0–=[6m›î¸ <Ùõ9ÀK¬aDüUGÈóê6ä€N4lˆÀ8<äÓÆxã#¼^œ[¼+¨ßKV,7×Á»^¡l9c¸€·Mù2åL–}µí…ÇG5ÖUƒÆÃ êÐ ý6)±z$ ¬ÞÚ&oí~x¼óÎûÚ°m³dT#ÚS:-$cº#òº­›ÌûòìSÏÈÓ…‹CÎY¯iáÑ¡Y+so%ªV”£ê!Ö®i c\€ãÕFÿp»¡õñ*îè3·õÏóÛÁÃ%­zÌõÒ_f,œkŠSA½j`Y½q½TkRÇ0Ü¿f›4¯×X¾ý•«ÈΩu4‚FVãøèÓÍ6þìÝÿ‹Q†¡$¡Ó ü¥ÚÁÇv°Š !¸Œöõڟ €)Þ!(/@Ùþ¢Ê­/ã Pb0JQnP]§g_瘄òÏ/û÷«b½Ý•˪\YÁ””<:•ÊS®ìÙÕ‹ µ9=Z`õÆæãïsëömƃ:‘æ^=÷<àa€:†º Ïzâ,7¦Â¸3N>e ²0úíØ¡QÌ@IDATµËLÉÈ­£íx÷!¨÷à£mRqß°y“©ƒæ þÁûA;\'¶zHX6æ þ „-¦PݸyC LÏk Ô’E§­@ðÜaä…×bÀX±m¤ùòŒ}«×®†¨²Ý¯wÞÞâXÔzµº1JäÕß%ÔsL툢ÿ ˜žcÅ 5ÛëôyÁX™8sš1XÊ[ྺ¼^½áç $¶/øÁq+¹²æ0›ðèø°Sw³©©µ~¤Lâa„Î<·ïÞi¦TV­XIðÿ}γÍ“+–˜óù‡H€H€H€" L ±Sãçeã5ç/^hXäЕ9< F[£²ñÔ»bŽz @ ¼{÷ާä÷á:­Ãu1Âù÷Õ¥ÜåVìñ¬vÆŒ¢ä»À“ îŤiSa#„EÕm»k‡wÍ4OéC³÷~æÜY“<œ‚i*ÍÕ%£´NÁj»üÞ½þ´ñÔ„­¿¥g·ª¡i¨¢ T¢|X™níÏ•+ï,Fз=lž+ž-þ£VÞiÞÒ̉ϪÓ36ªÇ€]m⎖/PA@@+P¨<‰“Õ¡D¦S#¡Â‡ð¬'βbŠ ÎÿNCWÈûÂõqH¬Øiýå¡îß³€ îÿ­qÂ*×6\rS•_<¼{NcƒMçþi¹_Q/+Çr’XBÒ™‡óšîËv†¶ °×Í'Êš—[6ß§¤XÃE”¨÷´'sÖ?0…îÔPÛwí$=ú|h:Þ &TÅ:ddê®v¾!¶ã÷ÏÙ![gΆàš ÁT¬Ò Œà"(!:ÙïÔË\ó ˜O²yëV“-âFX…÷ƒ`~Okð;tþlmîJû3‚$±^¨LlÕ±YNç/6÷oËåí±«W?èû‘™ža¢¡z;Ám?¼% v4Û6æ¶âdƒ&x—@AþRÝü "¡œ†w=q–Ó×ök/W55¡C©j¤1*ì»àªûBê>Fõû÷ég¦…X¸ ï&î1T(w÷= \FÄÀ€Àp‰). #Æ{†Gû¾›DŽ?¿©’ É›;yï° ÏäqâäÉûý·)î—@Ú€ûÏ›o¥J”4Þe˜ž†²_ºtÉÄð±ñQpU”¬À渦Á'¦Â8 ïxWÀ0)£Ja¸G—S¼qp¦Áv l_|®¢aÜSÛML úóž—οðç3…Ó[l›cåà ÚSLóX££¿¶É½Ýí;ÿ°eFúßÔ˜ÃÓ)S™÷e­­„ÀpãE&ý½À{´^½+ ?ªW¤\‰RZ£™í2O?k oûÐgùáçöí[æ¸óÏÊûÅÚ¯›©O.*/”­`¯Ù´Þ|îÜ»Gª7­gþ#hgŸÏûËöeÅ™gf­cˆƒñù¨’ýÙÂæxeT,SÁågÏã' üÛ xZ~ÈRÕܮØ1°ß'f´núp ‡Ò‡ ×t9RHÇêXê·~ÞD'b§5\¿2šˆŠµß¨áZÚÔ$Ò?Í­««6ÄT¥é‡™ÓÍtĵÀˆ&”&Èõ{×D`¾õ›B:æÀ½?ë6nÔ ›/›y÷˜Î q ˜Ê-æãcj V0€ë½5œ¹7‡ß™W0¶.Yd–Dà½~|hF]¡ ÃxqT;¨¶ÓïïZþØÚóíè¸ýîþŒHÁû°’ÀÚ ëgÒ"¨Üã(Þˆ§"Erk  –€©þäÔéÀˆx¦ˆ±c…»×ŠÍÃé±a§=T­TÙ(þ˜¾„@ SµÞ!†Hx×[ÆšsÂ*„vßå+—É®Äï¡Þ÷•Îí:˜xX /¨•kV›º ÏuúlaüK¡næmÇ;´wß>3µ«e“f²OÝÊßxµš1ÞuWãÝß:%Á F¿ã«I@ÖnØ`>­q¨@þüfuÄKp –†‚ã"âür`Ÿ”TW{È]3 ¤ $ŸGIÓ¥]GsZ‚„ ËC°¤©õ¨X½n¼úrã‘clB%q}¬÷Î5XÀÈ=c¦¹ L/y „-ÚÄïAp[LՀт÷÷°~ÓÝ÷¬ h £pùÒe‘Å_y°"L·w»C^òdIÍôxÎLŸ=Ëœê¯mro÷±tohÞyåõv«‚`JÄ&° ãE‰¢Å±)ˆu§Åº-u5‘§eí¬…fŠÆ›U_3ÇÿïKóiÿXCžýŽÏ‹jà‚Qñ+?=Cz´ë,KV¯?ïVï‰?å¥òÏ›€ž¨?­6“ekWIæ ]Y8óL©ž>Xiƒ¿þRR¨‘;^Üx&îûÔ!WÜ    ) xXÀ(i;wï6s•ãb§5’=Fgíœú-Û¶™`šPô £Œ €Ùm­Ñôá>}P—3Ä’P0Š" 0r$N²D©e‰Nÿ×ß}cŒ%X®±az‚Žú×ߎv­¦ƒSEÒ¥½šöc%“á_4óÁlÓW o–V„|;n¬ öX¦T)i©ËÆ×QÒ™sçåÝ$òtì?è×ÇÌ{Ǭ^‚e(Ñiý±õVl÷g4oÑ +‰´jÖÜ”Šîd&ó8Þ.XN®êX­%§Î½·Ë¿Z/_å‚Áq`¨yãµj¦ž"0¥?AÁba8B F„· üÞõÄ–†A,!êü#¼>×o`<¦¨–Ù3aœ9 žP0¼!.‚aÂR˜'é7Øùnü÷æ-¢Ó `ðÃûŒ÷Í*ÛHƒ¹ø˜J€à£0ø!æÂâe!så÷ªÂãXµFO‚€¸<°l'‚.¢œx‘@Ú€@òy”4Y³düÇ4má%†@šV` Á˘bñ\ÙòÆÃbéÊå2ù‡)6‰ìV xR@`°@½D\ˆ 2k¾<ÂlQ6ð°tí+•_Öà›ËÌUì{4eú4m÷ïxxá=9ïˆ%ã­HðLC}Ìœ1£ &н´MC{ñ×6¹·û±4FGhÞyoåô·q, 0–`u+Nã…s»VË&2{ñI£ñIê¿YÛ¬}÷Ã?"0ãòÿq×™¿l±`GÍWªÃ Çtº–LmV§¡¬QCRÛžÿL±å²Ÿ0´ôìß×Ô»Ÿ ’N-ÚÊ‚åK¤aû–6 ?I€H€H€H ˆ’,O¦@½Œº)(tP\Î9ïÜžŒàkèàC ·‚.ÄŽÈÚýöùaž;”oÏÌö4‚—f¸{‹Saó„ASì1¸6#ÀF?ÃKpÍD:ñ9Uü±õ”¯§g„tÄg•Oç…ç>°‰¯ÏˆGLˆ¡uÑ©|šV:¸¤£¡v$ÝyÞã¨'Îë?ʶ¿z†úKÿãݰ‚€Œ#‡ Sá9éôþ{‚)6P¶aPr ò/L1p÷æqO‡ºŽvÃW:ç9îÛ¾Ú÷´áýmFÑ=Õ™°.‹}¾ÞØ¢ÝCÙ¼q‡·Úf_íï£Üƒ¿¶É½ÝÇ}„æ”2>Ê9ˆ¿’"Y 9uö´W¦’oRõvƒAÞ0 øÍºåðˆ ô\¦#    ,þ 7Å2 „-wƒEØ^¹“ ü %†Åï™þËà)€e11jO!     ° @‹° Ê:œH€H€H€H€H€H€"/,"ï³å‘ @„%@ƒE„}t,8 D^4XDÞgË;#      K€‹ûèXp      ˆ¼h°ˆ¼Ï–wF$@$@$@$@$@$@– öѱà$@$@$@$@$@$@$y Ð`yŸ-ïŒH€H€H€H€H€H€",,"ì£cÁI€H€H€H€H€H€H ò Á"ò>[Þ DX4XDØGÇ‚“ @ä%@ƒEä}¶¼3      ˆ°h°ˆ°Ž'      ÈK€‹Èûlyg$@$@$@$@$@$@$a Ð`a N$@$@$@$@$@$@‘— ‘÷ÙòÎH€H€H€H€H€H€H  Á"Â>:œH€H€H€H€H€H€"/,"ï³å‘ @„%@ƒE„}t,8 D^4XDÞgË;#      K€‹ûèXp      ˆ¼h°ˆ¼Ï–wF$@$@$@$@$@$@– öѱà$@$@$@$@$@$@$y Ð`yŸ-ïŒH€H€H€H€H€H€",,"ì£cÁI€H€H€H€H€H€H ò Á"ò>[Þ DXÑý•üöµërçæm‘»wý%åq       ðO J‰3ºDÛkZŸÆXqã^ññ ÀCP§ˆ;jo€ÝÁ›ø4XÏ ogr? „‚€/»ƒOƒ§„‚:O%      ðMÀGø ß ßÙò( „ ,Â+3%       ,BCç’ „ ,Â+3%       ,BCç’ „ ,Â+3%       ,BCç’ „ ,Â+3%       ,BCç’ „ ,Â+3%       p1XD‹Mðß)Q¢D1û¢F»¿øŽ´8þ¨‚óÝó}Ô¼x €HôèÑ%ÕOH¼xñˆƒ"ø âKº éîzí1cFŠ{ãMŸ@ìØ±Mˆ¶Ð]¬ëKµú¯»žëm¿û5þ«ß¤$º÷î%©Ó¦‘ý>–_÷0Wx»u+)X¤°Ü¾}[Ú·h%·nÝ2FŠAÆJ,­ ï¶i+]¹òÐ¥‰7® úr˜œ=}FztéúÐçó    ¤H™Rê6j(Y³es =rD&ïê×AÉ+]¶Œüzà€>ôû?'ûØ‚r˜¯@™?{ŽT¬ýµ_dçöŸäØÑc3VLíÝ’ /T”ü… o©ábÝêÕ‚Ž=ú[+½ ÙUü[=jü~X&Œ«£ŽW¥u‡v&}ºôé¥GŸeàÇŸšÑÈâ%JH%íß%J’X~ÿíLú~œœ>uê¿€š÷ŽPç’&Kæºâ áC]Û5ëÖ‘1£F»¾c#kölR«^]S÷gM›nŽU~¥ª.VT¦ŒŸhôÔeèiõó²ê$°ÅhùùsçLú JmÍ#G®œrE½ÈׯY+‹t¤#ñ™¯^«¦¾;k¤èSOIb­ÿ#†„”ÉWž&cþ 3XÇs‡kÈ€ªGž5×Ú´~ƒ\¸pÁè‘1Õ» 3¬ü¼k·ìÞ¹Ó|ý]uÖNïwÓYEŒæyØÏ Ÿ7ž@s¦Ï”Ÿ~üќު][Iš<™ôïû±\¿vMŠ¥ƒÿû~ÙgŒËh»!E‹?%Ï<[Ò8 \üóOùeÏÏ2uâ$Ó¶ãx¦,™¥f:’"UJ±÷£ù³æÈ¶-[ŒwÝ«¯¿®º÷Ój¼‰*{ô>'Ÿ`®óÃRÂÅà Hæ{‰\yó˜ï‹ç/0Íã!Ö`÷˜jo¾aæ“l¶Ù¥S·n’1S&“>qâÄÆèP§A=c%EeÁ¢• H‹wÚ˜4K.2ÆŠÄI’ȻݺJæ,YÔðqPRª…¿eÛw$‹º9B<å‰i+   ø¯¸qý†ìÚ±Ãįhߥ³ôéÿ™é›]øã3ÊxñÏ‹ÏY;'Y|Ç<îFÍššŽúA&rõêU)P¸ÔkÜÈ Œ-dÌ ËLì2ý,X¸°4lÖÄHýzÐ(vµ³yã&UËWȶÍ[L–pí‡ 2ˆúî.¨ƒèLš,©ëP’¤I̾8qã˜}o¾¥ƒ¡êy´eÃF9rä°”(õ¬ÔiØÀÃûQúBE‹È™3gô‰¦ƒ­¯›iHsäÿšîK—>ÄWæÌ™Óâ+O“1ÿ„)ä)S¨×X\9¯ÞÖX ÂÈ4M§ƒ¬Ñéé´Oï4ê Ú[ÔŸzItmW×®\¥†ä¿åù_*¿d’ã­AÓ&’>CcŒ@ú²ÏUç4 ±\à1—!SF9§õ3K¶¬R»~=“Üø!׬^£†q$л7F8?ÞnÝÒœÖÂÅÃâÂÌÁmV›<:Æ&~Ó¤lÙ³›#ëq`ß>.47u¾O¯÷º› ¼Ü¯©c𧟹ØR üçŸõ7ËîŒ=š4mÕÒXOgþ0M¶nÚl•W ,as¦Ïy:g†ŠNÝß3?¨V<åiñ“H€H€H€þ+ÆŒúF0å±Ç’§Hn:­ð€]µl¹LÒ8K,” 3è^q;ú[ãA‹Nþ²Å‹åšŽü¡†ñ€¡_hÀº'MpèÀAÒû“~ªØ‘þ}ú”/V©l>‡dbcWj¼‚â7k ‹<ÊT(oF¥gh, ŠÂÅÞÌÙ‚ø,+$E§Nœ”5«Vo¤mE·ýÆŠ<ùò™Ø_~þYu–fÞ‡ +/ {½[:HÚScðݹsWbƈé3O(Í”°%"E sË—/|!îܽ#¨Ö»~Íš€Ï”„¹Õ VìXrt×Yºh±\ÑòÂX/5Ê1Kõaxý`<ƒš©žŒ Êgž}Öèâ0Øüb˜1P£}†î£2ÚóÒ:[ìž]»™x0p`¦¦;zÔäVÂÅ`ÂÃË7/~µÞd2ßá¹ã\£ÆŒ³jÕ7~!ûùÅe•Ú°v­1XÀÃÂV¤Ù¡p᪃À& ›—uõ: .1VR§Ic6a­^³†DQ«^xX¨œâÌÓ¹ŸÛ$@$@$@$ð_"€ è_ ®nêIÔ ¢ñ”@G ß/?ï•íÛ¶=€[ÔPQ@§Š4jÞLrä´±Ëî_5Îy"úhè“Ò©Àð¶Hro41Î($LYu°4OÞ¼fÊ7)æUýuÏNB, ÿU.D Ð?vÌèÝzõT]æ¢ìؾÝó/€ÄŠÛèØÆ;/„‰á«è,W.ÿ³è€¯<í9ü ;˜¾±úe WŠ'¶™fqñâE WpQV«7ÏÆuëÍ©6>JT5 8%ê½Õ4íqç1oÛQŒ)!ä(Œ0&Àÿ¨¿ð Úñãv“!¶ê÷ªoW~åÉž#‡ÙoW;IõD*óSA ÐÑѶ—Ô€´”zia±ñ8bÅŠeŽ¡n‡µÁ"\¦„ànì ñ^€E®+ûï`€À{ÄüëÊ?n6xwþ¾#ðžp,¼¹âœ:yÒä +¶~ AJ“.­¤N“ZÈÏrüø1›Ä|zËó¾DüB$@$@$@‘˜@¦,:¯YçôÃ8ñ§ÎÙ^©^CúÔøa Ì]gÕQeOOÙî½?0qÄâÇ‹¯1-æ…Ê›'Aßð®Ž*åNûfè£AI@¼3\—BÁ$Ðèí¦&î ô LÕ@L<è-Û½cV ñv- tZ±ºŠýŽ÷bÙâ%¦¾&JœHJ—+kâ˜)O÷xê^ºÿ§Nž0õÛ´Ñ]ÿð•§½.?ÃŽ¦ï@+Â}jZó6­åM 4 Ò)ðPhûv éÚ®ƒôû ·¬U+7oÜ0›1bÞ¨Ó*ÿÎXöç'ÚI+Ї­`ÊÉ€?6F ij€ñ«‘ÀÛ‚,𘨢Á?1À¿jùr³ÿ®z‚@nÞ¼e>­á_¬Î²b`‰=†«þÞ¸qÝÔ_̆k W Ü ¬ók°À”Xq¬KŠ_a]Xà₇‹SÎ<¹MÀãGŽ™ï&#ýcƒ‰ØïøÄhÀgõ•f:·&gîÜ’¿`AÙùÓO²O­EpËÚ¸n>¬&ö®@PNñ”§ó8·I€H€H€H ²ˆ¡néeÕXqýúu3µÃ.9o;éWï-Açž!"JÔŽmB…ó¦—«7eÂD‰§s¯aø°b v¤ý¼û÷™‘nrƒk=Fî’©Çìï.“jóæ' ø#€`ƒp‰ß½c§zm’º ÈÁ_50± l>¨ÿçH{ o`Sž0Ń Sµ¾ÃM¾N£¯ðì9sýi>"ÿÓE ‚Ïr\/­Æ­€8õy˜G [X²:köœ9Ìà: @ KÔÙhÇ–,\p!Îß‹eQ¸h1A^ŒG¬ ,@¹pþyýSÿBâ¥ÀÀ£°•”©R™:·pî<ù櫯MkÚª…ä+XÀ„BÀt„D€1Ó> iP§À üóÏ tâ•K— –©Î•'¯+ –ª†!äο勃Ì}C¿F»UvÂZÂÍ`o¸Ka> x Á6Œ¨ëa—ðð’÷ìû‘ÀEªxÉ&ÍÂ9ó̧ýcôìw|Â…®V¨ ]{æ–WßxÝÑÙ«Q!•t\<Œš?&ÖÂÅš¸V<åiñ“H€H€H€þ ß sú±B¿ý͈ړ©S›&(W;tÅÈk! ]¹ $‘º¸Û•²ë´_tìŸ-SÚ¤C°7ˆí€#/,‡:_ãŠíݽÇ,¬sÝê5Rî¹çÌ*q4 > ‹ bð¨øqëV³Ât‚ºbàf ˜éINŸ:mvc*¼ÅaŒË|oõC€wPºoI¬˜±Œîqýú5£ó@¡Ã»Ã¼'x `øº¢®À°g×.:p°ë’NýÃ_ž®“¸¦¦Mž¬ñ»ƒžÿ õ’@¼¼'«1PÙ³s—iËàÓoàAûŠÕ”°èꇧ€¯ÈÛ®”„@™ðh@(§‡OÂD M@ãÓ'OÉ‚¹s1#¶N?úóÏ &=‚†B`$‹#ºYMß±œ/zö-ÍüXn«4ÁÈlõ+D¡þ6iÙ\~Õ™Э£è£î= ›6,>£ÅO“¢—·Œÿ¾\ÕÄ<±ßÔ‚étI®M`°ÀŸ3c¦«8XãžxhðãöƒZDí< Ì7˘9³ilì\3¸U!"*Ü]V,]ªnY«e6«w4 ¨õ*oüf&¬SˆŒ€;h$<åé*7H€H€H€Hà?D}#RjìIíÃÁÀ€Ž,0,o—š‡+3–Õ{R§sü­ê/X Oh{7J—ÁÃ’¨7nÜ4ŠÞ¦ º$ öʼnùe̘Iûbu)À]/~|É­ÁÙÑ1FÇ|ÞÌYº¤ÞÖÿqÞjxÀH2”¾¹3f©®‘JžzæÁè´·ÕàÊô‰Üû‰í[·™:¼uófã9q\BoÁ¼,ó‹¥gOŸîŒÅ@¬ñúÖcXƒ´ßýo´Ž²_7ï–3=üûï.¥<ÃÕýˆ­CBÕGÓkpád:=Ïiµ®2{Út—×ÿÓ%Khû–½3“@ñ‡.ŠxŽÉ“%7z1¼%NhüxÞœ?çy5‘3j0ƒ×NÆÌ™L KÄš@„ál‘NσAzrº éÍT$¬†‰ötŠz«ý©åG{kæÉŸÏ%°º thx Á m-âMÂÓ1'w©ñž%ÐÝaÔ;vä¨ìWƒò‡®œWó9©K§Nó½ùôt¯²/šõ$QRËåy2¡¦¾ùgàQ=e¬}p•I˜0‘ Æé´<†6,‹=*…H€H€H€HÀ; aj/:ðžæ-Ãå8Žv€qÜŠ÷m=*ì~û‰ü0ÍÄ9wS1 äÌǦç' ƒ¦[@·€8¼~0 ¥Ï9%ÃÓuà‰Sß÷XδP@ë.ôžF¹ÛjŒÀH} â/Ï@óaºÐ@‡gñ0«†x»"ôÛ¤ÿâÒÅKÛSOçÁX|Së¼!¼ êöµ«×<ÖeÌtÀ ÷zCD&5`à}°aÞÒeMKi–!ý¨g]È \ bÆŠy_pXoeyØý1'ðxJ„0Xx,9w’ <2ˆû øL§‹Ä k×™i#…uµ&Õztîjf.ÓÑÃÂ'$      xh°xÔyM       Ÿh°ð‰‡I€H€H€H€H€H€H€,u^“H€H€H€H€H€H€HÀ',|âáA       ÇA€‹ÇA×$      ðI€ ŸxxH€H€H€H€H€H€Hàq ÁâqPç5I€H€H€H€H€H€H€| ÁÂ'$      xh°xÔyM       Ÿh°ð‰‡I€H€H€H€H€H€H€p3XĈýqÜßâšáÉ6jTïU&z´h>yû:'ú;i¢D‰"Þî×Wþäüƒ%¾ÊâíÑ¢Fü‡à>ûÌÞÊe÷û+¯ãéžL#©’§°Yôé+?›8{JçiŸ=Ÿ–³sŸû¶{]óVïœç%K’T2¤I'îÏßÝ÷á<_\p=”Á]°?f̘î»úî‹§ãØç©ìîSOåu¦‹+v@ìç„veòU.÷æï¸¯ò9ŸoœØ±%K†L+f¬ûNyLî+¿@$ àüýŒ·Ã[øðôlQòkÓò3òM_ÐŽ¯~NÒÄIÜ“=,Gæ¬ìËÞµÏ ^õ‰)åèú¦sÄl*+<ض ›IФÉê¼{âD ¶Y3f³¢¢Cý^‹v²râ,Y3e®|Ò¹‡¤Nõ„ëzEòÅc§ÊžÅëeÙøòNƒf÷)%Š<%ßõ&›f,’é#¾“7^ªê:U*¼ ë§--³–Èìÿ“Wž¯tßqç—¼9r™û#†Ùš²áž¶Ï[ñÀÜ‹•ICÿ'?ÎY~ßÿ¢ù ÚÃ|æÍžS¾ø Ÿ¬›:ß°êÙæ]+×û´kOÜã#“çËå+ÊÖÙËÈÿqìð÷|qÏsF—-³—ÊêÉsäݦ­\Ï?^ܸ²äûi¦~|Ôá=¿ÅÇu§f­eûÜå²yæù¶ÿP)+¯×óšÕ¬'3¿þÞu¼ÆË¯É6åöÓüUfÿKeŸsÃÆë/¾, ¾,;¬’ùßL’‚¹½çí¬k0D  Ëœ.Ã}ù9¿ ìþ¡lµTÆ¡yHýÄq(ª«&Í–ŽMZº’ÂeïÒ Ræ©®s°‘(A™¯åÇ}?ŒøzFx—z¾ÓIö-Û¤ïèbó®æÌ’Í•ýò 3¥vÕ×]ßÝ7оã9í[¾QÖN'ýßë% ã'pO&(ÃŽù+¥@î<®cþÞ $|ØwÐfV}ßí.kµÍBþágâüáõõ®"_í–¿r»?ß7+¿*¿èó?xä}uÎ[~~’ N wû.òåGŸ~S’À¿ˆ€¯~p ¿±ÿ¢ÛaQ˜€§¾àóÏ–}@Ÿ±:NúÔi=–ÈW?çÉ”©dœög‡õþTÆ.è×XyëÕ7¤Áë5í×pùüϸ= £ŠNæ´…sÃldºHëz¥H¾òbƒrëÖ-UnÞ•Ý>”Úm› *4Š/¿ÿF†ûFâÄŠ%#ûTãTjéôq/I’(±|óéiñ~'Y±q­1Z-7]="[wý$…òä“>»I6Mä—ƒ$›^&%?Ø'~ÿÍ/ÆÐ”í‹1_ËWǸ®‘-c&})¿”acG›}Å.Y¤¸¼Ú¬®:vÄ•îò•Ë®m翯?,#Ç+í>zß(­0îLøü+)[ëñw=g^ÿ–mÏ Ø÷Ú õÒ_f.ž¯ uBÃðèÉ2yî )˜+ŸäT+lö ÅåÚõë~o«YíúRªØÓ†×¥+WäÕŠ/#ÎK kÉõ¾Ï¡t9ù¼GS—ÖlÙ(iŸH-sGO0¼÷0õPRõVäÐ‘ÃÆxñ×ßÊ3Õ^”³œ÷[6_ `h©U¥šëÚδPšS&»ß»äa¹`T¾Î«Õ¥©*’'MêÌÞï¶¿gô~«R¹ÜóòBýêòû±£Rî™geÖ×ã¤J“Ú²ÿÐA¿ùã9yæ´­úœüuíªthÜBÏÿ^*Öô)“%—æµC$ê‡Sü½û:óþ¼g?¹tù’©KØ?èý>æ‡í–¿wÕ_»å¯ÜîÏwæWcåËqßʧ#¿0EôÅÄyÜ&ŒÀçߌ”hÚSH ¢ð×ö÷Ñî—å}t¾ú‚+7­“ oUse7N7h„¬Û¶YŽœ8æÚo7üõs½Q[vïÿE>1Ä D½ñÒ+òÝŦO׬ŽÍ*\>ÃÅÃÂýN úøsÑÛhF$aH€„•ñâ«âÑW~š·ÒŒ‚6¨^ËÂ(ç 탵ÑÊ› #g¸KõSå`Ï¢µòóâufÔϦ¦Š dү幒e̶§?Å(1¼ÞoÝÁeQ‚‡Fo1‚ŠÎ<”:jaÚ±F¾ðj¨öÂË®tí5—–u™ü6L[(YÕÅØ)°–Á ðTÂf7¬p°Ž ÊÞùí6.—lTVðĨón=Þ«]ggV®íôiÒÊ•¿þ2 ãßwþ–ÓçÎH–ô!#ÍÏ*&Q£D•‘¾“›7oÊÅË—eì´ÉRCGñbáY&N˜HÂs&¿ÓçÏÊÝ»w ­ë5‘Isfc¾ÃHQ¸Jy—±õ ¬„Ë'Ìg E2—„¦l]½*üyÁü¿ü×c„ù~Æ™½t¡É?O¶rõÚ5ùqÏNóýâ¥K&í­Û·]×wn˜z;z¤ŒŸ9Mîܹ#7nÞ Û·š)pI÷w=g^v|v.X-xÖNk&¼XZ¼ÕP>ëÚËÔux äÊšÝx¯ -ê”ý@ÅÛ;çïùÖÔwâ˜'`¬€\TñmÄ`¬¨XJ =û˜N$¼*”,m¦àÃ{³wÉzñQS?l9Ûèýõ¥©GwïÞ•‹æIùÚ¯¹ŒiÕ†¶£Õ0l¥Jñ!Öåõ?n–Õ›7h»+GO7Ïï)ä-Uøg.™/¿jC=ž2–œREûeõðø«kHSV•ùuêE€÷m _Luo¸ÔáyÀÃÄ žAÌ1eûÏ!uû=qÁþ†úã€÷=ØvJ>õ,‚çQ³ndÏþ}ÎCf;KúŒ2AÛ6ÛöÁŽvâëáøó¥ÊÊÄ9Ó±ßWlX+ÇNªÏ½ˆ¯FÒ§NcÐQ©onõÅ 6 ”2§»5~`2¦MgøÔ}í yîÙ2òv÷ŽòVûæ’4Q¾ÐÓë¥#À>ÃɶÝ;̶ûŸ6õ› ~ GO'ïôîf Öõ:k†ŒÒ[úIªˆ-Z½ÌÌEþ¤KOµ<}!•×2JĘÃ<ΧߵïgyZm(g‹>m”Ë2ÅCܽ1êøR¹çd§¦ƒ’1ñ‹¯åÄéSRKG—¯_cF_,SÞœû„ïØ¸¥±–A±>vê¤Ù?p/ÛqªtoÞñ£Ù?fÀpãÆÞúƒ®2XG jUyM:4iaŽá‡<Û6|[Fèèß¶]ž¹üoâXÁK2èý¤k‹¶Ò\åþ_3y\»~Mb©WEÜ{Švbº:#É’$1å3}²Œì3@ZÕml\¢a”X¼f…9†‹3jÄ€+'”PL)y¦p1s º«Ñ¨B‰ÒÒcàÇ2vúi«ŠºSBS6g> Õ(ÃÊg÷î Ç0÷cA(kVùužk·Ñ@@ †2låÍʯÈzµnBvЧë9c?TPßéõžL™7Ó”¬Që U’»4o£ŠØ-iú^AÃ2áó‘Z¾7¥ûÀ¾²díJé«2ÛÀ¸çíüîëó÷|3é ŒÊCiDçF±Fo¾e²‡Í×ZwàYѱ_Oùq÷N“ïêbË1u‚÷F4Œ’9xã]HóÄ“æ8 _÷$‰%’F]ÚÊÏ¿î“&5êšcøƒëà|§ .ÚéKˆ-ãŠSŽë{f§‰ù«k8¯¾+h³zúD^T#Ú¦?.þ)]>ýÐd;hô—ú¬f™m\ï]åÒ}@_óÝþñÄÞ!ÝZ¶3ÏyÕ¯VCâÇgO‘{wKÕ¦udç/{\ûìÞãi#¾“³úÕ|§©tþ¤·1¼§ï*Ä×3Âqwn¨OjÝK“*„;ÒÀ8¶iû6iÔùóžŒÓ© ÔHRw´aÈ#ͽic_©1³M¯®úž‡-Í þxz'ü½ƒ¾ÚlÏ`pÌ5‡1>W.WQ>ÿ6¤ÜþÞUŒFøj·œÅw/·ûóí5øS9|ü˜ÌZ²@>þòssj Lœ×á6 <.0@zëïDÕ>ú˜ò7hôc$„ñ¢cÓ–¦¸Ù3e1£|0Wiò–|ñÝ×R_]‰_«XY¦o„if˜â‡–žƒ?1ïÚÿÊê9áØþVà÷S Ñ/iú^{ó{ˆé–O¦1âöhÝÑôïz~þ‰¶Œ‘>º™{Ào …›€¯~p ¿±á]^^ïñðÕt– :¼~»j¨žÄ_?ƒWÐAÐî–¦”,Y³ÒôK1 6tÌ(OY†é¾poË<]Â(‚¥Þ|Ù5ŠŽ÷m;Ëg_ 5ÊEiUä‹V­ §Îž17ŸLiR¥6>_4Òé(àÉ3gdËΟÌèö;½ßsý€á‡÷– ª`x’æêŽÞõ³dβEæp7U4àžneþÊ¥2àÃÍ×ò%J™ÑÁ Û·wè^C>•åV«²]nÿýŠÄç.üa~˜K}Jù]§<¥eÜ.Oßó°(õÔÓràÐor\=Út4 Dó÷ß5J. U©GÇ|áªåæÚèøcÊ”`ëbQ•#>ÿö+ùnÚ$“#œ0”Txë5Ù£S, õÿ´Ë2hTÈHö¡ñÂ9Øô('tzÿïK=üß±7DqBçžPä>ñ¹$KœÔx¢ £8±ã˜ü °×P޶¦ < Ñë]V :íÕ ¸hõrQ‰C¾’Õ_Rìœ4~³ŽÔlÓT]š6™ô° "V€•Ð–ÍæóÖ+Õeª*š¸+˜Ço1Nž9%Mµs„ùùû~ûÕü¢¿yF8¾÷×ýÆH‡ü`¤ëýÅ€® eÙÉçadÆL€TnˆëbÅ›WŽÃÐ^Ÿó•á²kß^óÜ1" ñ÷ŒVo^/Õ+U5†–=Ú>Ö{½†a‚ØVÀÏ Òà]12o¥ñâBû# ¸oß³Ë\¿Å[ L:{¾¯²›„÷þxz'ü½ƒþÚld ÏLB»þÂç%]ÛžÞU_í–ëDäïÖvxz¾ðȀ׊m‡eâ¼·Iàq€!uØSÇ–é[u†GR0Àb`nÉ}‡x^AÐFV{±Šþîd4žxè›Ò7*”;Ÿ™Þ/3kü„ñsÝåÄé“ÚOênvoþéGóÛ™SÂÎ_¼ k¼%muPjî²ÅæxBõñ™Bƒ€¯~0/ýýÆ>Ž2óš‡@ }xtBOƒÎëK|õs ßõÖþm•ò/tRx-cpú"úSùsæQ½üè}\_× Í±p7X FÁɳ§]Æ ~ÅÆuêžÝLȬ^pÓ¶Æ ÇHo_2mÁ\3¼{ÑYºv•ÌZº@–­[ýÀ)ýÇ©•ƒ‡WcÀ2õHêR

    ­ œÙ3eÕwo—Ùµ@ ƒ˜AcˆºV4óŒ`ðƒ‹›Ôk°€Wɸ™SM}ƒ+0Fþƨñ®Ò½À›ˆ=òà ±S}`Hû諮áškTq·²]Ë ¥ó§OÛÝæÓÜö«1e DPÿœñT~;zØ«aÕ=?D?Ucïó:Õ-®œž Pní4 çemÇUužU¸j”ÎjbpH­ÓbkL”¸ŽQ›Æù‰idhL[ö쬱PÊi‡ö¼ n ]ë‘H|´@IDATdÏÁwýÕ5›þ‚vz­ ó q>|‡§…¬`}FÐOü/œ'¿ñ0B¬O‚ë;;Þx‡­1ÊSzç>\o©®ÄÒ÷Ýn’J=N¦©õ{Âì\Iü=#(U›¾%¯5¯/ :µ6Þ,xVÎù‰.þsßÈï¤mgàÁóì/™s+i`^LazB=§œç» ãeÃ×;áí ¤Í¶—Ã{1rüwÅÑnᘷwÕ_»eóõUn›†Ÿ$Ñ øêïØ{ûãÏöFUλëÒ‡Pñ¿S³6rUƒí¡ü…’ˆ%n ô cƒ@Xðâ€À=¼”·Á"¡Ì`Tû!£§Œ× .•AB`œ‚b%½YÛL‚¢„ 2VB[6›¦0xZ¾^/XÖЧ#¹ÖYonþ˜ç öˆ!¥Æ ûß*¸¦·ëÙòØOH`,À¹XÙ¦¬äP5Øâëó÷|á7v\3¯ Ï¥Š¥Êz4¡ñD|Ä;€÷Þa¸éãý†».䛩ã5¯ÆÈcX}1 ä—ƒëB=90E«p Â@é4îTC#VÁÁÔ+bY@ñ®KîB¾Ÿ1U9–6«W€-¬Åx¿añW×Lú£„¨ È·®¾Ë†êþ.¡-A¬ ç+Ð1·ñ/l~ös†ä^(]Þ-གྷç¨Àð‹QCpuî×0(Bü=#x0 j? Ax&¨Ã˜jãôt©¦,aHB›ÜQ¸èôà ‚@ÐÆÀ+m V0j¸ßKsò½?ÞÞ _ï ¯6íÓâ5+Í;‹%DñeÄT–Í;4±|½«þÚ-[voå¶ÇùI‘@ ýzÕÞ4¿ÓB<ˆÎ1Z¬*†ØVèá· A™Ñ~ZïØ@ûFÁâˆN6¦¼ êþ‘`B|¬B!ÇEÀW?e Æoìãº7^7ü øê— ^W>š ´Ÿƒ´Xœá `ˆ>râ¸ÜQ³ ££îÞÆ9Á–p÷°ÀÍ"Ò<”},uWÿ­Ü¸^]¸;™{ÃM7îÚά±}îrãz‚@N 5(#~4KB±…5ØØÑÚÑ/gÎ?ë¦PL–›¡Á/£šx ЄŽ-þ£þÍg_ȇCÈ—÷”'P,ý2´÷'²bâL¶rÕÌW6Ös$T¸°cî÷p]24Q„FÙ¢/1òîM0ºŠˆ«ð¬€¬×©Pòìtìƒaníèô#' -˜‡ïî±´ž£ËPVziSDæoЩ íõ±.#¹Äx`lÙ±Ý0ôt®·}m4&¸ü¬ËPÞÖ)3085îÒÎ5Ǿ÷¦¼Í5ØÞe®2\ŸÉ& r2Ø{Èg& ä `‰À‡XB7!°¾§N¿î7Èž0o«Ç@I…tèÓCF:Ä,÷ˆçÿÍԉƀ`êŸÐ” y Ø­ýºr‰»Ì[¾ÄX'#qÂÄF«Û¡…ë¾ÝÓÛ¥\a ǧd)[Լ辮çLm¬¦ãÙ¯+¶˜ÎV˜~/¨™{ÚÐ|÷õÎ!__Ï^9utE¬ò‚€šÑSÆÉÔù³Í¶û<ëÁ=úh\ŠÉƘC£Yo*Ô_LÿÀÒ¡P¤ä§®z« S‹¶ÓlFö »®6Á_g.^ ¹³e7—9¯Ñ‡4õ=¾ÆjA£ÚöÃn.c¦ŒaU,q|Mß«Ãǘw yCüÕ5¤çЮ…kŒÑbå†uj˜€Ý¡¹àÝ…£Q£FÑø-K±1Œa˜\¤«î¬š8ÛÄ÷8¥1‚>6Ьj„yäˆùáë-]·JÛ U²jžY³"Iû>ïßwiëòœ0‚@éÇÊ4–ÛׯÊ@ ø‹e¨1u žVh_ï„¿wÐW›¶±Š°Ô" :hStncꂜ“ÄÛ»ê¯Ý½ù*w ÷Ît$øêïXCéõ Ã²Ìø^®S`íRzc¦M6[ˆ-†ß¼[èÏ –…•@úF6m0>±jVûRcajÜœáõa¶‚q æAð×íol å`ºÈA KúLfEOwƒ›ë7>5ÓŒéç LñÆ4þÒ5ªš,áÙ:}á\õÉçÆ`â=iO× æ¾(©Šåºë-Û†Älˆ™8·$¡Ú Äc€1Á“à8<*¬÷M%#ÝvJ‰Ýo?á]‘"™çãp±‡räŒ `ϳŸ°áG×ÜÏóô‰‘ɳçÏ»:ðžÒ<ì>Œ#_x‡ø*k ùbd±B¬bèyÎt=EÇAS=Irõêð6Ï•Ægü ›F^àfŽàžž£í7nÞòx.Ò‡¦lž®ç܇g²y«oδa±gÀ'nÁ¾ž·w×ñõ|qõFgÌì÷$0AaÄûíIp,aüø¦¾x:ŽržWïO¡,ž^˜eçY»§ñW×Pv¸0[¯÷óCó£ŽxÇ%oLQ._Ï×Fœg¬ç½øjW‘ïàU58òüù²íïôÕfÃ#ÇÁú¹&Òøk·͇éH ²pïïÀ`±W3J¾QY#O›©ž\‘ƒÑ C´%/ª7Û*] ¿«¬7nðÉ\ºhPûqÁ(/óøïð߻ߨÿeÞ©;ýxÍaÐN¡³çcÉøK]vM“¶ûõÓŸÍá±,õ¦x @`#"y’d^Ãëåa‚#z͈H€H€þsœ O«ÿ@o +jÁCƒ_XŠË«ÂËŽB$@$þü,Â}JHø#àIà¿KËu~Þ£¯W˜‚óF«F^ó x#€i`?îÞ.€ÞÊð°û¼ÛZV¯%ßöªÓ¯è*nk«UQH€H€þèañï|., Djþ<,Â}•HM›7G$@$@$@$@$@$@$4X#3!      &,‚I“y‘ … AÁÈLH€H€H€H€H€H€H€‚I€‹`Òd^$@$@$@$@$@$@$@A!@ƒEP02       ` Á"˜4™ @PÐ`ŒÌ„H€H€H€H€H€H€H ˜h°&MæE$@$@$@$@$@$@$ÑÉåÎí¿IÆ4$@$@$@$@$@$@$@$ô° FfB$@$@$@$@$@$@$L4X“&ó"       ,‚‚‘™ “ Á¤É¼H€H€H€H€H€H€H€‚B€‹ `d&$@$@$@$@$@$@$@Á$@ƒE0i2/         Á"(™ @0 Ð`LšÌ‹H€H€H€H€H€H€H (h° FfB$@$@$@$@$@$@$L4X“&ó"       ,‚‚‘™ “@¸,bDÌr3/ðd5ª÷*=Z4G©Üôu.Rû;i¢D‰"Þî×Wþäüƒ%žÊâ«ìž®-j4Áÿ°’Ðäíéþœå|Þ8Ç_¾ÎkxÛöw_þŽ{Ëûýëï8êÀ£°ñU¦dI’J†4éô½ˆá·|Î|¼½GÎ4¾¶ñ¬¼ÝKüxñ¼žê‘×õ@hÎõ•/Ž¥KFR%Oq_20Š3æ}ûð%Nì8’5c&‰3ÖǸƒH ü  mËö!üïˆWü/ðö› ¨ßèCPH¼õO…ޝz—4q’²ÄµsdÉöÀþ°Ü.V„'R¤”‹ÖH‘—ËËÑÇÃò~¼æ ¸­ê7‘ñ3³çÏyMÑ$N˜Pö¯Ü"%«U’¿ÿ&Å+¶thÒB^,SAbĈ!«7­—/¾ýZŽŸ>i®W$_Aù¤kOɘ6;yBf.žoŽß½{×/Yô)y»vÉ“=§Ñç?aÖ2uÞ,WY«>ÿ¢tkÕAbÇŠeÎ5é{“‡+c#_ŽÜ²tÂtI[<¯Ü¼uKÏyô²ukÕ^jTyÍ‘{Èæ­Ï¿UÍ|™2|´dËœå¾4M»´—­;·ß·Ï~É›#—Þk}yª`a¹uû¶,Y½BFMgXU*ûœôïÖKò<_Ò&÷ùù™¦©¼Û|ÐÕgº‡=Xý¥*Ò¤f=UrÓÊáãGå½O?’í{v™l%H(+§Ì~ ËB•Êš}¾î jV­&›·‘تÈýzøŒ÷Ì_±Äœëïϊɳåë cäûéS<&õW¶\Y³K»ÆÍ¥HÞrWÿM7[ýo¸Üþûo“_á¼ù¥cÓVR0w^¹rõ/4j„Lž3ÃãµÜwúbÅ÷\õ¹J‚÷qÓOÛ¤óǽ=¶3C{bãWšÔ1—¤º—Åù}P>òz¥—娩“²aÛ‰7®´èþ®3‰ÇíZU_—!½úIª"9ž§ú؉z^å¹ä¥5ïK…:ð©¶JtíG'«e½ÆR¹ÜsòDŠT²÷×ýòÃüÙ2cÑÍ^²@|=Üô S§zBu–ÞMoݾ%Í»u”¿®^5§Ö©ö¦äÈœUº~ò¡Í*Ì?ÃÅ`æwÀ`!BÇdÊÃhÓ ©É_P*Ö­.·ÔHðAûÎæ…¨Ùº‰ BOùr´ 3Z†%qÔ€ðõ'ƒRönŸž’$Qbù¦ÿ0­èdņµfÿò‰3åÐÑ#Fé‡Ù·ÓûòFˆò˯${¦,2YóûùÀ>Ùè ß‚†¦lC¾ýJFŽÿÎul3Ë÷Ÿ”a÷”Œ¬–,ö´Tmü––÷°+Ýe/?0.ŒútˆŒøþiÛ»›ñþô½dâÐÿIé7_vÿ87^®ð‚ôlÛY^»¾üvä°¼®Æ‹i#ÇHñW+;ÎÜ+FLy¶zåŠéïþ^,S^†|ÐOŸe#Y£ŠÀùßM–¸qbë{7çüv‡¯²%ŒŸ@Æé³4êKyû½’ ^|Y>Mª”*'/¿±^º ì#=[uRÅn•‘“1Gq»+Kñ*w%jv§-û[fwŒÜÝûYdÀ³³›âIDŒ ¼De ÔV.µBŸ—Nž©ºœaSpP§žö›p©.M[Ëú…«åµEOÉè^cÛN6ƶ™¤óB׈íÿ¥Ñ=µdù”Y²væi}#óX²Í˜™÷˜þ2Q`, Ô®›¹PÞ^ñœÌ=I.¿è’øæì÷õWå—é­Ãxâ<®¼ä²Ø2 Ý"ê}DhgÖȉÖî²ÉO¨µxl»ÕjZ¤í==cžœyÊé±u|!šB? 7¨Sľ7­Q76 ™@?ð¿º`•´oØ“'~Ó¦Mòó/?Ëþ!Ÿ|þ™œqÊ©ÖþUy.—=÷ØSiÆÚ·ß'£¦L2Ån³péƒ:HI‹Cå󯾴ía‡ÿüó/5 O¶ßfL5²‚xóYÁ¸x I+yaÎ2Y¢ø«òlÅŒí³Ò7˜Â¯¾ùÚþÿ°é#aÆN›$3”aDÎW£êÇŸ~”g_~Á~ûÝw¶-‘‰ä ·Ìã{TÏñOùå×_dõ³kå”OLƇǙëˆWˆ12 C7éа¹¼2¥Ü~ÓV‚c{ÇO¢¾…eŒY¼ÚDãp-'?1]>þüS)®Drѹç˺—^°ó„U ø°.ÝùºæzY¹nEààµ'šjƼÙr÷m¥ØÝäæë Ùu|kù³2cø8!*"*'¢<>b¼l\¶Î&Ò轞ªo0ÃDP!›ôº!LÈ‘ïüÌYºÈH„g_~Qf.˜#Daîmî…>J¼„1ž 3朻n¹Ó¢h ?¾×qDä ÈÙÊ>9ýäSäÞråáÉãÂ"ûL7ÙèܳΑ1J€¼¾øiAq¹îÊ|–º°h #ðö7¾·¶µ·ÿ~ûÉÀŽÝeÃÒµ2ü4É{ñ¥¶<ü„ë¯ã¬ç°aQì3Õ\ÁFPÌÛ¯/^#zXމÌìo¨JÔom”Úmšò3ƒ¼ÿÑÐÌÈ V¼òÆkòéçŸ[T¿™ó‰yæ‰E6ïÍóh¬ïä:O «ú><Ôî©>ùHFhÔRY%tÝQ[£ë˜×ß]õ¼¬œ6[*Þ±9*äJ õmÛÅæsž57æ¿N.ÐcÝZøf‹´xeÃkvŒðgâ€áFp”»µ¤O–'{^¥[Çø¢½ð¼Ûg°ÀáXþéü“H¦ï0o G½¡°¬˜ú¤<ûäbiW¿iLÏฯ¸§™÷YÏ3¹h{žm׿½Zu™žRáöÒ¦û%„2C$ÞW®’AqZ³|ÓÙnÍãó3DSB‚vnÜRž›½Äææ~Î!Qè³5èˆ@*=èB}âûúÛo-²xèøQæÝNfsìÄ®zÓ3©ôºFñSÏ®“ïÔûë¯?M‡O‰ƒþKT|ˆtýFmHÈ 2ì÷ß7G(ó[©RºœFN/°h[°‹þìr” (¿µZ7–þ£’»n½SÚÔkb§Œg}î3Ï‘†ZËõÜ·U0Š7Æ+i AŽÔȉÓN:É~–¿£”Ê_ÀBïºÿ9âðÃ¥{óv¶ 騝§zöŸ·ïñî¯|TPE–”„:mšY[¤2 gh¾rûúÍdÂãSeö’…úûté¦mwÔGŠT*¥,ÔkæU OÛiËŸ—^_¯†öå1èõÚs¬VÑ‚…ä¥õ¯šÂ:iÀK!(]»ª,\¹Ô¼Ö7(hÛ—3§4Ò°ö÷>üÀŒA˜° „öŒVbeŒÝkžÖé=H0–j¶jlÆtY ×n¨¤ ’c žu«Ü'ƒt2|æ¥Ä¸ Õ0ýóså–Þm:KóZõLè6¸Ÿµñ£z°÷ÕTŽößß~óç„cŽ3eä(%˜èçh%0†vyÐŒ† êÕÞ¨Æò©uÀ•4Ò¹øÜ 东ÇȪisŒ8Á€ ÅtçVGvX´i9áØcõÿq¶ŒqÿP·>‚G( Bê!' ´‚ÔP%“ɶrÃÚ¶œ(ˆ ©úÆ6}ú‰mJHã‰ù"‰ÎûCÝþè#7{Ð!1\Ÿ~îaîÀ sG¢}fìÏØÿã­©n\OH­œ € îÜËRoÀ(™$ƒ¤B@R@~Ýuÿ½òœ-úô¶4—&]ÚYS„ïMÒq‡@ÁÀ—«{¯¼þæ™2dd†º íÕ˜µhž¼öæFÛ>ú'Õ\–ÃõڦתJãÚòŠF@U/[!º»E¶Ð—_4Ê$^¸BÚëÀûd%BW=³Æ6}°M'#fH¢˜¸†©fß~ÿ½‘A¶@ÿŽá?ß&°âeäþÊ÷Z I1}/ÑH/Ò­8þZMíúÈ(»Ïëwh¥sà êxIŠU)+/¬%.öÉóãÝÞ·4RRR=¯R­£ß +Ÿ)[ªVUiÔ¹­äÒ(æ5ëÅŽå_ D %Ówçè3·Ð¼AÒ¼kG)¦Ï²F[HT†ñâMW¢¼hå2F‰ÇÔÇÀó]»M)¯Þø‰’«n½ÉγZ™òRºVY±öik‹”<±A²Ú·ÐÎÝ·•4²s ’ûŒ³-R¢»’„ã"Þ³e5ö6Øõ Û%û¤fÊz n(sk†MHèÔ¨¥•xúƒ Àu†wX¾=ã'ì“ì“c|óÝ·Vc Bü!¹Î<ËXÓÚ­›ÈÁª 6ÕÚ D*ŠOôLTâÏÚ&`„"J“K/¸H \™?í!¸`ùË£2<_x«ŒnMÓ† ²¾A-‹¬!Zˆû ³}«¯ã‰Z'Ô’`¼#›Ï;cÿ9ŸàQcœQW¥Sÿ^¶=d@«: íþJ…ë¢o¢»ÚF9^­†9÷|”Œ‹nÏ÷DcÏÑM¡®˜ªÄÚI:€zƒ¤_Q·ÌH½à¾ë=b°@z¾·êñ€\¢ QI7Wf˜Kï‡ó ç“´?ÜÓ9Üÿ{Çìw:f‰œ8L•8î ‰0üF½R:·–Ùê@˜Ë*ÞYVÎ8ùTKSÛøÎÛF2†HªÐV¢OúIôÎ=ÄwŒ±dÏ+î³dëÞ|ïo\ðä¼Ï?'—\§^dGàŸ†À‰J:'ÓwB_ ž6ç û‰¾Ö²váÙ ¡Ë¼:dü([Ç|uçÍ%4:ô4›2«]¬d>Ån™ qr w)aQ9ÃìhÈìr"3v…ìr‚üi<«!䟓\¼z¹…çÁ2¢D~¢ëI;2zÊDûšŒ% Ûatãuá*™¯†±… òÓ EäaäMUXg/]hÆv0X‡RÎÿ „;¡ÐÚ‡ê™^§èUëž¶4ˆ<¡¤WE¢R9‘D 0(wnc‘$x.1êèzäLÅgéÓ«3xä¯Z¡([¦`ï±'íãÀ4ƒ0ôx­ ÕÂ"5B4ãíxõ|cî·Þ´õ‰p!Zcœ†*sÍ.ºéZùE @Â-玢Å#¯¶è€fÝ:H¯V¨@¡è©¤!l„jò9ä^R¢Z93 ðjNWÆï5¨ 8¢Dtle}Àû¹^Óy 8ðƒÏ ¯nõt®‹‹ÉJß(„XáAªÜ¸NXdŸ­-{t2o9 ZtïdQ%o¾E‹Óü †àætÖQº AH÷ÀØ/_¿¦¥_„åDRAÄ„Œµ°Ã%ž¬ë2;~ÂöÉ> £¸iTöÛo߉qÖ® ì+D‰4ïÞÑ¢- (‰ReØ7ÑùÁ¾R0“ëMj€Q>"7ßPÈÆÜ×!…‹…D\aô°‚!úá'Y]ŒïÌö6¼qà<²Gó–ã±'¥%*Ô[ DCî³Î¶Za=éõ;´´Ÿ©0c ûî»}†?ƒýFI ¼xÜËn&ñÂúøÏdcð\U°Ÿ×|ĨàDˆ¤ˆæ«Pd”uì{–Ö…!ꉈj—„kÝ7Ý\qÎg*Ùú¶)Ka?È“(a–§ú$pÊàQvO4z mlÓ>J´BàK”Q-œŠþñçÊfî€ ’ Cž¼Ñƒ|Ì‹Î=Oòœw¡µ»ÏÞ¯Yhg{>1€’=¯H+I¶Žc@Ðߨôél‚DJGÊoOß|[G »H¥ï„èÊèóo…êDxâ .ЩÞѨ$žé¤vq_˜ûüØóo{žm̬àܾøúK%16;FâÏu£“A˜ó¾QGúI®ÓϲçNôYC}qÂ"À埻Tz0iÆ µÁ„þÃÌÞ@Çy Ѿé§M»¸§~¸2Ø'_yaÌfì:âÐÃ¥‡¦ ã(Š:w8U¡Ì1Y¹Q-#pŠC$W.YÖ ¶Á¶ uÞˆ†&䆲·Z)µ¤¿3FS9½i';d—§„ðÀÀ •Ÿ~Ú&Ma ºtEd¢¯õÁÈB¡FŒšÞšCNmêNP¬-^Ç%Å$üÇs{èÁÛfxð“ ŠsŒñ"KÛDò“ÖvèÒ´,ž4à!móIx9¡5ù”¨@q¦ÿs5%õ"UT1h€8@¾ÔSˆ ½hÑ÷[Œ¤è6x‡y#3àûú£† S4%ü_­áöí”1 dm„óJ„ ah—¨‚?tüh# 0†ð”ì¹çV±Ÿýñ”æ-QHjµj¢õ'®3 Oé+UyÁàDðOÔ73PïÁ€› ì·ê™µ¡Œ”d IVûŽI1DúÇ ^¢l&¼ö‡èX!}$z1Ä‚Iмf]©¨0Q! §i—V³~µû¢«b×!ÃÂ-?2;~í]öÙ›ÓO¢Ë;øP#ßXÆ9F Z0a’ã¾ ’êüHãb2ãMëXø\ &QÅ–ð³0ù1y¼¥X…¶¿Ž‹þ`¾ã93} í0¦GL§Åb/2ò%÷0½fQ9T£“ˆjB8¿d÷~*Ì 6À+Ú6÷‘-·ä¼6Z NTÏ~õ¤ç¶ïD#I6ñü¥›C|¢”G…{G§¹GëgðÚ@ôãA%‘Y#'Øü“n®à­/\‹¬l>5[ÞÓzÖ225´á:¾ßP«ýÁýßyÀƒa•(!’,,$Ê„º8Ql’aHÎûR­T´`a›H¿ OvHªçUªuj yÌrù9*§z,¥/eG¿¼ G ;H¥ï„ãð¼ÞÄFô,D"©…Ô—@è3bh†Åíy¶Å§›ñLH&?«ó(*a[æc¾G# ãùè~þÝØÙ¤Òƒ9ö‹¯½"Wë›+6¨)7U(iu¢xžRÊň"µYXNl\û±åÏ'š‘@di4B"7YªQíŠÕeìc“͆§ˆ:©³5Z6TgÐ]ÑfwÚ÷]aÁ› ˆ–Q×ä½Ê!¬dҸ飂q SD!´Ð/^×I õkD7µïxÖ(†GM þSà©ésõ˜×Z]j+DO2ä 52Vix8LsB˜1€×¨!Œ¼­øP\**„ Gß,]¾Ž q²R‹^áù'w¯Š>¡Ðá-àUPûø­†(ýQI„ aíxÊy¥M”;õP¢”cÀ°Í]¶È6¡&É‹ë_6ƒ„ÂQ£‚ ðŽî»…hzý­±Â{¡ý råÖCZ8õ­ ¦à23uöL[ïÒ¼a33d³Ò·ÐÐÕ—^.³Î?cŸ¼‚ò£Ï>± ¹,Äp†¤À˜Âã?†Ø†Ô £Ro êqb‚ËxùáǬ®Á´ÙOdˆ6Ú¼Õ¶y-QfÆÏ¶{f\òºbJªFÆ=i=õõŸ|Ÿ;öQ;?"”6˜ÙE…¤:? q+Œ¦oPr½Ff²Š{RrPd=^èã ¹5 #ÑX„¸½£o”I×7"zH%ʧ©f!å+§Þ“{è?&pÒx˜G·áõ§!¢ê= k;ýäSámþ¡="RaÆœ'ˆ€1“Gñå|ü±¾¦uL,݆ÆËgvºüœ›ÁhN6!øB ‘Ð9R¿ˆJ›»tqXûÌ¥óRTòkÝ¢^V®{ʼýaÝIÇŸ`)6O,œgdÑ©æ jô0¢ó6~3+‹Ó†Ž±âºÕšÕË@V@ð"ÎëQÃë‚I…Aˆö¡æ u‹˜s 'G¸v\³¨$ð~õšNêœFÌJºfUÞUò%Ùój¥ÎóÉÖ1çT¢"OÑFÓîËPÔ*«ýòýìD •¾3G£S"GCjQsÌù¤q_S«%Hëûš^Áïìz¶…¶Ó}òºmô/žWaΆTqqþ.RéÁô‰ˆV ÉàØD'à™}ùwõßûÏ@€ êÄáLÇÖ@Hù`^¦A¼]O l›@è2F³ Â>ظèë¼ñò lÑ‹ãèP¢aãm½°ov}îò ÂÆaßyÅ(ðÐÀ uƒ“%½â‹¯¾²ËSO–ÚKôI1EjXðÚJ¼· ^³HçÔ[ë?PG$³‹B‹ç-5Ÿ¯ ÿ›hªÃ&%}è?!š©Ôÿ€<@±©®F{»ÞÝ­‹³Í·õÑ7 à e9BÓ[ô& &žiÆõ¨B: i!U5÷”t! ØhFVûfÐ?¼i…F¼ðp  70Þeêt`¼‡‚¡ñÛŸxìñÒVSwHƒ`H²1HäÔ:Ïñ¦$úU@ûwG‘bV˜4ìýd>% …T*jŒ@@Q&ôÏisfÙn|'Å,Ý\ OºBã{ëØNñÄj´ñß›éÛ‰xcéqÔÑ÷Ä õ)¸¾Ôå@ ©(˜‡€'Ñ1sµÆ oBá¼Ho©pgi+Èlmù“ ÃO5Š‹}¸™£y;Âë{³*©žW©ÖAЍž^®¥‹Ýfç›Õ>ùþŽ@v#}݆ç4)žƒS4Ï¥–±Ž>½Ç=È3•çB¸ÿ²ëÙ–ÙsFÉ&½â§ {˜2Û†oçd'©ô`Žƒó›‰è ôxŠg󦝸hõìì“·µû!@= œöM·†À`¾}Rõà è…ØÁµ(Sî©möN(¢ßŸP»+^êi)ô7ôV¢dѧёOÕ—^¼¶qC¦mÊøv·ç÷.°àd+5ª-ýÛw“ç´")ÂÅj°ß§a%†t­%@Uýæ,Õjñ?˜rÁÁïUÏ´ða{+ kÔÔCfÔ³ïx}$,?ošÀ B ®Þ´¾}ò}ñêú†’Ò^ßÌ0P#0â…¶y%à’Ék´L¸þ£†Åof¿¹@½5ª``§îBH}Ž{i¨ã`3îî  ­\.·*bÛàÃHõ+XãOX=¯kS·‘[¿l~ËF\ÄÛ&¼×(¾ô¥µ´pb%MKÀñV_¿J4)¶·Gh\^Ó×*þ®‘Ÿù¥TmR'æÉnß§›õ—7<ŠOt †B”ohÔ±‡üùןóˆ’2ÞD(DجK{y¨k3 I©Ñ²qŒ ¤Žu–=:Ó®?†`Ô’•¾q|ŒrnØ j´Å Þg˜Ã±úJIr·¾W&ñn}ûBðàÇo_ºø­F2Á†ó?*§å¿$úÓ¾SûƒPuÞÜBtK:ÉÌøI×iS¼Sù1õv‘Cã ¥Á ݲNÅ{–tÚÏ¢\ª6©këÒŒnû>=ìµ™LdÜŸ¼õWq!c•,9ù¸ìZiñéŸéØè* AÅë8÷ÓšD(TkZ7S}cjŽ0ñ¾<…¤õ\æ.[¬çÖÆš†¹¯EC{[ Dä'ožÐC™1EÎÔȇqZÍžÔæÝ:Úºt˜AhðSæ3R°¨íÞ¢c ¤ù“j B&ÔkßÂj”0¡– F<„f¼ÌUog[}ã÷QQ555'x=ã·þf~L5W0o“âÄÛ~^Y°ÒÆ+¯Â:O£ÌÒ s\¹Û6“ÌS‡fŒ<#jŽù·‹ðªCæ=¤c¿:Ïw´(6Ó=¯’=Ë )4¼\ï³´x3d_=gæmrÿñZ¸8ÿRé;t{Wçûðœ&Í£¥Þ³¯9§> ¯eNZ¦:¨Ôm ’϶ÐVf>‰œ£¦o"âùD¯±gtqv5éôà¡ãGÁöâÜåVÿ €Ú>.Ž@lä&´3§#o ÁyGñÌ®ú6Ë _mTOEÇÅîà­lCÔÞ…\!Ïp”E‡ŽóüwµÅSµÀòÃ=úY6Ý®=޹AV}dâõDWðš O&[)™U “ƈF_²v·g9 -J8瘪¯™m“hÎ;¤Ùdv¿èv0»Ü(׉$QQ—°ׄºà”(Ï 8&+:Iê Ìa¢}9FVúú˜ì“k×7ÙxK¶ß?y9Þz« †o"Á†ÈIFÎ$Ú',/Æ[I ËÃgVî_ÚH×7Ž éÈû@ßgÉÆ0¸ðv”D}O‡ó퇚0á|³ãs{Ç`Væ¤tsó2ødǼÅ&Õ¼¶ãØÔéˆFå„ué>³‚Iº¶YŸìy•j÷ãyGî³ÌôÉ·q²øûÂâuuf\}ûM6¯’Ö”hîM7¯dw?“µÇ\Ê“(´DÜ=¢5tN½ú’lÕã’õÁ—;‰H§£çâ<Ø‘ç_¢ãù²/8Yþå×LÛ|Ìëèu‰ÆQs8RB ]@²è»D`g‡üþÃæ¨ã};8as+a‘°G¾ÐpvÈ8Rv’ dOˆvH¶/wGÀp2‹@”°HT¸:³íìÊížš>O£;ŸµhУŽ8B#›š«ÇñÕØ›¡ve_üXŽ€#à8"é‹]žâÅpvE Ühï—OÖúj­A:”‹#à8Ž€#ðŠrjÜü¬é«»‹ð¶êê5ТAHaá5Ã.Ž€#à8ÿL<ÂâŸy]¼WŽ€#à8Ž€#à8Ž€#à8ŽÀ¿t_]ð¯†ÂOÎpGÀpGÀpGÀpvœ°Ø]®”÷ÓpGÀpGÀpGÀø!à„Åèbû©:Ž€#à8Ž€#à8Ž€#à8» NXì.WÊûé8Ž€#à8Ž€#à8Ž€#àü‡pÂâ?t±ýTGÀpGÀpGÀpÝ',v—+åýtGÀpGÀpGÀpþC8añºØ~ªŽ€#à8Ž€#à8Ž€#à8ŽÀî‚€»Ë•ò~:Ž€#à8Ž€#à8Ž€#à8ÿ!œ°ø]l?UGÀpGÀpGÀpG`wA Gf:ºg޽2³™oã8Ž€#à8Ž€#à8Ž€#à8Ž@¶ àÙ£7â8Ž€#à8Ž€#à8Ž€#à8Ù‰€Ù‰¦·å8Ž€#à8Ž€#à8Ž€#à8Ù‚€Ù£7â8Ž€#à8Ž€#à8Ž€#à8Ù‰€Ù‰¦·å8Ž€#à8Ž€#à8Ž€#à8Ù‚€Ù£7â8Ž€#à8Ž€#à8Ž€#à8Ù‰€Ù‰¦·å8Ž€#à8Ž€#à8Ž€#à8Ù‚€Ù£7â8Ž€#à8Ž€#à8Ž€#à8Ù‰€Ù‰¦·å8Ž€#à8Ž€#à8Ž€#à8Ù‚€Ù£7â8Ž€#à8Ž€#à8Ž€#à8Ù‰€Ù‰¦·å8Ž€#à8Ž€#à8Ž€#à8Ù‚€Ù£7â8Ž€#à8Ž€#à8Ž€#à8Ù‰À.#,öΑ#;ûímEØ•Øî¹gò!“c¯½"½Úökª}Ù:Ýþl³Ç{H²óMÕ~fÚ¦ýì’D}¡ï;ÒÚJÔ^vô,÷ÙgŸjj¯=S_ïtëÓ;Ýþ;ÔélÚi¿}÷“¬ô/Ù5=é¸䘣ŽÎr/“Ý#Ynx;`¼§Â(3÷ÛÐN"IÕvØ>éî§tmg¦ï¡Ûûùw{{ûêÛ;ÿ¸oÒÝ;ÿ”¾z?d¤z¶0¾“=“µçËÿ½¤Ó¡·÷Ì“é¥Gvø6MqìsN?s›å;sÁ.aŽ=:§GÞÿèC™0sš<úäã±¾/ø?i^³žì¿ï¾:>>’“Ç[± "_Î?'·Ì3ENÊw‘üöÛo’•¾5¯QOJ»%Òú毟ù…®PÒ~Lìÿœ}ê¶¹§EY÷Òó–…çŸKî)[A.¿0üþÇï2ù>yœau[á¢ÒBÏó²[n ›§ýÜ¿ýdžžïã æHaÒn¿=zðÁ2eÐ(ÃzÀ˜á±]¯¿*¿ôjÑ!ö›/ϼü‚To^ß–Ý\àF)[âvÉ}ÆÙò闟ˬÅóeĤñò˯¿ØÃ´ÆÝ•…mŽ=*§¼öÖ™2{¦LŸ÷d†ö’› ³ñ=µ¥„މC9Tž~þiÖ­C¦ïÙFÕkÉ]%îÈp¬aÆÈGFeX–•\㩃GIÙº÷ȳ/¿¸ÝM%º¦p€L:VN<ö8;ç‹Î=?a»ûõ’isŸT×èÈÃW殫ï("o½ÿnÂvR-œ¦çvÚɧl³ÉìÅ ¤EÏÎÛ,_ÀÃíF-åÊK.“_ûU–>½Jºé'_~ý•m ~]š´–;^¾ÿáÛ½†ŠÍ¡=†sGO–rõjÈÊgž¶Å(k™_l\¦ømÒ§ug9.ïy±¶O9á$¹¿Ru¹:ÏòãÏ?Éì% ¤ïÈ¡òÛï¿[û©Æ6¤š«Ó‹™aíDÿä)~ƒÊ_@º7o]û~KõòòÞGHî3Ï–º•î‘<ç_hýå¾é=b°Î#ض™Å-Ö°qþC´¯ßTŽ>âH¹·eÃÿÐYû©þ[HõlÁ†â™yÍåWʧ_|.«žY#û÷’ï~øþßrú~Û‰@2:•n˜ê‰ôÒãr#=š·S‡é^òûï¿IÖeÓ?Z3ån-)çœv†4ïÑ)U³Ùºn—ÙÚãl %uêœ'v°…ÿînµ+T•K/¸HnªTÚH‚6÷7’žjÐÞ¥£~ÐØ‡eงtÒ¹—œ¤ÆHã.íäðC“‡»õ•­Ëâ§VèòdÁ¸iòöûï™ÑÉyH§†-¤tjòÚ›ä¬SO—Iý‡Ë«^— ™ `²Ò·~£‡ÉÐ £cö¬SO“1½É€1#l‘ù.Í+·ÞS^Þþà½Øvß'yH@æ ëÒ[†Œ)õ:¶ÒH½¥«>dé3T ”Ý–‰5˜âKg5ür™u{ôûÜ}ëR]I¤£Ž8"ºÊ¾_~á%òüú—¥Ñ[ ¬ß·tgœ|ª hßMJT/'/¿ñš]_ Ü9ÎŒÙREo•2Ån“Ûî«hêyg#OŽœ¨“ÝïòÄ¢y’îØ4—3O9MJ(æ¿þú«Þ³uíšÜ\¥LÌèܦÑùõþÐı2iÖôØÒŸÔ0ÍÉyäQrß]•ä–BE¢pG%Ñ5½8÷’K ô³ 敟ùÅp¶ß¡~39õÄ“dÞòŶ8Õ5Šî·#ß+7¹_öŠDKA5T"hä” ™j®Û.v¿\Z¼ ì¹×žÒöþÆÒªV©ß©•@ÌŒí=XÚ÷ía$8rÏATNzâ±Xû‘=[´—}öÎý“n|…ÎÔy¤é½uÂÏØgŸÖäéž•|%oV²s_™<`„á a—nl§›«.8ç\‹Vº¶tñØñ—%O¯”‚ån?å€ý÷—qV"f‘‡t°â0P Š!r_«FrðÉ%k~úùg†g·Øü‹#ðC ÏÃC2Ì[ÿ±Ó÷ÓÝH÷láùñgŸÊe%n”M?ý( ªÖÃÆJáŠ%M'ßOÝ»¾¤Ó¡wT7L¤—V)y—éù]÷5â¢äÍ·È(ÕÑÏL¾çîíì}Ö6OߟµvSî‘;¼K‹ X7c ÑÐ]”5x° +¯¿ýF^|í5¦7_O"¨îoß<æME‰'<`€¤:6˜”-~»EØàçšôV%”‡ùÙÊä"©Æ3}»àìܲbÝSFv@TÐwŒ>ï|­òUíþ~{Ù³²bòRáöR¶Ž?ìÏýÏ=½~þ*ܱ‡Ý°ÆòÑJZ«zWX”á³`¾keöÈI²qÉZyæñ…6nãÓm]ÓÂ×\/}Út2e›ù¯‰KúƒF¼ÊTmZW~øq“3Õ5 * û­|t–ÝÛÌ‹jAˆ^˜:x¤lX¼F˜cðîùV¯{¸/ÀÏeÝ-b÷d*œˆ€áïп§ÍDAµêõ€‘´™õ’!â†cÝ¢½(YÁv4Ÿ&l‰.`’n|± ˜Cšô|h?3ÈÉÇŸhçÆýɽýÍwßQÁFéÆvº¹ê"½ožyék/KCÚ‡ð›ON®eë»°Úî¯Õï–GŸj¿QJ$³¸ÙÆþÇØ $Ów˜#Ð#Š^_H–ëœÊÜ×¶n㘞AW’ÍÛ£¥{î•ÕȺ{ËV´3¿_#•j”«lú Ïǧ¦Íæï Ì…8Jž¹ÈžÅ ¶sHúöñOG`g!êÙ‚½sa®se°:Âx^ñ,úÈh ÇOfsì¬~z»?©thz—Ý0þ,é¥l󫎵à¬ä7:R¥dY™½téö¶`ýÙå„FÉ(%®Õ¦© ;ÂÂË[×id§ CÕCŸû̳ÌÃ;H½ömt]Þ‹óXíb<×AxÀàyDÊßVRnTŃª\ýûäˆCWw[×N=zH§Zx»ýˆûS§bum£”†·S£«…¤2 gžrª´Wƒ~¢zç.[(g¨¸kÓ6Òup?)Zµ¬~£{HX£à¥×_µðhåç =qÑH.Ì}žÉ×È O.µkBE !’æ¯XÛ ƒªˆöeÅ–ýUê1~þÕ—cë!å0W=»Æ–¥:öÑGižg Ú ¤oAꋤÏDfПúj ¾2o…Ü£ ­x{iK/"D–hªB·¦m­´ YÁýIR³u»ÜOA†jZIvÍt¼n&ßÂr>!Tð˜OŸÿ¤¯VNú&ï(#¤IvMI/"mb¥ám2¤™`|·­ÛDï©®Q8^=½¯™_Û<ØUç‚6²ŽqþøCãå“Ï?—2uªËœe‹¤Ÿøù/Ëv}¶½¿‰,Z½Âæ¡°0N§)q…'¨ ŽFˆ®ä%ršÎEï|ð¾a±‰Z¥T¹Ð´}b<ð|Æ{teºñŶí4¢ƒ4¥×ßÚÝÕ¾wÓÔH+æ±Þ­:ɹgž£Ù8[—nl§›«.Ö4žãræ4’è¥9ËeíŒù Ilˆ9R N‚€á3HIxÆ-)ŒHfp³ ý#°€àL¦ï.ŒAt܃šÂDˆ0äEÃê5­'©æÆíÑÒ=÷¨ýs‚¦Ô!ÇêwR ÑKHeä™Õ»uG9îècl}ëÚ M¿kÓ§«:[FK§-ì³Â6ò?ŽÀ.B Õ³%Dˆ¡Æ Ø ØJ'¨®íòßB • ™Ñ £ˆ%ÓKÙf±ê~%n¼Éì lRÜ:à@©¬‘ýGoM#¶·3¿ïò”뮼Z0¯Ñš Á‹ŽáŒRÞ}h3v¯UCþ²U¡þÌÎýH%%N8æxy÷ÃRbqÒñ'¨²ü™¬}ñyónãé 0Œža¼Â‰ä¾»*J³îeæÂ¹¶š|mrÆ‚<©ùÎ^P<ô«Ÿ[k z»¾ÝT±_¦^Ò±œã°ßê-æøù.»BÞ|ïM3¸Bûøœ\¹%Ââš+®” o¿%*ùкNC3\ ÆÈ…x8UzÈ”9KY“L¤°>„¦Ÿª.„BÍÇ5u¢mûJyÁr· žn„:il¿ùƒqE¾t2ùHé7ÞySŠ©AŒW’ÿ/¬ßlìblYqÔep9ò°#,…¶ößok#£´îwiÝï¾z¼ï5bAÀÀœ«F¤ „À„¾Cåê;ojIT-u·U!‡v¹W˶/²Ú·ÐP¹[î”GgͰs Ërq–Eƒ@b|üÙ'R]Iò¹0„¸~é„H˜Ë/¼X Þ}Ç6›¦«(M<íûõÔˆ•ï¶Ù—ä›!ŒgÈ !ꇤ“d"ì‡Òwø¡‡ZÄ !üäÓ·¬Ù@#:Ûuˆ¶ ù8¨CùL#(†+É/GiDTÿv]Ì{þÜ+/ÙêTÇ>p éõÍ÷ßfhŠHˆÉt㥙ñÖ²GgÁðmQ³¾‘Œñ¯Õ;AšËì¥ ­ý ï¼-‰þ©yäÃxö‘×ßÞh8"<誾âßy`oó|°ïúoÈí77¢“ß©®)Dׯwß6¢+¾&Fák È¡JPMÖ±$³×ˆºá\ˆŽ"­C¿J¤hj—æ#ÖÓ¨ Ήú$¤»Ô¼»ŠF§l®Á± ‰ ]sThX+Ú¢4ð\&à Bõ ªjY«¾‘%x;ÿÔH æSˆ/¢¤¸‡Zôì¤ß/W"¸©!R† *H!)Q-}¨a¢ñ±KýÖJÒpÝâeý›oX¤XÉ"%,íæ)€JTW)ÑØN5WQχù‚h"æ1΃‰(¿|w±È³Ðj¬0†(¥°<|Ö«|ŸÝËO¿ðŒõ•åép ûú§#°3@J¦ï„ã‘2öØÜYö“û˜zM86RÍDVeV7ºäÜ ¶ë¹÷ѧ«žÔÒú³æùgMÉÎ¥Ž°/¿ýZª–.'uÕ)õÄÂy¶þÁ1æâü¤{¶à\ª^¦¼é!DæÕ(Wɺ‰èòßB •šYÝ0 –J/eì»öª3¿á–ªŠ®„à {;úÂ\ç©]þ~R;%'»>w9aAŒƒ@Vp"‹ŸZ©áy9,Màt5>Q9¬ÇC/¯ýHðgêì'Ôà-¥!ÐËeÁŠ¥2cÁlY¸rÙ6[âµäaäÍwßQ2`¡rõchó?Èo½¾ZÈü‡Ÿ~¤^´¶ Ñ3Î1B€â”Ñ(Œ¹…)A=¢Xפk;‹$aÀÈ›O×oîç™§œ.Ë´¨eÔ#¿Dk?„:°AɃèz–aŒà]漃àL¨©Å x mGF òúÛ›Ï+.¤H[÷ï’b×Ë/š_2gÔd¹ È5V  ù楋Ýj$E/%uaûQ B> ­¿õÞ F¾àmÇcO¨7äçG½aç6Ö—¥šëýЦóR‚—|¢‘WQÉJßB;ú`UEC´µ†³‡ ¢¥~¿Y=Gw)n!Üž Â8[¾ö©ðS¿ÊÒD –Š k',†šj¬Rkå 5–£‘ ±†·|!õ&,‚ Qü¶ÛóƒëÔü—ÄÎC f¿{³v‚ÈqBj!UÎ=ël»¶Œ³¨à˜2ða=÷·¥q×öÑUI¿‡´“ý¶xãÆäËAܤÏ5Oê˜ ×‹Z„-ys #åXOdìðE:ÑbÐrü?éØãM±&êébUŒƒpœ}Ú™¦(„e‰>™7 T ;fìãmç!'3×4Q»%‹Ü"¥Qâ*Ý5úkKCÇ òÜ«/™²!ŽÜÇ}Ú<V[Vˆb oWŒ1¶dõʰ(-N›IÔƒ¥f›Æ±¹7‡ÞÃÍî½ßHÑÎaÌS'ƒs‚„%2†hæ`ÆTa:ßè3"•$_ÌiDÔÝY«J†(§Ð)[³FLnJŒ^‹§`@û®2²{¹½F¥°YÒ±j®"*‡Ú¤Ç‘6‡@Ð’sÎï<æ3Ò±ºék¿ý!EŒ¨4Bëÿ • 7ˆG`g"@ñãdú„²|íÖùf¥ŸÜ_'꼚nn̬nÄ1¶ç¹·AIà Ü“„Ó Næ?Iô¬ Ë4ÚNê„_þéìZÒ=[ª£…Zhk4j§#:Á›:¾CÄ]Û[?Ú?tºaÐßCÿ3£—bÛ;šè\Š™ßx÷í–öG:ó_%Šþ“Ê鎗ÕÏ]NXì¯Æõ¢Bž¨†N>ä¯êýK%Ñ×ú`dyuãër]™â*_ÜR,¨;ÁC©Tí­;ÛÑ‘÷¢KÃnªDî­!ëkí7žÇd *Ö3Q­RÖ”OÂó»4neoÒ 8 !6Ñö'=1ÝBkˆÀ`¢ÿó4´æmƒh‹: ‚À˜Æ+ëD4Ds¹¿ÓÊúñ2eöãÒ½y;¹MÉ&@‰ŸÔàzåõ6Ç«È V„"’‰p¡Îž <³ar¤P%TÚ_°r©yЩpÞY¹T9yIâµ"}x2È]¥°\HQ¡>Éɇ°øä‹Ï42ey¬›«Ÿ]gçBª &Ô3ˆ—¬ö-´w§z[é€x Æ/ËÁ”íðxsãF¯ñ«Þˆí 64¶R£:šv°ÕØ‹m _’ÕjÍêÙ[(@úĈGlBj©ÆËgxS­¨Ð·ì’è9Ó&×!š‡ £kD×>BKqM"ƒ¢‚·à±!cì •šÔɵÝ.þû—i€byè![ Z2&!âH}BÑL7žãûÎXä!éè}Šò 9aæT+ðJ?‚ÒM±WÛ Ü;\‹téõØÐ1FZ ¸÷9,æÁøäÍé®iü1ßDr•«woüª)VD¯Ñ7[¢rˆ( ‚¢Žì¡ÿØï½Ž_f˜8Oò£Â}ÁÜ p֥ÉU¶'x/)ðÊýþŒÖ„‰0˯ érƒ¦~å9ïBëB¨-ÙÁˆx«oB’/ÞÎiG ‚Á„P¨×CƒláÙÂ[ˆHÅ`>úÈ™á~ Qp,ãzÒÇÇæ>ÉϤB_Ö~Žî5Àú– ·¤ø G ›H¥ï„yã«o¶F®†7±åȱ—E %›éaÇ™ÑØv{ž{²Q ÏHæB¾GçÇxE>ºŸwv6éž-/½öªä×BÑ—iÔô{êÁáKí< TG Š@¼Õ £ó܎襼ä`ÜôG-B§2™ÇkÁý·üwïhøQDK„(Šk.¿Êp¢Ñ7"¯ÞYŒÔP,èqºýàñ£ìº`ÀÁ‚7ÿg5äjÞ6ÿÉž E6ñêGtE*—»Ù'9Ö(±á±%ï,ÅÑ*6Úv"üœ×:R0’ÿx'WMmÇ$ÿQѧâ}5šV+9“ORG\«†0B~7Å¥¢ÂoBÌS á˜Ë'=aùÑäÓÊ2!ð¼•ÁÃJ?ŒšÃt]TáB(>¹rA)a{ŒHŠÊí«d: [¨KAäQxÝÙŽ0ý¨P?Tÿ'j%Ô Û`ü ÿ”…CbQóƒW9" ñ“•¾…v0hñÌÇK¿¶XÊ rŽG1Ó´Foüb›ªšOaÔ»ë×ÈqÁº¨$«95%ƒ7(D…zïëëb£ÄNt}v~'ÄkØZ]–ðÊ«ò\fµHHgB«œ·0ÜrOùØ«mm…þÁÈž¢Å1ÎïiÙ Ódûsÿ‘ÑRHòè=ˆ )’nR³ÿ®~ûqÿY¤Ó £½Ý^½—èPÞxx²êVÌ¡ 8ÞC´rT·Š+»¾oÖÒ²«µL´C˜;ì;¯+TåFädWjq¾/¾úÊ*8‡‚šuôMnhÔé8JÇl²T ò|Áž"Lá0ˆÂ1’Õ÷?úÐÞ¸Býð#¥.Ô#mìŒOò‰ýí×-Ëö7ã¸JÉr2{ÉB;o“ ¢¨·Wƒ, çÇU^%‰±;|ÒX«VÖó:ÛÌ)HUuì37=UOI†‘n&ãÒgg”fÒ2K~ãÞ c ‚”´®÷j§†Í­K(ËÔ®!O”IŸù…Wy2÷D#.’oΡ~ËfdO+$IDçÀÜ®eøÌÌ5=ó”Seã{›k[D›î…mォ¢[úQ^çÉÙÄ}OÔ„ñý•ª[Ä„áCúÖ&° q‹ÄßépÂà:uÒ·’á@11ˆ¤'/°aƒDxÉ5‚€,|^#½Ï™;>áóÏ?þ”™ æZ›ô'Õø¢ÎMØÏOÏwÕÜHŸ3«e×ù¡d“¢õ`ËŽæ`¢6o qqþ.R=[èo'C'Â=ž·ðô>pâûïê¿÷Ÿ@ftCjëá Ù^½´®Ú?”7€ˆ~Oí”?ÕF×G|íÍ™¶)³‚Tެì¼#ûr²U4cŸ×_ý¥ÿ–<µÊrži…ºª†ÅóÖˆçžXd¡'(žT²ç¡É[ȧǰ…Í0f„`Ô#ãgLÑ4…Ëeá¸Ç´ø¥z6•¤ 0!†ÿxºîÞÏ^¹7hìöOô¯˜ë¯9Í‹'L×´•…Pæc†G7‰}ǃÌ{¿ê+C aGùî«/ñ¼'<äT\%²!,ý0Œƒ@ÌP ‰œ-£ÕŽØÛÇÒ·}`°µÓ"¦¼Ñ Rã:VøpÍôù±V•j0Ü©£EäÀåU­øÿ»zû œª6­ó¶ïÛÓú{Ÿú^ÓUê5yZ‹\!Ôuhß·»½ZõO})…'Ìœf…7Y·±¹:Å«7‘×ùñö˜àÍoЩµåqóêE®ÿÃj¼B ÉJßh‡ÀjÐÄ žY˜Ã1ZÃã°C³‡Cù5bç¿}x•+l8ÿ£rFÍÄVX–j¬†mþŽO0n¢5'0¼xKáë³4G¾ÛÐ~Öj `ð÷o—q Όr‹ÂØŸ²å5Âá¨eÖE?Ç>ö¨údn ý¢†b¼÷pªñL*uGH èÚ¤µyñ!ð‚°×ˆAöºÌ—f/“šöÐÄ1vž«Æ! ,ã°·¦Ì5ÉŒDŒuж…H¯h?㿞:I ÔK­~sãž{–Z;*xè)Æ/é®QØžkÂÛ*0€©C¢ˆÖbn@I§À#)y̯£¦L »Z±PîóDdM:œx*o¹àM-XPç!Šën}ƒó;Å;ÞÒAÊG:a®$"mGÇ'¯†å•ÙóR¼j+Hª±]¸BÉ´s‘;y]:ñq!õñ5-,Z½ùÖZI㌓O³JÛ|Æ.opzQÇ'diƒ»´³Í²‚[üqü·#°½¤ÒwˆzBUÏiÞ,^Ù›™¹13ºÑöö9Õö¼‰z7ÌS¤†æLD\pl¥Ú××9Ù@:=xØ#c¤—Õ~ÖK'š=Ûň"Ýâëç_º N’Ì Î,Òø¯-]Âv!zÚœ'd¸¦†“ñ0aËëØ3ÛÞŽn·Ç1—çNšüþë7ß[»ûvðŽ¶Ÿr?¼¨ÔcÀI$¬'¢"D„mP\ñt‡”’°<|]qô‘‰×.€'X#.<áÍ™¼•Ÿùe†\ïÌì—jÒh¯[ª¾¦j#ºŽh “Ì_Ñý¢ßavÉÿŒ¯±¶‰e ËÂ'ׄA­ŸÖcSá6¼Ú/,Ÿ¤žüòëo ÷e›¬ô-#Ù'ׂ¾%oÉöËÌòTc53ûïÌm¨ÓÁ½™•1³£ýãwrùIºñÌõ"R ï]¼¤»_!°ñ¡ùñû§ú®_©öÝ‘ué®çBI"âÁ昣tŽÑ”—™cÒáÄ=I»ñéá<¹¤Åç\†õ;ó¢’(±h-Ì/Ý\ÅØ›?ô1éõOÄ-³ùvÿ^âçO ^_œ¯dQ}F~jip‰Æî®ž“]æ½›®½A–®Ye*Ûñ6¸q½Ëé×^–𙑬-_îd'éž-étÃíéQsx`,….ìËká¿Ûô}†(Ò°nG>Óq+a±#'äû8Ž@rPãß²ݚɅ('GÀpG «D ‹D…«³ÚþÎØŸzcë4º“]œ_¼Z™pj":]GÀpv=é‹]ž²ë!ð#:ÿ¨³AA¦d2LÓ ¦ÏKý†‚dûúrGÀpG Šo0{öå“F?F·ý§|¯Ô¨¶T¾³¬ŒìÑ_ÓÐ7•,¥þSúèýpGÀØŠ€GXlÅ¿9Ž€#à8Ž€#à8Ž€#à8ŽÀ.B ]„Å.KÈ.:o?Œ#à8Ž€#à8Ž€#à8Ž€#àìÆ8a±_<ïº#à8Ž€#à8Ž€#à8Ž€#ðoEÀ ‹ë•õórGÀpGÀpGÀpvcœ°Ø/žwÝpGÀpGÀpGÀø·"à„Å¿õÊúy9Ž€#à8Ž€#à8Ž€#à8»1NXìÆÏ»î8Ž€#à8Ž€#à8Ž€#àü[pÂâßzeý¼GÀpGÀpGÀpÝ',vã‹ç]wGÀpGÀpGÀpþ­8año½²~^Ž€#à8Ž€#à8Ž€#à8ŽÀnŒ@ŽÌôýÏßÿÈÌf¾#à8Ž€#à8Ž€#à8Ž€#à8Ù‚€GXd ŒÞˆ#à8Ž€#à8Ž€#à8Ž€#àd'NXd'šÞ–#à8Ž€#à8Ž€#à8Ž€#àd NXd ŒÞˆ#à8Ž€#à8Ž€#à8Ž€#àd'NXd'šÞ–#à8Ž€#à8Ž€#à8Ž€#àd NXd ŒÞˆ#à8Ž€#à8Ž€#à8Ž€#àd'NXd'šÞ–#à8Ž€#à8Ž€#à8Ž€#àd NXd ŒÞˆ#à8Ž€#à8Ž€#à8Ž€#àd'NXd'šÞ–#à8Ž€#à8Ž€#à8Ž€#àd NXd ŒÞˆ#à8Ž€#à8Ž€#à8Ž€#àd'NXd'šÞ–#à8Ž€#à8Ž€#à8Ž€#àd NXd ŒÞˆ#à8Ž€#à8Ž€#à8Ž€#àd'»Œ°Ø;GŽìì··A`Wb»çžÉ‡L޽öŠôjÛ¯©öeëtû³Í{ì!ÉÎ7Uû™i›ö³KRõ%«ÇØ™mgµoÛ»?×%³çõ^ÇøßñÇÞkϽ„ÿY•TmÐþ§Î1Ú÷èö¬K†m°ÿþÑÍ3|O×·Të“3ÃômdvÛø}“ýN†E²íã—§Ã%lÏ\‘™ë¶~rΉú™ Óèþ;ò=UÛé®Aª}w¤/¾#°;!Àø÷{`wºbÞ×D$zæ„íß;ú< møç¿ô›}öÙ'[N(ÕÜyÄa‡os Ž}Îgm³|g.Ø%,±Gç”ç.—K‹Ý ïôáÎ<Ÿ¤mn­ŠÕdüô)òù—_$Ýnw[qØ!‡ÈKÖJ¾Û‹È†wÞÚ)Ýßoßý¤AµrÓueï½÷–eO¯’~#‡É‡Ÿ~lÇ»ô‚‹¥k³6rê‰'É$Óç=iëÿúë/[Ÿï²+äÞ»*Éygç’÷ôú?2cŠ<:kF¬¯% Ý$-j5ýöÝ×ö>q¬µÛ òå‚sΕL“óž/¿þö›î³ã}kQ«¾”.~[¤õÍ_?ÓñQ¨ÜíöcòÀrÖégdئzÓú²îÅç2, ?Î?'·žkE¹ââ<òÛï¿Ëüe‹eøÄq1¬Âv;òy÷m%¥LñÛ…ûé…õ¯Èñ#eí ‰û±#íïŒ}6VN?ù”mš~rñ|iÞ­£,žô¸ {d´Œ6y›mâôoßUN:þ¹¥Úݶªøÿ“NZÊ…ÿ»&~Sûý@“VrÈÁK–®O·ðΛ‹Kµ2ä”N”w?|ßúûÜ+/Ùn‡|ˆ4­q¿¸2¿ì¿ÿ~²ú™uÒªggùꛯ6˘ ¿7W*“aýþûí/óÇO•ÇçÏ‘îCúeX‡bÒ»Mg»ÞejW‹­Ãpmr_)qcáþúùg¤I—ö±y‡K—¦­åª<—˯¿þ*Kž^)]ö‘/¿þÊÚ8å„“¤n•{…ûòÇŸ~®EŸCl¼Æù2êÁòÚÆ ÒyÀƒ’îzFvKø5Ý\ÑøÞ:r×­wdØwØøÑ2xÜÈØ²d¸Ä6ˆ|y}ñ©Òä~Y²zEdiæ¾Æ_³› ”êeÊËi:ž¿ÿáé=|pÒy*þ©æ®×ý•ï‘‚W_#ûíÇXZ+£§N’g^zÞšI7§ä>ól©Wõ>¹ôü‹ä/ý÷è¬ÇåÁ‡Êïüß ÿíükèа™}äQrO³úÿÚsôû÷"JFçëÖ¬­\sÅUòéŸËÊgž–}zÈw?|ÿïÄÏ,%è Ó†Ž6¤ÿ¨‡bÛÞ zD¯Öc¿ùòÌ‹/Hµ¦u3, ?n¾¾é\çžyŽŽ­Ïä‰Eóeø„±ò˯¿ÈñÇ+=Z´—½Ô±øÛï¿É}-ʦ´]ï¾½”œsú™Ò¬k‡ÐÔNÿÜ%„ÅN?‹L¥uÊ“gbkß$Š@JÕåÒ /–Âåï”ß”$h[¿‰ÝQ èɃFÈÀÑ#dÀ˜á²¿úö6òQ§6rø¡‡ÉÃ=è@o ‹ÕhÀà\4aº¼ýþ{fôç9ÿBéܸ•”¬YÙŒ¢³O;C&i{¯nx]ÞxûÍh7~ÏJßúŽªFÿ¨X»gzºŒí3Dl¹ùa.ó]~¥”¨ZNûûnl»ï“<$öQ2gx·¾2xìÃR·} Ù[º5o+ú?$×–*ÛG¾ä¿<¯´ªÓP®/s‹|üÙ§Rô†Â2ªç¹ê¶›þÑ­Êj©w~k”åÆ÷Ô–‘“Ù.J½E _{ƒ¬ßøúví·£+ø?iS·‰ÜqoEyë½wå%/¦-yo-lÄ@¿v]äÛï¿“ë¶\×>mAzH”XÈ̱!UŽ9êèm6½éºŒT8ã”ÓåÙ—_Ȱ¾S£ÂX-^õ.#$ZÔ®/c{–"K $á€Ýl¼^R¤€>hö”¶õšHëûI=“HßvÉÁØ$œ2x¤üüË/}èe8`äGV®gº¹‚Ã\sÅ•òÐ#cdâÌÇbGýéçŸcßSáÛh'|¹ä¼ d`ÇîR´r›§ æŸflüõ‰?|ºy¤}ý¦¶Káò%MI([âv™þй¢D!#™RÍ)‡t°ŒÓ9ëÁáƒäÞæ äà’yã¦ÊO?ÿ”©ëßWÿíì®ôVÒu/%s]Ý tzð¸¾Cä£O?U§ïõf06¨^Sf>üˆ9ÖpܹüwØwŸ}¥¼’÷ÜUAŽ:üÈmNüò‹òÈ ¯¾, :¶Ž­û]§‰äŒSN5½µX•²òòëëÍ^›þÐX9ñØãÌAW¥T9yùõæðêÙªƒ”*v«éî8ŠkÜ]YŠW¹+Q³;mÙß2»£¸ŽèÞÏ"žµØˆ" ‚ t¡T•1gÌd©\j3(G~„,<Ó<Ža[Ô©§ý$¤Ïâú…«åµEOÉè^cÛN6ƶ™¤óB×»oóÙèžZ²|Ê,Y;s)ùp€m3æÁARFIúËDA؃fÝÌ…òöŠçdöèIrùE—lÓ ®¿*¿* ccëN;é;+/¹,¶ ¥´Èõ7ÚoÚ™5r¢µ»lòrG‘â±íT«i‘"´÷ôŒyr¦4QÁk !€‡…ÃúÞ´FÝXØ$dxâI~uÁ*iß Y´©Øw<Ì›6mR£ægùãÏ?ä“Ï?:‚wÏ=ö< xs1âFM™ eŠÝ&ÜXtÞ‡Êç_}iÛÃÿùç_rÚI'Ûo‡ 3¦šÀH ­@V0.0ê^˜³L–¨7þª<[1cû¬ô ¦8ÿØôƒ‘0c§M’ógÓ´œv.õ@ÿ3¿ýî;ۖȉDrŽ[ ‡q=ªçø§«Ÿ]+§œx¢…ñ]›÷jÚåA3DÛ\'¢&‚0Ö¹Ñÿ Ùl¸t܉¶Ù[püð“Ì›„ÁrûMÅä‘~ÃB3öy-ŒÓtaäl̵œ8`xì¾Ûg°Q¡Átë ›6tŒ¼¹üa¼BJùf f`ÌXìØ°¹Üß®yìú²ÝÉÇŸ(/—­“ñ}‡ÆîÙÐ÷–«(Oeød ½<¥Ý•J–ͰnõXchnXºÖ ̼_ša=QàÄø‡tãš{û±¹³,j‰1?ù‰éòñçŸJq%2ºí›K³n,*ñ€Òæ ÖŸxÜñ6ÇáátÐÃrŒzHâå¶ÿÕ{dyîåãW)ÉÐT†jdAü93ÇÝu˵CÄÄ÷:nTO? ÏÙÊvcHð·ïÛÃîUúÕ²GçYÁNÖûù«¯¿¶1J„Å×ß~«ç}Z¬xqˆ¤x}ñÓÒ£e{Ùgï­!‡é®'s÷ƒ­;É3O,²ùkΘG%`žn®`¬Aµ|íSŠç¯jtÿl÷Æwd¸„õ<`ƒÏÍ^"| í3¿3gsnCèesSØ&Õ5{qý«rµ?C4%Î…Î[Ú<±rÚl‹~ã…>g6ßÝH‹@*=˜èŠ sgŽ0žÕ<Ó‡ŽeÞíd6GÚú»-ä:Wn-|³ToZO^ÙðÚ6çqñ¹çËSÏ®“ïÔûë¯?M‡J‰ÃMDdòõ·ßÙqꉛí3ÆÚï¿oÔÄÖCª”.§‘¹ ,ÚÇì¢?»œ° QJ$ ÖjÝXú~HÃQî”6êDP*ñÐçÖð”†ZËõÜ·UO'J/Æ+ 9i AŽÔȉÓN:É~–¿£”Ê_À.À]÷ß#G~¸toÞÎÖµëÝÍ>;ö멞ýÍ¡¶¶ ò‡°Ü w”Qc`¬ÔiÓÌÚ"•9ãÔÓ¤}ýf2áñ©2{ÉBý}ºzÏÛ™¢Y¤R)e¡^3/gxxÚN[þ¼¤ƒe=C“œÇuWæ³-ë.Z°¼¤J1dΤ#,… tíªªÌ.•¾jHŽŒ—3§4ª^KÞûð™1o¶¼¯)A­ÄÊ5º×<ÿ¬-Ó{…ä×lÕØŒi¼w UiGrlÁ³n•ûdF„d[ù3TCöÏÏ•ÛÂӛתgŠ@·Á›Ã×Tcb_õÒFóìO8æ8SFŽR‚‰~ŽVC½¶¦äLPÃz£¦®ÌÓT ò†ŒÁ{ª±FOœ!W_zEìè­Ô3Œ²ƒÑ5zêD }Ž­Ô/Yé[´Ê%ï’Ã9TºEÂò/Ò£ rƒ¥-™`”cØbàP[¹ny¾!ðܣ؞5I½È¶1¤CßžÒJÏ“ÿŒWºõß°u³—ÌWOÿ;­Áà Å(…”¸xê¹uR0ßµBtJ"ÞÖÈ  TÂxÅ8ýL‰¤RµªJ£Îm%—ÍkÖ³ÝÒ­‡ŒzB ~H¬R5«Êì¥ „Ô Æx¼àI^´r¹hÑu5T±d‚­Ü°¶QòÅrpç^ÆöF=íaæ·."µÛ4U<§K%ÝñÇ6„»aü•«{¯¼þæ™2dd,¢°oÛ.òôsÏóÆv˜/H› ½)*}ò±‘D,ÃpÇØ?÷¬sŒØ,V°°¥°Žyjx·>r˜bS¥qm}¨¼.ÕËV`ULh¿Ñ½µ¥E÷ޱeÑ/×–,š0Ýàè#´{íý·¦Ö‘âi’óˆ#í~úè³Ol<@ða˜sN`¤ë ¾R[Ç÷2$͹gŸcsëO[±fµŽu¶ª±”j!"†º>ýÄÚáOi3P^Ýð†)©æ¶ûBT5ç Ö»8YER:™¾ƒÎ†>Ó©q ME$Í»v”búŒc~C†ˆž®0J}*•ôy Ѿ=ºÏÏ¢7ÜhÑn­{v‘ö¶y•g*B¤Ú ªW"<šÜw¿Í•ÕT±Ÿ·l‰Îud}ëºÍqÕ¦W¢Î¢L$8†ç-ßl‹±ýëæ ÉŠuOÛæ‹V-7$z4úÛ¢SUUgevµìòÙ¹ÀUù(ÿ7Kð¢çØ+‡1òÝ÷Œ] ù<70#@ŽT₃<òT‚§/èšž3ïvíÖMu¿Í7ô‹[..LÊ`"!Ä¥i×ö–OÎúæÝ;XÎXØ–\ïCØO ÄMêeÃŽÂØöÁ®fˆí¥çŸ;ŒWüÅ×^•ü—])o¾ûަäµÚ!Â憷Þ2ã³>Hñ(Þ‹2 ñ@Ît]%Sæ(Q‚|öåç–rÀzÈäTX ß°ÈQN°e°¯%¤¼¢„ Bè79I½†mVÔY†‘*U†óÛðö[æ…ÀH#ê à ùCdEýª5TxÐŒì2%n£YËíçƒZx†ñ–÷yxˆy†Y‡‘ús–.R£³‰”¿­”zû’«n½ÉÎ³šæŒ—®UEV¬Ý|‘’‚7HVûÚ!ÒÀs ’ûŒ³Íà§¶áx„`õlÙA^SÃ73µ#¨™r…^ƒÊÜš4c‚Ú C\Û¼—\j5/¨ ²ê™5±íˆŠD€@@ˆyJ ëûtŒžxÜ Jl#‹ŸZaëÀ€qHdCO½®ùí(jéä0}RO¤÷ˆÁe²I^Òqzþ9¹äº-$JºõÕ(äšÔm×ÌŒfÎ+ç‘GKÍ UÍSŽOnq¡k Hùz5¢Ø'çŽò‰¬W#™h"„ÀÅrµâÞQ"+¶³~i¬Q[‚:xȘLg+û‹@:÷$íQG…qÈù2¶8÷Ný{Ù¶Mº´³´î)&îo¾ûÖ–‡?ß~ÿ½@F…qSüÆ›lN 5"ÉË¥cçüÂù SÆ?˜œª‘6%^ûÞÝøˆ¶¾'‹â žs¢}¢›Î¹¥¤Ä éCF —C4 o#7ã#Z RëˆC·±j •½åvK»iü@;Û܉6‹—dדy†ãé7*‡¦ÒŒ2C?Ý\Á£?wébë+ -k70ò–9 I† ëî-WÙ¢RÁOÙøî[òÔôyö{+sÔ#Ñ…¼ñÖ›æa%:…ÇT×ÌvÐ?§*Ñ„RÔ¯ ©ÆÒöÌ#óÌ¥ ;·±kÚŸ‰æ”°®¾Î£D¨PÓ„yÞÅÈ.N¦ï„c@ O›ó„ýD_ãÞåÙ‰3ƒ9vÈøQ¶ŽùçΛKhtèi2ññi™Ö.Ö´,jþàYÄÉÜQ¤„àq„ô‹jlÕm×ÂCJãdŽùR ÕÊÜmN©™ æÚúC4J¤­>k\¿Tz0ããýó¹W^4‚gr€Þ.ÿ-Ré@¶‡v˜¬W¥^û–’ç‚ M$…‡d*!˜ç Ž™‡&Œ±M©Õ×¾Ow³ý°IщR}ôɦóBŽ`—ãÀÛ²Ë ¼häಂ“\¼z¹…çÁ2žqò©ò‰®Çcdô”‰ö5K¶ÃèÆþêÂU2ù{ˆ-\±4¬Ž}â%ãaäÍwÞVÏðB3¶CQ=Öahð?Èom _Í«ý¡z\×ièó*e£H# p…Jðô]‰àâ)QA”†WcUH‰$Áx¡pß]œ©ø,}zµ‘á`‹W­Ð”­S°ƒ¬ˆ î( ô¼ƒ Tc€×ªP-,ÒÍ;þØccJ-Š;’¢5ÆiŠ×좛®•_TÆš;vŠœWèjËç'4¾W«Žêy¼ÍŠžJꆑw–ÐëÕÊ™ÁH8úteüþPò‡ó J¤AÇVÖŒÎõšÎÁ1kÑ<Ãç…W·2‰ë¶¢³õOVúÚ@áÁƒT¹q°È>1`[öè3’ZtïdÑ%o¾EëFü †ïÖ†tœ-Wk ö¦Z±|ýš–V–c@?¯Æuˆ"O¢‚AT0ßuRèîÛcF ©äÑB„‘ ©æ Œîùð@¦µ,(Ò ±‹ø~DçR܇j!Ú Ô ä4†Óuy!Ì/ ›ØýE* ©C©®Yع·@隊v’¥ýª…¨(hšj,¥šG¢Ä'é|ãú 52è«xI6§„íÈ'Å Ísedþæ… ëüÓÈ Dñ%ÓwBteôù‡‡O÷:Õ;¼oÏô õY˼paîó5ÕòEëRfu#6&å4üþâë/íÞå{¼lT'Kæ±oÔQá‘Kç8”óèsgéS+5Ïo«ŽöóOG`W J&"°¡Ö#˜Ð˜Ùèà8O7ªÝ²é§M»¢{~ŒÝȆ“¯¼0¦CAvá”"µgúu"A?ÉvžF SÔ>ê¸E º$ÕeKÜ!7”½Õ‚ þ§uåˆâfŒ¦rz':æŽ,Ûå)!<00Ú¢òÓO?ÛO ƒ lãeK%Ñ×ú`d¡Pã5wµÐljPw‚‚‡ñB˜;ž¬ð?×™géq¶Íð'“hÆx‘Š¥m"ùI½•]š¶Ñ7̰°D”ÙÐ6Ÿx< ­É§DÅ™šZBÿçjJí‹Ô@Ä( âUœ©§ò’£yDT¨<ż‘‚ð}ýQS(šþ¯ÖÐûvʘE=pá¼áBÚ%ç]hžKÎãOÉž{î¡oÈkÝÀK’W ÄÕjÕDëO\gFž Ò9Vªò‚w!E„‚z…®¹Þ~CLMö[õÌZP aì‰$«} mbÑ?ñŒ'–óPÁ{É›'H‰^cRy‚ZÔ¼f] ©; ÊSÏ¿úÂ*ð†ß¤RS£eCÃ*,lj?{ÛÊ!Jdák7ã8sá9ý”Sm|ÝR¨ˆ¦ =™á8¡øO êdl.þ˜S™ÓÇ3„“§[àþè$øUl|1Î_0ÇjšDÆgNKا¯ã"˜#ü…eø±a£åÉQ¥âe4ú#·}Ç0GH9ˆ¦½0æÃøg=JjTKÚ´ sM²ûr…õQ9ìàCMi.ã»ÝV¼‡†Fç»4¯ì§éœC"O OÒ8'þç¹à"#¿¨c“N U?‡éø Â}KäD÷ë£Ê8ß™':â‹c~åÍ5àÆ½?tü(¹2Ï¥fìB„$»ßÂñøLv=!NÇ÷j55¸y³HTRÍl½ßøMäPüu`y"a¾ˆâÎ8Äî:Nža.䳫¦¶½¦ßT×,ѱ ô¦Íž©a’×ÚêTc‰ ¢çGBÛÜ÷<«!½Ç>SÍ)±ô ×sĤqZ$ù"»žÑuþÝØQRé;¡Mž÷A›؈žÅ!@MˆxæÊ>#†fˆP̬nDÛñQ ÷wtYø‘•°-ϾG#è’)òÑýý»#°³H¥sÌ_{E®Ö7VlPSnªPÒR`‰ÊøôóÏwV—¼Ýݨ®Á) C!ÁƵ‘?8ÍGôègNæ[ªßm‘þ‘Õ¾Ö®X]Æ>6Ùlø2êT&5[¥Ê–:“6Þ ?vy„Å;¼gÞS¢%BÅ5y¯2…ÅéwGñ ÅÖ(žÆÍ‰GÁH ƒßÚ€ÑÃí?97Ä«+„´nú¨ ì¢ÀSg"ô ïùÔêoÆNh!ùëÔ´à?!ÒOMŸk ,uø}Œr¨Wiˆ;LzBÊ1€×¨!Œ¼­ø„šaÂóÓ½pLˆ“•Zô Ï?9Ìx5o'<>¼å¼ ª’ý­‰‡FŒŽ•ÂÌÉQå•6APBì|öÞÇŒ ”i¶¹ËÙ&Ô$yqýËÆÒñ:œx Ï5Å‘×ÕÓL.yT.È•[íµpê[LÁ!š`ªa ’¬ô-´sõ¥—ˬ…óÃÏØ'µ¨€áxañcˆm §0ê]÷ß›!â‚u5xSJÁ'B!¤ë°|x÷¾–%qØêç"Œ cf¡û/x“üO#|J×ʵÝ/ú¨œGå”(„`Dý˜ v(­Í“ÔkÈ­Ñ-AˆÀ"¬í}‹ öh ãà¬ÓNÂxIi@Ïë(ÔH~}ËsL\zŸF%¿†áªï©ÑyºFtaÎ!‰hŸ×uìC°&¤§¾.’ûxÕÔÙ–>FÁDäpe±™ø¹O¨g1ãðž#ÌO¡žŽ-Ð?åo?Lëe|¨×os[ay¢Oæ(<‡D.%„$Ål»po‚ ÈJò‰‚g’·†0Ž£D çÆ>¬c,ÞZ¸¨íǶ%"ŒT¶ É®'D-¡Þ¼º5¼ö7D»0ž0êSÍL%÷ýΕá,¥mq„ÐŒ­Hð…T\_Š¥"Dº„"zïê\ˆ06B}®Wy-à.©®ûU-}·Üú¿›3TÅΩãô÷-óbª±TOk%›Gh›ç o'":*Q^hª9…H6Æl>M± Ñ$D7í¡ÿâŽåâì©ô9Š0Oà@x®1's¿ñÖ"æƒhHrëûÚ³›myå^ft#¶ÍÙ¨z&Ï*Èï0‡ò|rqþ.RéÁô 'އàØ$Ý›Z~DŒº8R4þÏÞYÀ[Q|qü¨¶¢(ŠŠÝ…¨”ˆÒÝ-Ý]ÒÝÝÝÒÝ!`€baüíÄÂÎÿùÎc®û.·à] çðáÝ{wggg{z†kþ4Œé>D™´¬ËAΗçÏŠ|O/ß@IDAT˳_ævCÄ##!ã’ì“I¿ÀŠ¢Ã;^ÙÈ"á²^´ºôxº{Xàö·hà¥B‚Ð –ð ,¶dp†Ù$[iíò•å%ÝúAcÈaÊJ,ìÀA0"Ó>L5D+Á¬Ã€s-J´„j@0x>ÜØû‡ó¸$7¯Yß½lôÉ­Ót)÷×°ß}?h PVU¨à–í¾œÿD X­n‡eŸ.Òx¡¸ )ãêMB÷`Ç vÐ I‚á%XÑ}L¾¯/Ò'IÉaÁvŒX ¹mñà™zkþòˆ$:°H$‰pÞBcâ±󿱆:ü¤JÚÇ òøä[•Uho«ñùЂ•ËÜyŸ‘…ë,Ç!œ>©“€œ XŠ ©‚¸%á"^QcO B˜ †a¤µm®ú‡Vxa„/˜„YbËq«ò CÃË£Œh£¡;c¦Orã< þ?Øx¢pD¡ÆóâCýìjóâ«Û¡ÝÿG°boä*%Ê:AœÀØ{\=añ%%s$ÞV‹þ”s'«ÅÉ't¢½Eó=åHÊÄ;Åü|ME˜–+æÚZrÑxòÉfw½ÿ®?”ê³Ðù‹=ó„°xº Ì#§»Ïøÿx·¯ƒß^AÁÜG_vÿAi9næÔPý¬/CâÿyNŒ+xmp ‹-¡9ã,ìÔW ã•{Ô.WÉ%=]§áZŒK”sô#Â!ÿ™c$@ݲ]³àë6¤XàU­íú™ú½’uÆ?ÿDY±MûÝçV5>Ê—q³¦9Åë'Œ> ²QS':%ØáÞü\ãVÎ%›yC‚;Æ /Bdd›ª˜ d@kŽ¥×üKÝ–VeU±ÊúƒUÔ ý¾9Ñúóû=ß»qŸM×_ˆñKâ;ˆvÆ[+–hBécŒ“œ6·zbǸ«,Ê”š¬—x+àºøl¹ª¡’xõ²Çâ¥NÆÃ»…çŽÕgT2O½†ð4cG%Þ-Œ©¼šœjæ¢ùî±ÆR¬u„qÛK÷LQÇ ë¬_/ød½Ž·¦`yà ”5™5¥ϸhõòÂ?‚}1DøxÖÂùxÎÐ8gÖÞ!ð#ðGŒwÞ©„`fRƒ”(ot€Mßç2˜lBxÉùÅ;˜¤ð›F†À¡B L›¡2<ï^÷6`oõCÕ~»ïá¹1Š5Ù›p^‡õv¡òžàƒ‘ƒ!òÞ‘P³§â.Ð|žÿ€§ºÊã“ÞÞûÃO?v~øåìºé»§%*S†×»?¿Ó݇-×°–î$ÐU^Öm6y®R½šº•@´A~sŸ¿‚chüÙ…mÁZ×i¨Lço)»l„ylP6‘p“Ýj¶j,å4‰!Ž­º•Vi—ÈP3lïQ¸¼©;`Qüj÷n©Ø¸¶Œ©§]Ÿ®®½˸$ãá‚p º€EyP‡îò·n±ƒw ‚‰7!b¸›vn'ûôq‚!á/Õ[4 iÉ)@<öÚéóóƒ`´†¤¥mÜÏ^‘„i„74‡ã{vÐÕ$–ªS5ôÜ\¤¢ù :!m8ÿƒtÉ=7¹ŸGr;—op îøX„o½þ&§¼CÀÞ©[té‘…tl qûõ3:O„hò'ød¤”'q)L˜O|¬#Úw”Z\·nú·U#¹JÚ÷ëîÆ1ÈñΓ@d©dY¯W±šŽ×_Ý.:xüxÂÛ%%ωPJ-›8KÚŒÎK€T`b!r `Íc»<„b2¾Ÿ‰ZÿÚèDŒ/¼jhnoœ4w†äP šÁ„?Ÿ˜’Ð&>0„2eë'!_äÇð»öP?;t°~²ÓÄ:Ö´K{÷%_E]_ûj&,÷„0W™GI‰ëêœcý!ë?Év½UÇÐ?Ñú/¼/âz¨ƒŽ¥-:8o4,D±Ö Æ^ÍSUî®MÛèz NËøL„H6Ìö¬x+²6_½¦‚òg Ð&ÿã%%Iù¼'_¬>à ƒþ¯Qº¢{¬[ŒµQÓ&º¦ÅK±Öò}`½†ÂwÖ)U§š®u9c®)¼OÉ‘Á(¯-[ïr’,Y»JÛÚÚÕi d ‹ßñÊî”óïi¼ýZ(?±Í9ãœíEYƒ×*O€*ù’<%Âù²ÉøÄ‹ŽÝ“ØU‡÷^w­4>ÑÈHoâñÁð‰ðv;–¬sùßPîPÄÈ"€ŒÜø¹¶Žg—ŒóW,‘.ºmº'œZ+ÿ¿KÒ|”ÈÈwA"/Ü£% …a€Äp~ÏÓ)Þ·xúÎÔË£Ô8‰@¢Æ¶P…øå˜,·åü'Úµ¿·ÇÊpÊ¿!ÑÊÈq,„xMD{Ipþ[e°Ã=ò±tûÐð{£¬8ç¬ÈçfÀ£Z#)¸º$B¸~#Ä{a&‘kâ•A E˜æcµ5^=þùîB;Þ€ð¯Hc0 ´ 排zùÆ´´É®=2ÀËô×ß~O“Ì矯9 ˜>„Î'-ü'ÞýÉ ?L íÎxzæˆÕR…EÄÙACà?Š@Pa‘^s ƒpµ—_4tì¸!`†@,‚ ‹H‰«c]{¨Î±ÝñV ßÔdÄíë7S‹ãë¡]¢U»ì¾†€!`­ÄSX¤{HÈÑÚö܆Àw?|'ÛÓ9I[ʆoÏì B¢%ã –³ï†€!`†@8lQN˜_5|õH!v[(¯™íÇhÞ(¼Aaa{o#CÀ0 Ãó°8<ûÅZe†€!`†€!`†€!`ü§ˆçañïÖÿiìá CÀ0 CÀ0 CÀ0 CàHBÀGRoY[ CÀ0 CÀ0 CÀ0 £SX%mi†€!`†€!`†€!`I˜ÂâHê-k«!`†€!`†€!`†€!p” ` ‹£¤£í1 CÀ0 CÀ0 CÀ0 # SXI½em5 CÀ0 CÀ0 CÀ0ŽLaq”t´=¦!`†€!`†€!`†€!p$!` ‹#©·¬­†€!`†€!`†€!`†ÀQ‚€),ޒ޶Ç4 CÀ0 CÀ0 CÀ0Ž$2$ÒØc3—H1+c†€!`†€!`†€!`†@R0‹¤Àh•†€!`†€!`†€!`†@20…E2Ñ´º CÀ0 CÀ0 CÀ0 C )˜Â")0Z%†€!`†€!`†€!`†€!LLa‘L4­.CÀ0 CÀ0 CÀ0 CÀH ¦°H ŒV‰!`†€!`†€!`†€!`$SX$M«Ë0 CÀ0 CÀ0 CÀ0’‚€),’£Ub†€!`†€!`†€!`ÉDÀÉDÓê2 CÀ0 CÀ0 CÀ0 ¤ ` ‹¤Àh•†€!`†€!`†€!`†@20…E2Ñ´º CÀ0 CÀ0 CÀ0 C )˜Â")0Z%†€!`†€!`†€!`†€!LÒMaq|† Él·Õ@ =±=öØèC&ÃqÇZµï×X×R:Þõ”9æ˜c$Úóƪ?‘º©?™D[£Ý7ÚñX÷çšXÏëÚdž;¶sÿãŽ=Îõ_ZÛB=‘pàx,Šw>Öµœ‹ÕŸ‘Ú¬/‘{G×¾î ûX÷>ëŒ3åâ ²¥Â+Vyîï¼oO¤ÏxÏï|¤ç ¿O´5 ^Ýáõ$ówZî¼y†´Ü;™X]†À¡D€y`sáPö€Ý;Äz2¾yÿ Ϙ1cƤ/‰9óô3ö¹÷¾òÒû?˜ÒE‹pÞ9çÊ+ VËmO>*}öÉÁ|ž¨unÒdÒÜ™òÕ7»£–;ÒNœ–ùTykÅf¹§H>yçï”æŸé©W¡š>•‘Ó&º:B_®½2§,7C²åºAþøãIKÛšU¯+Eò=¨=åëW»¿–Üe »Sú—+²_–ªL•æõeÛ«¯¤:éGß6ÏÉEç_ «– ¾öŠ««VráùYeÏ?ÊóËKσBX… Fø²|Â,5}¢Œ›5-ÂÙ´jX¹¦”(ðtªŠ†M'C&qÇö§Ÿ‚•0ÿyæ{o»S¾øú+Ùøâéп§üðãyôž¤[³6Áâ¡ïOV.-~úqè·ÿ2º{?yóÝ]òÜ >îå]½TyÉóÀ#rÞÙçÊ›ïí’‹æÉœ¥ ]q^îÑΟqÚé²rÒl_mªÏýzʬ%óS‹ÔŸ±Æv¬{§ªXËÿ”ôiÕIο㚨c9”ïáÜ’¯b w9c©Jñ2rÛõ7ËŸý)ËÖ­–Ó&„æeÏí¥Ðcùä“—zZžy"¿ÍWPèo¼.C'•­;^vuÅ›G§eÎ,«&Í o¶Üœÿ!wìlUŒ´~¶¡Ü}óín˜©}ÐypùãÏ?Ýù›®¹NTª!7ä¼V~üé'é=jˆL[0ÇcMa.–|ò=÷£¼úÖÒeH_×ÇûÜP„¯9s\!uÊU‘›¯½ÞaGÿ÷9X1ù+Ò婎%²¤º ìÇÓç“JEKËEY/>ùXš÷è(¯¼þZX©È?Q$=[®²Ãìç_‘E«—KßÑCC˜Å›¼Ï >šGÎ9óLyÿ£¥uï.òÚÛoF¾™5þã´«×DçÂYRµEƒÿø“ÚãýˆÅ_Åâ¡þ‹XØ3ÅGžlÆ 1NV0n„»à@øi§O8A–ªl…LÒ}Øwøüs³H÷fmU‰qœüùçR½U#ùéçŸÝ¹’ Ë•—\&ͺwôUôÏtQXô§Hàhˆ`Ng.N-„$péQ_¤V™ŠrËu7ÈãåŠ:%‚Iæí¥D*€F¨4~” œ0Ê)†tê)ÙT oÔ¹­ ŽêÚWª·l$«6¯×ã‚7 6B?‚LÇÍ¥híJN@¹<û¥2µÿy}×[²+LZÚÖoì0'´ù¾<û%2®ç 0n¤;„æ2×-wHÁ*¥åý?ôÅTѰ'ô=Ú—Ây Èc÷>(o¼óv¨ÈÉ'$ã{–v}»;e÷CI3u~dÁ9tq:|¹G 猗©{Inù‹ RPZú‰güìË/äÖÈO¿ü,õ+V—¹ÃÆKî²…eõ äá’…Ü=øsÒ‰'Ê„^ƒeƒ*5")+B÷~)’· Ë÷”#ÿûø#yð®{t|Lü•JÈÛï¿»Ïý‚N=%³Î¡ª "ÕZ6”Ì'Ÿ"‹ÇNÓqû«Îã”—x°|ø÷xk@xùàï|å–VµÊ35+Èû~ (/f -wzÎ3`ÛÜ厱 ºCÃtbmÄ+cá¨)Rî™â®5¸7¯š4ÇY}óŠ(€Ûws?q—zNAß¹d½¼¾tƒŒîÞ?Tv¦2’ÐeœÉu¿ûéVÀµSçÉ ³—HËZõ!Ó}€Z'ŸÚ 3ÛV)Õ0m™³TÞ]½MŒš¬–Λ"U)ÞyÌ26tžç¸ãÆ[Bdž«ðñÄý»ßÔ3oÄDWïêÉs•ÔÄÓËõmš¹Xr\|‰?å>±ø¢¸ý†›Ýo´pÚuu˜ÐöÆ*y·I.Ú£ýšbÖ¶nãTuù]p¡³ŠÂÿõ÷_j%ÿR.»èbwú®›n“c9ÖYáÿýwù~Ï7sªUA’‰E_ž~êiÊÀíʱû+µ‚þí„Ô*SI¦Ì›²¦¢¤Àj때 &ÒË V9kø]7ÝêêñÒÒ64…ß|÷­û¿G-»(aÆÏžæ4ŒÔðûó/¿ÈK;w¸Û}ÿû6„^šíb·˜Œš>)Õ)ëU9á­ÿßïùÁMø ²‚±¾fÊóòÒ¼•R¡HI©Êß—T–E½Jß^ù‚#X—=¡ ö\/ycÙF7F±Ú#Ì%B¸]wENY¿m³Ð(*ÀÁŠ×O”‰4w° \ÕÕ2Xëï~øÞ)¼†Në\Éç¼l}ð‰2ãÇŸ’V½:S¥#<3f©0ÆsukÚÖYðý9<¶žm×Ì)+8¶S]xq`½†bÇ(xï‡TP~ôžû¥b“:® ®ý­?ãíX÷öu£ëߦ³ô>È }â…Ã:ùæòMN‰—åœ_&nT!}✙ò÷ßËo¿ÿ&›^ÞæžÌYèSðÂRŸ-kVWï×ߦx—}üùgΙù”SÜñXóˆxF¼øêv‡×qZ¯Çs׫2…F¿1Ã];>ѺñbüAùzL•OŸÈ’µ«œÄË;_•yª°)ž¯;ÿè½8¯+”ЪMë§VGw¿c­ë*—’IÏÏteQˆA~Ýæ;n‹3–]«¶ë)–,OñÖÊáÕšÏÙ»eG]û²»ËK*Ó0gÙBçÙÆº8má\ù\sùöÖþÌ ÞŒÝÁº»µÐ]¬.Êz¡Ã‘þca~øºãÍÇñ³§;Ï-žâúÕμ…öç ßIñ¾šã”Žë¦Í—Ÿ_!mê4 ñ4åá\÷É¢ÑSåÕ[ÝyÞé¬}ûÃÝwû]Ž×+ýTÇûxžÅ»ÐWïÀªÅ˺'V=®ª—,ïøAÊmžµÄ)¯=,(Y1”ðž]¯mfŽÃ Er}öר§!p°ˆÅ_Åã¡V›¬ÞÃëÔËüÉGŸ<½w¾ýVªF&ÂO§º`óHÆã3Ê˯§È:¾ÌïÊŸcüó_U(\\­Yîxm.=>Ó]a°";´ÊœÉý†9·îâêÁ°rã:UÞt”ÇïÈ•=OÏ7¨XÃYŸqÝAðð„‹8ØNP¡{‹Zî ±=:«V›¦Î »¸ õ+UwçxÑ;wêòUeð„ÑN q'Âþ Ÿú@&ª² æhPû®NSŽrŠ58WÄùçž+¦/W¯“­s—…´(‡œQúy"\ …(kÌŪð$T,HŸ~ñ™œ}ÖYîJ1Êzblœ¯J— ²œïÅ[ðÞð̤Êk°#ôbN??|¢|þÕWR¬veY¼v¥ôSÑ=·ÞáÎÿDZO(Ï·lQJÖ­æ°Ì ˆçF¤Oô¹qK‡˜ç¼O©Ñª±+Ïúì©ë~nMdMEruŽ+5n‚;o>¢ d €Ò/¿ƒ»0|D‡úÍt½ì\„ñàjP¹†»õê6Œ×ʽü•Jªbs˜”}º˜<•;¯†%ÎáMEèŸ:kH áXyÕÓ Êrö9î}Á÷óô{£*µ_R¹Y=Y¶~µônÕAו,œ–Vµ8þ®uŸ.jl+ë7wÏàßw®ý1Ò XüÕþðPéÔ\»Í!D`û¯9#ÍŽ7wÆlE$~:Òð1 •WAf 'ŒGŽXwºë^v|ÊI'Kyõ¼è?vDxñƒþ;ÝCBî¿ón'Þ«9¼¦a¡ÛÐþNؽOù[ <¬Læ—€³T)qA–¬.F8"Ù4Žø³/¿Ô¸ìWœ¥Ë+Ä‹"Æ÷Ûï¿sßÃÿT+QVšvë óV,q§škbÝõ´PcŒh ‡î¾×Åòlzy«swoÛ·«¬Ü´V]3ì;ýµºªsÿ\·Þ.ï~ø?uϾÝÅŽß¹×ÃâÞÛï”]ï¿§±æŸ©â¦tqoÆŒâ!» õ„‹×¬t÷þr÷×Î œó(; ì:èP(ôÑè13§¸cX°Q”<\ò)gyæ –Ø®MÚH¯ƒ]þÀ@÷>Uàíÿ½«–ÒÜÎ’‡5oû)“…°,òuU&fý¬ÓÏtž(Ôuâ 'º*ÜŠª0UBSí}õ~{4Ž‚@H^¢‚J“Õ½ünuU'—DÅ"¥œ ±áÅ\y4ˆÄæ{JkÛ|=ÄÏOWÁŽgñtÕe—;o”Ÿ}ù¹TVæˆx.„KûïËúO¡/mu烊Σ)ÇC„ë‰uÇ;¥]Ý&ò¥z"P¡pI¡Ê2\® 6Ê”áb.Kxc¶4þDçE“E?ãVxS¾Ýxók.¿ÊW8ÎN°E‘Ô¢{'gqBBðd|Äê'ÊD›;xܰ°âÂŽeï‰ê%˹Ö3$òg0®‚qø(0«iÒ¥+ºMç6ÞO‘ˆ< ýÛvvá5Ü+œbÏ­VþÓ”!F¸R¬þ¤\¬±¬'Ò½QPÝ Š€V½º¸¾ –¿Uç.ãïú'îs˜qÜõþ#^W·]£ËUA?z%Ø¡XaŒ¼ðÊ‹RµD9§,ΪJ#Ü=ÅšG”¡-x®0Gð`ËõÌ‚¢ ï€ á=D(ÜðN ã‚uZ»e£æ×(à°ß©ës™§‹:K'ãƒvÇ[|½uËWsŠÕT¹àÃ"Êj]hìe] GÁ3 euŠ_A½‰RÖ}¤5 RÑR2CóítØÛkÒ­½ZúëžKŸ3H(nP¢£èÂÂËš8ùùY®È[ï¿ã•ÌSÆçï¾íÚYXŸ…ÍfõÁ+Š7]!ýó€zïKzæé§Ë{–bd à£ðFŠÄïøû¡hŸ½dû‰A å;† Âü˜?xÖA¬I…ÏïŒ@¼Ïånºú:å)Np–Ex åŒ9y³Â ¥hÝ-Üá-¯¼ä˜ì«Ô¶ûûo¥bÑ’RGRóW¤„檞¨ÆŒ C@<þ*QêP´ÝÄóðö­‰ÄOûsþþ cr»~=Ô;>5/Cä»výºK~õ’E&…?Áƒ¼ˆ}ýUר\þQÄký=’ù™î rCí•<̪ÍÔ=/ƒ³â^ªî¶¸Õzeç±bB|±hæ¢ù*ðQ×Ýu²|ý™»|‘‹‘¿k*/SOï~ð?U¬Pëô™!FŸs ü÷ôö{ïú¯Žùÿä‹OÕҸܕÁÛaÞŠÅN!@rÊ °ŠºB=%ȇ@ÂDÎ5îÒÖy’0`¸#—ž_ëêÎqñ¥ÊÀorÊ ³ÕjQ'VÚÓ.Uø„–þa1<·'¬"à5Ô³ÁSæ“Ovåð‚ðLý[{ãÄ#áBˆaX1†ÓkÜ-™&×=q¯‹Õ&éJæí\B?”=U©CÀÏÊààò‰‰'Q¾`ýƽï”?<VÊR¬–kTˆÚ©á<„”`yŸ &1Ü;&-mó˜Àð€–ì aéoÕó¹P¼ú=ZŽžÖä…&xy"Ÿ¬¼h‚Èô8a¯|ãgÝG…%k ‹«5Å++¸Å[P±`Lÿ»êu€²ïTžPNtÕ[›)»FA”]‰ ßBÅÛ/†(EH¦Jî±úiœé1çNõ”"Œe‹ZåQ˜¡ø£í>yí£Ÿqs#Ùbè¯ã8¯¨†9œðÚ˜1p”bð¾4Ú«Ü–‰w¾ðOºvmBÇbõg¼±íïéÞÌ?¼¿Èô’ð×ðÜ(7QðxbìGRX`ao¬ „² j¹1àË? Ëû`n¹½à£N …"–œ …ª—“Mª`‹5PP’»‚Ð/ßV”¹x[ܯks±$’x2f¾×s?¨çëN_ðJbÏï¼ñVMø4ݽQž°žÞ‚3Þàë%že 9t¥"TY³ú´~ÎsgÞ ÂŒ¶äTEMÿ½9m(Kž”ú[¹ËÈe³ïsgrÊ™lçeu‚^t7ª å‰5÷ŠKr¸qº`ädéªJzÂ¥°Z h×EFwëïú$Þ|ôõ‘¸”ÿŒE<óÈ B.#C ™ ìŒÆï €ÖmݺåU2¦/Ôy€ò”„´äô/À[ëet½ûq¢¼•£èôÊ ~c ò†~ ¯Rª ûË­yúþÑVÆh,£w´º÷÷xº+,`TÉ$ïòDVwâ!W‹X, nëƒí ·éû‹åW­{~bAÞ ^JEjý+°S!ïŽnñ—)C|¼³Šsk\4‚1÷„°•·Bq'dá.Ó¹QK·“Fž Åœëo°þ©ó縸l¼pѧýK×­Vaägçm‚¢¶zƒ@XPè ßÓº»D8ÍXô¼óNé¦O©r€Fâew¾ýFªâXò¼²‚>‰d$\°üaÙh¯Z6/`²»ì°|ÃgÑ&÷Bó+¯¿ª®ãç©;hMgÉ v•Š>Dk/IÉ€Ââó¯¿TÏ”u¡ö!0ozi›{BM 0 º›ûÂim›¯ë.íCˆ'/ÀsL)‡%ž‰ìã×w½­î©¥CD¼<„ÖËÍü‘“¤lÃZîY_Ô|A¡x­2ye uåI¼Œ½G¸GØ ’Ÿ+ûGÿy¢¯¿ ³rýÍ7þtBŸÁgåƉW¼Åê'&P´¹óꛯË=šX¯•qEYIÞ,öžðX‚ñœ½d¡?ä>3éüŽÆú‚à<{È8òP®qí}”<ñÎ3ޏɺU}•î!7ZÆÛTíÞìîÁsîÁÜCä®é9|œ  €“tÜÇ#æaCu½.×°v*‰ðëh+ÖL¼a q"„ä¾÷—?&ÞgìÿõÏ¿ksaOƒwôû駦Œ_~³ÞxJ!Àé4=ïÃQB T.éÆÇß*XlÛ±]Æöàê·ëä;kô¨iÝõ(/N:á$mçîTk ë!±™Aж0¶y†H„àä=Üüy~#Øy!ŽäÁ^1CîÍ7(Œxϱ#9,h÷ÐIãdÚÀNéÂïXóÑßÏ&†«èwæ2……Å>“†@,~ÇÏ¥o¾û×sÕïÄ–!ÃqÎböÐqNiR£ïèa!/;ˆÛq"¼ey'‰u)¡¨ ’/ËšÎ÷àû’µÌÈ8TÄâ¯hS"<Ô¡j»Ý÷ðC ?l)ü;èÁ £@„ï±óŸ„Ò…ÉÙ1Pâ!Q™H‰¬ºû\£ÿM…ÅÿÔ}/ ¼%¼Ž·Ýå˜3ß,êöŒ»2BªÇ%^†˜æÁÇ8ü‚B|OX™~ÕÚ@Í‹Á¬£d§Çª|Ñ¡x¢|Šè¯ÅRãè<<ö†¢`a& `Ù†5}±Ð'.»9/»Â%Œ$i$»3¹{²$ÿƒ„FŸ¤&e4¦‹&/L>qCF¨Ýª‚0DŽ’K‰ßÁÝ&‚çüwÜ1QB¬›:ßå uÁ@/Rïvå€pÕ$¹àwêþsºž R$\po&¦Ü3%”G±Aâ=„ILMhØ|^ <ðŠÀ;€rá ?‚9X@x­ø$î€þÁÚ9xâf:‹œ~‹I’ŠzBñ“–¶ùzÊñ.§~º-)Ö^2äBܘl§‰°>†´SS%íB(É‘ýçvJß ÉÌûУ®Ï<]«‰.½×.Ýxáø-_Ù=‚P‚Dˆ:‚Ç~¬³ýc¢TN½<ð *÷3Á»ŠÕOxÈÄš;´ Å¡×Òª”Q]惞ôa6áŠ)’hâyá‰>¸[˾§Þʆª bÑ­Ò¢þ>ÊŠx穃ö %Þ°í_o*ŽP/“`¶ðþŒ7¶cÝ{Ùº5êI–òƽg#ìbÁÊe.ßÛ”¢Ü ®“$ò)Ú€‚õÒ½ †)Ï{‰ûáFh[©z¢Ý(m ·Ã¢ ±û„ X=JéúOÎ’ º6”!™2etE¼ùˆ'î™>T…><ûŒ³R%Èòí²OC ­ÄâwH¦ 1‡˜/ /JÆ?9cp-&‡Œ'šã±‘Ì7ÞÈ_›ÖO”­¼ÉùåCy‡ Xüm‹2u¨Ún÷=üˆÆO[ú›òmìX$ò@~¤ùÆ‚Fd^œ]èØÆ5E/†wÂ\áÃe=m²>SÞɪ-zp=AûÞL/ 2Ž"Ìð°4Y–a28û„šµ5I/–ÔSJlàÀxÌý„cü¸õÅš|“äeå0ÇÙ/¼È)=°ä²]DFû ÂÃÔ?y¸áÒ.^¶úõ*VsV[„æp¢³úª@‹PáU€´W „—‡Q'Ük:Ùü!rÖܸðú{Lž7S.Ñvc­‡&¼„½uQ:Ä#Ç>£‡ÛŽÞB½XTqûÁ-gê©;aàÆèÀ"±ÛfÎ[èÖƒhäøß¨JmùY“QÒ~¬£(TØâFƆDXxd@¸ÿß«çƒ; `Íä8„…±À#O8 7Š”SÄc“lAEB…"%\¸<9 <¥µm¾Â2¼ÒÀãs¹ŽI¶õA‚ BžŽ³uÌFsŸ" âIcBÿÙ² ŽÁ¼á2…Å—0žåKnµp{eÉ8 }â77ôUx‚Ñ`Û¿“„{x“¸2âçËîõÜ/é7L'‹n»´¤iŒ»Dú)ÞÜ9GHÆ Vgž‹ ò=F L¥œˆÖ 4TæÂ,ç»m™d*Ø”3FL/7j’TJügÇ(ÞyÊä¸8»¼óáû!ašcP¼þŒ7¶cÝ›œ,Á±âc¿9† ;ÓÈÌ9”±AE&1åÌsòÕðâñÏÍ'ó0œ¯"Šú—P^2 W-wÉcÍqúwËö—¥n…ªN‚×H³ju4öü Î…§ã‡qPN¸ ë[CK4ôéo]/++å~£øÁ-ÜçÚÁ“€]Pΰ®ó\„¿xeH¬5Ëë{#ʼn9ÊÎ><'ë% o¼Û¨÷Ùr•ÝøC9:\w^¡AŠ6þ¸žgÚFâàSt¼®ÃN¨ç /XHlŠ÷ Š7r!Ñæ#×âuÆ» ‹/nÕ5ÿOiR­¶ÃŒÄWµ´n¼š8o>2S¦P1—¨“÷‰TÏÓ¤¨72’@"ü[ë’<ƒù f,žç˜Zv#·㔵‰DÓ„exïØDy£d=L6ó¤W‹ÎÀDn.øM#CàP!‹¦M‰ðP‡ªívßÃhü -%߆øº Êw”(}Þ­à“‘ðŸôÈìúOï Oõæ»ï$,SëÜßïö÷‚´–ça+h ?Â>Û_ý£ÿVoÞ(5Z7rU#H³Ë»F¼<¥s=™'»;/M²C³U‚-Úü_ŒPMœ;ÃY_WL˜­É/u±ËlýBÇðxT·~Ò¾3í.Üû‡­ûkñªÉs4lågY§VáãF‹„¾cÑ%öz nŠ{3B@_Mx‰å=¡µ"ã*žÐF •à:cO(fØ¡Žœ(ZƪPî±áˇÒÝ>:ÛjÓÚm› ;+ˆpËœeÎc« `¸?T[íËëº5ߟjµDáT±IÝE³]ß®½Õ4™â W¨}ò‚&¹‚`ÞÛõíæ¶Vý[·3%QÝäy³\âMÎcUo¦‰N´±8·Îî1ñâÄ£³!ý?júd§@p'õOZÚF_Òo«NX»êˆï?ýÔÓRº~õÐs‡—÷–Rº{ c…Įޣ‚EŒ }†8œ  †îĪ¡¯°æC —! ŒOp¾û–ÔVùhu†Dμ!º4nå0”_NP¼~Š5w†M'=5!,ÛÚ„'c$H—]t‰Ë@<ÆwpÖïÔJ…ØF. ý.ÍQá=5˜;x(! ºä¤‹É Ði@¯˜ç½v!ž¤·ûK±Æv¼¶ù{G»'ë$;Á éÔCwåXë’ÝÎYºHóœ\á.ñÛcyá.{àV?©•¬¸a#¸¯Ó-›Q62×È í“ÙÆ›Gä1! +[îÖ÷¦zTnöo Ö”Q:Oß\¾Ù­µ(ç¼²‹±Y]6‘[¢¾îpôÃ?HËžCá)„•ñŸºÉ0KhC½Ž-Co `ܲóÑŽEk]h ó¦Qç¶îz<>XHHÊIHï’13¦„êµLVO5^þãz r/dvrj¡ s!BÙ%Š-³ÑuúƒO>tk·÷"a]ë­!?‹ÇLuÊ”¢$D‘¶Ïe’Š¢l!ܬ–¶Š7y†›gOÕ]_«ð4‡9 QQ"ÉF ¿ƒ'D¸ŸO¯Ü¤y·önM=væTç1En1ø;ÖMø”–žá|Ùd|6xNwxÓBì*DhnÎx}xÃV2îau‰"¿J„‡Jô^Vî¿@4~š'Çxøëo]]˜Q¢H`à!Œÿ¾¢Ü%xTÏZ<ßíà‡|RzÐ1YnËùO´ýþ]JΆŒ§gŽV$MÇñ° Ê„HÄy<*¼÷/ƒ0€¥Û‡”øãþïŠsΊ|pa<¡5B8&¼‹V–ã_íÞ½…6Ö5ñÎa±£^¬‡±Ú¯«4Ì:Ï~ „uœøÏð¾>\ģłÒ' z”‘„p,/lKLéëå“Гß~ÿ#âµ)ç¼mÁûDúN_жhã-Ò5ñŽÑ·$ð Sç:,Q0Œ}ö­¯Ü´žS¶Åª“öaµ &kRíYÁõ¾híJ±.Ýçuáåä¯`xýkî0~~V…T¤gÞ#Òwú€õ ˜p-R¹Cq,ÞØNk›xn¶*MÆ:ÀØ¢><¯"õo¼9Ž—‹Ë—¢c3Q7‘úØ­igŸuýÀâJîò7D¢xkkQxXuù{¡á‚#J1<]˜³áÄ9Âë|Ü~øyð7²~… J¤`n›`™xóï9ÖÍy®à}ì»!áü ‹7Ô˜‘«p^}G~áB="ÍÁdð ‰´/^Ö‚Çï{È%¥Æˆáõ5¡÷`¹ô¾[#®‹ñê´ó†@2ˆÇ_¥…‡JFû¬Ž£¼æN9ùäPG­ØøiÏ>Û»ûóûûOçpHûû0VÞ8ÚHTaAÔæYK¤ƒzBL.ÖÝæºƒËœ¥ ]|{4ìð| &ÀŒVÎŽ†€!`A‚ ‹H‰«ƒe—ïäÛ¦Þxèbüb{q¶Wõ;.í´v†€!p´ Oa‘î!!G ðöœ†@2`K¸hç`ýä/!\…ÜUŠ•‘÷?þйänBN\Ï£a8„“†€!`ûƒa~/½¶#ª÷ãþÔ•^eËé®]$ݽ¿†ÿþ¨;•¬“nºÅ°‘!`†ÀቀyXžýb­2 CÀ0 CÀ0 CÀ0þÓÄó°Ø7ü{8CÀ0 CÀ0 CÀ0 CÀ80…Å‘ÐKÖFCÀ0 CÀ0 CÀ0 Cà(CÀGY‡Ûㆀ!`†€!`†€!`G¦°8zÉÚh†€!`†€!`†€!`e˜Ââ(ëp{\CÀ0 CÀ0 CÀ0 CàH@ÀGB/Y CÀ0 CÀ0 CÀ0 £ SXenk†€!`†€!`†€!` ˜ÂâHè%k£!`†€!`†€!`†€!p”!` ‹£¬Ãíq CÀ0 CÀ0 CÀ0 # ‰4òï?ÿJ¤˜•1 CÀ0 CÀ0 CÀ0 C )˜‡ER`´J CÀ0 CÀ0 CÀ0 C ™˜Â"™hZ]†€!`†€!`†€!`†€!La‘­CÀ0 CÀ0 CÀ0 CÀH&¦°H&šV—!`†€!`†€!`†€!`$SX$F«Ä0 CÀ0 CÀ0 CÀ0’‰€),’‰¦Õe†€!`†€!`†€!`IAÀIÑ*1 CÀ0 CÀ0 CÀ0 d"` ‹d¢iu†€!`†€!`†€!`†@R0…ER`´J CÀ0 CÀ0 CÀ0 C ™˜Â"™hZ]†€!`†€!`†€!`†€!La‘­CÀ0 CÀ0 CÀ0 CÀH&馰8>C†d¶Ûê žØ{lô!“á¸ã­Ú÷k¬k)ïzÊsÌ1íycÕŸHÝÔŸL¢­Áû†ÿNæ½V]Ç»O¹oxI¬¾J¤Îd• o[x½´3؇þ|¤cþŸiÅú/ûKñpw>ÖýhO¼6ÅÂ%-˜Äª—6Ó®“N<1VóʹxÏï|¼çŠu}¬s*ú‘­ó–Ë¢±S¥fÙJ’)c¦ýnrñO»þ ¾dWM}^J|&b]¹ï}pŸþð}tѺkU­ª?èŸê¥ÊG¬/ÖÁHm /_µDYy~äÄÐák¯Ì) FO‘¬’u3H£ªµRõdàÆKà½õ/ ó&Q¢]Œ·M³Ëú™ ¥MF©æh¼9ë>§e>UžkÜÒÍý—®’A{HðÆ‹®qµgå•Ekdëü2¶ç@¹ñêkCUæÌq… íÜK^˜»Ô'ÊÆz9†.Ô/ñð¦,c«wëN2ª{ÿà¥õ{¼~~ü‡eæ1ŠÇrY3mÞ>kZ¬5lÛÖk"ë¦Ï—Ís—H¿¶…5ÖÓÙgžåúš¹ùêÒõ®¯ƒŠ·›¯½^&ö*;–¬u˜Íÿ”¿Ô> ÿ,í4•ÁÏõøÏ>Ÿ=ØXïd(Þ«»Öl•³K–íåÔS2ÿ·±§‹‰|ÙâqÓ5HûËoÅâ±²f9Ïñƒ:v—ñ}ËÉ'ºU©BE¤|áâ¡ßéñå¨q{€ D@±ðùôÀõ?uÚå*Ë-×ß(¹K?#üñ‡´©×Xz¶ê ÅjUô´A#eàØ‘2`Ü9Q•úôvÊ©†[˧®‚ĩּ¾¬Ú´Þ_9y޼ÿч²mÇËsÝ©QK)\£¼¼ùÎ.¹â’ËdªÖ÷ú®·äí÷ß‹cZÚÖwôP2qLè(}Æ÷"Æ wÇÐ\æºíN)P±¤¶÷ƒP¹=?î }ö¥Lîû’7Þy+Z‘ÃöøegW¡´»ä«P\^{ë ׇs†— Ï;_šuíp»Á³Iõg.OÁÕ›×˃ÅþUha5ŸÔw˜¬ß¶Y>üäcW×½·ß)Ã'“)óf‡êþå×_Cßùr mc±FlÛ»«Ì^²@P2^>úìS™òü,In(àzµì ¬5ôl(ïFtí+ƒÇ’:íš«ÒñÒµY™Ü¸ÜW$_Ü9©Îà1æï÷ü ÷k]PŸ6ϹñÁü‡ªª²è¾ÛïÒóùåO=–וy¼L}Žãe‚bÔkÄ ©Ú¬¾d>ùY:a¦üòë/Òïà¾GúÓ°JMg9ÅzÕêÙ†!Å”q¤½,X4Ûæ­÷׿ì¬Ð·ÝÙòþà]÷(Ã9>t;˜J¬nwÞtkèÇ>â~SV\êÅ«áé'ò‡ÊÕ¯TÃY»©‹eeÔƒ„%…Àí7Þ죅CøÚÞ¤zÛ$ÊÚñLžüòúòÒ®~Ó`U¡ï«eû§Ÿ~’_ûUþúû/ùü«/pF»n¾MŽ=æXå˜N“¯¾Ùíêûâë¯äï¿ÿQÆú"÷…Ãä¹3cÏ”7=ñ@HYÁ¸Àº‹•}µZæïºù_Ì(Ÿ–¶±ðóÝ·îÿ?ýè”0ãgM•¹ËQµ\{ÅUòó/?‡¡ïøÁ•ýãÏ?Ýùh.½èb©Z²¬Œš6!bžùµe\ÿ• h(ñL©Qº‚toÑÎ_´§;(?èkúaÊ‘ý‡Ç:¶<1Ú7hæ~Žé9@˜ŒÕ·V½ Cžëš ¾|´OæQ•¦õœ²‚2ß~ÿlý5É~aJŸq 3ýñÞº—dîˆ ®÷„²§û®ÒcØ(ÕçEY/tž ï¬Ýæ”~žòòõ}ÂgƒÊ5åÇŸ”–=žs×Ò€—ͺ­›õEý» ¾¿ºòÀžÒÒ¶ ÏÏêÖ¦·Vm‘éƒFI–ÀZƒGÆÇªœ@Y}§ãe”nxÙÐ'Ì7„ß uhØL&Í·U~@IDAT!þõWð°ô{µê(/ªëcãŽoqeNÑõ…À„ÙÓunýí„ÜM/m•‹/¼ÐyÄ›ƒx(ÔRØøŠl˜µHÊ>],tÿ:íšIÓ®í…qÏú(¨iVÇswíg”ÿüóÌZ<_(ZÀ­(0òW,!çÌpõý¤ó ^õåWʸރÝ8…1»ÿÎ\®L<¼)Ô¦n:qlĹÆXa=gös€µÈS¬µ‘2ÑÚ¯Ÿw¼ñºÜ­Ê°Ð?ÿäB ü3ÇZóè‹ÖJçA}œR‡þ\óÂF·–žn¹îªkäú«®–¾£†º~þøóOeä” Rüɧݽ_}ö±,^³ÒõÅK¯íyË«Ò#å¼+d @ ¿Ã<‚ÈûPnçÝ…BÌOÜs¿[³x_pžw:ïˆýáî»ãnÇë•)TÔ½=Ïâ½µJè¨V²œ»¥—ÂRnËóË$èi„"µS£ÎSõŽyÃ3=Ç|ÛíÓ8ØÄz'À]¯ë>‰o¿ÿÞ½‡N#W^šC¢É»½Vÿ¡Cà:}ÿã…^¹I]Ù¹ëÍT I„ß ^Ç‚×ûóÏyQd=¨BÑ’²pÕrAžKOJw…/±1ªH@0¨Ùª‘ô;\J¨{xëºÝsÃdb¡Ï™ãJiб• PË}›:sŽðŠwüÞp.8K='.É–Í][úé"òè=8a«Ä³UäÌ3ÎnÍÚºsXE¡ýz¨eÿ÷=üϳå«HeÔGL/µ[7uuU-QλLÄvõšÊäçgÊ¢Õ+ä2µwÕºa,Ÿ(WDµPoÊxeºýË3X÷«j¥F°÷Âɽjµç9Oæ~Bjµn"SçÍ‘öª$òŠ*Î5­QÇy±Tj¢Ÿþᬩež.*Í»u”¥ëR=æÈ;ÿ{_¶nIÃsZ;¬aÖ»ÿA¦Âti¶ìnìc‰Åžåìs]»¸6¡4â^ž´ò<ô¨z9¼à1~‡wí#óW,QϘ òÙ—_8åCPÄJ¼`åRyóÝw|5©>««bfóKÛ¤|ƒZN¡…8œX˜y®ÆÛ9AœóxFОja OÞ[ÿ¢{N¯ðLKÛ¨c„>×é*ÔVhTK_oIåâeBÍBÉö¿?tB0a((+-:7”}Ût–^~QXŸPÌúõ‰J`š³AH¸U¬_zµîèèÚmšºkñòaÎ@(v¦ÍŸã”‰î€þAYµaÛ'´Æ›ƒeŸ)&Ï–¯*Ï ì­^5%dµzBukÞV|Š™ŸùÅÝ%n¾‡sKïƒÝ­X»P|²î1O˜#(…/wߺû^×fpö ÂPRàIPâÙªò² ØÃ:÷vî®ñð¦Òû ç•9K†îüÒ°J-·ž£Ì©Ö¼*ܲ¹w/kmŒÕ®xýŒR—9k Jîaºö­ß²Iû}›»u¬5…Ïã1ã‚¢Ú—( _ßõ¶{†ï÷ì‘=ª`õÄ»Â÷ÁÅdsJ5ŽÏOÿsÎJm‰ ž·ï†@<S‹ÆïðNŸéب¹ô>Hšué ùTyÑPÃå +<Óæ¨¢¯#”måô}[èñ|²?¼Öü="O«¥UÎn½b}Î÷ðcî>YÎ>G.P¾â]Jèz•”±_ºvµ*ˆ;)ÿ”Åo¥!s®Z÷ì,CÔØ‚—§ã-um22ÒXïÏG²Æ{:ïœ,N žUym££ í¯¿ê¼Ÿ·¿±3âƒ{Þ!¿~A<kåÆu.d# õ!œròÉRQ=/úÞ—g¯?Ù¿Ó}u~à®\.¾ùž§óŒ”ḠN#ßup_w sžœ%Ÿóg©âÇŸ|ÄϨ„Õö³¯¾-Û_v p­VMôº” ½coçââó‰pqiÒ¥<¿l±;ݬ[{¹÷ö»BE®Z&݇¦XŒÎuŸºfý$X2 mzuq–±ãôY­£_«wÁŽ7_—{n½SÞýàfp‡ ›/‡<,¸Ç®÷Þ¬e­õEе÷i˜W—¨Â¡Ž*S«¢úr÷WÎõ›ó Pv¦ˆãÆ-rÌôÉîÚW%¸ØïT… ôëo¿I÷æí¤ç°î7` b…Êð|»ÞÏ T.xxžÅSÎË®p‚r7UbàŽ‡ VíUßåúÏ— ~Âmzq‹;T¼Ë4êÔF^Þùª ±è0ù©¶BøG9CßžwÎçS½EC7Îð*ÀÃæÚ+rêxÚ)íûöpVqò  ¶R/Ƨ^yQ=Rú™±Œ·ÖÙWÔ["QBÁˆløäqî2{Ë×­Õ¢ VÉ‚…UÁ8Â)×Èaвûsr“†üD¢µ/lt 'çÞ¨_ÓyÐàäm'ÏmeÎz‚©Dë»dÍ*§BÈoQ«¾Sð1ŽÓÒ¶Ûn¸Y®Ò>¿6w.ùQ=Š·çžuŽ ‰ºÛ3V™Oo¾›CÿâÑ6(o‚ 7Æòôs¥cÿž®hãÎm¥eínã%ÑV½ÉDÌ_^¯ê:õ“ÁåH@(ŽYΑoävû+ÈOG±æàwjµiØ©Uh 2×Ë>S\.»({( ‡J˜#ùyÜ­Ÿ„&@çí°˜òl¬=X7‰w|¤D¡TJ”z:ÏñŽa\²AôÞ[X ÆÒiª8DÉšÞѼPâ­Äš4I=¸ ·ß{×YTq¿=N,±ÖÆXí ΟHýìn¦²«ò‹ïU*ìaókÍCù$¼hX[tjíñ$õdù>XD~Pž§+C‹2Sð|1Ëqû¾¿ßñuá*Œw¿ÆºÌ»¥kÞ‰c8¥a’o«Wgõ½Äy§%ÊݨáM'žp¢[+0r@O?Q@½Ž®Ž¨´d.ÕiÛÜ•CIŒU÷ÇnUðV*VÊ¥æ-OY·OU/Þ£F†À¡@ Þ;áþóå;o» :IçƒÑÑ…@4ž'…HüVx™x<aûíúts|2éGÖŠ×êô…sxCÎkœ\Îs„ß'Y¿Ó]a…¡Ì++xU›Ö9÷<´Œ0ÉŸëyÂ<1Å}Ek‹º±€¿¾b£,S KÕŠq»0ù¼L=½«ÖêEkV8aAÒL>ÿ=½ýÞ¿ÖâÍj-ûäóÏ\¢Èjy&ŒE–Bâªï x èá)¢/FÊ€âI‚µñ;ï‘åzÊ¡ø¬ya“Xý}Wm\¯(ÿ¾LÁ6H„}œ|ÒÉNôÇa”fj–©äIæSNvLmÖóÎ 0òP$\ðÖ˜ Â}vÃã÷Éo*h ,?C®yônùJÜÅ{jÜ=Š ŠªÔÁ… \> G(P©¤F±ÚÎÑÄ›©Ë;Êžƒõ;´tmÀºKòNXèÁgûë;Ý9þl óIKÛ|¥0üõ4áy.ž¢°ñ炟Lì fôÕ–"yB¡åûA˜Å O ˆ¾$,ç´Ì™Ýo¬¬žkã¬W¸‘{ÁÌÔ?kÕªëé-õt@ȼJ¶ ÀåÏGúDèÃ3æuÙ²R©` VÌOŠÅµnXÒð®ÁkàéªeS «áõ£°ð„Bï“Ï?uùK¼Â‚~ÇíØ¹ 1§~Ѧ¹,HHHØ ‹´´íÊËr¨Bñ}Çø{"@{…S.³ZùÊ7¬é„Bˆ0Ý$ *,¢á–óò+Råm ?êµoá¼ð0é6´¿›gþÞÁÏ>ªˆÄC×QòÜ|í î4÷ *,j”©(MªÕ–ÒõjÈ.õd‚âÍA0%ĈxÅ®¾Fn¾æz—{"<ã‹$–SBÖ®|è«î²på² Å2ëí×ßè”)%T9¡ÞXIY÷Fwïï”3WGÜJo_ð Aéþ;Pÿ«4cþ\¡ã”ñkmŒÕ.ŸhýìϳNƒ×a@¿«Çã9Öš‡7ˆ'Âû&ôªJèÁê•’¯—Ïðä·¬;Ôùƒ*&ð¼Aù$ò Îfd(±øæ´.ð¾ÁKóžêäÞé(ÌY¿®Ïy­†Zîp×%ÊQå›WVðûëow+Ï‘báwÞQÅ«'¼ž¾SCüÉU—^îÞWÁwžˆb —}¦3ñÞ :´RoÛaNÞ€ÇxŠ—íO¿ü”Î-µÛ)Dâ·ÂÛž…lãó_áEMÉCÅ :'ƒÇ4Oa«ð-±ŒÞá÷=Ðßñýôæ(×ñº³Rì—_~u¥ÿTáŒxH,¨±k’'„lO$j¼÷™¼Î]™Üä ñ\8ᾌåÊÿ¿*Çå!! ~4‚Yô„0þDÙ¢ÂBò‹2Á›´–USçªëý9ŽAõuó‰ë7®5¹TQ`@û—hHVÜ®¾Î ~@œ¤/_ò)‰¸ï`Ñ–à ëæ2­“ü´¯?kHISüÿMê†ßV5fÞÂI=þ¹"á‚ÚM*À'Î3ã=‚¥äØcÑ] îpÍ †ÿMW³ecÍ?q¿S@!PbÉ œcƒ2/^Å=d‰Þû »Ál&”‡“0o³‡•…c¦¨•º˜Ûå€ïxž@LpOô‘ï/w>¬ïÿVF+ÜcÇ_Ë'c ra8*¼é›o¿ ý¤í("…,… ¾ ÐìÞÏ)žž¬\*•çÏHh„S|Žœ6Ñ…JUÑÜô9hxnHB FOvãÜßâÛR[‰Y‚8àÁD=Þbç¯ã3Ø'üÆË‰uJKÛNȘÉ1´®¢>Wï-;µÉ0½A·ÌX¸ÑÆHëËùîw ˆ²úfü§Ö¹ù¯.ÔǨx®[î/heà~(ÄXS.P«l8q|äÔ šÄ÷§¼À²m½Oïðúýï“Ôâ§]4”íMµðÆ[cµ‹zcõ3烄gÖ¢yêRyŸ;kÍó×ÚÄ»kÐø‘Òsø¿J „5ïUçËâ‘BŽ pL9ÿožÊœ¦^xAÏ+}‰"‹ßñuð¾÷„!Â{ƒ¹wð6býè3rh*ÅDy#êû-àÉoÞkÑèW5É—åÁ÷ïï ÞF†À¡B Þ;Ú» =¡ïöòx™Â.¤ëø_¥oC…Ý÷Àç·ÂkÙ_«VÙÊ2~ö4'ÃS£2ÁÕ[4PcW‰ðªÊït÷°@Ða'¼%˜¤Ð½wÜ儬›$¹Ëš%‹|"=,LNò,@¸ÅzBƒï K"/4ÜÒùOÌÍ”#\,6ZIO„50郄pŒ Iž ß.,·ÄÊ—©W=XÔ}ǵ¤lä´à?Û¥nž³Ä1¥äUà°@£\!GÆF à…‰à›5ð„¡÷’Ké~ýo· Ü1QœlÐ- ‰û'F«Ì-á~— ðzXçïõe £¤H¸àJLŒ*ù<Á„¸ç9>£”а-Y»Ò!'ÉŽ7^sL\¯Ã,‚™ö*šÞR¯b˃tÝU9Õ…Z§¾·Ë18„ÌÌT†BHò„€›–¶ùzî¾å6Y°b™ÿúd›ÈO¿üñ¬¸<ûen‡”p7uÚ‹rqи‘¡Ëñ†øL±Z¶n•óò'ØÊ…àüKG’?žS½4<áu…¢ïºsŒ'<”› Wn’¤”øègª—÷Ekÿª½J¯´´ f…bpm n-Š'ñÒŒÏüÂŒ=¯báö¡ ®—^”=Ônú„ð'ænwA"”f“®xã`¡Ç…:O¹bngÊy¯Ÿ‰pÂ…È´tR6Þ¬W9eÜà¡1çÉ}Œ*%Y³6êVÆ„ÊáÅqÚN`gM@yƒ'sØß—Ð<<)˜ÛxZñŒ¹4Їâ«kå1úÅ ’ðÄa„¶áu—Þ®Aþ| kÄxðù2P2”Vå B}¼µ1V»ð¤‹ÕÏä5)øXçQâ›v®Žï?÷®¡±Ö<ÊóÞa÷¹ÂãDÉÿC'Þ?¸Ö»òêmÃØ‚Wã}ÉúŒUºEÏ=ÝAûcì±øÅê á9ʼð¶ãÇü É—q-.R³¢;ÇŸVÏ6pïn¾¿¸c{B¼e“Aï(ŸÉúMÎ/ïåÁ:nd*â½ðœÄ8â ›¼3y$ê-{¨žËÄã·Â[³?<2.|>;ÏÁ㱆¢èÅð¿ê¼}cüÃï} ¿ÓݤhßÙxiÀ`º`KxÅ×ß|ãBD`œÙ™ vùÊò’Æn« ÓK¬<à <²k‚·Ì’ÇÄJ…0l\‹Ò-$¡ŠÀNœÇ5ºyÍúîe‹ On…÷>ü ¢…ûùGú©@K4”U*0ù^1^?Ìãju;ÄŠŠEBqAîÕ›6„îÁŽ$B!™JÂKrß÷`(¾<¼Þàov0 ‡EkMRŠ0Ëý6›×ªç’yòL½5ÿyD•Áz‚ßIè‡pÞBcíBøßX]ÎR¥íÇE ù?|ò­Ê*<µí"€-X¹Ì÷‰%Yhñhà8D‚Ó'u`QÇúÏX@èG8Âe÷ÿŠ{J¸‚-ÊOim›¯‡Vxa„/„˜„KbÉIÆç††—'ñ!»¥øÿxccƒß^AÁXEÁV$ýBÉ6næÔðªúÝ¥ik—e˜†–C¨Î5º³‰',ë÷hž($ç„yLDaÁ~à$Ùé9| &1;ßí8C~ _7àã÷?ì’…2Ïr«·Ì M‰J®ÿü|ÎZ¼À5‡ïÁ0°Bºó ‚8sœ$°x· ÀóD¨E¤>Y¢» Ì dˆñBˆ÷ÇEJKÛðžÀÞ¨jm7Îé› ò¸=¬s$säÞ(3ðš¯cŠ‡Û”çg;¯êeý" -2k6oL…Xýõ×ßòüòEznƒËYÀú”m¯rå å  $¸l£!cc¦Orë}åÿ3ÎâÍÁ/TqŒ‡eYÃÈžeR…$sE$cEÿYO°ØoÙª„Ç»¹î… J^B›Ø%Ë Ö æcåÚ¢ÕËÝÚŒgØíºŽ³˜°ëÍÓOäs YãáíåŠ. Ü‹8Kê&”…w ™Öã­±Ú¯ŸÙ•¯4v_b~0ÏójÒÚ™‹Râûc­yôA/Ý2úE‹¬»¾ùdýFÙÂh¤Ï‚†~+óLQ—œ(SBñ^¹xi‡ JSbÿ}^£(pÙaC &‰ð;ð6¼§1H±ÍÐõ¦ük ã›w*¡{¬/P¢¼QÌîÇI˜lBxQŒbÔB í×¼ý¨ÆŠIC Ö;›¸÷®ÊLð¼HjÎlá¤5È*:"ˆÇoñPä8C†ö‡Çª«òé e>üôcÇgÀ¿f×M/àõ•)ÝðOº{Xð°åÖ’þíºÊËšeŸá*Ø«©[ ÄCWÐ\$úÛ¾xºÐÿè„1^~loØ£E;—@ m~ÿ1ÃPϵu[?´ü«¦ÌuŒ"L~å&õÏ÷Uê¶ÌvìW?P=0‰ºvè&«§=ï´Fk5—Dÿ1˹ßtPoµŒìØMNÏ|šî¸qœº:vLfÄ ôàÊ ëäÉGŸ fTàGðñù+¸?»£°-Xë: •©ÿ-e—0h÷Àê]4ßSn÷‰š­K9uDZU·öÃÍ›Ð2lïQ¸¼©Ûcb%üj÷n©Ø¸vÈbÚ®OW×^v~À ï„u«+;´ êÐ]þþçoçC®oBXÑ›vn'ûôqŠ'Â_ª·häÎãO¼ûÚéó\ÿš:Ñ)8¥¥m\ç/]ï¿ËÏT„WšCv!vkjKÕ©zîT…üÐŽõ‰íÝ6ÉP)ì!^u(øÿp‰‚r¶,QK¡—Nñ[vAXC“J¨@"‹ a,éó aígßïñª`¹Hw³ Ïð´øâë/µ»¤J޼.ÒwQË&ÎR&6£îjð™fr¯²SO‡àN%¾r©4éÜVªª Úµi3â”tl㥥m¬M`„õ|çò ng ¶0%‡„»{ ѵÉ'½‚Ñ@¸…âáÆv¥9Ôãf‚fÌ'4„—K³®ܵ±þàÅ€µoÖ¨C¿îºvp^^·i®”›Xaø¤Kî¹)î¤î šËNÝj—ƒÈ Bîž«¯¸Ò1ö¬±äüY¯žÌ•÷TQ®~­Ž5ç ‰Ú8k±éˬd*¡þ$ Jž×–­—S4ÏÎ’µ«tkíšÉ|¨Û®¹` äÊ@0‡báí Äøƒ6ù4È´ŽŒ$|Þs/ÖÚ«]ñú™¶³†×(]Ñõ–0æù( ›‚b­yä)Áš ¤Ruª¹9Á{jtn[pÞkÓ5w“WØ¡4dGÆ0Š@”ü$ñ ÷’ Ökß xÄâwüî(?æßÓ„y´Ðq ±Í9ãšíEñÊ"·¨7i8¬§Dx#_6ŸäÌ"×;-¡À?kšÛÆžùdd¤7±Þ ´eèÄ1NÁ¶cÉ:—ÿ ¥õ}/áÄâ·(‹³@kå‡à?ãñ´¾n #Îïy:¯;„Qd¦&X¥aã8„çÏó×%ûó˜,·åŒøûw)92œ²¯GB2‚‡ U´—ç¿U x ?B>–nºÞ¬Zçœù<à¼ó„_ÖE ®.‰.äñÞ7‘kâ•Á0Í3Æjk¼züy,Ù<·gÖýñýùD³‹•¡1Ñ'ÑbAéòR€S¤øxdpÄ#!a¹%Ü'Òµ”OKÛ"Ý/xŒ¾Àªm¼Ë&úþ`±ˆö<‰Ö­;‚`ùž8gº ýñ»:D+ ÇãÍÃxuÆš§ñ®å<}‚7V¤y—Ö¶±ö€Y´¹ÇXå|x>DÚ‰äûÛ'iÅ+ÞŒ·Ž1÷3Ÿ|rH™þ¬(Moóñëáçó(j"Y…âͱ´à’…¶ù”H튶6ÆkWx]á¿YÃéçHŠÂxk^x]á¿£$Œ4i7˜E[«Ãë²ß†@¢„¯(,ÞRcÆÝ…wã0µHs<CÀ0 CÀ0 CÀ0 Cà(DÀGa§Û#†€!`†€!`†€!`‡;¦°8Ü{ÈÚg†€!`†€!`†€!`…˜Ââ(ìt{dCÀ0 CÀ0 CÀ0 CàpG C" <6Ãq‰³2†€!`†€!`†€!`†€!`$ó°H ŒV‰!`†€!`†€!`†€!`$SX$M«Ë0 CÀ0 CÀ0 CÀ0’‚€),’£Ub†€!`†€!`†€!`ÉDÀÉDÓê2 CÀ0 CÀ0 CÀ0 ¤ ` ‹¤Àh•†€!`†€!`†€!`†@20…E2Ñ´º CÀ0 CÀ0 CÀ0 C )˜Â")0Z%†€!`†€!`†€!`†€!LLa‘L4­.CÀ0 CÀ0 CÀ0 CÀH ¦°H ŒV‰!`†€!`†€!`†€!`$SX$M«Ë0 CÀ0 CÀ0 CÀ0’‚€),’£Ub†€!`†€!`†€!`ÉD ÝÇgÈÌv[]ÒÛc>d2w\ Uû~u-¥ã]O™cŽ9F¢=o¬ú©›ú“I´õ@î{ܱ±qL¤Ü7‘ê8¶FªÇ;Ðç÷×?÷÷Y‚×òý”“N?tÐ'Òæhc9­c Òõ‰Ž‰H׆ƒ•Œ¾åÙ©g(‘¶%Ò×Ñî¯þxçOÈt‚D+íøþ<¿•5 È0¿lŽEÆÆŽ9ÄâÃßûûÎãLé§ã†¹²}ái]»aT]x¥ÔØ™?r’»~BïÁR0wžP±xcbîil7¬\3Õa–¼ÿч²íÕWä¦k®“Ž šKÑÚ•äÍwwÉåªx™Ú„¼¾ë-Ùõ¿÷â☖¶õ;L†NºÇåÙ/ÑI9HŒéŽe̘QrÝr‡¬RZÞÿøÃP¹=?î }ö¥Ìc÷>(o¼óv´"©Ž_vQv·(¨\R^{ûM‡Ê ³œ/Í{tJU6‘¥ë×ï~ø.nÑxý·‚4ˆ‡o¬¾Mä¶×\~¥SžÝ{Û*t¦¶äÇ»w"õG*ÃxiQ³ž<\²|öÕ’÷ÁGeT·~’ë™<òC`Ü `lRµvª*PÂMê;TÖ¼°QrÎ+gŸy¦ jßÝ­[íû÷HU6Ò"y J1UÎÞ±h­kgP#ßX}K½ƒ“t>ûùŽPËÚ⩞¾Ôß~ÿ]©Ý®™?úŒwo æ{8·›ëÌÞ-;ºûù ¢Ë–5«+òõ·»ÝçÇŸæ¬ñ™O9Å_êóþm:KáƒBÇør½ íîýÆ —ß~ÿM>ÑkGMŸ(xbxz8×}ÎàÕ[åEõ^an èC}ö‰<«ÏвÚ©J¿/¾þJ.¾ ›ûÍŸ‹²^ s”Ñy{å Nsî×ÇDîÍõÑÆ6ã÷º+rÊúm›Ý:€¢‚¹…RÁSy}ù±žá9Á÷ ÝóZyñÕíîšã´.?/)ƒ¢§@åR2éù™î6(¨íÕ×”uï’Ÿ‘9ËÊ;ºö°¾M[8W>Wæ0Ÿz~1g‹ç/$#§Mt¸²NôVÁóŠK.£jAQtŽ*-òULýLœ‹7¯)ƒk}:gè87¯9q=ï$Þ3̯Áº»õ4ålü9àËÙ§!V¢ñ;¼à#PÎâɺԦN£ŸÁ}£­[ûÃÝwû]Ž×+ýT÷.ñ<‹w¡/®…U‹—uéß—ðƒ”Û‚”/\ÌÍY¶PõK¿.#>3œ°@!¡MоZó®ïè¡®XÁBêáâ„dxè³e½Â=ß¾…ë/^{¢ï¸ñf ÆH;æè”t¶ç“åÂ…¼Ô…ÝC9îSïDíÊîŒÓN—ô…ælæZöꢟmûuw›^۪ߣÿÔ(SÉñ0:aŒ(þ•ØxF O$ë%Y\+1_œ5ÍÍ[¾È].·Ž š»Žz»|йí»Þ£­oÌ0åWßxÝÝ)†6’ãÖ;U)õ†^¹GxÈm“í0¸Æ÷ìö|ú‰+& ‹W¯ò¦­{ä¾\ºï¹²¾n…ªîý=ªaAä…°#F÷ú­›u1†$FFõ UÑ.&ÆOŠUtzð¬YîY7`Ìp5|[ÁÏÆC*›ëÞ´k(ÞÅÊb8wÜW7Á09N¢*N<á¯P!ÒE0¢2Ÿ~ºösäÔ Î]­T7¶Ç@%#æ¯X¢ûC\|&$¡œ;%Dœ”’»n¾-rø&B=x÷½®Y·nÔÔ‰®¦îAIOß‚í”R b¥óþóbFç9„QŒ‘‡Ò&(BýŨh"QAc}ÂÆ'DÍ‚•K#McŒåCfå¦uºìÜ3Ïr *×p¿íûÍUjTÇ1‘Œë9PúSÄ5éÖN÷m' ˜ŸPkœO"ItýØ?l ‘F@ vÉÚUÜ–í¯êýëÃyØ|è÷\ËFn¢xÞ!R<1—ß°kËØ"(ŸËØyú¹J®~ÇVúÇûí¥Šx㻠鯴_æ?2ÒtýÖM®D­ÊJ¼q¿#aëæ,]ävðžÛs5ý[wRFòÁKËçê¹ÙK¸7v¿åé'ÄÆ9F±æˆEÎyL÷j\¨XBˆÁ®Œ„ä=‘'Ÿn¾zÓz÷Êë¯ù]µŸŸ¡[½y}d¤×º-›\ùúÏéø#÷#’èØl6¶‰@`ÌBlŸ¿RoðòDôÃ÷>àW­¥c A§Ö®L¡¢©êŠ‚qÞÙgkÚé;¤‡•1¼KÈw娓ÎÚî¸)Ëîu¢csî~¼‡f"ò‘àNúàY™3ËÜvBªõD]@ZúôÂABÖÖhÙPæ±R6Òˆ|It_ç¸õ7¨}w7{ñW´zEõ¢M4:rïBVðL‚$©Ú¬¾^'æx$-÷€nh t"@®r<}çHÑéÐ#ˆDê>t€kÔ¥­’u+UÕ£†Í[£ñLÜÃÁÒ¼GGסOW±h)—O"¤säyÁ¹çéwž—¤¡—TjT[Ÿ=šµqç•Bh7«^Wõ»æ=;гe¤k[§±žƒŸ¯´ûcdaz0:r†è^°Ðõ.¤fûuöiÓOémKÖ¬Týy7×]9Ý‚KUoÃÔgäàa2äû_a r8çî»ón5sÉñ¢£xµ¨YßuÔGk#Ü+Ú[ >è>ùü3íUf!%.8ç|÷ÞG†öò"ñ~üÙgnöWÔ€ÂÛè`<Âíñ^Ç’ÊÅ˸†Û¸™‹æéjBñ '÷òòÒ…âí§?sÝÓá¡_³eƒ*™-{ur‹×,—ģݾß÷»èçâñäø÷Üz»{ûýw%Íàvéãwçþ‹œ·ßéÞ|g·zT›Õ¨«†.¡Ï„Cd€nà ŸÉsfF~GÙ#ÆÂ®wßv„NqÀÿ­;¶ëf¤u&]KHzºÌ™ÎÐHVžpü º †TÑ|IM…BYq‰ë%Çû^"6ŒœyË+©!0^Ââï–úÏå<+)éž®QÉ­Úo¸“’Ò­IkÝ—?éí›oˆº“fÏHeÜ^}ù ‰ññgŸ¸J¢‘;ˆ¡Éõ‹%(B«7oÐõAâ…mÃÆg°-H=R>ïø!ϼ0¶›vk¯×}ô´³5r¦Š1k·lÏö:Gô͵BZ½º3e¬ûýÂ>]¿Dc/ôÞpÏ4®£‡ dLr½ÔïØR é¥ëV)ÁÈd7gÙ"—ß°k 3yÎK®ç°AzüWߨ¡çŽÎKX$L¢cW,ZÒM~ù%×®_m®AçÖšêÁ¹…­ûQ¼ÿë^Ùäž-^VIÙóE±à¼½@<Þ Æy³îÕKï—ó‰Á%(ß~ÿÖƒá|1œéÞ„t£BP25¸ß!’ú´ìà&Á ‰äeùú5zŸò»ìóÕ%ri©Fc%:6sXØØÆ`áÞ„ˆlÒ¥z,W­­Ä+ó žÏÁB|öbyû½w´nþ?\¢A V1L06ÈÙ½ç©¼Ž¨-/µÊUVòtID|y »Ö‰Ž}’5àˆ#ÈpÖ!ß|Ÿúº|'Û{olرƒmƺ¯™×®Z¦ÄÛrÿà f>üâ(ªb^ÿÒTmêwÞR¯0ìù(á=<¾}7þ.èQñôßæp ž6o¶þÄ!A‰c#lÞb~J«ntÓ5׋Nq¼>k<9y3eÆ‚9¾‘Ï=Ÿ~,zRý½þ•Íeuµ8¾üökW¡h WSœR³Í×õ§J”Ž1CàP ¦ã´ Ú¶ÒÓ¥ôY޾U¥DYí&÷ƒ‰!†@˜~’HoÃ>hÕ»‹+ëaMÇ%Š' ö"vtö«¯»üƒô§°þ¤g]†Ô( ·;XŸ`ÉÚUžw´¦ \&žaÂq=YÁÉá¡G|ø²þˆñgÊœYêq~mÞ ·på27cá·hÕò¶ÄûÏÃÔËÛï½+dÀ"‰8#•‡C›ÿ^ví~ÛU£ä£O÷ˆ'p¡nCÁÌEs•À£4V1:I¤ùíD °#ŽHýûï¸GÖ§ô3ë%—9Œ È /K¥ö9Ö^Þò ¸žå¤Å`tpÞ^ðŠ@&T•È/§œt’nG„Wøß°y$.¤Hj‡ó¦ü¸_~ùEëÌ1Ñ]Ÿ7§æxãQéÚ¸•+IÑMHBØ~B‡O˜¶´’/x|©Íð»:?œÞͺíR¼×ËĸÛ.é<¤”à…&k/ÑÑ1éé›o…¬Ê7øË;Ϻ†â n&¿á›È÷G%ìõɼÔNdÆ)0x€*ù¤_œê3-ã/6ů¹âJÅŒëçe·]þºcÜѯû‰¶ãzžv…˜ð‡]?RpÂÆÞÖyõék‹ž´Ë¤`n (lKø-†/„Pصŀî$gnIïÊžíZ-’xÓ5ÙuòÔÆüItìlb@÷Ù_Ë„¦H³¨Ó¶™¶¶ŽúùÈãn<·ëžûu…ª”Õ¾ñE­R¢#9ºÈ*¹‚\óoeÝ=iKˆ÷Q 7ÈcËëÛR5…÷er¿a’âðŽ«'‘'AY¾aMä'ùÁœœèؤхm †—å~õ÷ µ,(æJÊ„÷W°^ Q(Aâ˜Ú¤–y\ ‹)ryŸÌ>E‹Ž“3 ¡AŠ_’*’H›š4â~œ# \㣊ßr]¢Iް~Ä»¯é)v>­‘6Ž:êHÁërwѹ竱G$Þb¬yá>¿òÒ¬ª¼¦çðíÙ§!HØxú„²"0·¬·õ\(c˜¨¯°y+­ºÇ€¼ôd¿™Ã¼c„ßAySHQ/Ì+Á'Š…{ò=ËËr©äjø_öid,az0Ñuu%Ú|œDm®—ÈCœŽ8O!ý!M ¿‹@"½v±m¼ãŒå‡JÒ´¿ñ6CBtnÔÒ=!ä ŠÄO¢Ünßµ#²_ðÈ{²‚ß¾ˆd,\GdzÑZX6?9bxà¼ûf©—!ÞA¼$ä®_{ÅÕ¢œ¼*¡Ý纺•ª©'ƒÜÕUBúøRY(Ê—[Rw ,>e}ñštCƒgÍæz.¤š ` “×…ò'½}óí<•· ö@´xŒå`Êy@ pã¯ñëoîRÏ; Ñ”õXs<7¼µ¡Œx³OÈ™¡{jh*…ƒi4Á¢„EGóèòOØõK4†ÀÆ?žpÏü!š”Ë#䟗xø&º¶\꼜*µ!–®]í¦ãKĤ`Z%Þ±ÙÿT‰¤ b –„­c¼ƒ'^dņµJnæÉy¿Þ÷œ?)^ˆý&çÑí…þªˆg:5uÑF~k ‚ôbmšÔ8@ùÇ8è5|pÄÓ¢ ÊÆÜ´£4-¥lý©"†ØæëoSG po1a„›Ú7acB'ˆ'ÇbžñÄ-÷rаà˜ÜO^øþûŸÍqÜ‹#>‚ÌoÇ'cjØÄ±nd·¾J^çåàvþ{¢csîÑÇá7Ú—R‡cç´Àuaž„¦ãùcÅú »¯¹¿ÞýðƒTs4ó5˼!Hâ`ä ë)P q“Þ{ Vm™!@˜¾Cz"òÕ7E®2g!G}TÂy+­ºía¬%8‡—óçJPü¶Ìc|ÿ:ÍÆ\cb*Âô`úDÔlŽÂº[%jú}yþãð¥vŽ+C =„émÑíRÌôI!S™L‰óåÅíë5Ѩ‹èí“ý;à ‹w%|Ñ>Š‚â€€ö–(©çd>ËF"íkB~žl?`ì=”E/0ø^ðæÿ,´~RƒÿxÇKQ>¼úÁ@ÞrEýnú‰‡ ÃJ#<ö§¢à!¤o™ç«¥Ú–x–³]~¥Œ¤h$ù̼š“cúÌÿ Àè{̱®´ä#¯r„&Ÿ„þbÔn AQ †µ³Œß‰Þ6A8&$ÄŠ ³´Hêh Å›ð{Þʪ™Kúøx¾3ɺ ÄÂ…°grå¼RÂö(ìÆ;N"U ˜ /`}] "ˆŠÀ3Ïvцßñb¼€BÔŠ¯A¢ ä†Ù€±k5õƒœšSçÍÒÕõ‚Ñ“ž¾ùv0ªðG ¯—$- ¹Ç£˜i{ÉÅã=†ä¢FÂÄÙïzÖ,—jØ)×&l|Bä È Þñ˜¼À¼´óOJ¢ë—h Ñï`­úJjJ(ÂýÉýêÉ.rö™0|]Û|¹rkÎò-’:æÛ†4ô5<ô!ÂŽÍnœ×eû Ëò›ùˆ¹„H °uÜçÁ{…}™[ï//Y(ÑcŸ±H…!R!¨_ðá'{Ôc'ž¹Åßï7_›]ÇÏHZ!z¤Hy¡00‘ $Ïd!Ë0fŸi"uNÑ9~{Žç…±FÞ÷»¾¯Þš°c‘ˆ ŸÁþÑc›bªDÉaÒшC¨ñõŸ>ÿeý—Ó·>sF¼èÚ÷ë©(@ì’Ö›…®—h°çáè£2¨| ñF0ëäOرن¯›¯Ëî7×ëùJÚÏ"U¸>µæfy.@bDŠ‘¢¾„Ý×Ü_<û|ª »ò¶‘=’‚æS ÙÆ…ü()Ïêþ¤÷ˆê¦ý4â"¦ïÌ[¾D÷ã9Ê܈P·‚y™±Û[ ‡Í[ÛM‹n¤ 'ád(ú5¿ü=} 61az0}ªZ²œ:_½§ëXÑ|jö¡ê·÷ÿDz[ðì°qÑMî/ö˜og…èÅñNŠ*úc´­Ü?ßS4Ýd´”Æ6(,¨aèRxhPq”‘“]%â¾øê+­àŒB‹1[CÞ2Àƒå; Da-.Õ ‡BœçÉñØ^"ÛRÍ£Ã7,@zÀBþ¼Ÿm§~ðð݆Р<†¢}ðÆ"+Õ’*Á~O^ fx; 8!ZFNyñ€ˆ ¿}ô'ž:Œ†–RÄ”ÊõeëÕÐâ{ë§/ÐŒ b€áÁH )„.¯ËkõöíûM § jE¼­zuÕþV–B@ßKºJ?¹&ë¤È‚ÒߪWg-ù‡¼Î”"vãgNÕ›¬§VA#)t:X*åã1å•…¼=án¹ê¼‘ë?L /éém`ñØ%c´àùÆØ%5<2šI¥êT‰œwôö‰~‡OÞö€Ú§eêkC¤JžÒ…5®õa×û&l ahב°mDák)c¯s“®íÕ¦S¬‡|kÉ­‘BÅâ©û ³%Â7ìÚB¤Ì“ËÆ¿¤))ŸHU›¾ÝôM>¤Z„¥©Ð¯DÇ/†$DÖ(y soðiÒµ-»JÄøëHÓ zl…¼R1Íc|ÑXm ä÷æ0ï;®Õ9‹¼@oôœ2AßüAúĽE$µ,˜GˆÖ¨¼ÿÎþ0¼­Õþ·$AÎ5I‰®oœÁ`@ÂŽíÛŠ÷IuAž)VZÞÌÔL‰*ÈSˆ…€‰^ã}òGy„Ô§Y˜*Šˆ:é\öâKŽ´ÁõP©Ñ_u†h›·ñz\®ïüK]½-µíD›T-ÞöÄ«¯’ùö½Þ×9Øã¡AÏ+RìðS :-’辆¼»X%æ?"- f˜/)07ö¢¹#&(9±J!AˆšôÞié¿mc€@˜¾ãIcBÕýsz±DØ¡O!aó–n Ò¢ùm“ñY·½¼áMê ñÆ!RCs&ZÍ;¶’q kÃH+‰ôàÁãF¹n¹úÊ쥚N43z¶‰!ém¾mœg¤ñß[´ ."òtêÜYnˆ¤°€NœrÄ9·eû+‘8ꈿ~“RpìØL§D­IÎO",¨Ç€QKXOD…>ðÛ œãéö)%~¹ÿÄSuVæØëe/˜Wï÷óŸ°FljŒ¿=Êç_~Qüýòô|âé£]ذ¾¦õxT©’d¼6avñjGרðÛÂ/”k 'º&X?ÃNxº}¡_î?I]øå×ßbîË6éé›?F¼O®}‹7ÞâíoyØøŒ·ÏÁ._7mž¦é®”V »~´6†aľ¤źö‰ö »¶MD"ùT´ž«ß.ѱ!ˆ*¢FC´„­# ‚ù‹'oøFïö›}ñ¢Gç²OØukÓ¯K4þÂŽíÛûä^!J.Öy¡À¬Él‹kÉ5w=9wÈšèz.Á6â}Otl®'ir>ÿ>ºž Œ—D53¢÷KËïDÏ´°q¶.-Ƕm ƒA Zß°Ø!ÎŒ{ ç“gä§š¢ëþLï¼u0} Û–{ø‰öZ¶~µ>“Ø–·1=¸Ëî½5æ¼Öž­3’…@b=øT³?ÆÔ ’ÕkçðD Lo#jîä“NФÐy„®Éz•ûî‡ïS½öݯû;Ÿ‰8‡CJXü²} C >)!óW»éƒG»Rµ«¸oïR/¼=¾øúK{øÅÇ–†€!`„"$,b®Ýù­¤ÞoØ"BçW«Z ôõªþMP‡¨[vXCÀ0[žrØ^ ;qC ¸ùÚ´˜%©L+¥fÂÄ>C4!Þ¡Iòé7ñ¶±å†€!`†@,xƒÙæ×¶ÅŒž‹µý¿aYYykW9©»4¼KIÿÝ+E¢W¤9ÍëßÐëƒ!`‡aq¸]q;_CÀ0 CÀ0 CÀ0 Cà_€@¢‹ KÈ¿ë‚!`†€!`†€!`†€!`üË0Ââ_~¬{†€!`†€!`†€!`†Àሀ‡ãU·s6 CÀ0 CÀ0 CÀ0þåañ/¿@Ö=CÀ0 CÀ0 CÀ0 CàpDÀ‹ÃñªÛ9†€!`†€!`†€!`ÿrŒ°ø—_ ëž!`†€!`†€!`†€!p8"`„ÅáxÕíœ CÀ0 CÀ0 CÀ0 9FXüË/uÏ0 CÀ0 CÀ0 CÀ80Ââp¼êvΆ€!`†€!`†€!`†À¿£ÓÒ¿?öýž–ÍlCÀ0 CÀ0 CÀ0 CÀ0’‚€EX$FkÄ0 CÀ0 CÀ0 CÀ0’‰€ÉDÓÚ2 CÀ0 CÀ0 CÀ0 ¤ `„ER`´F CÀ0 CÀ0 CÀ0 C ™a‘L4­-CÀ0 CÀ0 CÀ0 CÀH FX$FkÄ0 CÀ0 CÀ0 CÀ0’‰€ÉDÓÚ2 CÀ0 CÀ0 CÀ0 ¤ `„ER`´F CÀ0 CÀ0 CÀ0 C ™a‘L4­-CÀ0 CÀ0 CÀ0 CÀH FX$FkÄ0 CÀ0 CÀ0 CÀ0’‰€ÉDÓÚ2 CÀ0 CÀ0 CÀ0 ¤ `„ER`´F CÀ0 CÀ0 CÀ0 C ™daqÌÑG'³ßÖVŒÄöÈ#㙣:*Ы¿†íËÖ‰ög›#Ž8ÂÅ;ß°öÓÒ6í'Sèkz{°û'㘃0<ÃÖùýã}^tþîœ3Ï:`5çJÿc ×üØcµ*!ÆG>.c6Xë°,-¤u›xÛ…õ¬âáE÷Ãöe}¼c².- —´ìo›ƒ»éí{¼>°<n'‚ËšåRwüqÇ's¾ýxmùõéÅð`0óÇ´OC࿈÷Z¢ûí¿xÞvNÿ-ž Œï°gþ ;›D„éÅì{0úA˜NuF¦Óè Ǿêò+XþO.ˆo}&ñ¨çžu¶ûhýv‡¡r¨pkU¨ìÎÊ|æ¡êÂ?rÜL§žªØ^‘岤}EAo\­¶[>q–[5eŽëÔ°…»àœó"Ç»åúÝ‚±SÝŽÅkÝ’g¸šåŸM5©ÞsëínT÷þnÃK Ý´Á£]á|EöåKÁܸµÓ绳»YÃÆ»Çó<šj}ðÇõW]£ç{ì1ÇèâôôsÚ:wùÿ9/û u[æ,MõÿÖì7ùÕ¡Ÿ}ZutS Ý&ÞÊë®ÊæfÑmš½Ä­˜<ÛÕ{¶z*LãíWà¡‡Ýæ——Æ[py"<éçµfÚ\·rÊË®EÍz©ÆBØN:ñD·hÜ4·Pðm[¯IªM™øv¯Üì+ÑrÚ)§º¹£&¹g‹—Iµ*Ѹ{ôÜnL¯nÃÌ…nÎÈ ®Z™Šî¸c‹´‘èÚ†Ë%^r%*ÒVô—´â„¼|Ò,÷ü3Õ#Mð¡¯/xQû>¶× ÷ÄÃù"ëÁ£}ý¦z/n~y‰ëß¶« >P²e½Ò êÐÝ­›1_÷¯_ù¹Tö%\äº7k«×û•±Åüè¥Þ³5RwÆ•’åt5÷]ËZõÝ›Ë6¸õ‚+÷õÕYÓöÐÊ“óî5ÿ]|Á….-c·ä…uŽX?cÚ¹·»í†´Ý‹þÜâ}ò°nXµ¦[=u®{uþ 7¼kŸTÏŠ¢žp»–®sãzvÕJWHx=rÿƒnÊÀnì…nÙÄ™Ìiac‹ë=çð;–¤gŽ‰Õž-3þ_h]·¡оëÿk÷­ß‡9aÏl¨‘Ýúés—gTצ­Ý©'Ÿr˜#vxŸ~<½8ˆJZôƒ0ûìüsÎuèŸýÛvq£{pèð^J*âÊ.æfÈç_Zj†îÐ…uòË/ºNüŸ¹FÙJî–ì7º<¥žr¿ýö›kQ»¾ëÖ¬{ºzEÇ€žØ¨ë7r¨ë;jˆ;AÈÁ{(9õ|ÛæîôÓ2¹a]úºÊë¸%kVêòÅã§»w>xßmܶÅÝ|]v×®^SW¸j9·ó­7Ý•—^î&H{¯¿ù†ÛõÎÛ KOßz äŽ9¤Ïèž]ß/è2<ú÷Üv§+X¡„ô÷½Èvßïý>ò=ÞH™<÷ær;Þz#Þ&q—3)0I´ìÑÉM›7ÛAJѯ>Þã^|é/2%néX†'ÆêN½Ü€ÑÃ\ÍVÅÈ=ÆujÔÂïó‚»·Hþ„G½éÚë•‘½â¾ÛÜO?ÿÙ’¤{Ó6îØcRGP@.”’Iñ™â¥Ý™§gŽlÏ—DãîòK²è$›¿|1÷Ú;tNa´»ðÜó\£Nr¬×6=ãò`p‚xˆŽ6Á8~Zþ?^©”ûòë¯ÜµW^-„ÍD÷Û¾}nÖ¢y®wËîÛï¿s÷íǼg‹öz®Ü(1cd¬tÒß=Û¨Ž;夓Ýü1Sï>ûÇu¯–íݺW6¹»žxDÈÈãÜäÃÝÏ¿üâüúœ·ßé^7ʽ8sZóŸ~þY¿7}îy—?W—»Ä“îÝßw¹îÎéfçò—+æÞØýVdûX_–®]éxú/²òÄNpãz v+7®uïô¡»ñšëbíY–ã¶;\Óuµ?ûÔå“~ŒèÚWÏã»4Ü“‘†b|iû|cÇý_ Bq÷믿ºÆÕk»Ñ=¸¼eЏ?ÿüÓìI×oÔP×±/%Xc4YÄ8ïצ³ËWîiÓ Aßßó‘ÛüÚÖ„s^ö«¯qÇɽ㩿HªHã/é™cÍØWCà?@¡%Â"C|pÿ ¼ì$þ=$Ò7p¼ìùôSwKþÜ?þèêTªêf'ÏáBîWÑÉMÂôâ iÑÙgå‹”p¯íÚá:ôë©$Y‘ü»áÇ©'VòчüÇ¿’ÙcïØ®¥Üfñ C$=|(Ù(ÕÛæ­PE½\‘P2Ÿ~†z«`½ F„p© š¹‹Ö¸â퇑ôÛN]°ö—‰‚°-Œ©3¹wVnQnYŒÅÓÜç_}©ÛúÅçî?þt—^t±þÆ@?cŠ*ö,€¤¸)ïý²‚qQ‡'v©xµïºù/ÌØ>=}câÿꛯõÿÞö* 3zê7cÁšv׉¡øãO?ª‘Áïo¿ûN·Åp “Ë.¾Ä=[¢Œ6qLd3u– SΛ/ ñ\ó¯z£jµ\±‚Oº…œ€¬@¾‘ã21x²¢W#ºõD\p­ñ”®î\_[°JÇHÙƒ`AÃðëVªæöþ¸×5íÚ^÷õâ݋λP7ùbÿ\òÑ'{4 "èi"Jƒù™ù "ÇÏSìHÄ sÈî›ÝŒ!cDÂX)þØSnÈ‹cóïe.è>d€ W^–Õ½Øwˆƒ„(ñxa½Îº“ü‰×Ïm;^ww ‹ìýñM¿ñ× ÑØºAˆ›¯nU¬Ž’çŒÇLÛÿ'Ö\oß d#OßAÇ@€@$ꎨ¯–µDô úÁ|O”÷ëy¦CŒntïw«®WºPQ}®yŇÐC*V.QVO›(Ϫ¥Ê«>Èvë_Zà ‚½@*·“(?"—VM£Ñ]œC0RÍokŸ†À?@Ø3½"ûÕת£ˆg5ÏÑAcG¸«äÙÏæø§ûkí:Âôbß«´ê‰ì3ÆÚ¾}éåØzHù¢%ÜËK:칌””£gàQG‘páyç»jÍê¹>#_pÅ%´º¹„#(¼xè³e½ÊÕmÛÌõÏ}‹šõÝ7Þ¢¤Jæ1ò°ñ’Y"'.½(E‘/õd—;Çýj¨îwÆé§»ÎZê¦x«‘6½»Šgÿýýç¹rϸÒO>-ŠëhW£yCmëÙâeu³ËÅlU»¡ÿÒ7gé"w¹xã:IÛú÷tyËj§zäüÃ3Øö«âáÅÀòÊsNñÚs÷Ýyn†=߃¹Ý«¢èBæLè;Ô}ôéÇ®hõ nѪebèµw„#ç}¶{^}<’3æÏQ¯»®?„¡be”Ýë_Ù¬‹Gõèï¼U›ÖSc³˜.uÅ @Ž2€~Ô,_Ùõ¯ù¦Wcã2hÜHwÝÕÙ\æíÔ Fè4 ·¶ñ£xÊ/-ÞR/¤‹ Œœ)ý)!êÕÅ /!Õo½»ÛÍ_¾D7‡¼ùìË/Ü€v]ÅÀY¯†÷Ý·ü•€Ge§I—vnä”5­Ç‡Ïôô-ØN¹ÂÅÝé§žæ: L9/Öa8`°AAø`˜¢´… ŠÐ€vÝÔ‹ï½ÒlÁÌØ¾÷ö»twÆ„•'©XXH Ø·Þ}GÉ B ?*ˆ¦ EKê~ü2~´*z(h°­+7®Ó}YÏî±X»y£+W·ºå¤ ‰pbÒ2ž—TŒÆÛð3•€ç–í¯F–1N VoZ¯Ë ° ®¹â*%Uó?˜ÇõÛËžO?ѯD?p_AúyƒD TB r £þš+¯Ò9uD€U]ñà0æw¯Ü¤s¨'”!. ß¼0¦Ï;ûwD® ¤¶0‡BlUn\WIæûhá¡Ëø­ß¡•'~}ØØ³tÛýþ»у‚Q Ûÿ¡8q/¬Û²É1ÿC|ûùŸ1øB§ž¡R¸jyG„„!cö¬Ì™uþúàã|7Üç2'A}Ff}f¼÷ánúü—]û~=t›°~Bêò g„ä,sßÊõk¤_ußDcëÆk®WL ýÝ.¤ã&I• *¦ñæ˜Hçí‹!d ¢ãé;Ìèmë5vÝ_èïul£QXÌo†ƒÓ…€'ê¨×°A®¬¬Ç!RíÑ+îORáÐK* á=ùR™ëÚé}Åúf’ʈãªy·n 8[ˆòTÝ2Çv&†@F öLðzdð¹{îYç¨>y¾èÚ&‡az1HŒ~È>Ã!…Ógú$:õÉ'ä*HäEïá)únF¢Ÿá)!÷ßu†þæxòшý裎VF¾Ó€^š!ó£÷«á™…x€àxï£B±Áãùñ矺õ[·¨÷·z³²_Ê ½m¿ÑCx8Æc,!Ä¥AÇVî¥suu£Î­]Îý& ^^²ÀuÔW×=xϽšõƒz˜1Ztï(äÂrw”œK´§ද»·ÞéÞ~ï]I3¸Ãm>ú Žñæîݪx7—)FáÜ„"C<\*„CM!Sæ Q‚|öåç’ÏzÈ$‹D,@(9bÒx]†’ QB6^Z„Ðï.[¹nƒÿ2"P ÂRe8¿7ßÙ­^ %¢<ž?„P×®PEˆîr­Î%=Å“q Çë11ÀðnàÅ„<é9l Ã‹‰`ìÔ©XÅÍ]¶X ìú®ÔEÄ£ù‚»ëñGô<+>]Ê­VޭܰN·'%…ü{/éí›o‡ÜxŒqÎÅK¶Ë¯Tcª³„㑚еIk·óí7õúù킟(Bkİäú‰¶a|pí!” lƒçÃe Ñ "¯S\·o§¤/ÐNëºÔ"%€û€-ÂãoÈvŽ“v}º»áêµk¡FïRIÃÁkÄ3GÑD†gô¾D„Ü.c,×Óëª2OÓ”¡š-ª±vvæ³\UÉù/V£’*s„Å#ÜÓ-k5PRBDý ‹dI˸óÍA’B"aD¾0~”.NtmÃÆ%d"²|Ýꈻ£N5"ÚÅ“…º‘ü‰Æ ã¯UÎ=ã·‹õy¦Ì}[wÒèšÍQ‘ŒÙ=¢ó©#ÑR[î+¢%Hÿà¾÷²ã­]-EÈà§®sØ’®€ ´ÃªÏ[¶DI7¥&Õë(Ê<±Lιð£õ^yí®ÌSOëø:áøãõA ™É<0N¢¦]»ßVÒ×`ÿ©ÿñŠD¼0GK¼±KDÔZ!#*Ë<}¡\çŸsŽ["i&^˜+&ÍžáÚö馋êwh©÷s$dôÂK]×ýóc¯+Qs–¦ÜDPå;‰ãÞ!Ú„H•#æQO<Çë§o#‹Rx|¯c4*/‰Æ5A«Õ›Õw§È¼Ð r $…‡¶°9ÆÃ> d"@*]<}ÇòpêÜYú“¹yƒg'¤÷äÀ±#tóÏS2‡d•¨.¢ÓªÝ(ÏJjþq‡“y2oAăLŒæéš-ëbHL¼‚Ìo_~󵫸tIuJÍ\8Oן*Q"Ôc21‰ž 8mÐ?·lßæöJ´3ÏYäD¹L/Âôb8Xý Ì>#m¿UÏÎjûa“¢'âHôò Õ;oÈv­Ú#8Ñ2B2œ°Àƒ‡w+XŸ`ÉšžËxùÅYÜ'²/­—‘“_Ô¯°æa‚ÑüõE«ÝQNyˆ-Z¹ì€]0y˜zy[¼Ús–-Rc;èÙäBòßË®@ŽöZñ–}ôÉÇZ(rµx·I#€è Lþ‘ûr¹»QIDJ`¬%€Z¯]s$Áx¹ÿÎn¡¬G² >ËÖ­Q#ÔwÉê•ò×Ãì +‚BÚÇI'ž¤J¹_Ž¢Œ^­tE¿Hà“Ôƒzþ¹çFŒŒ $.×czÐkvÃ#÷º_Äð!ÜrÞèÉîÚÜw«'’ðônRƒ¢…¢«:„°a`òIXxÁŠ%ÔÃS<] oþ.áÿ?œµê´iª}ÀÀ¦x'ÇìÅóÕ;¼õõíºŽ?£¢@ÒÓ7ß(Þ^ $}v!Úý|V݈¶!ì‘(!¢‚¬%ÊU0ükuâñ'êµöµ tgùCQP&/Œƒà=ã—G¦OöÁ[ݨjMWF¢ ˜¼œt‰¾ŠŒ5ÆÜK çj}¿ÿ|ðžû¤FÀ ®Ì“E0Âå>¢ý´HظcÚÚ¥·’gU*IðmÇ»¶¬—~ÿ¯¿ûÖÕOæ¶ Î±p‚@€Ä %…sæÿÍ×ß äM½àq!éý=º2u«Eˆ¿Þêý(!ÍGHXö=·¤Ü~ŸÜÛC'Œ‘¢¹7(y‘ÏüJ½Æë!cð]Ï>A\øMæeƒ¡€¤éP´´U/¤^"N”ë0ûù†ÏŽ’>¶S¼ª^ˆNãžöÞX¿œÏ°±Ë\òâKÓ”¬`[ $ ©<÷¦Ì%ô1ÞüQEšU°_C'ŽÕô>ˆ šLrO{áþ"5*–„õ3z{"¢¦Î™)!•÷êªDc‹yÆ“ìÀ¼!Æù%šc¢m¿ d ¦ïøöyÞ{PFˆžÅ!@ZÑFÌW=‡J¡˜V݈ö~ D@ò›{%ž@žÅoË\À÷o󷯋ÜÞ¾…@¢g¶ÛÝÝ…òŠÎUÕ=Rº°¦û¢#PÛÊÄð¬~È>óíúÏêe*¹ÑÓ&ª OaxR¶«4©ëÊï¯3é·û§>3<Â¥ƒh nR$çw©’üö{ï¸sd9¡¾(ÿ¾Ð•J¹9ñ"F^`ð½`øó@ë;rˆþ'熂ixõa%½à)æ¦ Æ1 <á¾¾_xÉå.]»JpSýNh!9äÔ´à?¯K];}ž*¥ÔàPðæA®ß½ZRx`b˜Ö¼^ aäÁ‡âRA¹O~'zÛá˜'«¤è¹áä¬ãÕ šTÿ– ðzPçoåa}Z@Açx±p!$šÕßÄ;è%DÏç˜cU‰Æ0ƒa›·|±nBM’m;^S#‹¢qÑ‘Dx³@´Á}ýÕÙ$„Z §î~SŒ¬)¢ð#A£ ã0=}ÓåÏÝ·Üæf/ZàF>y%ОÏ>‰x‚9$E»¾ÝÕPŠC\Sjªx¡ßW\z™#씂¥à°bÃÇ뀎”¶0D °”¼ ¢T­Êº+/äår<¯d¡ô#|jI )7Ôf¡x¡ú^éâcl¡d"9n¿3R$QÄù“Ov#ìžÂ¯ÅŸ{V Æ`SŒÝë³]£áï¾ßàE-™hÁûL¨YPnº.»¤ÓlH\üŽñ6îØ–ÈŠ+²\®oyñi¾°kË6aãÒ·‘M¼ö^ˆ#‡ú]yû 'æ'_OÇï[ªP&)\ù‘wËuÄ…K)ÚX±a­TdsÈjyµ0©kDì §KZä ÷(‘M¤TÝ#)w>õ—#äDÄQG©ã*hØ3÷q?³Ž­¼ä©*å´mþž´d?©H.#÷œôa_7êþPçaŽ÷53èW©BESyE‰>#Š%š¸fß°±Ë(ŽO ò¾—]œE¿ó‡gX½EŸ ÄûË›>¼åñ±ÜßÌûxc!м× ÒàÃSÒü>þ3¬ŸÔ›!ú)XAûlûöÏ¡ac‹ó™7z’Î1D "ܤ-"#,lŽÑì!dÂô¹Š@Âã@ˆ\âùÃ}GJ¡ÅEªUÐuüiö\]Gø¾iÛÖ4éFl› yKôLžO8üýÎóÕÄ8T„=èNœVÞ±Iº7µüH«41<DÄŒ~È>óíò‰‹ÎÄ)¿ÀŠÍãÝ=,ÚÖ îŸŒïaA4ì;aÑÀCB‚Ô N–ô ¼´aËTõ¯Q®’Û,¹[ß}ÿ½*á䯕ö1´ê8PX eœ}!=`!IÕ@Pè1梅õ¤4®VG¶úÔVØýþ{Ô¤`ß?å_o1hQæ‘ó…P!„غ0ðåw©„âQÆc‰`¬R´péšU‘cðÆ Þ A1)”WÒK𠦥þo– †Es)RŠGŸãa¨ñŠ>"8§Rÿ:"iXÄ‹ÙDê%àæ}IøAHúÇ‚…ú¾øV%1j[öH1Fg/^ ë}ÑG&Z"XŽ`è<&7^W¼šŒn8Œ1ÒYO¯ ¹§¤ aBÆxIoß|;¼i…F´ðpÀø@™Áø¡N†ƒ/½=50x[ŠÿO4!óüöäç•26êîVàáÓ8Èà DC0áÍ/D¤Ì,È Òrê·o©Ñ.S¼Ç ÷Æ<×Ljš2Á¯Žû™Ï Ï=ßµÔ¤“ÆéýD½ÿŸcñpžƒ¢oôŸûаF ÷‰ÇÉþþû‘1ÇixnôQ¿;_(¨Û ý¤Ûy‘~‚’èÚ†Kß•By h¸?ó…lS¨ òêÔø8A*øóõŸ¼Â×}h(©To&•ŒW}zŒ/:ÿ½' ‹üçþ¦ðäú­›%|»Ö?àeÌr¾Ï/£u˜ Iqƒ¸h(2 DƒÁš3'Q|žÔ’P |›±GåÞ B*‚ÑÏXƒpff˳sê/éY>šdÔÔ‰J2ñL‚‚”6alªT+ßÿDýœ)QED¥ñö%ŽÅ=˜O ¾N™“’ß6¶xíU»BeÅ¢¾QÕÚîU©Äüž–9&ØOûn$´è;<×xNãb^˜,Ï1”Z@è#èG<'x¦’¢Å«{‘´êFÉ8Ú@É&š_8µp oš‡ °g}Òç¼ØLèUèñ­ä-<]÷Iúªs°ãzÒ¢PS ;IdŸϨ–èõè¤Ø2DþâèA¿Ê"/½À¹–V›2ØæÁ~Ïð N¶ìóÕåíÜyûÂ%b°W–°„“./µ(’·uî2 Þ+¡Ã³µà$?^×µI+- ›ßgÄ jÔ³ïØi“”åç(Š(•ÔÖO¾£Tó:ÈV½º¸~…-´Ý¯Mg·tâKÊ-—Z}F ŽÞLszHTùß™N9MÞ¸q”„:Pã>æ²pñªî1yýF*²J ~o_¿‚e0þ¼…ׂ5¯ù¼.¿¤¼e#*bƒmc Ä¢ùŸÐ7CT“¢me%lÇyÍ ^~”a*lŒÐ¸ì”×â%üüË/]…ú5"ÜV=;iyk!æD¸`¬#„mãQîߦ‹ûãÏ?4:̛žÖ†Z¹:öTc…ô—*Mê©‘ÁzrÐÉ¿_>i¦*?AoHzúFû<Þ´ÌZ4_™ÃÑ=hîÖ÷Â$–¬ùlä¼£·OËoÂ_ysdBÔÑ.,g|#Dºð–ƒrøâJ<ÐHûa¼ðÊ_<ÜŒgäy©‡²`ì­äËo¢ðpñ 9Œ/ª Ç ¿gÛh Ó°/H4Ø~þåÒ7IÐ.-œJÅu .ª[óF¢þ wE9fÜRˆw—'º¶‰Æ%mB¦QËáx©}€'¾bƒšª|-ðx(Nž¼ öËçú–x"…2(u”fÜKÌyÔàY)‘ŒÝÝb—­S=BŠQŸ²ëµ+5iÞò%2§4×C@JUùµWËj “šÁ½ÊuG¨/Ô@öVˆN [È=锥(.²`åR­´|Òl]Ç«bkµúKÙ§®¤15n¸þ¾óÑr´á¯~GØØí)d,DÉÊÉ/ë=¹A_—×­f•ˆ¦1òF"H oujÃ!Ýh!ì.–BÌ3.Ÿ~ñ™`Ù1RôBòƒgitåôoBÒ¢þ„õ“{æðª¥*ȳªz¸‡I ’hlQ+¤I:2çÍ–t›ã5Ò¬BýšQ=°Ÿ†@Æ!¦ï†¼'ú˜Nó‰ºâ9LM)ÈÔÑBXò{ôDC £HôL m‚mÛ¼Zÿ ÇB_ÑL ƒE€`æ¢ã %²Ï|Û8qœçx2Ÿ.‚¬˜"–‡‰C’ïlóÛÿSŸGœs[¶¸I€¿~ó½÷蓌HHF‡ðf5ï!Áú¯EÁŽ~ëJ=žnŸºÝÈŠ³2Ç^¸(ÒO` RuI‹ DcÄóŽÓ²_Ø6(ãÓœcX_Ãڮà Ìy ‡àú´|‡ÙÅk‹QK¸&>-!z=ׄºàq-—àHDB,!€púXû²}zúëxÁe\ Âýã·à¶Éþ&äØ{OðÁ´Ï5‡üˆ‡YX[‰ð Û¼è7u ’1vÎź°q—hßD×6Ѹ ›k;½ë¹O9é¤TéÁ6¹þî±R/ØŽù…ù X+%¸?cžh·XóDØñB^APƈÈ-Ÿ–k›°eacO-óûžO>‰Ý7‰® h-÷M´$zv0÷3&âWt{aýd[0¦±¼‰ÆøãßÅ0º¯öÛHÑú„Åâ̸»Ð#ªP06֜ý’^$ýçþæ5ñDòñ|DHß×{Ër÷M1ç”d×Ú0!虀^†Ããï胉Žmë_ÙgDÍQDÙ§Ðy¤(‹€®Dôg2dßÞ”4öc3¥Ô”Œnóѱ߆€!ðÏ!€bIýxÂÄæý·Ÿ-7 CÀ8<± WÿQY;}¾D:mÖhÐ3Ï8C"R‰ÇñõÈ[…þ}¶>†€!ð_F a‘á)!ÿe°íÜ 3µ¥&ËíRC$žð&˜iófÇ[mË CÀ0 TðŠrÞjõ³¤¯þ¿o[(')Ž#ºõÓhRX:É«žM CÀ0þX„Å¿óºX¯ CÀ0 CÀ0 CÀ0 ÿ4‰",2ü-!ÿi´íä CÀ0 CÀ0 CÀ0 C )a‘­CÀ0 CÀ0 CÀ0 CÀH&FX$MkË0 CÀ0 CÀ0 CÀ0’‚€IÑ1 CÀ0 CÀ0 CÀ0 d"`„E2Ñ´¶ CÀ0 CÀ0 CÀ0 C )a‘­CÀ0 CÀ0 CÀ0 CÀH&FX$MkË0 CÀ0 CÀ0 CÀ0’‚€IÑ1 CÀ0 CÀ0 CÀ0 d"`„E2Ñ´¶ CÀ0 CÀ0 CÀ0 C )–VŽ<ú¨´lfÛ†€!`†€!`†€!`†€!,Â")0Z#†€!`†€!`†€!`†€!LŒ°H&šÖ–!`†€!`†€!`†€!`$#,’£5b†€!`†€!`†€!`ÉDÀ‹d¢im†€!`†€!`†€!`†@R0Â")0Z#†€!`†€!`†€!`†€!LŒ°H&šÖ–!`†€!`†€!`†€!`$#,’£5b†€!`†€!`†€!`ÉDÀ‹d¢im†€!`†€!`†€!`†@R0Â")0Z#†€!`†€!`†€!`†€!LŒ°H&šÖ–!`†€!`†€!`†€!`$#,’£5b†€!`†€!`†€!`ÉD ËcŽ>:™ý¶¶d$¶GÈ}ÔQ^ø5l_¶N´?ÛqÄ.Þù†µŸ–¶i?£$£úsÔ‘G¹0\þ‰óå˜a¶þ¢ó.pçœyVØî©Ö…µÅXᘰþï\‹D˜†õË÷‡ã†õ/Þ8÷û‡}Ò?^‰Î‘¾¦¥¿´Öß°þ°.f‰ö[ŸÞ¾%:ÿDëÃú–Þu‰®_zÛ·ý ÿiÇþ çjçðßEÀ?·c!c<=ÏàXmÚ²ÿ_Ð=öظ'p0ºCظ;#Óéƒc_uYÖ–ÿ“ 2„E8÷¬³Ý+³—ºÛËí>øø£ò|â¶ ¸UK•wãfLqŸõeÜíþßVœvÊ©îEk]Ž"ùÝ[ïîþGºüqÇ»Úå+»‡ï}ÀsÌ1nÅú5®÷ÈÜžO?ÑãÝrÝ ®Cý¦î’ .v~²ÇÍX0Çõ‘õþù§®¿û–ÛÝ3O—v×^y•û`ÏGnüÌ©nÒË/EúZàÁ‡]£ªµÜ Ç'ãc:q¬¶Ù ð庫²¹£&»‹î¹ÁýöÛo.=}kT¥–+’ÿ±@ë)_?ÿò —§taýñbŸÜ•Y.OµÍ3븯¾’j™ÿñÀ]9\·Æ­ýOýÜôÚVW©Qmý^4ÿ®þ3ÕÝqr®o½÷Ž’ßU,ZÊ]|þî½>t»¶u¯¼þšîrÚ)§¸úÏ>çî¿ãnwÂñ'¸5[6ºfÝ;¸¯¾ùú€&{µhï.’äñgK°.Ö‚Dc™9æñܺ³Î8ýóÁû®yŽîµ];hЉ~Þȉ®D­*nÕ¦u¬ºÀ®g³vî¼;®ÜGl²€û-ÿƒy\þ Å]þ\y\›:Üùî¹G»ç»S³ªÍêÇ\†gî÷»ÎZÄÜï±J¥Üû{>t×]yµ{¦Xiw[ö›e,ìs V,uC&މÌÏWªæŠ|2UƒÇrÇHµ,Ö°¾ÅÚ>zÙ£÷?äŠ,ä²]~¥ûôËÏÝì% ÜÐ cÝ/¿þ¢›¦õzF·›è7ý^2nÆ›Ý\ ×ËbÑô`vÀl!ð@ Uí2ïfvÏ6©û8;…à 0=ªCýf.çmwºO¿øÜ­Þ´ÞµéÓMõ¨Ã ';ßÐ!&÷¡:tßQCbÂKwˆÞýŒ±uáyç»ï÷îu/-œëº é¯zçygŸãº4j)Φ£Ü¾}¿¹*Íê¹~üQ›(ñxawÕ¥—»F]ÚF7ùýÎÂâëýA4 C„:eØË6ê¥+¸[®¿Á=R¶¨’ÍŸ{Þu£¼xÍg#·ÿèa®ß˜aJ: l×Í]$ƒ¿^‡–îôÓ2¹az¹*Më¹%kWÊò ÜÂ1SÕ˜Ãè¿éÚë]Ûº]ÑÕ°¾"ËenBŸ!îõ7ßpo¦€IOßzì¹ÈWd¹ÔêÖßõ5T—Á\ÞsËîñgJ¹w>|?²Ý÷blǓ۲ßä^Ùñš{¾ý_Fܾ}ûtsŸžÍÚê¹b”_xîùnÖÐqbTÿ¯—ç|=§ž|Š`×OŠ®rÓçÝ)'ìæŠAþÓÏ? žCÜ×\çú´ìè T,¡×rcþÈIJ`n~m›»1Ûõîj1â¯|ðÝÇ·ë¼YçÝSÕÊ»wÞÏA^Lî?ÜÝUè%#{6oï¾ûþ;w±2ª{Ó¶®o«N:^ƒí~´ {8çnÇ[»‚‹ã~O4–+=]Ê=-„$„LéBEÜ”#Ü Þï~þåçH»l]·rÇ›Ï*÷@ƒgkD¶?Ô_Âð\ºn•{°D¡HO<á7¦û!aÖ+YÁ9¸C7pìpW«MS‰Ž:Æu”‡ã¸žƒ"×'‡(a/¼8ÚM˜==ÒÎO?ÿùö%¬oaû±îò‹³è¸(X©„’J\ß©r½.<çUL{“ùô3Ä+5ÝÁ6z)"ökÝY.Õþù&nû¼•îõù«Üð.}"ÛNƒy±×`÷Ð=÷é÷XêV¬ê–O˜éÖM›çšV¯ã¸ Èˆ.}Þqú;cð ·.) ÓúéóÝÛK7ºÙÃÆ‹ñ¦XMºîÌᦠüË0¾ô¢‹õ<î¸ñ–Èö/ˆRŸ÷¾õ7íÌ2VÛ]:~†+ôpþÈvD:àõ£½5S溬—\YÇ<À·ßp³.‡…ÃXú^_ !ÞŒ‚ž|¯Éú–µb{X/¾àB·÷‡Ôèúýß…áýL”ýK´ý»nºÍyÄ‘ê ýõ×_Ý·ßïFM™àŠæ{Üqcq-3zš’_èöx1ÿüóHõÒÝ‹3§©ËoH ¼Œž¬`\´“kºeö·xÜ4w×M·²YDÒÓ7˜B¼îüÿþ‡½JÂŒž6QFpíW¹úÉmÞ¾M÷íwßé¶¿í' "|¹1ÛunÝ+›Ô`þã?t{ŒWoôêÍëÝr‰P!ú„h#ØLÆòœD'T)QÎunØRÇïœá†=ךëúxžGu[þÄ“0ð];¬Öv0Ó*‰Î—kÙ­Ik·aÆ›ôïŽSÆçX°RI7î¥)z8ªˆ¿^ݹÃå(œ/rOGHÚÂI'œèòiгy[U6¹ß¼ç^Ý—î5Æf!00‘2YO_ð²#¢ˆñ8ñåîy˜ç—H¤Vë&ÊúrRþÿ¦ÇÑ•ûÿåÁ„?lÒ¸àbý~MÖ«ÜÈ®ýÃÑÝû»û$RI4–GO›¤‘þz3vNr":+¥uí†nüKSÝïû#O´ñý ú´è຾Ð?¸X¿Ç›Y ;Μºsá%üÎ9ëÀ´îµms–ëX*ûäÓ©Ú‡DPzcÑ:7Ô¤Èue£0<‰rò÷Ÿ(R{üA#ZØWû,$ÖØéS÷‘ D¼\rÁEÚJšÈõWfs+7®uÌ´Ñå…(îý·–n(œQzOøua}c›°ùcãõ0_ûÛ¶s»ËraÊÜ”èznY­T}^¼³|³[9q–’T¾o|Æ{žÜ óĦW·ê¹%ýð÷7FÓ‚Y°ûn$xúNJ´Ðt—ïÜn…Ü›^ZäZÔ¬Ñ386s:Ï îaÖóLg®;ÝèÞÛïR]¯ÔEtó:‹e.&QZÏ+£§êŸ¥èƒl·vêöiüS„éÁØ;Ù¯¾Æ Òÿ›ï¾U‚bDæ¥Ïæø§úiíz®—(óÇrçÕ(äí»ÞˆÙ¡xºCôÆ8Ø>r²ùV}ȯ¢ßy‡+¿}ZoùÂÅÜœe 5Ú‡å%NX`,"»Zó®ïè¡’‹ÇAâ¡Ï–õ õR÷¯}sY‡a„ñЇ—Î ˜,^¤?K=QØ=”ã>UBKÔ®ìÎ8ítñæ5×u-…ABÚöëîÑ%5ÊTr< ‡NãžkÕX‰ B«‘¬—dq­Ä Q.ä¼å‹ÜåBtlÐÜuÐÛå«PÌ1pFvíɶÿ꯻;ÅÐöWŽ[ïÔóð†¬Ö£<ä¶Év9ã{ÖpébÁ°xõ õÊNœ+ëëV¨ªÞKŒÝ?ù8r(B{ÀvŒÝë·nÖå^ Þê-ºâ(Và W§b]ǃ^ÃøË=댮 t¤±À—ÆrÜ$Ý›¶q «Ôt•Ũî2¸¯nAzÉbxz9ÿœsUÉ|úéÚÏ‘S'¸m»ªr?¶Ç@%#æ¯X¢›C\|&$Fÿ6ÕØZ4VH‰›oóM¹&B=x÷½®Y·nÔÔ‰šrY)_ÒÓ·`;儃Xé¼ÿ¼X‡QÁùAAøìZ¼.B.÷ ~ÏžíZ—뮜nëËËô| <Á†I°â?r®ÔnhP¹†Ù¿I I,Æõ(Ç,âštkç¬\êÚ‰’å'è1yŽ<؆tìéÞ”T“²õjÈqÏR…0x¼°ï‰Î²cž{ƒû ü_«²vñ ¤Åô‘û•,$…èú\ÇÄßÀv]ÕH]+ä‘6¤€OÝöÍy–ë·n’´‰Êjør¿!»L²AùHÒ“F˜t! è+¤c¾òHúÉÀÈæ(«ýÛtqMÄ‹4ŒÙàL!E!)0¬KÖ®â¶lUç#"HHoËDQ`xžùLWµd9׸jmM¿&Ó@IDAT Ř¹Ï;‘NíÿÒò¹zš–ðÆî·R­J4/n×Ýe:í4W¾AM÷ú[ohºL°Æ`Á‡qϵlä&J$ä¤'HÙRàx¹KÕ©âvʱ'ö©%’Oæˆb ¹†Z+9Árð€Pâú{)’ï1 i…´ƒp…Ôª-DÇöù+Õ á:3v·Þáµïîf/^àŠV¯¨cŒÔ!îU$QßÂæ?HQî)/ô#¯à°rŠN¢ëY¦PQ!+¹’nE”ÆÒu«]§-$MéBm2ìyBÄÑygŸíVMší^»BIÀ ò6FaæÏÇ> d!€qOß!\=‚´³î’Hˆ0äEÝJUõðWJØ0QWÌDØõ1Ø•Âô‰<ùÜÁèFÌÁÌS8XHµã¾#-0ŸDÜ!Ô>º@R ž¥õ$õ½„tLîóÍÚ¸óÎ:G×7«^Wõ»æ=;гe¤k[§ñ~Ýò° :VìÏ¿0=ØGžÐ±Ð .د;þ;ÎÂz‘l•nœƒ8WbI˜î½ý¥b¾ûáêX¼Å©]¾H‰ÈfKÖ¬T½‘y»†tÞ“O<É•“È‹>#‡D¶Ë¨/>;ßwçÝj攚 Þ‹ŽáÜ¢f}×yP5Þîæ­tŸ|þ™âYH‰ Î9_sÕÀ¹HòÙ?þì3·aÛ+jp<תQäƃÁ›†'-–T.^Æ5ìÜÆÍ\4OWŒÇÚ µº¾ÐOæº;§æò¬Ù²A•è–½:¹Åk–‹—øèHξß¿Òó=·ÞîÞ~ÿ]I3¸]ú¸Åݹ?Â"çíwº7ßÙí>ò¡YºjDVBñEŒz”ß¹Ëk“Ÿ}ù…†W³²É"F„uFLyQ—¡C”q•D9"Ÿ c’ë-(L§‹ÑH͈Úm›j-‡&UëHô@;="+3âá|šwFíûï¸GCü|[Œß¦ÝÚëµ=ílŽ©"µÖŠWzåÆuZKäZ!¦^Ý™2žƒc’¼vÒtl¥Ím”û€H¡´J¢óÝþæN­Mòê;´IR=&õ¦$cÀK­r••àZ'dC0‚õ—ˆ1÷lñÒ’þq…¤ Œ`‘µÔóÀ¨…¬@*-é&K“výzèï[»&Õjëx'*C5('ÑÞ1"1Há~ÿòë¯#›£¬®Þ¼A¯ac¢4ˆð54 7¹Ç·<(ÂÆ²?ÀýQE~ß™2¹Ý’²â¢¢…+–ô‹R}BJÞ †l³î5U*¸#5Þ¼ˆÁÀµËž÷^í;}<;óYBì¤ξú[jÒ8ÀŠ‡Îœe‹t5FUdΡÞsεW\­äó‰—xxúõÔ¡`^ð ~yð“è°Û²ßè,ù¤.ÆÐឆÀlÒ¥ÖÝ€è¡>óóÞÂUË4§’¸xK¹_û Ùí%VßÍA"½ë.î3É"„uPâ]ϯÅÛEê—ÇðÍwßqÓ[aÏ®¹ÈÉbWDÞóT^Ûß»°1š³`ßí»!  ˆHŒ¥ïøö‡K¨ð´y³õ's]c©K…cƒ41æq¼ÂϨBP'ž8ÆL C@˜̳ãÝ úI•eµ›¤›^„ExƒD˜îŽ,¢Ö±i¨GÄ|«Z Tšµx¾:[õîâ äzXS½‰ 'j{½:ûÕ׊]þÁúxôq’õ;à j|üù§²‚Y²v•„ç­i—‰²Gx·'+XWñžjýãÏ”9³ÔýÚ¼náÊenÆÂ9nѪålI("S/o¿÷®‹)'¾pëPüùïe×î·ýW ûÿèÓ=â[¨Ûí0sÑ\%¨U4„P€I¤õˆ`Æ‘$x1Z­NégÖK.‹¤ øƒ-•Ú>…eo yYÒbðrÞ^ðŠ`HV•°e/§œt’n‡Wß“o¼“r^±p!E‚ÚxÏoÊÿ€ûå—_4uaîú¼9µfrò‹æ\IŠnBêÂö£(8„|o6E 1„ð>u@8<äç·¼n»ïù21¦¶K:)%ÀŸ ““ž¾yLPxÀ ïtPð7òÀOMäû£â9z2o. XŸÆu)²ä¸)²=XqR<ðÜãå3}’âA¨*†æH!—ðêzÙ-„–¿¶4{ã~r„kÉ5;M /Á1É9x"‰õdÔÓH«„/M¯áƒ5òðE<Ä·\—]›>V"ž‚„!eaÔ2*õK`ƒ½@Ræ*þ„FIƒù«D“-ÙĠ볿–ë¾Ò¯NÛfº5DH7 Ѥ셊≫+DÎ,I±Ê–çn‰yh¿ÁÜžïƒAiѳ“þL4–ý>D0ðŸí‰–úò›¯Ü*!›ˆ2ê2Xî%™ÿ¢…û‘h0êr i¿ýŠ7/’2Š"ã…û$HX@ðlÛOr± çH´‡—Õ›6¤"ZY…xFƒ O_€‰û”0ÅŽ¼–¾ ¢N(8[¦nuMça9†ÆËrŸû{ŒZy¤AAX0¦IAóiìsÔQGÊòÄ}K4ÿùÐx$¸6×\q¥ÎSÁ±Ìñb]ÏeMA߉´ƒø¹AÜä!Óÿ‰ö {žP»‚T:­!lj¶¸OžÂac4fôÙÄH&¤9ÆÓw $ÖDÉ|‡'Ž:MèTF&%½€g÷Ë–×·éöiÕØ2Ï“üÆä#ü ‘†^¸Ï§?Qœ(Ì ”8¼,—ûÙÕð¿ìÓÈXÂô`"£ë 1Nݧõ’Ž‹ÓGÕÛ2¾ýó7c{kGû·"@¹ƒ0Ýá€~‹‰®^®þsJ:àÇ9F„‚mãíh"[)ÿPÉBšöG:÷Ÿ’êË szpÜ¿¹àÈ¿¹ßßÞœnò׃âCžð&Á×ú`d{!ú¾§ ¸žÃ9jã?Vnòh!¢ãŽn‰üÇÛuêþHÂñã‰ÏMg=E¾òÅÄÃÖ\ÈõšºÅc§kX"!ëÁöÉã&´†ú(¸ô¾„Öì•6ǰX¸ŸX1ÅÛØ`¾ûwRÉ5Z&ÏyI âÎZF^{„"ñ“¸ÛwíˆüÇSßZ3OVÐŽ/" Rðl¼ðâ(=g®…* G»ûæÛµxIî,ô°z o‘úP x2È]¥ŸOQÁóHq½Ü9îÓ}?cdñšú?ì·fóF´!Õ‰Ç"§·oÚ¸üy*oAí€hñ†Ëy¨pܸÁk|ÞÙ)iÁíÙ‡sA|$ YnöªÍëK­ŽDáúRßN ÉŸèkÿ‡(Zþ-~›àgpL'÷B<å-¸OØ÷`ÿƒçË>ÔB#z0ÌÖH„BØ›Gè×°‰cµX+b´ÀÊNo\.!b ÷#ž÷X‚ÂêñôëùB-`7pì­—Áx¥† Jë”õà)q"V(~ŠÉµ%o/–$ËÑûPdÃÿþ;ïq¹$­éæk³kŽÅÿ£ÅÈçí:Dð ®EYYˆPËâ#l^<^È›xZ¸Ôð±ä%¥þ§(ó©£ÎbÕÞ`ãh<}DœÑæ´y)¹~¹ÿäT~Ε«÷œ¤N¬ò‹õ38æXÀåÇ s!‹Á9l¸ÔñÑfÁ†¢û––ù¢e¨¤QaH=Q¹ŒF¹Û ~^O–“>H!Âß™× ¡ý¼šèy½åÉ ÚbîÁøb'£l†ëM d"¦ïøã|õÍ_sˆÛÑG¥Ô=z¶x™?ö)ñŒPL«nÄq0Ö‚Â}Op®ÅoËüÏw"¤¼p 0=˜>Q›£ð£®l½ê.¯¿'µó\‰NÆ©ebxÒ¢;ømùdÜm’}ÁˆååB<û4õà¶|ç%8]‰Ç©\PRüˆ÷u&£·Oöï °xW ¢,ˆ–ðQ9o»K0ÂÂÏ‘Pæó%? #Õç~ãÁ:O¶0v„ž¿/äÇ|/(ö?ËPaþÃ4—"›xõƒ:€¼åŠúÝô- ½FxìOEÁÓG¹2ÏWKµ-?ðxò*< FòÚê)sô˜äãó?(0ú¼ ´(¹{<0ù$´™pÄ b#(ç— ¿½É€pL”åfi(79ò´…LÈ2¯XDÕÄHüF<®™d]PbáBè8äDЈƒØ P2†Æ ›¯KAäQx*Ù.ÚðÄîß@„€¯AâûBÄÀ±k5L #„šSçÍÒÕ>^ ~ÒÓ7ß/xy£¥·¼ò’”Àñ(fŠ¡ŽÇ)z 5Xòí©iBDr×Í·ª1ƒœ#\ËþR/Ä Uíý²¿ûIÚ^n/ô÷n97¢6Ò"aç ÷”D–ð ÿJWï¡ç\/÷©^>åŠZÅ€äÅ=öPÞTU…Ymxù~b^¶¿°+˘hŸHÂ×xuªî]RHs‚À¤ø!©]ÔAHÍÀ0¥xÐñàSGHùÊšåR æþá¸ÁZìOªJu¢±Œ—¯½Ocÿ3OϬÇ%*ªuï®4ˆRS¸Wöíû]"(RRàØ€ô6ˆTj7ðª`æ‹xó"‘=¡Á9•ëæIæMï‘¡6s±Ž”{d=¦Dxú}¸‡0B¢ 7ÖWkO±`j‚Ð× Pü“¨¥"Õ+D“ÆFTÂÆ Þ3Œñ=’¢•¨o‰æ?Ú ׌·²<&o""*(aדí8'BÞ‰AW/=òÈ#4j,Þó„ö™CǺöýzjº ûrýˆÂ‚ÁÐ £‰0£=C ™„é;ó–/ÑC10"Ô­`®áì-E„yfÚé…ÚBD!ŸM‹nä÷Mï'ä ó)ÏcBì‘ë®Ì–ÞfmCào#¦Ó(щDyO7:ʱÉŒ¨ýÛ·ÿ3$Òo£Ot×;oI  ÜêäfND˜ wíºn‹îÅÛ÷.ý”í!zq¼ûèÒh[/¸2¾gx„añ°ï¤x#ðРâ(7"'»JÞ¢ðÅW_ig”6ŒÙ‚΃å; Ä"Wš°[ q>ž'oÄSx‰lËÛ0Ê!¨öé ùó~¶=ûUרâ „¡¶ô‹‡-†~í •ÝîÞ‹éáæbñŽ[”k;ʪ'¢ÛÇ›FºCiñèR%ÁX),µ/Æ0GÆÏœâ.•~“Ã!FzIî÷Gò¤u£8H­ ¸ ¯Å[L»(á¼Î•"=œS7y)FrZEó(ŒØ¤Zõzâù¬÷L ÷££¤ÿ„hb„óŠ W aź–SÖûL´D4°*^ø‚bÈâ¡…œÂÀÄØ„ð€H(_¤¸¦ aXPÔÏKzûæÛ!*Ö JÔ ¯õ@Á`¦NÇ™2fñ„\Ü_ûu±¯4¿«|ánÎÒEºùÇB„Á€’„PË‚ðÔ~òJØdÈl á╌¼N“±CÅô á“èaçK8-÷÷B½Žú2œx¸ÏêIúXñÆr.!˸gI]˜›Å@'ç˜{“Ð5<ÓSã¼fx¬éz¯@Br¯ó6†“%R ⇷7<$‘;Œ%HX_îSŒaÆ ÑK\+þ3þ©³~Ûf-9pÜ}« Ÿë„($݉ï(Ø“¤nÆmBJÁs\¢Ÿ Éu‚ J4–I +]èi-öÉ\@ê̹RX‘åÌ Áãòýßÿp3ÎÓût•z ®÷¹à,#&l^ä-6D¬PÄûÌ¢IOp‚Xä{ê2Pœ×˵òb9Äu&ˆ^‚ˆM„§ß?Þ=Dî;óuu~‘káçÿÓŒ ÂŹÿÌw~~€x¥¶óã†u¤‡@>%ê[¢ù÷ÞSLª‡ „Ðñýbì"aדõîx"8®wÛºX¬ÆWØó„7è¬ßºÅÕ*ÿ¬’Lä/7ª\Srùw(ÑA‘ÒàXˆ£‰0ÓNØC ‰¤Eßá¹Cñ@RÔƒ˜:6­ºQ²N%›{»{“6ê`¢Îo 11az0}:k¿CÔ z" ¨¯¾>z™[vg÷¼ãHUü¸™éééùwOOåv×  ¤Â8žA±h¬ ªÁ#uÅæVÐi®I B¿X‡¥Š·éûñé—Ÿ¹wÆ»ØóÎ’£†%öpÿe,UhT;â]ë~þÊzí[H{}Î6úœ(:šwëäâ¦y†°±Ìuýäñ†6@™ŠÝœCREŸ¤ÔßãßlÍ‹„Z°òÊ{s–¸SæÍv9ü½x.±›RV;Aì ÉñDÒ[úõœœ=œGCM YòÖÒdðÌuþE.ƒ´¯ÏoýòÆXˆø¤\ùotù<7„Ä<Û¨¥S@¡tE(‡PªœÖ9n~ÀÓ¥}à{&j[ØüGœ&Ê–s /Ë•pßœ°þì>´¿°Dí{:Þ³iÂæ˜ÓyˆÂ¾'xe\tñ¸iné[Vf©Útw^¥`{¢÷ɆYtyûmd0~ǯ|õ™æ©ðßé…ê‘Æø‡FLbùëtyÑ¥n.‡'€Ÿ!—…§dx#_63¶¬FEÎ V³"4o2¼>¼a+3îauÉ"ˆðeò±tûÜo±Ä~jìó€‹Å7Ïí¯ó[´FŸÁ$vþ\¬-®Øßÿøcš˜äXåÒs ‹(õ ‡µ5Ù:±´“+ćÙ${]°š]ÀXI)‡Ks¼XPú„A²ÃÇyëFpÀjï—Æ žcŸÐ“üóÚÔóÿ¾mÑ÷ŠþM_жxã-º<¿ÉqÁ¸Ž…7õÑ>l$Öõ9Fý¼;Áädé©/ìyÃÞ-ž ;VxePý ‰()“ˆPlà5 +ÎÖä㥣ëÂÓƒwùßàƒDc&Ærf¼»ÑÏo^¤ç~T¯¨x÷¥oøHÅz¹>l.ËžÔˆxÇð®óЧ`ùDs~¢¶edþcn ëÏ0Ìx†°ï žP(Lã)AƒÄÚÃ,Vy;fdèñŽÂb3ò–x@¿‘ߺPXsFÞÁŒ¶9x=s{¡;ï‘Å«^ss!ç $?ÓÅwÞsþ ^oû†ÀÞB 1|‚ŽÙßã†Òî­vY½?Ìëðٱ´ñšÃÈêCè<—_r™üºu‹ó õÇ2²M¤sا ‹Œ<˜]kÉ#€¢î„cã+IÎJ؇‘!`†€!,A…E¬ÄÕÉÖ“•åÈ7Æê[xèbüb)?B:ýJTYÙ»—!`†€H"…E–‡„X§†@Ö#@òiÄ#·zŒ†J†€!`É"À fkÖ¾×k+Ùz²²\…µ¤¢æ)Öµ†ÿþ¦I•—Êsƒúdeì^†€!`é@À<,Ò–5 CÀ0 CÀ0 CÀ0 ÌA ‘‡E–¯’9eµ†€!`†€!`†€!`†ÀÁŒ€),æÞµg3 CÀ0 CÀ0 CÀ0PLaq€vœ5Û0 CÀ0 CÀ0 CÀ8˜0…ÅÁÜ»öl†€!`†€!`†€!`†ÀŠ€),ÐŽ³f†€!`†€!`†€!`3¦°8˜{מÍ0 CÀ0 CÀ0 CÀ8@0…ÅÚqÖlCÀ0 CÀ0 CÀ0 Cà`FÀsïÚ³†€!`†€!`†€!`(¦°8@;Κm†€!`†€!`†€!`ÌdKæáþÞùW2ŬŒ!`†€!`†€!`†€!`™‚€yXd ŒV‰!`†€!`†€!`†€!`d&¦°ÈL4­.CÀ0 CÀ0 CÀ0 CÀÈLa‘)0Z%†€!`†€!`†€!`†€!™˜Â"3Ñ´º CÀ0 CÀ0 CÀ0 C S0…E¦Àh•†€!`†€!`†€!`†@f"` ‹ÌDÓê2 CÀ0 CÀ0 CÀ0 LAÀ™£Ub†€!`†€!`†€!`™‰€),2M«Ë0 CÀ0 CÀ0 CÀ02SXd ŒV‰!`†€!`†€!`†€!`d&¦°ÈL4­.CÀ0 CÀ0 CÀ0 CÀÈLa‘)0Z%†€!`†€!`†€!`†€!™d™ÂâÈlÙ2³ÝVW¬ÄöðÃã™lGhÕž»a×R:Ñõ”9ì°Ã$Þó†ÕŸLÝÔ¿7‰¶ûv„=G²mðu%[>=åŽ8ü‡uô5ñ°.Ö”ý7mçšDõF·#½¿yî0JæþaÇ@Ø}2rŽûsŸ ÅëÏ`öy¾X}“Ìss]¬ûæºàB9ñøÒÜ* ç°s§ž|Š\pÎy¡ã =‡Ý‹ƒåQG•¦íþG,L2zoÚ“¨Mþþ¶5 ÝØ»³ Û;pˆõýõOÃþÆús¶=ôãOÒ‹FßqÊI'ïQ÷¾,×¥{ß›âKŸ™x×3O?C¾\õ¾œwö9™XkúªÜg*W—ÓO=-}îç¥O:á‡í¥^¼×Zš#{iV³®,™0C–Oš-]š´–srž¹ß W]+ó_zEÖ-\))ã¦JJÕÒLªyo¼YFöè/«§-ɃGI‰Š\Ë΃ ÉÊ)óä eÆ‹c¥XÁûÓœþ¸ê²ËÝóuä‘îpFÚÆ3½3gÉÿyOú •·f/JóÿÆ«¯ó§÷ØÞsûiÊrí ]z»r*"«¨pþûäíÙ‹Ý~zÿ\yY™9lœ¼93E–Nœ) «ÕJƒw¢úž‰wuD÷~²qñjyí•9Ò­E;9á¸ã]•‹¼ÇŸAÜ[„õ5}Öæ™F®îUÓ¸1‘û’Ô ïäOÚ£|ß/\ÔÝ/eü4)[ìѸ÷Ã>îE»NÜwÝ{ ¬ÖvÍ1^j–¯"Ùʹìñ‡K¸±¹jê|úÜórÓ5±Ç@é‹;Œâ1}Ú>+“ˆÔËNÃjµ÷35¯˜¦Lz~lHY%wÝš×]ÖŸ±ê¬V¦¼LúRäTXF é®ÍËÖå=å¹ä?òÁ«¯ÉÄÃ¥¬â‡€ßä©:n\½7o© ëÖ'Í|LùA{ÈëSç¹~hTýé4Ê“-;Èš™ eLŸÁªHH}ÿý½‚Û¢÷ýWÖÌZ<´Çþ£÷•9#_–µó—év‚\wÅU{”AÉB0 ïý¸bòY6i–´®Ó02&sï민Z^ê=HÞ»Ä=kÉ¢GªïÔ¨…ômß%òÛv C 9ÚÕo":uK®°•2ö3Âøàô~Ç÷³G³æìbñ'ï¸;.}þ9çÆlEï{vÎ3¯Ò¿CWÕk€{Ì1‘:ä1©X¢täwVì2nhˆP'Κ–¸T÷¨]¡ªÜpõµRð‰GåÏ?ÿ”ÖuI÷–í¥T­*€žÐ¨ô1TúŽ|AŽVåÆàg{:åTƒ­AôÅ®}¥z³z’²b™;¾pìùøóÏäwߘ÷Ž [H‰§*ÊúMå?å’ñZß7ȇ”ÇŒ´­÷°A2ð¥á‘{ ôÕk ô>Äòš÷¦[åÁÊeµ½ŸFÊmùmKd?zç¦k®—w>X+õÚ·ŒœÚ¹sgd?£;L;mzv‘Ésg +Úüù×_ɸi»-ñî“è™Ú¿úö[¹¡Èݲõ÷ߥ^Õ§dú‹c¤@ÙGâU9ž¨¯[<Ý@ŠÜSPë*.Ÿ|ñ™ `˜>tŒ©XÚõõÝ¥Ò*²:4h&ž{žÌ]²0r°‹=LÈE*•–µÖ¹1;eÈ(9÷̳¤i—ö’ï¦[¤EíúBû¾þî[y@Ÿax·¾rÛÃ…ä×ÀX`ü4®ñtÜ&¢¨+xç=²nÓ†4eî¸ùV2f¤Œ›>9r|Ûöí‘ýŒì„õçú.‡Q¢þô×¢4ìÑ¢½udZO„¢÷rýZ´RWaŒŠV.#üñ‡4«UWFõ …Ë?&Ç{œŒÖqÜã…þR­i=÷{ÞèI²mû6é£ï#V§2×y¢’,]µÂßú_m‹Üû_iU§‘¯V^6ö©WåŤ#ä–båûpŠª'ôcüd™rrÚɧ¦¹J7F½(uÚ6sŠ“.M[ËØ>CäÎÇŠ¤)ëÇEç] e_:mšÈãÏTwŠ’1Ï–úŸ,XöîcÇ C žCªwR–Øà5híy÷2‰øàŒ|Ç÷rÓ­ú,FCZ<þdÑÊeŽOõM:æè£eLïÁ²ì•òÙ—_øÃ‘m"Þ·Òceeí‡ë¤s¿^ÎxùX‘b2lÂçèæy»H…{ygŸÌî¹X)?\´Z-f)N‘€„'˜×Þm:©j©³~U|,•áÅ»xÂtAÛè ûwHÕªãÒÒ¹qKY÷ê Y¯Ö~,žì+ƒGºKƫżÀùýå{lö—_z™ŒTyCÊëΛÂ{!0o<Ù¤®SVPÏO¿üì”Nž›:FÏ;+U3ýî1üå7_9ÏïyÂ5(‚ú´ë"Ý÷åç„WJµ²ååÅ £ÓœÃ믡¥«W*Þ¨€¾Ýဠîé¾|w9Kÿæ¥kÔs ŽÁ0>*Ìxó°ï)™þ<÷¬³Ý\ŒWÆËý_”œ¹5Qúû´oÐÔõëοþò‡Ü<ƒöÌ™crê¸.óУò¸ÑN8ߢï[8…åt|ñŽ ÈxiÊDWÇV}ï æ_®]8vªóÐèÖ¼­ó(â\¼þäÄܲvþr7OVX˜·y6~²ÙÍgfL‘¯¿ÿVŠª"º*÷åÎË«jãgäýëÝ1ÿç8ý6¡T=ùeÇþ–ìkVËçž›ÆË)Þ½ñÀøüë/dÎâ…n̯Yû®L_0ǽ×þGçÈ!ýÚ?ç<‘ðöºåÚü)Ûû xü<ï8Š\<Ž˜£ÚÔmá3hp¼9,=¼Ñ·Üîx½r”tï´çY¼ = Íêe+8|ðò|ê‰JîûD¹UÓæKГ‰oVdžÍÝœ¹ü•ÙÂ{É3Är}vÚC`/"Æ'óß‹M³ª÷3Âøxv/Ó°­_µ¦üöûoÒ¢[§˜O‘ˆ÷¥¾;wóuÈzP¥’eeVÊAžËJÊr… WEŒrÍ– ¥Ïˆ!RFݼ[©«8…>Ï%—Iý-¥¯Zî[«5 ¦ á·á#õcãéTõœ¸è¼óÜÏ'Š?&TÈAø(óô“rÊÉ'ËsMÛ¸sX¤¡öÏwSËþÛn?úÏÓŸ”rÅK)S=Jj·jâêªV¦‚+–다mÝ&2vÚ$™½èUÉ¥–Â.Zwçþ½¤p…ÇT µÞY ýÇ3X÷{jµE°÷Bþjµç9¼À„•ü{ È{ë>p ãû•/¿ýZJÖª,¯._,½[w’BùïuUžuÆÒ@!Ú²©óf;˺¿®Ê#T±2R…îUo¯q‡Göìï\øŸjÑÐ1Ú¥UéR_•2P¶]xÖ©T]ú«ÅðÍ÷bã2h̹2wéÙª£4­ùŒcº xÞÕñ» VÙ³g4yžA :ML´s„*0põ®¥nöcÕš¸I…yKR\q”7ß©Us@Çn*H®r!%·ß°Û­«<ÌNó®eĤq.¬Ç߇mFÚ¬§b‰2rò 'J—©ÏŹkTù€‰r…B2L[]“ç ¹7ïòÞ¼eîy Õ±®…Ѫ¯ž ízw•ïtøèÓO¤D‘ÝÞ„R¹· ¼þö›NуwŠ5T”P•K>«Ú˜ÇžÉ[õQdy:óôœî<[ûÔSÝ*5ô½"-»wvãk5”¨¯ƒuó®ŸuFN9G=‚ÄØi« o·Á}ö˜k(ŠB¨býZN†uÚSö§rªSR `–yºš¼¥‚âàÎ=]¸ J²yKSÇ#u!$ßOÕJ¿îªž½h¾Zâ?qVt ¤h™¿PÅ…'Ú;sáÛÞyÒ5ÐPE(lKo„‚ø{îsQ-»u–Nýzºù )Åæ9ÊWB¼ƒ„”1çTQÅã¼%‹¤WëŽî{Ãù–ƅ᪕~ê±/OÇ[êœcdd5a|p¢ïxV·Õî·oãO‚-C±lѨs[g\ žóû‰x_x8B•àIàËà“á/+«aìùa»yo_ßÞÞfùìœÿ¶¼Îš¯øý+z¶#²9|—½],0‚üõ÷çw–|8U(8>ýòóP<°¾b)[õÎ[ÎòU«ec½.Uzwó  ‹pqiül[™6Ž;Ýô¹vrÇÍ·EŠÎJ™/]¥ZPJ·þ¾ÕY×`´[÷xV• Kä}– ¥‘‹±Ì¾»þÉwã­NÍ«.櫵ÞÂ{lܼ٠@­ôCŠ`‡[4Vg©u¶Ž*S樢úîÇï;2çQv@ªÇ Ü"‡¿<ÖÃSE ®ìï«BÚ¾c‡tmÖVº+ãï !(,T†çÛøñf'œü¾m›ó:ðx¢üÁ½»nåÊ@ôо:E=QRc²>:‡»Ì<Ö ,¬Xš{½8P°°B¬õTÆâX«U#yâáÇd\ß!r[±Bî9«”zBJÖ¬$ËV§ „¤Ëî)£móõ£A„gñ”'×Ü‹þœ*1“ÀE¼[óv*”ntýçËù- ÓÉ'$ëôü3m›ËõW]íB žoÓY«YÙK³EàìР¹N°¶B“fOS!u°s»Â«pþü«/^ôéúRÃPî´«ßÔ ö3^›¦îX?=BÏùÖûï:ϬTÐ19v+¤ð¦£^1Ó»JÛ^]œðÖ׋_MJ¨—8¯Ý°^Ê?ZÊY´°(é¿wÞí’4R.š–h0ªÐºz5ç ÞDŸ~ñy(öÖx a5‡PΨ *ÆãÛÂã …*Ê4ÇCÆŽt‡ñÄYùÖ›R]ç‡sU8?;gNIQ×;O(ñîhѵ“\§!NÑs¼âÍUnÌ•q”ƒIF‹=wqŠShÐÎæµê9…%ï% w‡>Ý#¡Kë6}èùXf/~Õ Ûž1æÌ:ÿ=}¸y·õtå[oÈ—j•#Qäkj‰%ŒE\„ÐÛ^>xJ ¨ÀK¡¥aÇVΓ+bþ[óÉ=]¢ø,~}EÄZDZ”×–©Êî)Ø¡¬aÇs¬,Ðçö”[­"à5ËUñ‡äøãŽu ûÙgžé„N|¸ù#w>.xkŒÖd+ôÙ5…î”*@àn9wÔD¹¢ÀíÎJÚ¤K;é®1ì(*`(º©R‡Ð=\>vê.V)ë˜o¿LQ¯ƒ¿”GùÃs¡^û® $ïDÁÅ|Þù`·¥ó(/Œ´ÍÝPÿ ‰Ä‚T±amÈm±ê6ïÚ!"À4{®ƒs{-qÿCêÂþ›Ó^ú ˆ?'¶þü[¯Ž”çCsʉ'KWucÇ"M¸ÒâM„pì•”Y¡1x– „xH>äƒn?^-MÔt“J,„WÜï“QX„=J´úš{c¬&5d\Ó×(é6éû±uÛÖHóQxz[­Ñô9‚<ù&Âúº§† ¤ÃÍ¥!Ê&ÞÆIJXÅW 8ISü„á6ª1ÃréÉ?W,\p'¿îŠ«—g†‘øÒp 8LW¸ÅU0}˃¤f‹Fšâ.M®¹Ô `X2º—+óâCT°Ž’\°À©9PL'·×Þ\-(Tü* ñ’Œ¶Íßáö!˜G“$9ÎG«ï :V ö1yY `y~ßùñå~ìúCHNãÎí\⾺UªGN1LVK¡>>¯Æ7êA„Å:(ÌÃxC6"ÅÙ ¶1øLwýûrû#…¥|½§¤P¹Î¥íÿ·ßïŽU ľoXE3Q_ÃlÕĖŪ>!åTÈ»¯Ì#Îs#GŸâ½äsD?ÂOQB%ó‰ïÁç⺠öXÐÂæ&ø¡]Ÿwж‡ª>ž&܃ç7m²SVP/Œ9 |AõyRóR€9wf ç’ORfæ°±î½& ' ýäÁ#Üy¼JèOÊâÅj7ó „2íMU›Í»×kè 4Þ=¼#`à ,èSOaý™#êZ߆õç½yïÒü×Hùâ%ݳð<`È’¾ár îÏ‘H¡‰< бGï^Z ¾',‚|ÐúŽxÁý'æf\ߜЇµØa cA‚ñ‡ÁÅuÙ· K'±ååêÖuû¸’ôœüg¹Ô•SæjœÏ.¯¹‚„» Êrd¼¦îá|0Ì E@^¥‚0ô±âCr© Ý¥¿£WžgwL'Ë5éqK|Xf Á Ú¯r^÷jQÁ—ø ÅÂWebTÿܹ[‘âžçÈ£ãóŽ†Í¯æ@N’w×­uê#T(‰±nfߥhÚ ^+XæƒtUî<šøQ§nÞè„4,Ú“fOwEòÞª$áHFÚæïyû 7ÉÌWçûŸ‘-K~õÝ7-%÷CIѱo'°F!Ü£†hNYhá(iÈKq­*§‚DÆIqCxeöŒˆçÑ$UX;ƒP¾>¼aˆÙ ¦0„AïŸà=¢÷Þ‰²X¹ŸW VDά¼^9ÈØ÷9òi>i~'êkâàè/ï Â;wëõ7ºœ1¾7k˜Â?ú.ßäûmõ„ñ„·a8ŸèŠ3‰°§¢“âB…r Ï(<+.½0—[Ϙ ‘yž„˜A¢íh¥ñ@Á#ÌùFP€Îxuž€ñ˜ð¡”a,_zÑÅšhq®* ·k>ŠÒ.ÞûÑ}n̤ìR⡨À-/RÔòéúG. )$}@I¯‰`xAX"£@ ÎÅÁeIÃú//\ƒD8Ì Ó‚ž þ¶úäV`Ù» {®¿îùGžW:[*¸7{Å€/ç·0§‹Ô틤·ü¢¸ aÛ¢Ë#÷`Å VÐ ùŒ4á%XrQ:$"„FrXë-÷Cøbù@<x¦žšÿ<"É,’ÌaMn®Ë:â¦ÍÿFê½U•>´«9 òøä[U•¡oÓ3U˜™¹p¾;ïÞ!4âÑÀqˆ§éK€F‹+c| „³à._YcO B@Eã)£móõ°Ò ŒhBh'¡%Ì 4òtÚá†F—'…Yã]ɾ¢¹~Ö¢ð¾Cx%ÇAÐ;æ=­ ÅM¯¬á~ÄŽa!jðd-‡&Þ*3§d(Ñ3!$ònrÆKjò˾i&>„h𠌦¼*àÆ«Ç ã)Q_ãAŪ"ÈLn­5ÌéMÍÍÁr·žHn Cé…9Üo)\T½§ÎsB9ÉcñŠAñ—{ ý\ÍÝÂÇ…ê&Ó>«©P7Äà]fnáýb<{vUBŒ æùâ®÷t…jî¸ÿÖŸxêذZm÷^£ð *KÃú“y.ø\ìÿõ×ß2mÁlqîÕ¾íÈW&hìønÞGù…Ðÿâø—œâ ž6Ì-Œ-°óÙúîxÅu * ëOÊ¡ÐC‘ f>,gä¤ñ® ¶x0Q®v…*.©êR ÅKDçžy¶·Ã_ã¾)ŒÿŸ{Aa÷&„ åMÕÒO¸²(°ˆÍ÷y‡8È7‘6cù G^G(6 }…@2ü¼ ßi RÌíõ[S›hK–7ʬg‡ÉÆc…5F- ¬bdì+Âø`ÚößWm¶ûî¿&K¦¡ÅðÈÁP"Þ×ÚõçM@zøÖϾúÂñ1D\¨‹^¬ß´1i™2Xgz÷³Ü‡­Ð –ôiÛEÞÒø¦¨À^]ÝJ ŸJšK‹ó;s á0z|üXž…¥íH „6¿Ïð!ŽaçÚ—t©9´ü)ã¦:…Jˆªë:Æ’}£áÝûJ[]¡ŸzaDu³œÜ¢ ÓœÖh‰2°}†Ž.æ~ÓA=Õ« _‡çœ;q¶lG¨»ö'ÜǼ@.\¾Ôå#@À‚–«ŠâóWp ?«£°,X«: ”Yß‘ºÊF”ÇecÉ÷JyØeůٲ‘TP—e,«uùU,º„>a;=D=à²^—ƒÜ¹óOU8ý(•ÕŽXBI¸H{YÁWn<\Ì ,¬ÐÒ¿}Wù[—ùÄ;†„$Þ„Ð6éÜV†<ÛË1ú„¿ÔhÞÐy$p¾n»æ.Ž}ÉËÓ]ÿ#à­!iõ㹃p¾Q…ËhÂJŽæp”.…‰0¸E5‰×©yîèòŒÏFÚ¨b£º[%Á o‚gu%™DDź4%«¸ø„–“fM×UQª9¡Í_ +à Ô÷Ã'Ääc‡— %z¦A/ wŒK “gº¯¾cA‚þ¾.IRUò«´ëªœJÔ×ó—-r¹e–¼Ó¶™cLQÂp-9Iˆ‡.¯+k l2ƃÄs(ûˆ¾×’eÙÄYšpv›§\ëÁ¯Iï>¹ak®”j*œwiÒÚá‚Ò‘$´K“÷ƒ¥ùðrZ¢ïÞ[×íòÖAÐÍ¥˜ê5PŸá0oó#¡+\ÖŸÌÅ„4 aÁr÷lxjÃJÔŸ®P:þ (@ÑüO¨ù2üjCTC~qkç/“ã4ÏÜ%):¶Šy‡°þäÎcåe)X”#¬àÝ# $¶sò ‘Î+ O4æÜxJ²`J-æÉX¼ø¤‹ò]ç~†Ýo‘êÍê;ÌQ¸¡„g¤ WÏ\µX·ÖU³˜éó§š7ˆX®ƒ÷³}C «ãwP¨AŸ*?æ¿Ó„y4ßµ”^¢9Œk“á(—YDÎ,r±KxãÁÄ2öÞ°•Y÷±z dHć}ŠÑtêIDATÇ“©ßÊZà9\ù.øô$[)ÿ…‘(ïë¯cåG çùŠ?àatÁ üE £ÆÀË,¾üÞÚ–ó¦<»ž£îòÇÏ[Ü‘lÇíé‘Uô_ýÄÆ-ÞG‚ó?©…?ÚÃ!K·݈¾9Þ§Ÿû<ಲ€Ç#´F(RpuI†°#Ä'Ãð&Se°Ò!LóŒamM¶>¼UxîXÖÊdëÀ⎎‹è“x± ô y)À ÅI4!0‚#ÖçXDL?Þ ±®¥|FÚë~Ácô¡ñÆ[°¬ßGÁ±}ÇÂÛ×o ^„ŠÄr™w?žè™À6^Ý(yëÙ‹¦D}IþŸ;%úúD¿ÃÞo® Ã>Ñs‡Ý/敯¾ù&SßuOÆÞe±æ‘Dï/˜«}«?¨?Q2×2–bÍ5‰úÓ·?Ù-ó+ý¯ÿyVr %ãΘ¨?© %S¬yOÂâ|¼}²íO¶\ؽi7ïo¼¹”{ìïJ²m·r†@<¢Ç% ‹ j̸ý‘Bn<~Øá1ßÝDsX¼ûeöqÞ=VvÂŒ¹ÂÓiÌóƒäÂÛ¯‹9ÿfv¬>C ‰øàDßñXuÚ1C £à5GeBçë#-|œ÷Çÿívço© ø:éø˜UìS…EÌÙACÀøW Œ#d'!´Åhã]cÇ CÀ0 x±WÇ»n__9ežzw®qÞ §rŠz¤6ua…xt†€!`d=‰Y’õØ CÂùïsëËÇ{Z"ed†€!`d„’g»†¯(Ä*Xä3Þ½Ÿó!„¥Ë€ÞJ󭆀!`r˜‡Å!×åöÀ†€!`†€!`†€!`†À¾G ‘‡E–¯²ï!±†€!`†€!`†€!`†ÀþŽ€),ö÷²ö†€!`†€!`†€!`‡ ¦°8;ÝÙ0 CÀ0 CÀ0 CÀØß0…ÅþÞCÖ>CÀ0 CÀ0 CÀ0 CàDÀ‡`§Û#†€!`†€!`†€!`û;¦°Øß{ÈÚg†€!`†€!`†€!`‚˜Ââìt{dCÀ0 CÀ0 CÀ0 C`GÀû{Yû CÀ0 CÀ0 CÀ0 CSX‚nl†€!`†€!`†€!`ìïü–ÐÎ\W•LPIEND®B`‚locust-1.4.3/locust/static/jquery-1.11.3.min.js000066400000000000000000002733251400440205700210160ustar00rootroot00000000000000/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1; return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
    a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"

    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:k.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("