pax_global_header00006660000000000000000000000064147576077500014534gustar00rootroot0000000000000052 comment=cbd006bae762b1a9a7c786b1ed52ff787322cfe0 pineapple-pictures-0.9.2/000077500000000000000000000000001475760775000153555ustar00rootroot00000000000000pineapple-pictures-0.9.2/.github/000077500000000000000000000000001475760775000167155ustar00rootroot00000000000000pineapple-pictures-0.9.2/.github/FUNDING.yml000066400000000000000000000001041475760775000205250ustar00rootroot00000000000000ko_fi: blumia custom: ["https://blumia.itch.io/pineapple-pictures"] pineapple-pictures-0.9.2/.github/workflows/000077500000000000000000000000001475760775000207525ustar00rootroot00000000000000pineapple-pictures-0.9.2/.github/workflows/macos.yml000066400000000000000000000017131475760775000226010ustar00rootroot00000000000000name: macOS CI on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v4 - name: Install Qt uses: jurplel/install-qt-action@v4 with: version: '6.8.1' modules: 'qtimageformats' - name: Install Conan and Dependencies id: conan working-directory: ./ shell: bash run: | pip3 install wheel setuptools pip3 install conan --upgrade conan --version conan profile detect conan install --requires=exiv2/0.28.3 --generator CMakeDeps --generator CMakeToolchain --build=missing - name: Build run: | cmake . -DTRANSLATION_RESOURCE_EMBEDDING=ON --preset conan-release cmake --build --preset conan-release - name: Deploy run: | macdeployqt ./ppic.app -dmg ls - uses: actions/upload-artifact@v4 with: name: "macos-bundle" path: "*.dmg" pineapple-pictures-0.9.2/.github/workflows/reuse-check.yml000066400000000000000000000005661475760775000237020ustar00rootroot00000000000000# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. # # SPDX-License-Identifier: CC0-1.0 name: REUSE Compliance Check on: [push, pull_request] jobs: reuse-compliance-check: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: REUSE Compliance Check uses: fsfe/reuse-action@v5 pineapple-pictures-0.9.2/.github/workflows/ubuntu.yml000066400000000000000000000024261475760775000230230ustar00rootroot00000000000000name: Ubuntu CI on: [push, pull_request] jobs: ubuntu-22-04-build: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Get build dept. run: | sudo apt update sudo apt install cmake qtbase5-dev libqt5svg5-dev qttools5-dev libexiv2-dev - name: Build it run: | mkdir build cd build cmake ../ -DPREFER_QT_5=ON make cpack -G DEB - name: Try install it run: | cd build sudo apt install ./*.deb - uses: actions/upload-artifact@v4 with: name: ubuntu-22.04-deb-package path: build/*.deb ubuntu-24-04-build: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Get build dept. run: | sudo apt update sudo apt install cmake qt6-base-dev qt6-svg-dev qt6-tools-dev libexiv2-dev - name: Build it run: | mkdir build cd build cmake ../ -DPREFER_QT_5=OFF make cpack -G DEB - name: Try install it run: | cd build sudo apt install ./*.deb - uses: actions/upload-artifact@v4 with: name: ubuntu-24.04-deb-package path: build/*.deb pineapple-pictures-0.9.2/.github/workflows/windows.yml000066400000000000000000000143701475760775000231740ustar00rootroot00000000000000name: Windows CI on: [push, pull_request, workflow_dispatch] jobs: msvc-qmake-build: strategy: matrix: include: - qt_ver: '6.8.2' vs: '2022' aqt_arch: 'win64_msvc2022_64' msvc_arch: 'x64' runs-on: windows-2022 steps: - uses: actions/checkout@v4 - name: Install Qt uses: jurplel/install-qt-action@v4 with: arch: ${{ matrix.aqt_arch }} version: ${{ matrix.qt_ver }} modules: 'qtimageformats' - name: Build shell: cmd run: | set VS=${{ matrix.vs }} set VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" if not exist %VCVARS% set VCVARS="C:\Program Files\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" call %VCVARS% ${{ matrix.msvc_arch }} qmake pineapple-pictures.pro nmake nmake clean windeployqt --verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler --no-system-dxc-compiler --skip-plugin-types tls,networkinformation release\ppic.exe - uses: actions/upload-artifact@v4 with: name: "windows-msvc${{ matrix.vs }}-qt${{ matrix.qt_ver }}-qmake-package" path: release/* msvc-cmake-build: strategy: matrix: include: - qt_ver: '6.8.2' vs: '2022' aqt_arch: 'win64_msvc2022_64' msvc_arch: 'x64' runs-on: windows-2022 steps: - uses: actions/checkout@v4 - name: Install Qt uses: jurplel/install-qt-action@v4 with: arch: ${{ matrix.aqt_arch }} version: ${{ matrix.qt_ver }} modules: 'qtimageformats' - name: Build shell: cmd run: | :: ------ env ------ set PWD=%cd% set VS=${{ matrix.vs }} set VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" if not exist %VCVARS% set VCVARS="C:\Program Files\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" call %VCVARS% ${{ matrix.msvc_arch }} :: ------ dep ------ set CMAKE_PREFIX_PATH=%PWD%/dependencies_bin mkdir dependencies_src :: ===== exiv2 ===== curl -fsSL -o exiv2_bin.zip https://github.com/Exiv2/exiv2/releases/download/v0.28.3/exiv2-0.28.3-2019msvc64.zip 7z x exiv2_bin.zip -y ren .\exiv2-0.28.3-2019msvc64 dependencies_bin :: ===== zlib ===== curl -fsSL -o zlib_src.zip https://zlib.net/zlib131.zip 7z x zlib_src.zip -y -o"dependencies_src" ren .\dependencies_src\zlib-1.3.1 zlib || goto :error cmake ./dependencies_src/zlib -Bbuild_dependencies/zlib -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error cmake --build build_dependencies/zlib --config Release --target=install || goto :error curl -fsSL -o expat_src.zip https://github.com/libexpat/libexpat/archive/R_2_6_2.zip :: ===== AOM for libavif AVI decoding support ===== git clone -q -b v3.10.0 --depth 1 https://aomedia.googlesource.com/aom dependencies_src/aom cmake ./dependencies_src/aom -Bbuild_dependencies/aom -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DENABLE_DOCS=OFF -DBUILD_SHARED_LIBS=ON -DAOM_TARGET_CPU=generic -DENABLE_TESTS=OFF -DENABLE_TESTDATA=OFF -DENABLE_TOOLS=OFF -DENABLE_EXAMPLES=0 || goto :error cmake --build build_dependencies/aom --config Release --target=install || goto :error :: ===== libavif ===== curl -fsSL -o libavif-v1_1_1.zip https://github.com/AOMediaCodec/libavif/archive/v1.1.1.zip 7z x libavif-v1_1_1.zip -y -o"dependencies_src" ren .\dependencies_src\libavif-1.1.1 libavif || goto :error cmake ./dependencies_src/libavif -Bbuild_dependencies/libavif -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DAVIF_CODEC_AOM=ON -DAVIF_LOCAL_LIBYUV=ON cmake --build build_dependencies/libavif --config Release --target=install || goto :error :: ===== expat ===== 7z x expat_src.zip -y -o"dependencies_src" ren .\dependencies_src\libexpat-R_2_6_2 expat || goto :error cmake ./dependencies_src/expat/expat -Bbuild_dependencies/expat -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error cmake --build build_dependencies/expat --config Release --target=install || goto :error :: ===== ECM ===== git clone -q https://invent.kde.org/frameworks/extra-cmake-modules.git dependencies_src/extra-cmake-modules cmake .\dependencies_src\extra-cmake-modules -Bbuild_dependencies/extra-cmake-modules -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DBUILD_TESTING=OFF || goto :error cmake --build build_dependencies/extra-cmake-modules --config Release --target=install || goto :error :: ===== KArchive ===== git clone -q https://invent.kde.org/frameworks/karchive.git dependencies_src/karchive cmake .\dependencies_src\karchive -Bbuild_dependencies/karchive -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error cmake --build build_dependencies/karchive --config Release --target=install || goto :error :: ===== KImageFormats ===== git clone -q https://invent.kde.org/frameworks/kimageformats.git dependencies_src/kimageformats cmake .\dependencies_src\kimageformats -Bbuild_dependencies/kimageformats -DKDE_INSTALL_QTPLUGINDIR=%QT_ROOT_DIR%\plugins || goto :error cmake --build build_dependencies/kimageformats --config Release --target=install || goto :error :: ------ app ------ cmake -Bbuild . -DCMAKE_INSTALL_PREFIX="%PWD%\build\" cmake --build build --config Release cmake --build build --config Release --target=install :: ------ pkg ------ windeployqt --verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler --no-system-dxc-compiler --skip-plugin-types tls,networkinformation build\bin\ppic.exe robocopy ./dependencies_bin/bin build/bin *.dll if ErrorLevel 8 (exit /B 1) copy LICENSE build\bin exit /B 0 - uses: actions/upload-artifact@v4 with: name: "windows-msvc${{ matrix.vs }}-qt${{ matrix.qt_ver }}-cmake-package" path: build/bin/* pineapple-pictures-0.9.2/.gitignore000066400000000000000000000002371475760775000173470ustar00rootroot00000000000000# User files *.user *.user.* # Why, macOS, why? .DS_Store # Translation files *.qm *.mo # Generic Build Dir [Bb]uild/ # IDE/Editor config folders .vscode/ pineapple-pictures-0.9.2/CMakeLists.txt000066400000000000000000000214011475760775000201130ustar00rootroot00000000000000# SPDX-FileCopyrightText: 2022 - 2025 Gary Wang # # SPDX-License-Identifier: MIT cmake_minimum_required(VERSION 3.16) project(pineapple-pictures VERSION 0.9.2) # don't forget to update NEWS file and AppStream metadata. include(GNUInstallDirs) include(FeatureSummary) option (EXIV2_METADATA_SUPPORT "Better image metadata support via libexiv2" ON) option (PREFER_QT_5 "Prefer to use Qt 5" OFF) option (TRANSLATION_RESOURCE_EMBEDDING "Embedding .qm translation files inside resource" OFF) set (CMAKE_CXX_STANDARD 17) set (CMAKE_CXX_STANDARD_REQUIRED ON) set (CMAKE_AUTOMOC ON) set (CMAKE_AUTORCC ON) if (PREFER_QT_5) find_package(QT NAMES Qt5 REQUIRED COMPONENTS Core) else () find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core) endif () if (${QT_VERSION_MAJOR} EQUAL "5") set (QT_MINIMUM_VERSION "5.15.2") else () set (QT_MINIMUM_VERSION "6.4") endif () find_package(Qt${QT_VERSION_MAJOR} ${QT_MINIMUM_VERSION} REQUIRED COMPONENTS Widgets Svg LinguistTools OPTIONAL_COMPONENTS DBus ) if (${QT_VERSION_MAJOR} EQUAL "6") find_package(Qt${QT_DEFAULT_MAJOR_VERSION} ${QT_MINIMUM_VERSION} CONFIG REQUIRED SvgWidgets) endif () if (EXIV2_METADATA_SUPPORT) find_package(exiv2) set_package_properties(exiv2 PROPERTIES URL "https://www.exiv2.org" DESCRIPTION "image metadata support" TYPE RECOMMENDED PURPOSE "Bring better image metadata support" ) endif () set (PPIC_CPP_FILES app/main.cpp app/framelesswindow.cpp app/mainwindow.cpp app/actionmanager.cpp app/graphicsview.cpp app/graphicsscene.cpp app/bottombuttongroup.cpp app/navigatorview.cpp app/opacityhelper.cpp app/toolbutton.cpp app/settings.cpp app/settingsdialog.cpp app/aboutdialog.cpp app/metadatamodel.cpp app/metadatadialog.cpp app/exiv2wrapper.cpp app/playlistmanager.cpp app/shortcutedit.cpp app/fileopeneventhandler.cpp ) set (PPIC_HEADER_FILES app/framelesswindow.h app/mainwindow.h app/actionmanager.h app/graphicsview.h app/graphicsscene.h app/bottombuttongroup.h app/navigatorview.h app/opacityhelper.h app/toolbutton.h app/settings.h app/settingsdialog.h app/aboutdialog.h app/metadatamodel.h app/metadatadialog.h app/exiv2wrapper.h app/playlistmanager.h app/shortcutedit.h app/fileopeneventhandler.h ) set (PPIC_QRC_FILES assets/resources.qrc ) set (PPIC_RC_FILES # yeah, it's empty. ) set (EXE_NAME ppic) # Translation file (GLOB PPIC_TS_FILES app/translations/*.ts) set (PPIC_CPP_FILES_FOR_I18N ${PPIC_CPP_FILES}) if (WIN32) list(APPEND PPIC_RC_FILES assets/pineapple-pictures.rc) endif () add_executable (${EXE_NAME} ${PPIC_HEADER_FILES} ${PPIC_CPP_FILES} ${PPIC_QRC_FILES} ${PPIC_RC_FILES} ) if (${QT_VERSION_MAJOR} EQUAL "6") if (TRANSLATION_RESOURCE_EMBEDDING) qt_add_translations(${EXE_NAME} TS_FILES ${PPIC_TS_FILES}) else() qt_add_translations(${EXE_NAME} TS_FILES ${PPIC_TS_FILES} QM_FILES_OUTPUT_VARIABLE PPIC_QM_FILES) endif() else() qt_create_translation(PPIC_QM_FILES ${PPIC_CPP_FILES_FOR_I18N} ${PPIC_TS_FILES}) endif() target_sources(${EXE_NAME} PRIVATE ${PPIC_QM_FILES}) target_link_libraries (${EXE_NAME} Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Svg) if (${QT_VERSION_MAJOR} EQUAL "6") target_link_libraries (${EXE_NAME} Qt::SvgWidgets) endif () if (exiv2_FOUND) if(NOT TARGET Exiv2::exiv2lib AND TARGET exiv2lib) # for exiv2 0.27.x add_library(Exiv2::exiv2lib ALIAS exiv2lib) endif() target_link_libraries (${EXE_NAME} Exiv2::exiv2lib ) target_compile_definitions(${EXE_NAME} PRIVATE HAVE_EXIV2_VERSION="${exiv2_VERSION}" ) endif () if (TARGET Qt5::DBus OR TARGET Qt6::DBus) target_link_libraries (${EXE_NAME} Qt${QT_VERSION_MAJOR}::DBus ) target_compile_definitions(${EXE_NAME} PRIVATE HAVE_QTDBUS ) endif() # Extra build settings if (WIN32) target_compile_definitions(${EXE_NAME} PRIVATE FLAG_PORTABLE_MODE_SUPPORT=1 ) endif () # Helper macros for parsing and setting project version from `git describe --long` result macro (ppic_set_version_via_describe _describe_long) string ( REGEX REPLACE "^([0-9a-z.]*)-[0-9]+-g[0-9a-f]*$" "\\1" _tag_parts "${_describe_long}" ) list (GET _tag_parts 0 _matched_tag_version) if ("${_matched_tag_version}" MATCHES "^[0-9]+\\.[0-9]+\\.[0-9]+$") string ( REGEX REPLACE "^([0-9]+)\\.([0-9]+)\\.([0-9]+).*$" "\\1;\\2;\\3" _ver_parts "${_matched_tag_version}" ) list (GET _ver_parts 0 CPACK_PACKAGE_VERSION_MAJOR) list (GET _ver_parts 1 CPACK_PACKAGE_VERSION_MINOR) list (GET _ver_parts 2 CPACK_PACKAGE_VERSION_PATCH) endif () endmacro () # Version setup target_compile_definitions(${EXE_NAME} PRIVATE PPIC_VERSION_STRING="${CMAKE_PROJECT_VERSION}") if (EXISTS "${CMAKE_SOURCE_DIR}/.git") find_package(Git) set_package_properties(Git PROPERTIES TYPE OPTIONAL PURPOSE "Determine exact build version.") if (GIT_FOUND) execute_process ( COMMAND ${GIT_EXECUTABLE} describe --tags --always --long WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE _git_describe_long ) string (REGEX REPLACE "\n" "" _git_describe_long "${_git_describe_long}") ppic_set_version_via_describe(${_git_describe_long}) target_compile_definitions(${EXE_NAME} PRIVATE GIT_DESCRIBE_VERSION_STRING="${_git_describe_long}" ) endif () endif () # Install settings if (WIN32) set_target_properties(${EXE_NAME} PROPERTIES WIN32_EXECUTABLE TRUE ) elseif (APPLE) set_source_files_properties(assets/icons/app-icon.icns PROPERTIES MACOSX_PACKAGE_LOCATION "Resources" ) target_sources(${EXE_NAME} PUBLIC assets/icons/app-icon.icns) # See https://cmake.org/cmake/help/v3.15/prop_tgt/MACOSX_BUNDLE_INFO_PLIST.html set_target_properties(${EXE_NAME} PROPERTIES MACOSX_BUNDLE TRUE MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/dist/MacOSXBundleInfo.plist.in MACOSX_BUNDLE_BUNDLE_NAME "Pineapple Pictures" MACOSX_BUNDLE_GUI_IDENTIFIER net.blumia.pineapple-pictures MACOSX_BUNDLE_ICON_FILE app-icon.icns # contains the .icns file name, *without* the path. MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) elseif (UNIX) if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_INSTALL_PREFIX /usr) endif () # install icon install ( FILES assets/icons/app-icon.svg DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps" RENAME net.blumia.pineapple-pictures.svg ) # install shortcut install ( FILES dist/net.blumia.pineapple-pictures.desktop DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications" ) # install app metadata file for appstream (and some other stuff using this metadata like snapcraft) install ( FILES dist/appstream/net.blumia.pineapple-pictures.metainfo.xml DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo" ) endif() set (INSTALL_TARGETS_DEFAULT_ARGS BUNDLE DESTINATION . RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Devel ) install ( TARGETS ${EXE_NAME} ${INSTALL_TARGETS_DEFAULT_ARGS} ) if (TRANSLATION_RESOURCE_EMBEDDING) target_compile_definitions(${EXE_NAME} PRIVATE TRANSLATION_RESOURCE_EMBEDDING ) elseif (WIN32) set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}/translations") else() set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_FULL_DATADIR}/pineapple-pictures/translations") target_compile_definitions(${EXE_NAME} PRIVATE QM_FILE_INSTALL_ABSOLUTE_DIR=${QM_FILE_INSTALL_DIR} ) endif() if (DEFINED QM_FILE_INSTALL_DIR) install( FILES ${PPIC_QM_FILES} DESTINATION ${QM_FILE_INSTALL_DIR} ) endif() feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) # CPACK: General Settings set (CPACK_GENERATOR "TBZ2") set (CPACK_PACKAGE_NAME "pineapple-pictures") set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Yet another image viewer") set (CPACK_PACKAGE_VENDOR "Gary Wang") set (CPACK_PACKAGE_CONTACT "https://github.com/BLumia/pineapple-pictures/issues/") if (WIN32) # ... elseif (APPLE) # ... elseif (UNIX) set (CPACK_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}") set (CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) set (CPACK_DEBIAN_PACKAGE_RECOMMENDS "kimageformat-plugins") endif() include(CPack) pineapple-pictures-0.9.2/LICENSE000066400000000000000000000020741475760775000163650ustar00rootroot00000000000000MIT License Copyright (c) 2025 BLumia 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. pineapple-pictures-0.9.2/LICENSES/000077500000000000000000000000001475760775000165625ustar00rootroot00000000000000pineapple-pictures-0.9.2/LICENSES/CC0-1.0.txt000066400000000000000000000156101475760775000201670ustar00rootroot00000000000000Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. pineapple-pictures-0.9.2/LICENSES/MIT.txt000066400000000000000000000020661475760775000177600ustar00rootroot00000000000000MIT License Copyright (c) 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. pineapple-pictures-0.9.2/NEWS000066400000000000000000000056021475760775000160570ustar00rootroot00000000000000Version 0.9.2 ~~~~~~~~~~~~~ Released: 2025-03-05 Bugfixes: * Refer to the right exiv2 CMake module so it can be found on Linux Miscellaneous: * Convert DEP5 to REUSE.toml for better REUSE compliance * Update translations Contributors: Pino Toscano, TamilNeram Version 0.9.1 ~~~~~~~~~~~~~ Released: 2025-01-25 Features: * Option to double-click to fullscreen * Build-time option to embed translation resources Bugfixes: * Fix window size not adjusted when open file on macOS * Should center window according to available screen geometry Miscellaneous: * Change close window bahavior on macOS * Update translations Contributors: albanobattistella, Sabri Ünal Version 0.9.0 ~~~~~~~~~~~~~ Released: 2024-12-08 Features: * Support custom shortcuts for existing actions * Actions for frame-by-frame animated image playback support Miscellaneous: * Initial macOS bundle support * bump minimum required CMake version to 3.16 * Update translations Contributors: albanobattistella, VenusGirl, gallegonovato, Sabri Ünal Version 0.8.2.1 ~~~~~~~~~~~~~ Released: 2024-10-27 Bugfixes: * Cannot load translations caused by a change in 0.8.2 Version 0.8.2 ~~~~~~~~~~~~~ Released: 2024-10-26 Features: * New option to allow use light-color checkerboard by default Contributors: albanobattistella, mmahhi, gallegonovato Version 0.8.1 ~~~~~~~~~~~~~ Released: 2024-08-25 Features: * New command line option to list all supported formats Contributors: albanobattistella, mmahhi, ovl-1, gallegonovato, Oğuz Ersen Version 0.8.0 ~~~~~~~~~~~~~ Released: 2024-06-29 Features: * Support move image file to trash Contributors: albanobattistella, mmahhi, gallegonovato, Oğuz Ersen Version 0.7.4 ~~~~~~~~~~~~~ Released: 2024-04-04 Features: * Add some icons for corresponding menu actions Contributors: Reza Almanda, mmahhi, Oğuz Ersen, volkov, Сергій Version 0.7.3 ~~~~~~~~~~~~~ Released: 2023-10-24 Features: * Add "Keep transformation" to menu Contributors: mmahhi, VenusGirl, albanobattistella, gallegonovato, Heimen Stoffels Version 0.7.2 ~~~~~~~~~~~~~ Released: 2023-08-27 Features: * Add an option in setting dialog to tweak the High-DPI scaling rounding policy (might only works in Qt 6 build) Bugfixes: * Remove image size limit for Qt 6 build * Fix application icon install location under Linux Contributors: Heimen Stoffels, Andrey, Dan, gallegonovato, albanobattistella, Sabri Ünal Version 0.7.1 ~~~~~~~~~~~~~ Released: 2023-07-08 Features: * TIF and TIFF format files in the same folder will now be automatedly added to the gallery * Built-in window resizing now also supports Linux desktop. (macOS might also works as well) Bugfixes: * Settings dialog will automatedly use a suitable size instead of a hard-coded one * Fix default configuration file location under Linux. (was `~/.config/config.ini`, now it's `~/.config/Pineapple Pictures/config.ini`) Contributors: yyc12345 pineapple-pictures-0.9.2/README.md000066400000000000000000000077651475760775000166530ustar00rootroot00000000000000Yet another image viewer. |CI|Build Status| |---|---| |Windows Build|[![Windows CI](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml/badge.svg)](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml)| |macOS Build|[![macOS CI](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml/badge.svg)](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml)| |Ubuntu Build|[![Ubuntu CI](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml)| ![Pineapple Pictures - Main Window](https://repository-images.githubusercontent.com/211888654/e8697600-e370-11eb-9b2a-b71e05262954) ## Summary Pineapple Pictures is a lightweight image viewer that allows you view JPEG, PNG, GIF, SVG, PSD, KRA, XCF, TGA, HDR, AVIF and some other frequently used image formats files quickly and easily, and also provide a Stay-on-Top window setting that allows you pin the window so you can use it to pin a reference image at the top and then you can work with other software. ## Get it! ### Maintained by the original author - [GitHub Release Page](https://github.com/BLumia/pineapple-pictures/releases) - [SourceForge](https://sourceforge.net/projects/pineapple-pictures/) - Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/) - [Itch.io Store](https://blumia.itch.io/pineapple-pictures) ### Maintained by contributors / certain distro's package maintainers - Debian (since bullseye) or Ubuntu (since 21.04): `sudo apt install pineapple-pictures` - Nix / NixOS: [pineapple-pictures](https://search.nixos.org/packages?channel=unstable&show=pineapple-pictures&from=0&size=50&sort=relevance&type=packages&query=pineapple-pictures) (maintained by @wineee) ## Help Translation! [Translate this project on Weblate!](https://hosted.weblate.org/projects/pineapple-pictures/) ## Build it manually: Current state, we need: - `cmake`: as the build system. - `qt6` with `qt6-svg` and `qt6-tools`: since the app is using Qt. - `libexiv2`: able to display more image metadata. (optional, but recommended) Then we can build it with any proper c++ compiler like g++ or msvc. Building it just requires normal cmake building steps: ``` bash $ mkdir build && cd build $ cmake .. $ cmake --build . # or simply using `make` if you are using Makefile as the cmake generator. ``` After that, a `ppic` executable file will be available to use. You can also optionally install it by using the target `install` (or simply `make install` in case you are using Makefile). After the build process, you can also use `cpack` to make a package. The project will try to build with `exiv2` when it's available at build time, if you would like to build the project without `exiv2`, pass `-DEXIV2_METADATA_SUPPORT=OFF` to `cmake`. The project will also not use `exiv2` if it's not found, the `EXIV2_METADATA_SUPPORT` option can be useful if you have `exiv2` but specifically don't want to use it. Image formats supports rely on Qt's imageformats plugins, just get the plugins you need from your distro's package manager will be fine. For Windows user, you may need build and install the imageformats plugin manually, read the content below. It's possible to build it under Windows, Linux, macOS, and maybe other desktop platforms that Qt is ported to. For platform specific build instructions, please read the [related wiki page](https://github.com/BLumia/pineapple-pictures/wiki/Platform-Specific-Build-Instructions). > [!NOTE] > Although there is a `pineapple-pictures.pro` file which can be used for QMake build, it's only for testing purpose and it doesn't have `exiv2` support included. Using QMake to build this project is NOT supported, please use CMake if possible. ## License Pineapple Pictures as a whole is licensed under MIT license. Individual files may have a different, but compatible license. pineapple-pictures-0.9.2/README.zh_CN.md000066400000000000000000000107301475760775000176350ustar00rootroot00000000000000简单轻量的跨平台看图工具。 |CI|构建状态| |---|---| |Windows Build|[![Windows CI](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml/badge.svg)](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml)| |macOS Build|[![macOS CI](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml/badge.svg)](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml)| |Ubuntu Build|[![Ubuntu CI](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml)| ![Pineapple Pictures - Main Window](https://repository-images.githubusercontent.com/211888654/e8697600-e370-11eb-9b2a-b71e05262954) ## 简介 菠萝看图是一个轻量图像查看器,允许你简单快捷的查看 JPEG, PNG, GIF, SVG, PSD, KRA, XCF, TGA, HDR, AVIF 等常用格式的图像文件,并提供了置顶窗口的选项以便你在使用其它软件时也可以将参考图片固定在顶端。 ## 立即获取! ### 由原作者维护 - [GitHub Release 页面](https://github.com/BLumia/pineapple-pictures/releases) | [gitee 发布页面](https://gitee.com/blumia/pineapple-pictures/releases) - [SourceForge](https://sourceforge.net/projects/pineapple-pictures/) - Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/) - [Itch.io 商店](https://blumia.itch.io/pineapple-pictures) - Flatpak (于 FlatHub): [net.blumia.pineapple-pictures](https://flathub.org/apps/net.blumia.pineapple-pictures) *([我应当使用 flatpak 版吗?](https://github.com/BLumia/pineapple-pictures/wiki/Container%E2%80%90based-Packaging-Solutions-Support))* ### 由贡献者/对应发行版的打包人员维护 - Debian (自 bullseye 起) 或 Ubuntu (自 21.04 起): `sudo apt install pineapple-pictures` - Nix / NixOS: [pineapple-pictures](https://search.nixos.org/packages?channel=unstable&show=pineapple-pictures&from=0&size=50&sort=relevance&type=packages&query=pineapple-pictures) (由 [@wineee](https://github.com/wineee) 维护) ## 帮助翻译! [在 Weblate 上帮助此项目翻译到更多语言!](https://hosted.weblate.org/projects/pineapple-pictures/) ## 手动构建步骤: 当前状态,我们需要先确保如下依赖可用: - `cmake`: 我们所使用的构建系统 - 包含 `qt6-svg` 与 `qt6-tools` 组件的 `qt6`: 此应用基于 Qt - `libexiv2`: 用以获取和显示更多的图像元信息(可选,推荐) 然后我们就可以使用任何常规的 c++ 编译器如 g++ 或 msvc 来进行构建了 构建过程就是常规的 CMake 应用构建过程: ``` bash $ mkdir build && cd build $ cmake .. $ cmake --build . # 如果你使用 Makefile 作为 CMake 生成器,也可以直接简单的使用 `make` ``` 完毕后,一个名为 `ppic` 的可执行程序即会被生成以供使用。您也可以选择通过使用 CMake 生成的 `install` 目标继续将其安装到您的设备上(假设您使用 Makefile,即可执行 `make install` 来进行安装)。构建步骤完毕后,您也可以使用 `cpack` 来对应用程序进行打包。 当 `exiv2` 在构建时可用时,此项目将尝试使用其进行构建,若您不希望使用 `exiv2`,请传递 `-DEXIV2_METADATA_SUPPORT=OFF` 参数给 `cmake`。此项目在找不到 `exiv2` 时并不会使用 `exiv2`,`EXIV2_METADATA_SUPPORT` 选项可供尽管存在可用的 `exiv2` 但您明确不希望启用其支持时使用。 此应用的图片格式支持依赖于 Qt 的 imageformats 插件,直接从您所用的发行版获取对应的图像格式插件即可。对于 Windows 用户,您可能需要手动构建和使用图像格式插件。下方给出了进一步的说明。 在 Windows、Linux 以及 macOS 系统均可构建此应用,其它有移植 Qt 支持的平台也可能可以进行构建。若要了解一些平台相关的构建指引,请参阅[相关的 Wiki 页面](https://github.com/BLumia/pineapple-pictures/wiki/Platform-Specific-Build-Instructions)。 > [!NOTE] > 尽管存在一个可用于 QMake 构建的 `pineapple-pictures.pro` 文件,但其仅供简单测试所用且其并不包含 `exiv2` 支持。使用 QMake 构建此项目是 **不受支持** 的,请尽可能考虑使用 CMake。 ## 许可协议 菠萝看图整体使用 MIT 协议进行发布。项目所随的部分源文件可能具备不同但与之兼容的许可协议。 pineapple-pictures-0.9.2/REUSE.toml000066400000000000000000000017631475760775000171440ustar00rootroot00000000000000version = 1 SPDX-PackageName = "Pineapple Pictures" SPDX-PackageDownloadLocation = "https://github.com/BLumia/pineapple-pictures" [[annotations]] path = [".gitignore", "appveyor.yml", ".github/**"] precedence = "aggregate" SPDX-FileCopyrightText = "None" SPDX-License-Identifier = "CC0-1.0" [[annotations]] path = ["README**.md", "NEWS", "assets/**.rc", "assets/**.qrc", "dist/**"] precedence = "aggregate" SPDX-FileCopyrightText = "None" SPDX-License-Identifier = "CC0-1.0" [[annotations]] path = ["app/translations/**.ts", "assets/plain/translators.html"] precedence = "aggregate" SPDX-FileCopyrightText = "Translators from hosted.weblate.org" SPDX-License-Identifier = "MIT" [[annotations]] path = "assets/icons/**.svg" precedence = "aggregate" SPDX-FileCopyrightText = "2022 Gary Wang" SPDX-License-Identifier = "MIT" [[annotations]] path = "assets/icons/app-icon.**" precedence = "aggregate" SPDX-FileCopyrightText = "2020 Lovelyblack" SPDX-License-Identifier = "MIT" pineapple-pictures-0.9.2/app/000077500000000000000000000000001475760775000161355ustar00rootroot00000000000000pineapple-pictures-0.9.2/app/aboutdialog.cpp000066400000000000000000000204771475760775000211450ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "aboutdialog.h" #include #include #include #include #include #include #include #include #include AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent) , m_tabWidget(new QTabWidget) , m_buttonBox(new QDialogButtonBox) , m_helpTextEdit(new QTextBrowser) , m_aboutTextEdit(new QTextBrowser) , m_specialThanksTextEdit(new QTextBrowser) , m_licenseTextEdit(new QTextBrowser) , m_3rdPartyLibsTextEdit(new QTextBrowser) { this->setWindowTitle(tr("About")); const QStringList helpStr { QStringLiteral("

%1

").arg(tr("Launch application with image file path as argument to load the file.")), QStringLiteral("

%1

").arg(tr("Drag and drop image file onto the window is also supported.")), QStringLiteral("

%1

").arg(tr("None of the operations in this application will alter the pictures on disk.")), QStringLiteral("

%1

").arg(tr("Context menu option explanation:")), QStringLiteral("
    "), // blumia: Chain two arg() here since it seems lupdate will remove one of them if we use // the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention // `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage. QStringLiteral("
  • %1:
    %2
  • ") .arg(QCoreApplication::translate("MainWindow", "Stay on top")) .arg(tr("Make window stay on top of all other windows.")), QStringLiteral("
  • %1:
    %2
  • ") .arg(QCoreApplication::translate("MainWindow", "Protected mode")) .arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")), QStringLiteral("
  • %1:
    %2
  • ") .arg(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view")) .arg(tr("Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images.")), QStringLiteral("
") }; const QStringList aboutStr { QStringLiteral("

"), qApp->applicationDisplayName(), (QStringLiteral("
") + tr("Version: %1").arg( #ifdef GIT_DESCRIBE_VERSION_STRING GIT_DESCRIBE_VERSION_STRING #else qApp->applicationVersion() #endif // GIT_DESCRIBE_VERSION_STRING )), QStringLiteral("
"), tr("Copyright (c) %1 %2", "%1 is year, %2 is the name of copyright holder(s)") .arg(QStringLiteral("2025"), QStringLiteral("@BLumia")), QStringLiteral("
"), tr("Logo designed by %1").arg(QStringLiteral("@Lovelyblack")), QStringLiteral("
"), tr("Built with Qt %1 (%2)").arg(QT_VERSION_STR, QSysInfo::buildCpuArchitecture()), QStringLiteral("
%2").arg("https://github.com/BLumia/pineapple-pictures", tr("Source code")), QStringLiteral("
") }; QFile translaterHtml(":/plain/translators.html"); bool canOpenFile = translaterHtml.open(QIODevice::ReadOnly); const QByteArray & translatorList = canOpenFile ? translaterHtml.readAll() : QByteArrayLiteral(""); const QStringList specialThanksStr { QStringLiteral("

%1

%3

%4

").arg( tr("Contributors"), QStringLiteral("https://github.com/BLumia/pineapple-pictures/graphs/contributors"), tr("List of contributors on GitHub"), tr("Thanks to all people who contributed to this project.") ), QStringLiteral("

%1

%2

%3").arg( tr("Translators"), tr("I would like to thank the following people who volunteered to translate this application."), translatorList ) }; const QStringList licenseStr { QStringLiteral("

%1

").arg(tr("Your Rights")), QStringLiteral("

%1

%2

  • %3
  • %4
  • %5
  • %6
").arg( tr("%1 is released under the MIT License."), // %1 tr("This license grants people a number of freedoms:"), // %2 tr("You are free to use %1, for any purpose"), // %3 tr("You are free to distribute %1"), // %4 tr("You can study how %1 works and change it"), // %5 tr("You can distribute changed versions of %1") // %6 ).arg(QStringLiteral("%1")), QStringLiteral("

%1

").arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")), QStringLiteral("
%2
") }; const QString mitLicense(QStringLiteral(R"(Expat/MIT License Copyright (c) 2025 BLumia 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. )")); const QStringList thirdPartyLibsStr { QStringLiteral("

%1

").arg(tr("Third-party Libraries used by %1")), tr("%1 is built on the following free software libraries:", "Free as in freedom"), QStringLiteral("
    "), #ifdef HAVE_EXIV2_VERSION QStringLiteral("
  • %2: %3
  • ").arg("https://www.exiv2.org/", "Exiv2", "GPLv2"), #endif // EXIV2_VERSION QStringLiteral("
  • %2: %3
  • ").arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"), QStringLiteral("
") }; m_helpTextEdit->setText(helpStr.join('\n')); m_aboutTextEdit->setText(aboutStr.join('\n')); m_aboutTextEdit->setOpenExternalLinks(true); m_specialThanksTextEdit->setText(specialThanksStr.join('\n')); m_specialThanksTextEdit->setOpenExternalLinks(true); m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense)); m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(QStringLiteral("%1").arg(qApp->applicationDisplayName()))); m_3rdPartyLibsTextEdit->setOpenExternalLinks(true); m_tabWidget->addTab(m_helpTextEdit, tr("&Help")); m_tabWidget->addTab(m_aboutTextEdit, tr("&About")); m_tabWidget->addTab(m_specialThanksTextEdit, tr("&Special Thanks")); m_tabWidget->addTab(m_licenseTextEdit, tr("&License")); m_tabWidget->addTab(m_3rdPartyLibsTextEdit, tr("&Third-party Libraries")); m_buttonBox->setStandardButtons(QDialogButtonBox::Close); connect(m_buttonBox, QOverload::of(&QDialogButtonBox::clicked), this, [this](){ this->close(); }); setLayout(new QVBoxLayout); layout()->addWidget(m_tabWidget); layout()->addWidget(m_buttonBox); setMinimumSize(361, 161); // not sure why it complain "Unable to set geometry" setWindowFlag(Qt::WindowContextHelpButtonHint, false); } AboutDialog::~AboutDialog() { } QSize AboutDialog::sizeHint() const { return QSize(520, 350); } pineapple-pictures-0.9.2/app/aboutdialog.h000066400000000000000000000015241475760775000206020ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef ABOUTDIALOG_H #define ABOUTDIALOG_H #include QT_BEGIN_NAMESPACE class QTextBrowser; class QTabWidget; class QDialogButtonBox; QT_END_NAMESPACE class AboutDialog : public QDialog { Q_OBJECT public: explicit AboutDialog(QWidget *parent = nullptr); ~AboutDialog() override; QSize sizeHint() const override; private: QTabWidget * m_tabWidget = nullptr; QDialogButtonBox * m_buttonBox = nullptr; QTextBrowser * m_helpTextEdit = nullptr; QTextBrowser * m_aboutTextEdit = nullptr; QTextBrowser * m_specialThanksTextEdit = nullptr; QTextBrowser * m_licenseTextEdit = nullptr; QTextBrowser * m_3rdPartyLibsTextEdit = nullptr; }; #endif // ABOUTDIALOG_H pineapple-pictures-0.9.2/app/actionmanager.cpp000066400000000000000000000171741475760775000214630ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "actionmanager.h" #include "mainwindow.h" #include #include #include #define ICON_NAME(name)\ QStringLiteral(":/icons/" #name ".svg") #define ACTION_NAME(s) QStringLiteral(STRIFY(s)) #define STRIFY(s) #s ActionManager::ActionManager() { } ActionManager::~ActionManager() { } QIcon ActionManager::loadHidpiIcon(const QString &resp, QSize sz) { QSvgRenderer r(resp); QPixmap pm = QPixmap(sz * qApp->devicePixelRatio()); pm.fill(Qt::transparent); QPainter p(&pm); r.render(&p); pm.setDevicePixelRatio(qApp->devicePixelRatio()); return QIcon(pm); } void ActionManager::setupAction(MainWindow *mainWindow) { auto create_action = [] (QWidget *w, QAction **a, QString i, QString an, bool iconFromTheme = false) { *a = new QAction(w); if (!i.isNull()) (*a)->setIcon(iconFromTheme ? QIcon::fromTheme(i) : ActionManager::loadHidpiIcon(i)); (*a)->setObjectName(an); w->addAction(*a); }; #define CREATE_NEW_ICON_ACTION(w, a, i) create_action(w, &a, ICON_NAME(i), ACTION_NAME(a)) CREATE_NEW_ICON_ACTION(mainWindow, actionActualSize, zoom-original); CREATE_NEW_ICON_ACTION(mainWindow, actionToggleMaximize, view-fullscreen); CREATE_NEW_ICON_ACTION(mainWindow, actionZoomIn, zoom-in); CREATE_NEW_ICON_ACTION(mainWindow, actionZoomOut, zoom-out); CREATE_NEW_ICON_ACTION(mainWindow, actionToggleCheckerboard, view-background-checkerboard); CREATE_NEW_ICON_ACTION(mainWindow, actionRotateClockwise, object-rotate-right); #undef CREATE_NEW_ICON_ACTION #define CREATE_NEW_ACTION(w, a) create_action(w, &a, QString(), ACTION_NAME(a)) #define CREATE_NEW_THEMEICON_ACTION(w, a, i) create_action(w, &a, QLatin1String(STRIFY(i)), ACTION_NAME(a), true) CREATE_NEW_ACTION(mainWindow, actionRotateCounterClockwise); CREATE_NEW_ACTION(mainWindow, actionPrevPicture); CREATE_NEW_ACTION(mainWindow, actionNextPicture); CREATE_NEW_ACTION(mainWindow, actionTogglePauseAnimation); CREATE_NEW_ACTION(mainWindow, actionAnimationNextFrame); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionOpen, document-open); CREATE_NEW_ACTION(mainWindow, actionHorizontalFlip); CREATE_NEW_ACTION(mainWindow, actionFitInView); CREATE_NEW_ACTION(mainWindow, actionFitByWidth); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionCopyPixmap, edit-copy); CREATE_NEW_ACTION(mainWindow, actionCopyFilePath); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionPaste, edit-paste); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionTrash, edit-delete); CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop); CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode); CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform); CREATE_NEW_ACTION(mainWindow, actionSettings); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionHelp, system-help); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionLocateInFileManager, system-file-manager); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionProperties, document-properties); CREATE_NEW_ACTION(mainWindow, actionQuitApp); #undef CREATE_NEW_ACTION #undef CREATE_NEW_THEMEICON_ACTION retranslateUi(mainWindow); QMetaObject::connectSlotsByName(mainWindow); } void ActionManager::retranslateUi(MainWindow *mainWindow) { Q_UNUSED(mainWindow); actionOpen->setText(QCoreApplication::translate("MainWindow", "&Open...", nullptr)); actionActualSize->setText(QCoreApplication::translate("MainWindow", "Actual size", nullptr)); actionToggleMaximize->setText(QCoreApplication::translate("MainWindow", "Toggle maximize", nullptr)); actionZoomIn->setText(QCoreApplication::translate("MainWindow", "Zoom in", nullptr)); actionZoomOut->setText(QCoreApplication::translate("MainWindow", "Zoom out", nullptr)); actionToggleCheckerboard->setText(QCoreApplication::translate("MainWindow", "Toggle Checkerboard", nullptr)); actionRotateClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate right", nullptr)); actionRotateCounterClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate left", nullptr)); actionPrevPicture->setText(QCoreApplication::translate("MainWindow", "Previous image", nullptr)); actionNextPicture->setText(QCoreApplication::translate("MainWindow", "Next image", nullptr)); actionTogglePauseAnimation->setText(QCoreApplication::translate("MainWindow", "Pause/Resume Animation", nullptr)); actionAnimationNextFrame->setText(QCoreApplication::translate("MainWindow", "Animation Go to Next Frame", nullptr)); actionHorizontalFlip->setText(QCoreApplication::translate("MainWindow", "Flip &Horizontally", nullptr)); actionFitInView->setText(QCoreApplication::translate("MainWindow", "Fit to view", nullptr)); actionFitByWidth->setText(QCoreApplication::translate("MainWindow", "Fit to width", nullptr)); actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr)); actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr)); actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr)); actionTrash->setText(QCoreApplication::translate("MainWindow", "Move to Trash", nullptr)); actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr)); actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr)); actionToggleAvoidResetTransform->setText(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view")); actionSettings->setText(QCoreApplication::translate("MainWindow", "Configure...", nullptr)); actionHelp->setText(QCoreApplication::translate("MainWindow", "Help", nullptr)); #ifdef Q_OS_WIN actionLocateInFileManager->setText( QCoreApplication::translate( "MainWindow", "Show in File Explorer", "File Explorer is the name of explorer.exe under Windows" ) ); #else actionLocateInFileManager->setText(QCoreApplication::translate("MainWindow", "Show in directory", nullptr)); #endif // Q_OS_WIN actionProperties->setText(QCoreApplication::translate("MainWindow", "Properties", nullptr)); actionQuitApp->setText(QCoreApplication::translate("MainWindow", "Quit", nullptr)); } void ActionManager::setupShortcuts() { actionOpen->setShortcut(QKeySequence::Open); actionActualSize->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0)); actionZoomIn->setShortcut(QKeySequence::ZoomIn); actionZoomOut->setShortcut(QKeySequence::ZoomOut); actionPrevPicture->setShortcuts({ QKeySequence(Qt::Key_PageUp), QKeySequence(Qt::Key_Left), }); actionNextPicture->setShortcuts({ QKeySequence(Qt::Key_PageDown), QKeySequence(Qt::Key_Right), }); actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R)); actionCopyPixmap->setShortcut(QKeySequence::Copy); actionPaste->setShortcut(QKeySequence::Paste); actionTrash->setShortcut(QKeySequence::Delete); actionHelp->setShortcut(QKeySequence::HelpContents); actionSettings->setShortcut(QKeySequence::Preferences); actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I)); actionQuitApp->setShortcuts({ QKeySequence(Qt::Key_Space), QKeySequence(Qt::Key_Escape) }); } pineapple-pictures-0.9.2/app/actionmanager.h000066400000000000000000000026651475760775000211270ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef ACTIONMANAGER_H #define ACTIONMANAGER_H #include class MainWindow; class ActionManager { public: ActionManager(); ~ActionManager(); void setupAction(MainWindow * mainWindow); void retranslateUi(MainWindow *MainWindow); void setupShortcuts(); static QIcon loadHidpiIcon(const QString &resp, QSize sz = QSize(32, 32)); public: QAction *actionOpen; QAction *actionActualSize; QAction *actionToggleMaximize; QAction *actionZoomIn; QAction *actionZoomOut; QAction *actionToggleCheckerboard; QAction *actionRotateClockwise; QAction *actionRotateCounterClockwise; QAction *actionPrevPicture; QAction *actionNextPicture; QAction *actionTogglePauseAnimation; QAction *actionAnimationNextFrame; QAction *actionHorizontalFlip; QAction *actionFitInView; QAction *actionFitByWidth; QAction *actionCopyPixmap; QAction *actionCopyFilePath; QAction *actionPaste; QAction *actionTrash; QAction *actionToggleStayOnTop; QAction *actionToggleProtectMode; QAction *actionToggleAvoidResetTransform; QAction *actionSettings; QAction *actionHelp; QAction *actionLocateInFileManager; QAction *actionProperties; QAction *actionQuitApp; }; #endif // ACTIONMANAGER_H pineapple-pictures-0.9.2/app/bottombuttongroup.cpp000066400000000000000000000035201475760775000224560ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "bottombuttongroup.h" #include "opacityhelper.h" #include #include #include #include BottomButtonGroup::BottomButtonGroup(const std::vector &actionList, QWidget *parent) : QGroupBox (parent) , m_opacityHelper(new OpacityHelper(this)) { QHBoxLayout * mainLayout = new QHBoxLayout(this); mainLayout->setSizeConstraint(QLayout::SetFixedSize); this->setLayout(mainLayout); this->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); this->setStyleSheet("BottomButtonGroup {" "border: 1px solid gray;" "border-top-left-radius: 10px;" "border-top-right-radius: 10px;" "border-style: none;" "background-color:rgba(0,0,0,120)" "}" "QToolButton {" "background:transparent;" "}" "QToolButton:!focus {" "border-style: none;" "}"); auto newActionBtn = [this](QAction * action) -> QToolButton * { QToolButton * btn = new QToolButton(this); btn->setDefaultAction(action); btn->setIconSize(QSize(32, 32)); btn->setFixedSize(40, 40); return btn; }; for (QAction * action : actionList) { addButton(newActionBtn(action)); } } void BottomButtonGroup::setOpacity(qreal opacity, bool animated) { m_opacityHelper->setOpacity(opacity, animated); } void BottomButtonGroup::addButton(QAbstractButton *button) { layout()->addWidget(button); updateGeometry(); } pineapple-pictures-0.9.2/app/bottombuttongroup.h000066400000000000000000000011651475760775000221260ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef BOTTOMBUTTONGROUP_H #define BOTTOMBUTTONGROUP_H #include #include #include class OpacityHelper; class BottomButtonGroup : public QGroupBox { Q_OBJECT public: explicit BottomButtonGroup(const std::vector & actionList, QWidget *parent = nullptr); void setOpacity(qreal opacity, bool animated = true); void addButton(QAbstractButton *button); private: OpacityHelper * m_opacityHelper; }; #endif // BOTTOMBUTTONGROUP_H pineapple-pictures-0.9.2/app/exiv2wrapper.cpp000066400000000000000000000076021475760775000213040ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "exiv2wrapper.h" #ifdef HAVE_EXIV2_VERSION #include #else // HAVE_EXIV2_VERSION namespace Exiv2 { class Image {}; } #endif // HAVE_EXIV2_VERSION #include #include #include Exiv2Wrapper::Exiv2Wrapper() { } Exiv2Wrapper::~Exiv2Wrapper() { } #ifdef HAVE_EXIV2_VERSION // stupid AppleClang... template void Exiv2Wrapper::cacheSection(Collection collection) { const Collection& exifData = collection; Iterator it = exifData.begin(), end = exifData.end(); for (; it != end; ++it) { QString key = QString::fromUtf8(it->key().c_str()); if (it->tagName().substr(0, 2) == "0x") continue; // We might get exceptions like "No namespace info available for XMP prefix `Item'" // when trying to get tagLabel() data from a Xmpdatum if the tag is not common-used. // We don't care for those rare tags so let's just use a try-cache... try { QString label = QString::fromLocal8Bit(it->tagLabel().c_str()); std::ostringstream stream; stream << *it; QString value = QString::fromUtf8(stream.str().c_str()); m_metadataValue.insert(key, value); m_metadataLabel.insert(key, label); qDebug() << key << label << value; #if EXIV2_TEST_VERSION(0, 28, 0) } catch (Exiv2::Error & err) { #else // 0.27.x } catch (Exiv2::AnyError & err) { #endif // EXIV2_TEST_VERSION(0, 28, 0) qWarning() << "Error loading key" << key << ":" << err.what(); } } } #endif // HAVE_EXIV2_VERSION bool Exiv2Wrapper::load(const QString &filePath) { #ifdef HAVE_EXIV2_VERSION QByteArray filePathByteArray = QFile::encodeName(filePath); try { m_exivImage.reset(Exiv2::ImageFactory::open(filePathByteArray.constData()).release()); m_exivImage->readMetadata(); } catch (const Exiv2::Error& error) { m_errMsg = QString::fromUtf8(error.what()); return false; } return true; #else // HAVE_EXIV2_VERSION Q_UNUSED(filePath); return false; #endif // HAVE_EXIV2_VERSION } void Exiv2Wrapper::cacheSections() { #ifdef HAVE_EXIV2_VERSION if (m_exivImage->checkMode(Exiv2::mdExif) & Exiv2::amRead) { cacheSection(m_exivImage->exifData()); } if (m_exivImage->checkMode(Exiv2::mdIptc) & Exiv2::amRead) { cacheSection(m_exivImage->iptcData()); } if (m_exivImage->checkMode(Exiv2::mdXmp) & Exiv2::amRead) { cacheSection(m_exivImage->xmpData()); } // qDebug() << m_metadataValue; // qDebug() << m_metadataLabel; #endif // HAVE_EXIV2_VERSION } QString Exiv2Wrapper::comment() const { #ifdef HAVE_EXIV2_VERSION return m_exivImage->comment().c_str(); #else // HAVE_EXIV2_VERSION return QString(); #endif // HAVE_EXIV2_VERSION } QString Exiv2Wrapper::label(const QString &key) const { return m_metadataLabel.value(key); } QString Exiv2Wrapper::value(const QString &key) const { return m_metadataValue.value(key); } QString Exiv2Wrapper::XmpValue(const QString &rawValue) { QString ignored; return Exiv2Wrapper::XmpValue(rawValue, ignored); } QString Exiv2Wrapper::XmpValue(const QString &rawValue, QString &language) { if (rawValue.size() > 6 && rawValue.startsWith(QLatin1String("lang=\""))) { int pos = rawValue.indexOf('"', 6); if (pos != -1) { language = rawValue.mid(6, pos - 6); return (rawValue.mid(pos + 2)); } } language.clear(); return rawValue; } pineapple-pictures-0.9.2/app/exiv2wrapper.h000066400000000000000000000017061475760775000207500ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef EXIV2WRAPPER_H #define EXIV2WRAPPER_H #include #include #include namespace Exiv2 { class Image; } class Exiv2Wrapper { public: Exiv2Wrapper(); ~Exiv2Wrapper(); bool load(const QString& filePath); void cacheSections(); QString comment() const; QString label(const QString & key) const; QString value(const QString & key) const; static QString XmpValue(const QString &rawValue); static QString XmpValue(const QString &rawValue, QString & language); private: std::unique_ptr m_exivImage; QMap m_metadataValue; QMap m_metadataLabel; QString m_errMsg; template void cacheSection(Collection collection); }; #endif // EXIV2WRAPPER_H pineapple-pictures-0.9.2/app/fileopeneventhandler.cpp000066400000000000000000000010541475760775000230420ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2024 Gary Wang // // SPDX-License-Identifier: MIT #include "fileopeneventhandler.h" #include FileOpenEventHandler::FileOpenEventHandler(QObject *parent) : QObject(parent) { } bool FileOpenEventHandler::eventFilter(QObject *obj, QEvent *event) { if (event->type() == QEvent::FileOpen) { QFileOpenEvent *fileOpenEvent = static_cast(event); emit fileOpen(fileOpenEvent->url()); return true; } return QObject::eventFilter(obj, event); } pineapple-pictures-0.9.2/app/fileopeneventhandler.h000066400000000000000000000005741475760775000225150ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2024 Gary Wang // // SPDX-License-Identifier: MIT #pragma once #include class FileOpenEventHandler : public QObject { Q_OBJECT public: explicit FileOpenEventHandler(QObject *parent = nullptr); protected: bool eventFilter(QObject *obj, QEvent *event) override; signals: void fileOpen(const QUrl &url); }; pineapple-pictures-0.9.2/app/framelesswindow.cpp000066400000000000000000000111041475760775000220470ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // SPDX-FileCopyrightText: 2023 Tad Young // // SPDX-License-Identifier: MIT #include "framelesswindow.h" #include #include #include #include #include FramelessWindow::FramelessWindow(QWidget *parent) : QWidget(parent) , m_centralLayout(new QVBoxLayout(this)) , m_oldCursorShape(Qt::ArrowCursor) , m_oldEdges() { #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinMaxButtonsHint); #else // There is a bug in Qt 5 that will make pressing Meta+Up cause the app // fullscreen under Windows, see QTBUG-91226 to learn more. // The bug seems no longer exists in Qt 6 (I only tested it under Qt 6.3.0). this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinimizeButtonHint); #endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) this->setMouseTracking(true); this->setAttribute(Qt::WA_Hover, true); this->installEventFilter(this); m_centralLayout->setContentsMargins(QMargins()); } void FramelessWindow::setCentralWidget(QWidget *widget) { if (m_centralWidget) { m_centralLayout->removeWidget(m_centralWidget); m_centralWidget->deleteLater(); } m_centralLayout->addWidget(widget); m_centralWidget = widget; } void FramelessWindow::installResizeCapture(QObject* widget) { widget->installEventFilter(this); } bool FramelessWindow::eventFilter(QObject* o, QEvent* e) { switch (e->type()) { case QEvent::HoverMove: { QWidget* wg = qobject_cast(o); if (wg != nullptr) return mouseHover(static_cast(e), wg); break; } case QEvent::MouseButtonPress: return mousePress(static_cast(e)); } return QWidget::eventFilter(o, e); } bool FramelessWindow::mouseHover(QHoverEvent* event, QWidget* wg) { if (!isMaximized() && !isFullScreen()) { QWindow* win = window()->windowHandle(); Qt::Edges edges = this->getEdgesByPos(wg->mapToGlobal(event->oldPos()), win->frameGeometry()); // backup & restore cursor shape if (edges && !m_oldEdges) // entering the edge. backup cursor shape m_oldCursorShape = win->cursor().shape(); if (!edges && m_oldEdges) // leaving the edge. restore cursor shape win->setCursor(m_oldCursorShape); // save the latest edges status m_oldEdges = edges; // show resize cursor shape if cursor is within border if (edges) { win->setCursor(this->getCursorByEdge(edges, Qt::ArrowCursor)); return true; } } return false; } bool FramelessWindow::mousePress(QMouseEvent* event) { if (event->buttons() & Qt::LeftButton && !isMaximized() && !isFullScreen()) { QWindow* win = window()->windowHandle(); #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) Qt::Edges edges = this->getEdgesByPos(event->globalPosition().toPoint(), win->frameGeometry()); #else Qt::Edges edges = this->getEdgesByPos(event->globalPos(), win->frameGeometry()); #endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) if (edges) { win->startSystemResize(edges); return true; } } return false; } Qt::CursorShape FramelessWindow::getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor) { if ((edges == (Qt::TopEdge | Qt::LeftEdge)) || (edges == (Qt::RightEdge | Qt::BottomEdge))) return Qt::SizeFDiagCursor; else if ((edges == (Qt::TopEdge | Qt::RightEdge)) || (edges == (Qt::LeftEdge | Qt::BottomEdge))) return Qt::SizeBDiagCursor; else if (edges & (Qt::TopEdge | Qt::BottomEdge)) return Qt::SizeVerCursor; else if (edges & (Qt::LeftEdge | Qt::RightEdge)) return Qt::SizeHorCursor; else return default_cursor; } Qt::Edges FramelessWindow::getEdgesByPos(const QPoint gpos, const QRect& winrect) { const int borderWidth = 8; Qt::Edges edges; int x = gpos.x() - winrect.x(); int y = gpos.y() - winrect.y(); if (x < borderWidth) edges |= Qt::LeftEdge; if (x > (winrect.width() - borderWidth)) edges |= Qt::RightEdge; if (y < borderWidth) edges |= Qt::TopEdge; if (y > (winrect.height() - borderWidth)) edges |= Qt::BottomEdge; return edges; } pineapple-pictures-0.9.2/app/framelesswindow.h000066400000000000000000000020301475760775000215120ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef FRAMELESSWINDOW_H #define FRAMELESSWINDOW_H #include QT_BEGIN_NAMESPACE class QVBoxLayout; QT_END_NAMESPACE class FramelessWindow : public QWidget { Q_OBJECT public: explicit FramelessWindow(QWidget *parent = nullptr); void setCentralWidget(QWidget * widget); void installResizeCapture(QObject* widget); protected: bool eventFilter(QObject *o, QEvent *e) override; bool mouseHover(QHoverEvent* event, QWidget* wg); bool mousePress(QMouseEvent* event); private: Qt::Edges m_oldEdges; Qt::CursorShape m_oldCursorShape; Qt::CursorShape getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor); Qt::Edges getEdgesByPos(const QPoint pos, const QRect& winrect); QVBoxLayout * m_centralLayout = nullptr; QWidget * m_centralWidget = nullptr; // just a pointer, doesn't take the ownership. }; #endif // FRAMELESSWINDOW_H pineapple-pictures-0.9.2/app/graphicsscene.cpp000066400000000000000000000140451475760775000214630ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "graphicsscene.h" #include #include #include #include #include #include #include #include #include class PGraphicsPixmapItem : public QGraphicsPixmapItem { public: PGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent = nullptr) : QGraphicsPixmapItem(pixmap, parent) {} enum { Type = UserType + 1 }; int type() const override { return Type; } void setScaleHint(float scaleHint) { m_scaleHint = scaleHint; } const QPixmap & scaledPixmap(float scaleHint) { if (qFuzzyCompare(scaleHint, m_cachedScaleHint)) return m_cachedPixmap; QSizeF resizedScale(boundingRect().size()); resizedScale *= scaleHint; QPixmap && sourcePixmap = pixmap(); m_cachedPixmap = sourcePixmap.scaled( resizedScale.toSize() * sourcePixmap.devicePixelRatioF(), Qt::KeepAspectRatio, Qt::SmoothTransformation); m_cachedScaleHint = scaleHint; return m_cachedPixmap; } void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override { if (transformationMode() == Qt::FastTransformation) { return QGraphicsPixmapItem::paint(painter, option, widget); } else { // painter->setRenderHints(QPainter::Antialiasing); painter->drawPixmap(QRectF(offset(), boundingRect().size()).toRect(), scaledPixmap(m_scaleHint)); } } private: float m_scaleHint = 1; float m_cachedScaleHint = -1; QPixmap m_cachedPixmap; }; class PGraphicsMovieItem : public QGraphicsItem { public: PGraphicsMovieItem(QGraphicsItem *parent = nullptr) : QGraphicsItem(parent) {} enum { Type = UserType + 2 }; int type() const override { return Type; } void setMovie(QMovie* movie) { if (m_movie) m_movie->disconnect(); m_movie.reset(movie); m_movie->connect(m_movie.data(), &QMovie::updated, [this](){ this->update(); }); } QRectF boundingRect() const override { if (m_movie) { return m_movie->frameRect(); } else { return QRectF(); } } void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget) override { if (m_movie) { painter->drawPixmap(m_movie->frameRect(), m_movie->currentPixmap(), m_movie->frameRect()); } } inline QMovie * movie() const { return m_movie.data(); } private: QScopedPointer m_movie; }; GraphicsScene::GraphicsScene(QObject *parent) : QGraphicsScene(parent) { showText(tr("Drag image here")); } GraphicsScene::~GraphicsScene() { } void GraphicsScene::showImage(const QPixmap &pixmap) { this->clear(); PGraphicsPixmapItem * pixmapItem = new PGraphicsPixmapItem(pixmap); this->addItem(pixmapItem); pixmapItem->setShapeMode(QGraphicsPixmapItem::BoundingRectShape); m_theThing = pixmapItem; this->setSceneRect(m_theThing->boundingRect()); } void GraphicsScene::showText(const QString &text) { this->clear(); QGraphicsTextItem * textItem = this->addText(text); textItem->setDefaultTextColor(QColor("White")); m_theThing = textItem; this->setSceneRect(m_theThing->boundingRect()); } void GraphicsScene::showSvg(const QString &filepath) { this->clear(); QGraphicsSvgItem * svgItem = new QGraphicsSvgItem(); QSvgRenderer * render = new QSvgRenderer(svgItem); #if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0) // Qt 6.7.0's SVG support is terrible caused by huge memory usage, see QTBUG-124287 // Qt 6.7.1's is somewhat better, memory issue seems fixed, but still laggy when zoom in, // see QTBUG-126771. Anyway let's disable it for now. render->setOptions(QtSvg::Tiny12FeaturesOnly); #endif // QT_VERSION >= QT_VERSION_CHECK(6, 7, 0) render->load(filepath); svgItem->setSharedRenderer(render); this->addItem(svgItem); m_theThing = svgItem; this->setSceneRect(m_theThing->boundingRect()); } void GraphicsScene::showAnimated(const QString &filepath) { this->clear(); PGraphicsMovieItem * animatedItem = new PGraphicsMovieItem(); QMovie * movie = new QMovie(filepath); movie->start(); animatedItem->setMovie(movie); this->addItem(animatedItem); m_theThing = animatedItem; this->setSceneRect(m_theThing->boundingRect()); } bool GraphicsScene::trySetTransformationMode(Qt::TransformationMode mode, float scaleHint) { PGraphicsPixmapItem * pixmapItem = qgraphicsitem_cast(m_theThing); if (pixmapItem) { pixmapItem->setTransformationMode(mode); pixmapItem->setScaleHint(scaleHint); return true; } return false; } bool GraphicsScene::togglePauseAnimation() { PGraphicsMovieItem * animatedItem = qgraphicsitem_cast(m_theThing); if (animatedItem) { animatedItem->movie()->setPaused(animatedItem->movie()->state() != QMovie::Paused); return true; } return false; } bool GraphicsScene::skipAnimationFrame(int delta) { PGraphicsMovieItem * animatedItem = qgraphicsitem_cast(m_theThing); if (animatedItem) { const int frameCount = animatedItem->movie()->frameCount(); const int currentFrame = animatedItem->movie()->currentFrameNumber(); const int targetFrame = (currentFrame + delta) % frameCount; animatedItem->movie()->setPaused(true); return animatedItem->movie()->jumpToFrame(targetFrame); } return false; } QPixmap GraphicsScene::renderToPixmap() { PGraphicsPixmapItem * pixmapItem = qgraphicsitem_cast(m_theThing); if (pixmapItem) { return pixmapItem->pixmap(); } QPixmap pixmap(sceneRect().toRect().size()); pixmap.fill(Qt::transparent); QPainter p(&pixmap); render(&p, sceneRect()); return pixmap; } pineapple-pictures-0.9.2/app/graphicsscene.h000066400000000000000000000013721475760775000211270ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef GRAPHICSSCENE_H #define GRAPHICSSCENE_H #include class GraphicsScene : public QGraphicsScene { Q_OBJECT public: GraphicsScene(QObject *parent = nullptr); ~GraphicsScene(); void showImage(const QPixmap &pixmap); void showText(const QString &text); void showSvg(const QString &filepath); void showAnimated(const QString &filepath); bool trySetTransformationMode(Qt::TransformationMode mode, float scaleHint); bool togglePauseAnimation(); bool skipAnimationFrame(int delta = 1); QPixmap renderToPixmap(); private: QGraphicsItem * m_theThing = nullptr; }; #endif // GRAPHICSSCENE_H pineapple-pictures-0.9.2/app/graphicsview.cpp000066400000000000000000000257731475760775000213520ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "graphicsview.h" #include "graphicsscene.h" #include "settings.h" #include #include #include #include #include #include GraphicsView::GraphicsView(QWidget *parent) : QGraphicsView (parent) { setDragMode(QGraphicsView::ScrollHandDrag); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setResizeAnchor(QGraphicsView::AnchorUnderMouse); setTransformationAnchor(QGraphicsView::AnchorUnderMouse); setStyleSheet("background-color: rgba(0, 0, 0, 220);" "border-radius: 3px;"); setAcceptDrops(false); setCheckerboardEnabled(false); connect(horizontalScrollBar(), &QScrollBar::valueChanged, this, &GraphicsView::viewportRectChanged); connect(verticalScrollBar(), &QScrollBar::valueChanged, this, &GraphicsView::viewportRectChanged); } void GraphicsView::showFileFromPath(const QString &filePath) { emit navigatorViewRequired(false, transform()); if (filePath.endsWith(".svg")) { showSvg(filePath); } else { QImageReader imageReader(filePath); imageReader.setAutoTransform(true); imageReader.setDecideFormatFromContent(true); #if QT_VERSION > QT_VERSION_CHECK(6, 0, 0) imageReader.setAllocationLimit(0); #endif //QT_VERSION > QT_VERSION_CHECK(6, 0, 0) // Since if the image format / plugin does not support this feature, imageFormat() will returns an invalid format. // So we cannot use imageFormat() and check if it returns QImage::Format_Invalid to detect if we support the file. // QImage::Format imageFormat = imageReader.imageFormat(); if (imageReader.format().isEmpty()) { showText(tr("File is not a valid image")); } else if (imageReader.supportsAnimation() && imageReader.imageCount() > 1) { showAnimated(filePath); } else if (!imageReader.canRead()) { showText(tr("Image data is invalid or currently unsupported")); } else { QPixmap && pixmap = QPixmap::fromImageReader(&imageReader); if (pixmap.isNull()) { showText(tr("Image data is invalid or currently unsupported")); } else { pixmap.setDevicePixelRatio(devicePixelRatioF()); showImage(pixmap); } } } } void GraphicsView::showImage(const QPixmap &pixmap) { resetTransform(); scene()->showImage(pixmap); displayScene(); } void GraphicsView::showImage(const QImage &image) { resetTransform(); scene()->showImage(QPixmap::fromImage(image)); displayScene(); } void GraphicsView::showText(const QString &text) { resetTransform(); scene()->showText(text); displayScene(); } void GraphicsView::showSvg(const QString &filepath) { resetTransform(); scene()->showSvg(filepath); displayScene(); } void GraphicsView::showAnimated(const QString &filepath) { resetTransform(); scene()->showAnimated(filepath); displayScene(); } GraphicsScene *GraphicsView::scene() const { return qobject_cast(QGraphicsView::scene()); } void GraphicsView::setScene(GraphicsScene *scene) { return QGraphicsView::setScene(scene); } qreal GraphicsView::scaleFactor() const { return QStyleOptionGraphicsItem::levelOfDetailFromTransform(transform()); } void GraphicsView::resetTransform() { if (!m_avoidResetTransform) { QGraphicsView::resetTransform(); } } void GraphicsView::zoomView(qreal scaleFactor) { m_enableFitInView = false; scale(scaleFactor, scaleFactor); applyTransformationModeByScaleFactor(); emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform()); } // This is always according to user's view. // the direction of the rotation will NOT be clockwise because the y-axis points downwards. void GraphicsView::rotateView(bool clockwise) { resetScale(); QTransform tf(0, clockwise ? 1 : -1, 0, clockwise ? -1 : 1, 0, 0, 0, 0, 1); tf = transform() * tf; setTransform(tf); } void GraphicsView::flipView(bool horizontal) { QTransform tf(horizontal ? -1 : 1, 0, 0, 0, horizontal ? 1 : -1, 0, 0, 0, 1); tf = transform() * tf; setTransform(tf); // Ensure the navigation view is also flipped. emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform()); } void GraphicsView::resetScale() { setTransform(resetScale(transform())); applyTransformationModeByScaleFactor(); emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform()); } void GraphicsView::fitInView(const QRectF &rect, Qt::AspectRatioMode aspectRadioMode) { QGraphicsView::fitInView(rect, aspectRadioMode); applyTransformationModeByScaleFactor(); } void GraphicsView::fitByOrientation(Qt::Orientation ori, bool scaleDownOnly) { resetScale(); QRectF viewRect = this->viewport()->rect().adjusted(2, 2, -2, -2); QRectF imageRect = transform().mapRect(sceneRect()); qreal ratio; if (ori == Qt::Horizontal) { ratio = viewRect.width() / imageRect.width(); } else { ratio = viewRect.height() / imageRect.height(); } if (scaleDownOnly && ratio > 1) ratio = 1; scale(ratio, ratio); centerOn(imageRect.top(), 0); m_enableFitInView = false; applyTransformationModeByScaleFactor(); emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform()); } void GraphicsView::displayScene() { if (m_avoidResetTransform) { emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform()); return; } if (isSceneBiggerThanView()) { fitInView(sceneRect(), Qt::KeepAspectRatio); } m_enableFitInView = true; } bool GraphicsView::isSceneBiggerThanView() const { if (!isThingSmallerThanWindowWith(transform())) { return true; } else { return false; } } // Automately do fit in view when viewport(window) smaller than image original size. void GraphicsView::setEnableAutoFitInView(bool enable) { m_enableFitInView = enable; } bool GraphicsView::avoidResetTransform() const { return m_avoidResetTransform; } void GraphicsView::setAvoidResetTransform(bool avoidReset) { m_avoidResetTransform = avoidReset; } inline double zeroOrOne(double number) { return qFuzzyIsNull(number) ? 0 : (number > 0 ? 1 : -1); } // Note: this only works if we only have 90 degree based rotation // and no shear/translate. QTransform GraphicsView::resetScale(const QTransform & orig) { return QTransform(zeroOrOne(orig.m11()), zeroOrOne(orig.m12()), zeroOrOne(orig.m21()), zeroOrOne(orig.m22()), orig.dx(), orig.dy()); } void GraphicsView::toggleCheckerboard(bool invertCheckerboardColor) { setCheckerboardEnabled(!m_checkerboardEnabled, invertCheckerboardColor); } void GraphicsView::mousePressEvent(QMouseEvent *event) { if (shouldIgnoreMousePressMoveEvent(event)) { event->ignore(); // blumia: return here, or the QMouseEvent event transparency won't // work if we set a QGraphicsView::ScrollHandDrag drag mode. return; } return QGraphicsView::mousePressEvent(event); } void GraphicsView::mouseMoveEvent(QMouseEvent *event) { if (shouldIgnoreMousePressMoveEvent(event)) { event->ignore(); } return QGraphicsView::mouseMoveEvent(event); } void GraphicsView::mouseReleaseEvent(QMouseEvent *event) { if (event->button() == Qt::ForwardButton || event->button() == Qt::BackButton) { event->ignore(); } else { QGraphicsItem *item = itemAt(event->pos()); if (!item) { event->ignore(); } } return QGraphicsView::mouseReleaseEvent(event); } void GraphicsView::wheelEvent(QWheelEvent *event) { event->ignore(); // blumia: no need for calling parent method. } void GraphicsView::resizeEvent(QResizeEvent *event) { if (m_enableFitInView) { bool originalSizeSmallerThanWindow = isThingSmallerThanWindowWith(resetScale(transform())); if (originalSizeSmallerThanWindow && scaleFactor() >= 1) { // no longer need to do fitInView() // but we leave the m_enableFitInView value unchanged in case // user resize down the window again. } else if (originalSizeSmallerThanWindow && scaleFactor() < 1) { resetScale(); } else { fitInView(sceneRect(), Qt::KeepAspectRatio); } } else { emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform()); } return QGraphicsView::resizeEvent(event); } bool GraphicsView::isThingSmallerThanWindowWith(const QTransform &transform) const { return rect().size().expandedTo(transform.mapRect(sceneRect()).size().toSize()) == rect().size(); } bool GraphicsView::shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const { if (event->buttons() == Qt::NoButton) { return true; } QGraphicsItem *item = itemAt(event->pos()); if (!item) { return true; } if (isThingSmallerThanWindowWith(transform())) { return true; } return false; } void GraphicsView::setCheckerboardEnabled(bool enabled, bool invertColor) { m_checkerboardEnabled = enabled; bool isLightCheckerboard = Settings::instance()->useLightCheckerboard() ^ invertColor; if (m_checkerboardEnabled) { // Prepare background check-board pattern QPixmap tilePixmap(0x20, 0x20); tilePixmap.fill(isLightCheckerboard ? QColor(220, 220, 220, 170) : QColor(35, 35, 35, 170)); QPainter tilePainter(&tilePixmap); constexpr QColor color(45, 45, 45, 170); constexpr QColor invertedColor(210, 210, 210, 170); tilePainter.fillRect(0, 0, 0x10, 0x10, isLightCheckerboard ? invertedColor : color); tilePainter.fillRect(0x10, 0x10, 0x10, 0x10, isLightCheckerboard ? invertedColor : color); tilePainter.end(); setBackgroundBrush(tilePixmap); } else { setBackgroundBrush(Qt::transparent); } } void GraphicsView::applyTransformationModeByScaleFactor() { if (this->scaleFactor() < 1) { scene()->trySetTransformationMode(Qt::SmoothTransformation, this->scaleFactor()); } else { scene()->trySetTransformationMode(Qt::FastTransformation, this->scaleFactor()); } } pineapple-pictures-0.9.2/app/graphicsview.h000066400000000000000000000050371475760775000210060ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef GRAPHICSVIEW_H #define GRAPHICSVIEW_H #include #include class GraphicsScene; class GraphicsView : public QGraphicsView { Q_OBJECT public: GraphicsView(QWidget *parent = nullptr); void showFileFromPath(const QString &filePath); void showImage(const QPixmap &pixmap); void showImage(const QImage &image); void showText(const QString &text); void showSvg(const QString &filepath); void showAnimated(const QString &filepath); GraphicsScene * scene() const; void setScene(GraphicsScene *scene); qreal scaleFactor() const; void resetTransform(); void zoomView(qreal scaleFactor); void rotateView(bool clockwise = true); void flipView(bool horizontal = true); void resetScale(); void fitInView(const QRectF &rect, Qt::AspectRatioMode aspectRadioMode = Qt::IgnoreAspectRatio); void fitByOrientation(Qt::Orientation ori = Qt::Horizontal, bool scaleDownOnly = false); void displayScene(); bool isSceneBiggerThanView() const; void setEnableAutoFitInView(bool enable = true); bool avoidResetTransform() const; void setAvoidResetTransform(bool avoidReset); static QTransform resetScale(const QTransform & orig); signals: void navigatorViewRequired(bool required, QTransform transform); void viewportRectChanged(); public slots: void toggleCheckerboard(bool invertCheckerboardColor = false); private: void mousePressEvent(QMouseEvent * event) override; void mouseMoveEvent(QMouseEvent * event) override; void mouseReleaseEvent(QMouseEvent * event) override; void wheelEvent(QWheelEvent *event) override; void resizeEvent(QResizeEvent *event) override; bool isThingSmallerThanWindowWith(const QTransform &transform) const; bool shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const; void setCheckerboardEnabled(bool enabled, bool invertColor = false); void applyTransformationModeByScaleFactor(); // Consider switch to 3 state for "no fit", "always fit" and "fit when view is smaller"? // ... or even more? e.g. "fit/snap width" things... // Currently it's "no fit" when it's false and "fit when view is smaller" when it's true. bool m_enableFitInView = false; bool m_avoidResetTransform = false; bool m_checkerboardEnabled = false; bool m_useLightCheckerboard = false; }; #endif // GRAPHICSVIEW_H pineapple-pictures-0.9.2/app/main.cpp000066400000000000000000000055521475760775000175740ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "mainwindow.h" #include "playlistmanager.h" #include "settings.h" #ifdef Q_OS_MACOS #include "fileopeneventhandler.h" #endif // Q_OS_MACOS #include #include #include #include #include int main(int argc, char *argv[]) { QCoreApplication::setApplicationName("Pineapple Pictures"); QCoreApplication::setApplicationVersion(PPIC_VERSION_STRING); QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Settings::instance()->hiDpiScaleFactorBehavior()); QApplication a(argc, argv); #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) a.setAttribute(Qt::ApplicationAttribute::AA_UseHighDpiPixmaps); #endif QTranslator translator; #if defined(TRANSLATION_RESOURCE_EMBEDDING) const QString qmDir = QLatin1String(":/i18n/"); #elif defined(QM_FILE_INSTALL_ABSOLUTE_DIR) const QString qmDir = QT_STRINGIFY(QM_FILE_INSTALL_ABSOLUTE_DIR); #else const QString qmDir = QDir(QCoreApplication::applicationDirPath()).absoluteFilePath("translations"); #endif if (translator.load(QLocale(), QLatin1String("PineapplePictures"), QLatin1String("_"), qmDir)) { QCoreApplication::installTranslator(&translator); } QGuiApplication::setApplicationDisplayName(QCoreApplication::translate("main", "Pineapple Pictures")); // commandline options QCommandLineOption supportedImageFormats(QStringLiteral("supported-image-formats"), QCoreApplication::translate("main", "List supported image format suffixes, and quit program.")); // parse commandline arguments QCommandLineParser parser; parser.addOption(supportedImageFormats); parser.addPositionalArgument("File list", QCoreApplication::translate("main", "File list.")); parser.addHelpOption(); parser.process(a); if (parser.isSet(supportedImageFormats)) { fputs(qPrintable(MainWindow::supportedImageFormats().join(QChar('\n'))), stdout); ::exit(EXIT_SUCCESS); } MainWindow w; w.show(); #ifdef Q_OS_MACOS FileOpenEventHandler * fileOpenEventHandler = new FileOpenEventHandler(&a); a.installEventFilter(fileOpenEventHandler); a.connect(fileOpenEventHandler, &FileOpenEventHandler::fileOpen, [&w](const QUrl & url){ if (w.isHidden()) { w.setWindowOpacity(1); w.showNormal(); } else { w.activateWindow(); } w.showUrls({url}); w.initWindowSize(); }); #endif // Q_OS_MACOS QStringList urlStrList = parser.positionalArguments(); QList && urlList = PlaylistManager::convertToUrlList(urlStrList); if (!urlList.isEmpty()) { w.showUrls(urlList); } w.initWindowSize(); return QApplication::exec(); } pineapple-pictures-0.9.2/app/mainwindow.cpp000066400000000000000000000656731475760775000210360ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "mainwindow.h" #include "settings.h" #include "toolbutton.h" #include "bottombuttongroup.h" #include "graphicsview.h" #include "navigatorview.h" #include "graphicsscene.h" #include "settingsdialog.h" #include "aboutdialog.h" #include "metadatamodel.h" #include "metadatadialog.h" #include "actionmanager.h" #include "playlistmanager.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_QTDBUS #include #include #endif // HAVE_QTDBUS MainWindow::MainWindow(QWidget *parent) : FramelessWindow(parent) , m_am(new ActionManager) , m_pm(new PlaylistManager(this)) { if (Settings::instance()->stayOnTop()) { this->setWindowFlag(Qt::WindowStaysOnTopHint); } this->setAttribute(Qt::WA_TranslucentBackground, true); this->setMinimumSize(350, 330); this->setWindowIcon(QIcon(":/icons/app-icon.svg")); this->setMouseTracking(true); this->setAcceptDrops(true); m_pm->setAutoLoadFilterSuffixes(supportedImageFormats()); m_fadeOutAnimation = new QPropertyAnimation(this, "windowOpacity"); m_fadeOutAnimation->setDuration(300); m_fadeOutAnimation->setStartValue(1); m_fadeOutAnimation->setEndValue(0); m_floatUpAnimation = new QPropertyAnimation(this, "geometry"); m_floatUpAnimation->setDuration(300); m_floatUpAnimation->setEasingCurve(QEasingCurve::OutCirc); m_exitAnimationGroup = new QParallelAnimationGroup(this); m_exitAnimationGroup->addAnimation(m_fadeOutAnimation); m_exitAnimationGroup->addAnimation(m_floatUpAnimation); connect(m_exitAnimationGroup, &QParallelAnimationGroup::finished, #ifdef Q_OS_MAC this, &QWidget::hide); #else this, &QWidget::close); #endif GraphicsScene * scene = new GraphicsScene(this); m_graphicsView = new GraphicsView(this); m_graphicsView->setScene(scene); this->setCentralWidget(m_graphicsView); m_gv = new NavigatorView(this); m_gv->setFixedSize(220, 160); m_gv->setScene(scene); m_gv->setMainView(m_graphicsView); m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio); connect(m_graphicsView, &GraphicsView::navigatorViewRequired, this, [ = ](bool required, const QTransform & tf){ m_gv->setTransform(GraphicsView::resetScale(tf)); m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio); m_gv->setVisible(required); m_gv->updateMainViewportRegion(); }); connect(m_graphicsView, &GraphicsView::viewportRectChanged, m_gv, &NavigatorView::updateMainViewportRegion); m_closeButton = new ToolButton(true, m_graphicsView); m_closeButton->setIconSize(QSize(32, 32)); m_closeButton->setFixedSize(QSize(50, 50)); m_closeButton->setIconResourcePath(":/icons/window-close.svg"); connect(m_closeButton, &QAbstractButton::clicked, this, &MainWindow::closeWindow); m_prevButton = new ToolButton(false, m_graphicsView); m_prevButton->setIconSize(QSize(75, 75)); m_prevButton->setIconResourcePath(":/icons/go-previous.svg"); m_prevButton->setVisible(false); m_prevButton->setOpacity(0, false); m_nextButton = new ToolButton(false, m_graphicsView); m_nextButton->setIconSize(QSize(75, 75)); m_nextButton->setIconResourcePath(":/icons/go-next.svg"); m_nextButton->setVisible(false); m_nextButton->setOpacity(0, false); connect(m_prevButton, &QAbstractButton::clicked, this, &MainWindow::galleryPrev); connect(m_nextButton, &QAbstractButton::clicked, this, &MainWindow::galleryNext); m_am->setupAction(this); m_bottomButtonGroup = new BottomButtonGroup({ m_am->actionActualSize, m_am->actionToggleMaximize, m_am->actionZoomIn, m_am->actionZoomOut, m_am->actionToggleCheckerboard, m_am->actionRotateClockwise }, this); m_bottomButtonGroup->setOpacity(0, false); m_gv->setOpacity(0, false); m_closeButton->setOpacity(0, false); connect(m_pm, &PlaylistManager::totalCountChanged, this, [this](int galleryFileCount) { m_prevButton->setVisible(galleryFileCount > 1); m_nextButton->setVisible(galleryFileCount > 1); }); connect(m_pm->model(), &PlaylistModel::modelReset, this, std::bind(&MainWindow::galleryCurrent, this, false, false)); connect(m_pm, &PlaylistManager::currentIndexChanged, this, std::bind(&MainWindow::galleryCurrent, this, true, false)); QShortcut * fullscreenShorucut = new QShortcut(QKeySequence(QKeySequence::FullScreen), this); connect(fullscreenShorucut, &QShortcut::activated, this, &MainWindow::toggleFullscreen); centerWindow(); QTimer::singleShot(0, this, [this](){ m_am->setupShortcuts(); Settings::instance()->applyUserShortcuts(this); }); // allow some mouse events can go through these widgets for resizing window. installResizeCapture(m_closeButton); installResizeCapture(m_graphicsView); installResizeCapture(m_graphicsView->viewport()); installResizeCapture(m_gv); installResizeCapture(m_gv->viewport()); } MainWindow::~MainWindow() { } void MainWindow::showUrls(const QList &urls) { if (!urls.isEmpty()) { m_graphicsView->showFileFromPath(urls.first().toLocalFile()); m_pm->loadPlaylist(urls); } else { m_graphicsView->showText(tr("File url list is empty")); return; } m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio); } void MainWindow::initWindowSize() { switch (Settings::instance()->initWindowSizeBehavior()) { case Settings::WindowSizeBehavior::Auto: adjustWindowSizeBySceneRect(); break; case Settings::WindowSizeBehavior::Maximized: showMaximized(); break; default: adjustWindowSizeBySceneRect(); break; } } void MainWindow::adjustWindowSizeBySceneRect() { if (m_pm->totalCount() < 1) return; QSize sceneSize = m_graphicsView->sceneRect().toRect().size(); QSize sceneSizeWithMargins = sceneSize + QSize(130, 125); if (m_graphicsView->scaleFactor() < 1 || size().expandedTo(sceneSizeWithMargins) != size()) { // if it scaled down by the resize policy: QSize screenSize = qApp->screenAt(QCursor::pos())->availableSize(); if (screenSize.expandedTo(sceneSize) == screenSize) { // we can show the picture by increase the window size. QSize finalSize = (screenSize.expandedTo(sceneSizeWithMargins) == screenSize) ? sceneSizeWithMargins : screenSize; // We have a very reasonable sizeHint() value ;P this->resize(finalSize.expandedTo(this->sizeHint())); // We're sure the window can display the whole thing with 1:1 scale. // The old window size may cause fitInView call from resize() and the // above resize() call won't reset the scale back to 1:1, so we // just call resetScale() here to ensure the thing is no longer scaled. m_graphicsView->resetScale(); centerWindow(); } else { // toggle maximum showMaximized(); } } } // can be empty if it is NOT from a local file. QUrl MainWindow::currentImageFileUrl() const { return m_pm->urlByIndex(m_pm->curIndex()); } void MainWindow::clearGallery() { m_pm->setPlaylist({}); } void MainWindow::galleryPrev() { QModelIndex index = m_pm->previousIndex(); if (index.isValid()) { m_pm->setCurrentIndex(index); m_graphicsView->showFileFromPath(m_pm->localFileByIndex(index)); } } void MainWindow::galleryNext() { QModelIndex index = m_pm->nextIndex(); if (index.isValid()) { m_pm->setCurrentIndex(index); m_graphicsView->showFileFromPath(m_pm->localFileByIndex(index)); } } // Only use this to update minor information. void MainWindow::galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage) { QModelIndex index = m_pm->curIndex(); if (index.isValid()) { if (reloadImage) m_graphicsView->showFileFromPath(m_pm->localFileByIndex(index)); setWindowTitle(m_pm->urlByIndex(index).fileName()); } else if (showLoadImageHintWhenEmpty && m_pm->totalCount() <= 0) { m_graphicsView->showText(QCoreApplication::translate("GraphicsScene", "Drag image here")); } } QStringList MainWindow::supportedImageFormats() { QStringList formatFilters { #if QT_VERSION < QT_VERSION_CHECK(6, 8, 0) QStringLiteral("*.jfif") #endif // QT_VERSION < QT_VERSION_CHECK(6, 8, 0) }; for (const QByteArray &item : QImageReader::supportedImageFormats()) { formatFilters.append(QStringLiteral("*.") % QString::fromLocal8Bit(item)); } return formatFilters; } void MainWindow::showEvent(QShowEvent *event) { updateWidgetsPosition(); return FramelessWindow::showEvent(event); } void MainWindow::enterEvent(QT_ENTER_EVENT *event) { m_bottomButtonGroup->setOpacity(1); m_gv->setOpacity(1); m_closeButton->setOpacity(1); m_prevButton->setOpacity(1); m_nextButton->setOpacity(1); return FramelessWindow::enterEvent(event); } void MainWindow::leaveEvent(QEvent *event) { m_bottomButtonGroup->setOpacity(0); m_gv->setOpacity(0); m_closeButton->setOpacity(0); m_prevButton->setOpacity(0); m_nextButton->setOpacity(0); return FramelessWindow::leaveEvent(event); } void MainWindow::mousePressEvent(QMouseEvent *event) { if (event->buttons() & Qt::LeftButton && !isMaximized()) { m_clickedOnWindow = true; m_oldMousePos = event->pos(); // qDebug() << m_oldMousePos << m_graphicsView->transform().m11() // << m_graphicsView->transform().m22() << m_graphicsView->matrix().m12(); event->accept(); } return FramelessWindow::mousePressEvent(event); } void MainWindow::mouseMoveEvent(QMouseEvent *event) { if (event->buttons() & Qt::LeftButton && m_clickedOnWindow && !isMaximized() && !isFullScreen()) { if (!window()->windowHandle()->startSystemMove()) { #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) move(event->globalPosition().toPoint() - m_oldMousePos); #else move(event->globalPos() - m_oldMousePos); #endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) } event->accept(); } return FramelessWindow::mouseMoveEvent(event); } void MainWindow::mouseReleaseEvent(QMouseEvent *event) { m_clickedOnWindow = false; // It seems the forward/back mouse button won't generate a key event [1] so we can't use // QShortcut or QKeySequence to indicate these shortcuts, so we do it here. // Reference: // [1]: https://codereview.qt-project.org/c/qt/qtbase/+/177475 if (event->button() == Qt::ForwardButton || event->button() == Qt::BackButton) { event->button() == Qt::BackButton ? galleryPrev() : galleryNext(); event->accept(); } return FramelessWindow::mouseReleaseEvent(event); } void MainWindow::mouseDoubleClickEvent(QMouseEvent *event) { // The forward/back mouse button can also used to trigger a mouse double-click event // Since we use that for gallery navigation so we ignore these two buttons. if (event->buttons() & Qt::ForwardButton || event->buttons() & Qt::BackButton) { return; } switch (Settings::instance()->doubleClickBehavior()) { case Settings::DoubleClickBehavior::Close: quitAppAction(); event->accept(); break; case Settings::DoubleClickBehavior::Maximize: toggleMaximize(); event->accept(); break; case Settings::DoubleClickBehavior::FullScreen: toggleFullscreen(); event->accept(); break; case Settings::DoubleClickBehavior::Ignore: break; } // blumia: don't call parent constructor here, seems it will cause mouse move // event get called even if we set event->accept(); // return QMainWindow::mouseDoubleClickEvent(event); } void MainWindow::wheelEvent(QWheelEvent *event) { QPoint numDegrees = event->angleDelta() / 8; bool needWeelEvent = false, wheelUp = false; bool actionIsZoom = event->modifiers().testFlag(Qt::ControlModifier) || Settings::instance()->mouseWheelBehavior() == Settings::MouseWheelBehavior::Zoom; // NOTE: Only checking angleDelta since the QWheelEvent::pixelDelta() doc says // pixelDelta() value is driver specific and unreliable on X11... // We are not scrolling the canvas, just zoom in or out, so it probably // doesn't matter here. if (!numDegrees.isNull() && numDegrees.y() != 0) { needWeelEvent = true; wheelUp = numDegrees.y() > 0; } if (needWeelEvent) { if (actionIsZoom) { if (wheelUp) { on_actionZoomIn_triggered(); } else { on_actionZoomOut_triggered(); } } else { if (wheelUp) { galleryPrev(); } else { galleryNext(); } } event->accept(); } else { FramelessWindow::wheelEvent(event); } } void MainWindow::resizeEvent(QResizeEvent *event) { updateWidgetsPosition(); return FramelessWindow::resizeEvent(event); } void MainWindow::contextMenuEvent(QContextMenuEvent *event) { QMenu * menu = new QMenu; QMenu * copyMenu = new QMenu(tr("&Copy")); QUrl currentFileUrl = currentImageFileUrl(); QImage clipboardImage; QUrl clipboardFileUrl; QAction * copyPixmap = m_am->actionCopyPixmap; QAction * copyFilePath = m_am->actionCopyFilePath; copyMenu->setIcon(QIcon::fromTheme(QLatin1String("edit-copy"))); copyMenu->addAction(copyPixmap); if (currentFileUrl.isValid()) { copyMenu->addAction(copyFilePath); } QAction * paste = m_am->actionPaste; QAction * trash = m_am->actionTrash; QAction * stayOnTopMode = m_am->actionToggleStayOnTop; stayOnTopMode->setCheckable(true); stayOnTopMode->setChecked(stayOnTop()); QAction * protectedMode = m_am->actionToggleProtectMode; protectedMode->setCheckable(true); protectedMode->setChecked(m_protectedMode); QAction * avoidResetTransform = m_am->actionToggleAvoidResetTransform; avoidResetTransform->setCheckable(true); avoidResetTransform->setChecked(m_graphicsView->avoidResetTransform()); QAction * toggleSettings = m_am->actionSettings; QAction * helpAction = m_am->actionHelp; QAction * propertiesAction = m_am->actionProperties; #if 0 menu->addAction(m_am->actionOpen); #endif // 0 if (copyMenu->actions().count() == 1) { menu->addActions(copyMenu->actions()); } else { menu->addMenu(copyMenu); } if (canPaste()) { menu->addAction(paste); } menu->addSeparator(); menu->addAction(m_am->actionHorizontalFlip); #if 0 menu->addAction(m_am->actionFitInView); menu->addAction(m_am->actionFitByWidth); #endif // 0 menu->addSeparator(); menu->addAction(stayOnTopMode); menu->addAction(protectedMode); menu->addAction(avoidResetTransform); menu->addSeparator(); menu->addAction(toggleSettings); menu->addAction(helpAction); if (currentFileUrl.isValid()) { menu->addSeparator(); if (currentFileUrl.isLocalFile()) { menu->addAction(trash); menu->addAction(m_am->actionLocateInFileManager); } menu->addAction(propertiesAction); } menu->exec(mapToGlobal(event->pos())); menu->deleteLater(); copyMenu->deleteLater(); return FramelessWindow::contextMenuEvent(event); } void MainWindow::dragEnterEvent(QDragEnterEvent *event) { if (event->mimeData()->hasUrls() || event->mimeData()->hasImage() || event->mimeData()->hasText()) { event->acceptProposedAction(); } else { event->ignore(); } return FramelessWindow::dragEnterEvent(event); } void MainWindow::dragMoveEvent(QDragMoveEvent *event) { Q_UNUSED(event) } void MainWindow::dropEvent(QDropEvent *event) { event->acceptProposedAction(); const QMimeData * mimeData = event->mimeData(); if (mimeData->hasUrls()) { const QList &urls = mimeData->urls(); if (urls.isEmpty()) { m_graphicsView->showText(tr("File url list is empty")); } else { showUrls(urls); } } else if (mimeData->hasImage()) { QImage img = qvariant_cast(mimeData->imageData()); QPixmap pixmap = QPixmap::fromImage(img); if (pixmap.isNull()) { m_graphicsView->showText(tr("Image data is invalid")); } else { m_graphicsView->showImage(pixmap); } } else if (mimeData->hasText()) { m_graphicsView->showText(mimeData->text()); } else { m_graphicsView->showText(tr("Not supported mimedata: %1").arg(mimeData->formats().first())); } } void MainWindow::centerWindow() { this->setGeometry( QStyle::alignedRect( Qt::LeftToRight, Qt::AlignCenter, this->size(), qApp->screenAt(QCursor::pos())->availableGeometry() ) ); } void MainWindow::closeWindow() { QRect windowRect(this->geometry()); m_floatUpAnimation->setStartValue(windowRect); m_floatUpAnimation->setEndValue(windowRect.adjusted(0, -80, 0, 0)); m_floatUpAnimation->setStartValue(QRect(this->geometry().x(), this->geometry().y(), this->geometry().width(), this->geometry().height())); m_floatUpAnimation->setEndValue(QRect(this->geometry().x(), this->geometry().y()-80, this->geometry().width(), this->geometry().height())); m_exitAnimationGroup->start(); } void MainWindow::updateWidgetsPosition() { m_closeButton->move(width() - m_closeButton->width(), 0); m_prevButton->move(25, (height() - m_prevButton->sizeHint().height()) / 2); m_nextButton->move(width() - m_nextButton->sizeHint().width() - 25, (height() - m_prevButton->sizeHint().height()) / 2); m_bottomButtonGroup->move((width() - m_bottomButtonGroup->width()) / 2, height() - m_bottomButtonGroup->height()); m_gv->move(width() - m_gv->width(), height() - m_gv->height()); } void MainWindow::toggleProtectedMode() { m_protectedMode = !m_protectedMode; m_closeButton->setVisible(!m_protectedMode); m_prevButton->setVisible(!m_protectedMode); m_nextButton->setVisible(!m_protectedMode); } void MainWindow::toggleStayOnTop() { setWindowFlag(Qt::WindowStaysOnTopHint, !stayOnTop()); show(); } void MainWindow::toggleAvoidResetTransform() { m_graphicsView->setAvoidResetTransform(!m_graphicsView->avoidResetTransform()); } bool MainWindow::stayOnTop() const { return windowFlags().testFlag(Qt::WindowStaysOnTopHint); } bool MainWindow::canPaste() const { const QMimeData * clipboardData = QApplication::clipboard()->mimeData(); if (clipboardData->hasImage()) { return true; } else if (clipboardData->hasText()) { QString clipboardText(clipboardData->text()); if (clipboardText.startsWith("PICTURE:")) { QString maybeFilename(clipboardText.mid(8)); if (QFile::exists(maybeFilename)) { return true; } } } return false; } void MainWindow::quitAppAction(bool force) { if (!m_protectedMode || force) { closeWindow(); } } void MainWindow::toggleFullscreen() { if (isFullScreen()) { showNormal(); } else { showFullScreen(); } } void MainWindow::toggleMaximize() { if (isMaximized()) { showNormal(); } else { showMaximized(); } } QSize MainWindow::sizeHint() const { return QSize(710, 530); } void MainWindow::on_actionOpen_triggered() { QStringList picturesLocations = QStandardPaths::standardLocations(QStandardPaths::PicturesLocation); QUrl pictureUrl = picturesLocations.isEmpty() ? QUrl::fromLocalFile(picturesLocations.first()) : QUrl::fromLocalFile(QDir::homePath()); QList urls(QFileDialog::getOpenFileUrls(this, QString(), pictureUrl)); if (!urls.isEmpty()) { showUrls(urls); } } void MainWindow::on_actionActualSize_triggered() { m_graphicsView->resetScale(); m_graphicsView->setEnableAutoFitInView(false); } void MainWindow::on_actionToggleMaximize_triggered() { toggleMaximize(); } void MainWindow::on_actionZoomIn_triggered() { if (m_graphicsView->scaleFactor() < 1000) { m_graphicsView->zoomView(1.25); } } void MainWindow::on_actionZoomOut_triggered() { m_graphicsView->zoomView(0.8); } void MainWindow::on_actionHorizontalFlip_triggered() { m_graphicsView->flipView(); } void MainWindow::on_actionFitInView_triggered() { m_graphicsView->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio); m_graphicsView->setEnableAutoFitInView(m_graphicsView->scaleFactor() <= 1); } void MainWindow::on_actionFitByWidth_triggered() { m_graphicsView->fitByOrientation(); } void MainWindow::on_actionCopyPixmap_triggered() { QClipboard *cb = QApplication::clipboard(); cb->setPixmap(m_graphicsView->scene()->renderToPixmap()); } void MainWindow::on_actionCopyFilePath_triggered() { QUrl currentFileUrl(currentImageFileUrl()); if (currentFileUrl.isValid()) { QClipboard *cb = QApplication::clipboard(); cb->setText(currentFileUrl.toLocalFile()); } } void MainWindow::on_actionPaste_triggered() { QImage clipboardImage; QUrl clipboardFileUrl; const QMimeData * clipboardData = QApplication::clipboard()->mimeData(); if (clipboardData->hasImage()) { QVariant imageVariant(clipboardData->imageData()); if (imageVariant.isValid()) { clipboardImage = qvariant_cast(imageVariant); } } else if (clipboardData->hasText()) { QString clipboardText(clipboardData->text()); if (clipboardText.startsWith("PICTURE:")) { QString maybeFilename(clipboardText.mid(8)); if (QFile::exists(maybeFilename)) { clipboardFileUrl = QUrl::fromLocalFile(maybeFilename); } } } if (!clipboardImage.isNull()) { setWindowTitle(tr("Image From Clipboard")); m_graphicsView->showImage(clipboardImage); clearGallery(); } else if (clipboardFileUrl.isValid()) { m_graphicsView->showFileFromPath(clipboardFileUrl.toLocalFile()); m_pm->loadPlaylist(clipboardFileUrl); } } void MainWindow::on_actionTrash_triggered() { QModelIndex index = m_pm->curIndex(); if (!m_pm->urlByIndex(index).isLocalFile()) return; QFile file(m_pm->localFileByIndex(index)); QFileInfo fileInfo(file.fileName()); QMessageBox::StandardButton result = QMessageBox::question(this, tr("Move to Trash"), tr("Are you sure you want to move \"%1\" to recycle bin?").arg(fileInfo.fileName())); if (result == QMessageBox::Yes) { bool succ = file.moveToTrash(); if (!succ) { QMessageBox::warning(this, "Failed to move file to trash", tr("Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.")); } else { m_pm->removeAt(index); galleryCurrent(true, true); } } } void MainWindow::on_actionToggleCheckerboard_triggered() { // TODO: is that okay to do this since we plan to support custom shortcuts? m_graphicsView->toggleCheckerboard(QGuiApplication::queryKeyboardModifiers().testFlag(Qt::ShiftModifier)); } void MainWindow::on_actionRotateClockwise_triggered() { m_graphicsView->rotateView(); m_graphicsView->displayScene(); m_gv->setVisible(false); } void MainWindow::on_actionRotateCounterClockwise_triggered() { m_graphicsView->rotateView(false); m_graphicsView->displayScene(); m_gv->setVisible(false); } void MainWindow::on_actionPrevPicture_triggered() { galleryPrev(); } void MainWindow::on_actionNextPicture_triggered() { galleryNext(); } void MainWindow::on_actionTogglePauseAnimation_triggered() { m_graphicsView->scene()->togglePauseAnimation(); } void MainWindow::on_actionAnimationNextFrame_triggered() { m_graphicsView->scene()->skipAnimationFrame(1); } void MainWindow::on_actionToggleStayOnTop_triggered() { toggleStayOnTop(); } void MainWindow::on_actionToggleProtectMode_triggered() { toggleProtectedMode(); } void MainWindow::on_actionToggleAvoidResetTransform_triggered() { toggleAvoidResetTransform(); } void MainWindow::on_actionSettings_triggered() { SettingsDialog * sd = new SettingsDialog(this); sd->exec(); sd->deleteLater(); } void MainWindow::on_actionHelp_triggered() { AboutDialog * ad = new AboutDialog(this); ad->exec(); ad->deleteLater(); } void MainWindow::on_actionProperties_triggered() { QUrl currentFileUrl = currentImageFileUrl(); if (!currentFileUrl.isValid()) return; MetadataModel * md = new MetadataModel(); md->setFile(currentFileUrl.toLocalFile()); MetadataDialog * ad = new MetadataDialog(this); ad->setMetadataModel(md); ad->exec(); ad->deleteLater(); } void MainWindow::on_actionLocateInFileManager_triggered() { QUrl currentFileUrl = currentImageFileUrl(); if (!currentFileUrl.isValid()) return; QFileInfo fileInfo(currentFileUrl.toLocalFile()); if (!fileInfo.exists()) return; QUrl && folderUrl = QUrl::fromLocalFile(fileInfo.absolutePath()); #ifdef Q_OS_WIN QProcess::startDetached("explorer", QStringList() << "/select," << QDir::toNativeSeparators(fileInfo.absoluteFilePath())); #elif defined(Q_OS_LINUX) and defined(HAVE_QTDBUS) // Use https://www.freedesktop.org/wiki/Specifications/file-manager-interface/ if possible const QDBusConnectionInterface * dbusIface = QDBusConnection::sessionBus().interface(); if (!dbusIface || !dbusIface->isServiceRegistered(QLatin1String("org.freedesktop.FileManager1"))) { QDesktopServices::openUrl(folderUrl); return; } QDBusInterface fm1Iface(QStringLiteral("org.freedesktop.FileManager1"), QStringLiteral("/org/freedesktop/FileManager1"), QStringLiteral("org.freedesktop.FileManager1")); fm1Iface.setTimeout(1000); fm1Iface.callWithArgumentList(QDBus::Block, "ShowItems", { QStringList{currentFileUrl.toString()}, QString() }); if (fm1Iface.lastError().isValid()) { QDesktopServices::openUrl(folderUrl); } #else QDesktopServices::openUrl(folderUrl); #endif // Q_OS_WIN } void MainWindow::on_actionQuitApp_triggered() { quitAppAction(false); } pineapple-pictures-0.9.2/app/mainwindow.h000066400000000000000000000100061475760775000204570ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef MAINWINDOW_H #define MAINWINDOW_H #include "framelesswindow.h" #include #include #include #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) typedef QEnterEvent QT_ENTER_EVENT; #else typedef QEvent QT_ENTER_EVENT; #endif // QT_VERSION_CHECK(6, 0, 0) QT_BEGIN_NAMESPACE class QGraphicsOpacityEffect; class QGraphicsView; QT_END_NAMESPACE class ActionManager; class PlaylistManager; class ToolButton; class GraphicsView; class NavigatorView; class BottomButtonGroup; class MainWindow : public FramelessWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr); ~MainWindow() override; void showUrls(const QList &urls); void initWindowSize(); void adjustWindowSizeBySceneRect(); QUrl currentImageFileUrl() const; void clearGallery(); void galleryPrev(); void galleryNext(); void galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage); static QStringList supportedImageFormats(); protected slots: void showEvent(QShowEvent *event) override; void enterEvent(QT_ENTER_EVENT *event) override; void leaveEvent(QEvent *event) override; void mousePressEvent(QMouseEvent *event) override; void mouseMoveEvent(QMouseEvent *event) override; void mouseReleaseEvent(QMouseEvent *event) override; void mouseDoubleClickEvent(QMouseEvent *event) override; void wheelEvent(QWheelEvent *event) override; void resizeEvent(QResizeEvent *event) override; void contextMenuEvent(QContextMenuEvent *event) override; void dragEnterEvent(QDragEnterEvent *event) override; void dragMoveEvent(QDragMoveEvent *event) override; void dropEvent(QDropEvent *event) override; void centerWindow(); void closeWindow(); void updateWidgetsPosition(); void toggleProtectedMode(); void toggleStayOnTop(); void toggleAvoidResetTransform(); bool stayOnTop() const; bool canPaste() const; void quitAppAction(bool force = false); void toggleFullscreen(); void toggleMaximize(); protected: QSize sizeHint() const override; private slots: void on_actionOpen_triggered(); void on_actionActualSize_triggered(); void on_actionToggleMaximize_triggered(); void on_actionZoomIn_triggered(); void on_actionZoomOut_triggered(); void on_actionToggleCheckerboard_triggered(); void on_actionRotateClockwise_triggered(); void on_actionRotateCounterClockwise_triggered(); void on_actionPrevPicture_triggered(); void on_actionNextPicture_triggered(); void on_actionTogglePauseAnimation_triggered(); void on_actionAnimationNextFrame_triggered(); void on_actionHorizontalFlip_triggered(); void on_actionFitInView_triggered(); void on_actionFitByWidth_triggered(); void on_actionCopyPixmap_triggered(); void on_actionCopyFilePath_triggered(); void on_actionPaste_triggered(); void on_actionTrash_triggered(); void on_actionToggleStayOnTop_triggered(); void on_actionToggleProtectMode_triggered(); void on_actionToggleAvoidResetTransform_triggered(); void on_actionSettings_triggered(); void on_actionHelp_triggered(); void on_actionProperties_triggered(); void on_actionLocateInFileManager_triggered(); void on_actionQuitApp_triggered(); private: ActionManager *m_am; PlaylistManager *m_pm; QPoint m_oldMousePos; QPropertyAnimation *m_fadeOutAnimation; QPropertyAnimation *m_floatUpAnimation; QParallelAnimationGroup *m_exitAnimationGroup; ToolButton *m_closeButton; ToolButton *m_prevButton; ToolButton *m_nextButton; GraphicsView *m_graphicsView; NavigatorView *m_gv; BottomButtonGroup *m_bottomButtonGroup; bool m_protectedMode = false; bool m_clickedOnWindow = false; }; #endif // MAINWINDOW_H pineapple-pictures-0.9.2/app/metadatadialog.cpp000066400000000000000000000056321475760775000216070ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "metadatadialog.h" #include #include #include #include #include #include #include "metadatamodel.h" class PropertyTreeView : public QTreeView { public: explicit PropertyTreeView(QWidget* parent) : QTreeView(parent) {} ~PropertyTreeView() {} protected: void rowsInserted(const QModelIndex& parent, int start, int end) override { QTreeView::rowsInserted(parent, start, end); if (!parent.isValid()) { // we are inserting a section group for (int row = start; row <= end; ++row) { setupSection(row); } } else { // we are inserting a property setRowHidden(parent.row(), QModelIndex(), false); } } void reset() override { QTreeView::reset(); if (model()) { for (int row = 0; row < model()->rowCount(); ++row) { setupSection(row); } } } private: void setupSection(int row) { expand(model()->index(row, 0)); setFirstColumnSpanned(row, QModelIndex(), true); setRowHidden(row, QModelIndex(), !model()->hasChildren(model()->index(row, 0))); } }; class PropertyTreeItemDelegate : public QStyledItemDelegate { public: PropertyTreeItemDelegate(QObject* parent) : QStyledItemDelegate(parent) {} protected: void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override { QStyleOptionViewItem opt = option; if (!index.parent().isValid()) { opt.font.setBold(true); opt.features.setFlag(QStyleOptionViewItem::Alternate); } QStyledItemDelegate::paint(painter, opt, index); } }; MetadataDialog::MetadataDialog(QWidget *parent) : QDialog(parent) , m_treeView(new PropertyTreeView(this)) { m_treeView->setRootIsDecorated(false); m_treeView->setIndentation(0); m_treeView->setItemDelegate(new PropertyTreeItemDelegate(m_treeView)); m_treeView->header()->resizeSection(0, sizeHint().width() / 2); setWindowTitle(tr("Image Metadata")); QDialogButtonBox * buttonBox = new QDialogButtonBox(QDialogButtonBox::Close); setLayout(new QVBoxLayout); layout()->addWidget(m_treeView); layout()->addWidget(buttonBox); connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::close); setWindowFlag(Qt::WindowContextHelpButtonHint, false); } MetadataDialog::~MetadataDialog() { } void MetadataDialog::setMetadataModel(MetadataModel * model) { m_treeView->setModel(model); } QSize MetadataDialog::sizeHint() const { return QSize(520, 350); } pineapple-pictures-0.9.2/app/metadatadialog.h000066400000000000000000000011131475760775000212420ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef METADATADIALOG_H #define METADATADIALOG_H #include QT_BEGIN_NAMESPACE class QTreeView; QT_END_NAMESPACE class MetadataModel; class MetadataDialog : public QDialog { Q_OBJECT public: explicit MetadataDialog(QWidget * parent); ~MetadataDialog() override; void setMetadataModel(MetadataModel * model); QSize sizeHint() const override; private: QTreeView * m_treeView = nullptr; }; #endif // METADATADIALOG_H pineapple-pictures-0.9.2/app/metadatamodel.cpp000066400000000000000000000360311475760775000214450ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "metadatamodel.h" #include "exiv2wrapper.h" #include #include #include #include #include MetadataModel::MetadataModel(QObject *parent) : QAbstractItemModel(parent) { } MetadataModel::~MetadataModel() { } void MetadataModel::setFile(const QString &imageFilePath) { QFileInfo fileInfo(imageFilePath); // It'll be fine if we don't re-use the image reader we pass to the graphics scene for now. QImageReader imgReader(imageFilePath); imgReader.setAutoTransform(true); imgReader.setDecideFormatFromContent(true); const QString & itemTypeString = tr("%1 File").arg(QString(imgReader.format().toUpper())); const QString & sizeString = QLocale().formattedDataSize(fileInfo.size()); const QString & birthTimeString = QLocale().toString(fileInfo.birthTime(), QLocale::LongFormat); const QString & lastModifiedTimeString = QLocale().toString(fileInfo.lastModified(), QLocale::LongFormat); const QString & imageDimensionsString = imageSize(imgReader.size()); const QString & imageRatioString = imageSizeRatio(imgReader.size()); appendSection(QStringLiteral("Description"), tr("Description", "Section name.")); appendSection(QStringLiteral("Origin"), tr("Origin", "Section name.")); appendSection(QStringLiteral("Image"), tr("Image", "Section name.")); appendSection(QStringLiteral("Camera"), tr("Camera", "Section name.")); appendSection(QStringLiteral("AdvancedPhoto"), tr("Advanced photo", "Section name.")); appendSection(QStringLiteral("GPS"), tr("GPS", "Section name.")); appendSection(QStringLiteral("File"), tr("File", "Section name.")); if (imgReader.supportsOption(QImageIOHandler::Size)) { appendProperty(QStringLiteral("Image"), QStringLiteral("Image.Dimensions"), tr("Dimensions"), imageDimensionsString); appendProperty(QStringLiteral("Image"), QStringLiteral("Image.SizeRatio"), tr("Aspect ratio"), imageRatioString); } if (imgReader.supportsAnimation() && imgReader.imageCount() > 1) { appendProperty(QStringLiteral("Image"), QStringLiteral("Image.FrameCount"), tr("Frame count"), QString::number(imgReader.imageCount())); } appendProperty(QStringLiteral("File"), QStringLiteral("File.Name"), tr("Name"), fileInfo.fileName()); appendProperty(QStringLiteral("File"), QStringLiteral("File.ItemType"), tr("Item type"), itemTypeString); appendProperty(QStringLiteral("File"), QStringLiteral("File.Path"), tr("Folder path"), QDir::toNativeSeparators(fileInfo.path())); appendProperty(QStringLiteral("File"), QStringLiteral("File.Size"), tr("Size"), sizeString); appendProperty(QStringLiteral("File"), QStringLiteral("File.CreatedTime"), tr("Date created"), birthTimeString); appendProperty(QStringLiteral("File"), QStringLiteral("File.LastModified"), tr("Date modified"), lastModifiedTimeString); Exiv2Wrapper wrapper; if (wrapper.load(imageFilePath)) { wrapper.cacheSections(); appendExivPropertyIfExist(wrapper, QStringLiteral("Description"), QStringLiteral("Xmp.dc.title"), tr("Title"), true); appendExivPropertyIfExist(wrapper, QStringLiteral("Description"), QStringLiteral("Exif.Image.ImageDescription"), tr("Subject"), true); appendExivPropertyIfExist(wrapper, QStringLiteral("Description"), QStringLiteral("Exif.Image.Rating"), tr("Rating")); appendExivPropertyIfExist(wrapper, QStringLiteral("Description"), QStringLiteral("Xmp.dc.subject"), tr("Tags")); appendPropertyIfNotEmpty(QStringLiteral("Description"), QStringLiteral("Description.Comments"), tr("Comments"), wrapper.comment()); appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"), QStringLiteral("Exif.Image.Artist"), tr("Authors")); appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"), QStringLiteral("Exif.Photo.DateTimeOriginal"), tr("Date taken")); // FIXME: We may fetch the same type of metadata from different metadata collection. // Current implementation is not pretty and may need to do a rework... // appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"), // QStringLiteral("Xmp.xmp.CreatorTool"), tr("Program name")); appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"), QStringLiteral("Exif.Image.Software"), tr("Program name")); appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"), QStringLiteral("Exif.Image.Copyright"), tr("Copyright")); appendExivPropertyIfExist(wrapper, QStringLiteral("Image"), QStringLiteral("Exif.Image.XResolution"), tr("Horizontal resolution")); appendExivPropertyIfExist(wrapper, QStringLiteral("Image"), QStringLiteral("Exif.Image.YResolution"), tr("Vertical resolution")); appendExivPropertyIfExist(wrapper, QStringLiteral("Image"), QStringLiteral("Exif.Image.ResolutionUnit"), tr("Resolution unit")); appendExivPropertyIfExist(wrapper, QStringLiteral("Image"), QStringLiteral("Exif.Photo.ColorSpace"), tr("Colour representation")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Image.Make"), tr("Camera maker")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Image.Model"), tr("Camera model")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.FNumber"), tr("F-stop")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.ExposureTime"), tr("Exposure time")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.ISOSpeedRatings"), tr("ISO speed")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.ExposureBiasValue"), tr("Exposure bias")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.FocalLength"), tr("Focal length")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.MaxApertureValue"), tr("Max aperture")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.MeteringMode"), tr("Metering mode")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.SubjectDistance"), tr("Subject distance")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.Flash"), tr("Flash mode")); appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"), QStringLiteral("Exif.Photo.FocalLengthIn35mmFilm"), tr("35mm focal length")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.LensModel"), tr("Lens model")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.Contrast"), tr("Contrast")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.BrightnessValue"), tr("Brightness")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.ExposureProgram"), tr("Exposure program")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.Saturation"), tr("Saturation")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.Sharpness"), tr("Sharpness")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.WhiteBalance"), tr("White balance")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.DigitalZoomRatio"), tr("Digital zoom")); appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"), QStringLiteral("Exif.Photo.ExifVersion"), tr("EXIF version")); appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"), QStringLiteral("Exif.GPSInfo.GPSLatitudeRef"), tr("Latitude reference")); appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"), QStringLiteral("Exif.GPSInfo.GPSLatitude"), tr("Latitude")); appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"), QStringLiteral("Exif.GPSInfo.GPSLongitudeRef"), tr("Longitude reference")); appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"), QStringLiteral("Exif.GPSInfo.GPSLongitude"), tr("Longitude")); appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"), QStringLiteral("Exif.GPSInfo.GPSAltitudeRef"), tr("Altitude reference")); appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"), QStringLiteral("Exif.GPSInfo.GPSAltitude"), tr("Altitude")); } } QString MetadataModel::imageSize(const QSize &size) { QString imageSize; if (size.isValid()) { imageSize = tr("%1 x %2").arg(QString::number(size.width()), QString::number(size.height())); } else { imageSize = QLatin1Char('-'); } return imageSize; } int simplegcd(int a, int b) { return b == 0 ? a : simplegcd(b, a % b); } QString MetadataModel::imageSizeRatio(const QSize &size) { if (!size.isValid()) { return QStringLiteral("-"); } int gcd = simplegcd(size.width(), size.height()); return tr("%1 : %2").arg(QString::number(size.width() / gcd), QString::number(size.height() / gcd)); } bool MetadataModel::appendSection(const QString §ionKey, QStringView sectionDisplayName) { if (m_sections.contains(sectionKey)) { return false; } m_sections.append(sectionKey); m_sectionProperties[sectionKey] = qMakePair >(sectionDisplayName.toString(), {}); return true; } bool MetadataModel::appendPropertyIfNotEmpty(const QString §ionKey, const QString &propertyKey, const QString &propertyDisplayName, const QString &propertyValue) { if (propertyValue.isEmpty()) return false; return appendProperty(sectionKey, propertyKey, propertyDisplayName, propertyValue); } bool MetadataModel::appendProperty(const QString §ionKey, const QString &propertyKey, QStringView propertyDisplayName, QStringView propertyValue) { if (!m_sections.contains(sectionKey)) { return false; } QList & propertyList = m_sectionProperties[sectionKey].second; if (!propertyList.contains(propertyKey)) { propertyList.append(propertyKey); } m_properties[propertyKey] = qMakePair(propertyDisplayName.toString(), propertyValue.toString()); return true; } bool MetadataModel::appendExivPropertyIfExist(const Exiv2Wrapper &wrapper, const QString §ionKey, const QString &exiv2propertyKey, const QString &propertyDisplayName, bool isXmpString) { const QString & value = wrapper.value(exiv2propertyKey); if (!value.isEmpty()) { appendProperty(sectionKey, exiv2propertyKey, propertyDisplayName.isEmpty() ? wrapper.label(exiv2propertyKey) : propertyDisplayName, isXmpString ? Exiv2Wrapper::XmpValue(value) : value); return true; } return false; } QModelIndex MetadataModel::index(int row, int column, const QModelIndex &parent) const { if (!hasIndex(row, column, parent)) { return QModelIndex(); } if (!parent.isValid()) { return createIndex(row, column, RowType::SectionRow); } else { // internalid param: row means nth section it belongs to. return createIndex(row, column, RowType::PropertyRow + parent.row()); } } QModelIndex MetadataModel::parent(const QModelIndex &child) const { if (!child.isValid()) { return QModelIndex(); } if (child.internalId() == RowType::SectionRow) { return QModelIndex(); } else { return createIndex(child.internalId() - RowType::PropertyRow, 0, SectionRow); } } int MetadataModel::rowCount(const QModelIndex &parent) const { if (!parent.isValid()) { return m_sections.count(); } if (parent.internalId() == RowType::SectionRow) { const QString & sectionKey = m_sections[parent.row()]; return m_sectionProperties[sectionKey].second.count(); } return 0; } int MetadataModel::columnCount(const QModelIndex &) const { // Always key(display name) and value. return 2; } QVariant MetadataModel::data(const QModelIndex &index, int role) const { if (!index.isValid()) { return QVariant(); } if (role != Qt::DisplayRole) { return QVariant(); } if (index.internalId() == RowType::SectionRow) { return (index.column() == 0) ? m_sectionProperties[m_sections[index.row()]].first : QVariant(); } else { int sectionIndex = index.internalId() - RowType::PropertyRow; const QString & sectionKey = m_sections[sectionIndex]; const QList & propertyList = m_sectionProperties[sectionKey].second; return (index.column() == 0) ? m_properties[propertyList[index.row()]].first : m_properties[propertyList[index.row()]].second; } } QVariant MetadataModel::headerData(int section, Qt::Orientation orientation, int role) const { if (orientation == Qt::Vertical || role != Qt::DisplayRole) { return QVariant(); } return section == 0 ? tr("Property") : tr("Value"); } pineapple-pictures-0.9.2/app/metadatamodel.h000066400000000000000000000042771475760775000211210ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef METADATAMODEL_H #define METADATAMODEL_H #include class Exiv2Wrapper; class MetadataModel : public QAbstractItemModel { Q_OBJECT public: explicit MetadataModel(QObject *parent = nullptr); ~MetadataModel(); void setFile(const QString & imageFilePath); static QString imageSize(const QSize &size); static QString imageSizeRatio(const QSize &size); bool appendSection(const QString & sectionKey, QStringView sectionDisplayName); bool appendPropertyIfNotEmpty(const QString & sectionKey, const QString & propertyKey, const QString & propertyDisplayName, const QString & propertyValue = QString()); bool appendProperty(const QString & sectionKey, const QString & propertyKey, QStringView propertyDisplayName, QStringView propertyValue = QString()); bool appendExivPropertyIfExist(const Exiv2Wrapper & wrapper, const QString & sectionKey, const QString & exiv2propertyKey, const QString & propertyDisplayName = QString(), bool isXmpString = false); private: enum RowType : quintptr { SectionRow, PropertyRow, }; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; QModelIndex parent(const QModelIndex &child) const override; int rowCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex & = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; // [SECTION_KEY] QList m_sections; // {SECTION_KEY: (SECTION_DISPLAY_NAME, [PROPERTY_KEY])} QMap > > m_sectionProperties; // {PROPERTY_KEY: (PROPERTY_DISPLAY_NAME, PROPERTY_VALUE)} QMap > m_properties; }; #endif // METADATAMODEL_H pineapple-pictures-0.9.2/app/navigatorview.cpp000066400000000000000000000037631475760775000215370ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "navigatorview.h" #include "graphicsview.h" #include "opacityhelper.h" #include #include NavigatorView::NavigatorView(QWidget *parent) : QGraphicsView (parent) , m_viewportRegion(this->rect()) , m_opacityHelper(new OpacityHelper(this)) { setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setStyleSheet("background-color: rgba(0, 0, 0, 120);" "border-radius: 3px;"); } // doesn't take or manage its ownership void NavigatorView::setMainView(GraphicsView *mainView) { m_mainView = mainView; } void NavigatorView::setOpacity(qreal opacity, bool animated) { m_opacityHelper->setOpacity(opacity, animated); } void NavigatorView::updateMainViewportRegion() { if (m_mainView != nullptr) { m_viewportRegion = mapFromScene(m_mainView->mapToScene(m_mainView->rect())); update(); } } void NavigatorView::mousePressEvent(QMouseEvent *event) { m_mouseDown = true; if (m_mainView) { m_mainView->centerOn(mapToScene(event->pos())); update(); } event->accept(); } void NavigatorView::mouseMoveEvent(QMouseEvent *event) { if (m_mouseDown && m_mainView) { m_mainView->centerOn(mapToScene(event->pos())); update(); event->accept(); } else { event->ignore(); } } void NavigatorView::mouseReleaseEvent(QMouseEvent *event) { m_mouseDown = false; event->accept(); } void NavigatorView::wheelEvent(QWheelEvent *event) { event->ignore(); return QGraphicsView::wheelEvent(event); } void NavigatorView::paintEvent(QPaintEvent *event) { QGraphicsView::paintEvent(event); QPainter painter(viewport()); painter.setPen(QPen(Qt::gray, 2)); painter.drawRect(m_viewportRegion.boundingRect()); } pineapple-pictures-0.9.2/app/navigatorview.h000066400000000000000000000017311475760775000211750ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef NAVIGATORVIEW_H #define NAVIGATORVIEW_H #include class OpacityHelper; class GraphicsView; class NavigatorView : public QGraphicsView { Q_OBJECT public: NavigatorView(QWidget *parent = nullptr); void setMainView(GraphicsView *mainView); void setOpacity(qreal opacity, bool animated = true); public slots: void updateMainViewportRegion(); private: void mousePressEvent(QMouseEvent * event) override; void mouseMoveEvent(QMouseEvent * event) override; void mouseReleaseEvent(QMouseEvent * event) override; void wheelEvent(QWheelEvent *event) override; void paintEvent(QPaintEvent *event) override; bool m_mouseDown = false; QPolygon m_viewportRegion; QGraphicsView *m_mainView = nullptr; OpacityHelper *m_opacityHelper = nullptr; }; #endif // NAVIGATORVIEW_H pineapple-pictures-0.9.2/app/opacityhelper.cpp000066400000000000000000000015071475760775000215140ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "opacityhelper.h" #include #include OpacityHelper::OpacityHelper(QWidget *parent) : QObject(parent) , m_opacityFx(new QGraphicsOpacityEffect(parent)) , m_opacityAnimation(new QPropertyAnimation(m_opacityFx, "opacity")) { parent->setGraphicsEffect(m_opacityFx); m_opacityAnimation->setDuration(300); } void OpacityHelper::setOpacity(qreal opacity, bool animated) { if (!animated) { m_opacityFx->setOpacity(opacity); return; } m_opacityAnimation->stop(); m_opacityAnimation->setStartValue(m_opacityFx->opacity()); m_opacityAnimation->setEndValue(opacity); m_opacityAnimation->start(); } pineapple-pictures-0.9.2/app/opacityhelper.h000066400000000000000000000010551475760775000211570ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef OPACITYHELPER_H #define OPACITYHELPER_H #include QT_BEGIN_NAMESPACE class QGraphicsOpacityEffect; class QPropertyAnimation; QT_END_NAMESPACE class OpacityHelper : QObject { public: OpacityHelper(QWidget * parent); void setOpacity(qreal opacity, bool animated = true); protected: QGraphicsOpacityEffect * m_opacityFx; QPropertyAnimation * m_opacityAnimation; }; #endif // OPACITYHELPER_H pineapple-pictures-0.9.2/app/playlistmanager.cpp000066400000000000000000000140461475760775000220420ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2025 Gary Wang // // SPDX-License-Identifier: MIT #include "playlistmanager.h" #include #include #include #include PlaylistModel::PlaylistModel(QObject *parent) : QAbstractListModel(parent) { } PlaylistModel::~PlaylistModel() = default; void PlaylistModel::setPlaylist(const QList &urls) { beginResetModel(); m_playlist = urls; endResetModel(); } QModelIndex PlaylistModel::loadPlaylist(const QList & urls) { if (urls.isEmpty()) return {}; if (urls.count() == 1) { return loadPlaylist(urls.constFirst()); } else { setPlaylist(urls); return index(0); } } QModelIndex PlaylistModel::loadPlaylist(const QUrl &url) { QFileInfo info(url.toLocalFile()); QDir dir(info.path()); QString && currentFileName = info.fileName(); if (dir.path() == m_currentDir) { int idx = indexOf(url); return idx == -1 ? appendToPlaylist(url) : index(idx); } QStringList entryList = dir.entryList( m_autoLoadSuffixes, QDir::Files | QDir::NoSymLinks, QDir::NoSort); QCollator collator; collator.setNumericMode(true); std::sort(entryList.begin(), entryList.end(), collator); QList playlist; int idx = -1; for (int i = 0; i < entryList.count(); i++) { const QString & fileName = entryList.at(i); const QString & oneEntry = dir.absoluteFilePath(fileName); const QUrl & url = QUrl::fromLocalFile(oneEntry); playlist.append(url); if (fileName == currentFileName) { idx = i; } } if (idx == -1) { idx = playlist.count(); playlist.append(url); } m_currentDir = dir.path(); setPlaylist(playlist); return index(idx); } QModelIndex PlaylistModel::appendToPlaylist(const QUrl &url) { const int lastIndex = rowCount(); beginInsertRows(QModelIndex(), lastIndex, lastIndex); m_playlist.append(url); endInsertRows(); return index(lastIndex); } bool PlaylistModel::removeAt(int index) { if (index < 0 || index >= rowCount()) return false; beginRemoveRows(QModelIndex(), index, index); m_playlist.removeAt(index); endRemoveRows(); return true; } int PlaylistModel::indexOf(const QUrl &url) const { return m_playlist.indexOf(url); } QUrl PlaylistModel::urlByIndex(int index) const { return m_playlist.value(index); } QStringList PlaylistModel::autoLoadFilterSuffixes() const { return m_autoLoadSuffixes; } QHash PlaylistModel::roleNames() const { QHash result = QAbstractListModel::roleNames(); result.insert(UrlRole, "url"); return result; } int PlaylistModel::rowCount(const QModelIndex &parent) const { return m_playlist.count(); } QVariant PlaylistModel::data(const QModelIndex &index, int role) const { if (!index.isValid()) return {}; switch (role) { case Qt::DisplayRole: return m_playlist.at(index.row()).fileName(); case UrlRole: return m_playlist.at(index.row()); } return {}; } PlaylistManager::PlaylistManager(QObject *parent) : QObject(parent) { connect(&m_model, &PlaylistModel::rowsRemoved, this, [this](const QModelIndex &, int, int) { if (m_model.rowCount() <= m_currentIndex) { setProperty("currentIndex", m_currentIndex - 1); } }); auto onRowCountChanged = [this](){ emit totalCountChanged(m_model.rowCount()); }; connect(&m_model, &PlaylistModel::rowsInserted, this, onRowCountChanged); connect(&m_model, &PlaylistModel::rowsRemoved, this, onRowCountChanged); connect(&m_model, &PlaylistModel::modelReset, this, onRowCountChanged); } PlaylistManager::~PlaylistManager() { } PlaylistModel *PlaylistManager::model() { return &m_model; } void PlaylistManager::setPlaylist(const QList &urls) { m_model.setPlaylist(urls); } QModelIndex PlaylistManager::loadPlaylist(const QList &urls) { QModelIndex idx = m_model.loadPlaylist(urls); setProperty("currentIndex", idx.row()); return idx; } QModelIndex PlaylistManager::loadPlaylist(const QUrl &url) { QModelIndex idx = m_model.loadPlaylist(url); setProperty("currentIndex", idx.row()); return idx; } int PlaylistManager::totalCount() const { return m_model.rowCount(); } QModelIndex PlaylistManager::previousIndex() const { int count = totalCount(); if (count == 0) return {}; return m_model.index(m_currentIndex - 1 < 0 ? count - 1 : m_currentIndex - 1); } QModelIndex PlaylistManager::nextIndex() const { int count = totalCount(); if (count == 0) return {}; return m_model.index(m_currentIndex + 1 == count ? 0 : m_currentIndex + 1); } QModelIndex PlaylistManager::curIndex() const { return m_model.index(m_currentIndex); } void PlaylistManager::setCurrentIndex(const QModelIndex &index) { if (index.isValid() && index.row() >= 0 && index.row() < totalCount()) { setProperty("currentIndex", index.row()); } } QUrl PlaylistManager::urlByIndex(const QModelIndex &index) { return m_model.urlByIndex(index.row()); } QString PlaylistManager::localFileByIndex(const QModelIndex &index) { return urlByIndex(index).toLocalFile(); } bool PlaylistManager::removeAt(const QModelIndex &index) { return m_model.removeAt(index.row()); } void PlaylistManager::setAutoLoadFilterSuffixes(const QStringList &nameFilters) { m_model.setProperty("autoLoadFilterSuffixes", nameFilters); } QList PlaylistManager::convertToUrlList(const QStringList &files) { QList urlList; for (const QString & str : std::as_const(files)) { QUrl url = QUrl::fromLocalFile(str); if (url.isValid()) { urlList.append(url); } } return urlList; } pineapple-pictures-0.9.2/app/playlistmanager.h000066400000000000000000000051021475760775000215000ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2025 Gary Wang // // SPDX-License-Identifier: MIT #pragma once #include #include class PlaylistModel : public QAbstractListModel { Q_OBJECT public: enum PlaylistRole { UrlRole = Qt::UserRole }; Q_ENUM(PlaylistRole) Q_PROPERTY(QStringList autoLoadFilterSuffixes MEMBER m_autoLoadSuffixes NOTIFY autoLoadFilterSuffixesChanged) explicit PlaylistModel(QObject *parent = nullptr); ~PlaylistModel() override; void setPlaylist(const QList & urls); QModelIndex loadPlaylist(const QList & urls); QModelIndex loadPlaylist(const QUrl & url); QModelIndex appendToPlaylist(const QUrl & url); bool removeAt(int index); int indexOf(const QUrl & url) const; QUrl urlByIndex(int index) const; QStringList autoLoadFilterSuffixes() const; QHash roleNames() const override; int rowCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; signals: void autoLoadFilterSuffixesChanged(QStringList suffixes); private: // model data QList m_playlist; // properties QStringList m_autoLoadSuffixes = {}; // internal QString m_currentDir; }; class PlaylistManager : public QObject { Q_OBJECT public: Q_PROPERTY(int currentIndex MEMBER m_currentIndex NOTIFY currentIndexChanged) Q_PROPERTY(QStringList autoLoadFilterSuffixes WRITE setAutoLoadFilterSuffixes) Q_PROPERTY(PlaylistModel * model READ model CONSTANT) explicit PlaylistManager(QObject *parent = nullptr); ~PlaylistManager(); PlaylistModel * model(); void setPlaylist(const QList & url); Q_INVOKABLE QModelIndex loadPlaylist(const QList & urls); Q_INVOKABLE QModelIndex loadPlaylist(const QUrl & url); int totalCount() const; QModelIndex previousIndex() const; QModelIndex nextIndex() const; QModelIndex curIndex() const; void setCurrentIndex(const QModelIndex & index); QUrl urlByIndex(const QModelIndex & index); QString localFileByIndex(const QModelIndex & index); bool removeAt(const QModelIndex & index); void setAutoLoadFilterSuffixes(const QStringList &nameFilters); static QList convertToUrlList(const QStringList & files); signals: void currentIndexChanged(int index); void totalCountChanged(int count); private: int m_currentIndex = -1; PlaylistModel m_model; }; pineapple-pictures-0.9.2/app/settings.cpp000066400000000000000000000146141475760775000205070ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "settings.h" #include #include #include #include #include #include #include #include namespace QEnumHelper { template E fromString(const QString &text, const E defaultValue) { bool ok; E result = static_cast(QMetaEnum::fromType().keyToValue(text.toUtf8(), &ok)); if (!ok) { return defaultValue; } return result; } template QString toString(E value) { const int intValue = static_cast(value); return QString::fromUtf8(QMetaEnum::fromType().valueToKey(intValue)); } } Settings *Settings::m_settings_instance = nullptr; Settings *Settings::instance() { if (!m_settings_instance) { m_settings_instance = new Settings; } return m_settings_instance; } bool Settings::stayOnTop() { return m_qsettings->value("stay_on_top", true).toBool(); } bool Settings::useLightCheckerboard() { return m_qsettings->value("use_light_checkerboard", false).toBool(); } Settings::DoubleClickBehavior Settings::doubleClickBehavior() const { QString result = m_qsettings->value("double_click_behavior", "Close").toString(); return QEnumHelper::fromString(result, DoubleClickBehavior::Close); } Settings::MouseWheelBehavior Settings::mouseWheelBehavior() const { QString result = m_qsettings->value("mouse_wheel_behavior", "Zoom").toString(); return QEnumHelper::fromString(result, MouseWheelBehavior::Zoom); } Settings::WindowSizeBehavior Settings::initWindowSizeBehavior() const { QString result = m_qsettings->value("init_window_size_behavior", "Auto").toString(); return QEnumHelper::fromString(result, WindowSizeBehavior::Auto); } Qt::HighDpiScaleFactorRoundingPolicy Settings::hiDpiScaleFactorBehavior() const { QString result = m_qsettings->value("hidpi_scale_factor_behavior", "PassThrough").toString(); return QEnumHelper::fromString(result, Qt::HighDpiScaleFactorRoundingPolicy::PassThrough); } void Settings::setStayOnTop(bool on) { m_qsettings->setValue("stay_on_top", on); m_qsettings->sync(); } void Settings::setUseLightCheckerboard(bool light) { m_qsettings->setValue("use_light_checkerboard", light); m_qsettings->sync(); } void Settings::setDoubleClickBehavior(DoubleClickBehavior dcb) { m_qsettings->setValue("double_click_behavior", QEnumHelper::toString(dcb)); m_qsettings->sync(); } void Settings::setMouseWheelBehavior(MouseWheelBehavior mwb) { m_qsettings->setValue("mouse_wheel_behavior", QEnumHelper::toString(mwb)); m_qsettings->sync(); } void Settings::setInitWindowSizeBehavior(WindowSizeBehavior wsb) { m_qsettings->setValue("init_window_size_behavior", QEnumHelper::toString(wsb)); m_qsettings->sync(); } void Settings::setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi) { m_qsettings->setValue("hidpi_scale_factor_behavior", QEnumHelper::toString(hidpi)); m_qsettings->sync(); } void Settings::applyUserShortcuts(QWidget *widget) { m_qsettings->beginGroup("shortcuts"); const QStringList shortcutNames = m_qsettings->allKeys(); for (const QString & name : shortcutNames) { QList shortcuts = m_qsettings->value(name).value>(); setShortcutsForAction(widget, name, shortcuts, false); } m_qsettings->endGroup(); } bool Settings::setShortcutsForAction(QWidget *widget, const QString &objectName, QList shortcuts, bool writeConfig) { QAction * targetAction = nullptr; for (QAction * action : widget->actions()) { if (action->objectName() == objectName) { targetAction = action; } else { for (const QKeySequence & shortcut : std::as_const(shortcuts)) { if (action->shortcuts().contains(shortcut)) { return false; } } } } if (targetAction) { targetAction->setShortcuts(shortcuts); } if (targetAction && writeConfig) { m_qsettings->beginGroup("shortcuts"); m_qsettings->setValue(objectName, QVariant::fromValue(shortcuts)); m_qsettings->endGroup(); m_qsettings->sync(); } return true; } #if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN) #include // QCoreApplication::applicationDirPath() parses the "applicationDirPath" from arg0, which... // 1. rely on a QApplication object instance // but we need to call QGuiApplication::setHighDpiScaleFactorRoundingPolicy() before QApplication get created // 2. arg0 is NOT garanteed to be the path of execution // see also: https://stackoverflow.com/questions/383973/is-args0-guaranteed-to-be-the-path-of-execution // This function is here mainly for #1. QString getApplicationDirPath() { WCHAR buffer[MAX_PATH]; GetModuleFileNameW(NULL, buffer, MAX_PATH); QString appPath = QString::fromWCharArray(buffer); return appPath.left(appPath.lastIndexOf('\\')); } #endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN) Settings::Settings() : QObject(qApp) { QString configPath; #if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN) QString portableConfigDirPath = QDir(getApplicationDirPath()).absoluteFilePath("data"); QFileInfo portableConfigDirInfo(portableConfigDirPath); if (portableConfigDirInfo.exists() && portableConfigDirInfo.isDir() && portableConfigDirInfo.isWritable()) { // we can use it. configPath = portableConfigDirPath; } #endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN) if (configPath.isEmpty()) { // Should be %LOCALAPPDATA%\ under Windows, ~/.config/ under Linux. configPath = QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation); } m_qsettings = new QSettings(QDir(configPath).absoluteFilePath("config.ini"), QSettings::IniFormat, this); qRegisterMetaType>(); } pineapple-pictures-0.9.2/app/settings.h000066400000000000000000000031171475760775000201500ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #pragma once #include #include class Settings : public QObject { Q_OBJECT public: enum DoubleClickBehavior { Ignore, Close, Maximize, FullScreen, }; Q_ENUM(DoubleClickBehavior) enum MouseWheelBehavior { Zoom, Switch, }; Q_ENUM(MouseWheelBehavior) enum WindowSizeBehavior { Auto, Maximized, }; Q_ENUM(WindowSizeBehavior) static Settings *instance(); bool stayOnTop(); bool useLightCheckerboard(); DoubleClickBehavior doubleClickBehavior() const; MouseWheelBehavior mouseWheelBehavior() const; WindowSizeBehavior initWindowSizeBehavior() const; Qt::HighDpiScaleFactorRoundingPolicy hiDpiScaleFactorBehavior() const; void setStayOnTop(bool on); void setUseLightCheckerboard(bool light); void setDoubleClickBehavior(DoubleClickBehavior dcb); void setMouseWheelBehavior(MouseWheelBehavior mwb); void setInitWindowSizeBehavior(WindowSizeBehavior wsb); void setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi); void applyUserShortcuts(QWidget * widget); bool setShortcutsForAction(QWidget * widget, const QString & objectName, QList shortcuts, bool writeConfig = true); private: Settings(); static Settings *m_settings_instance; QSettings *m_qsettings; signals: public slots: }; pineapple-pictures-0.9.2/app/settingsdialog.cpp000066400000000000000000000206041475760775000216630ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "settingsdialog.h" #include "settings.h" #include "shortcutedit.h" #include #include #include #include #include #include #include #include #include SettingsDialog::SettingsDialog(QWidget *parent) : QDialog(parent) , m_stayOnTop(new QCheckBox) , m_useLightCheckerboard(new QCheckBox) , m_doubleClickBehavior(new QComboBox) , m_mouseWheelBehavior(new QComboBox) , m_initWindowSizeBehavior(new QComboBox) , m_hiDpiRoundingPolicyBehavior(new QComboBox) { this->setWindowTitle(tr("Settings")); QHBoxLayout * mainLayout = new QHBoxLayout(this); QTabWidget * settingsTabs = new QTabWidget(this); mainLayout->addWidget(settingsTabs); QWidget * settingsFormHolder = new QWidget; QFormLayout * settingsForm = new QFormLayout(settingsFormHolder); settingsTabs->addTab(settingsFormHolder, tr("Options")); QSplitter * shortcutEditorSplitter = new QSplitter; shortcutEditorSplitter->setOrientation(Qt::Vertical); shortcutEditorSplitter->setChildrenCollapsible(false); QScrollArea * shortcutScrollArea = new QScrollArea; shortcutEditorSplitter->addWidget(shortcutScrollArea); shortcutScrollArea->setWidgetResizable(true); shortcutScrollArea->setMinimumHeight(200); QWidget * shortcutsFormHolder = new QWidget; QFormLayout * shortcutsForm = new QFormLayout(shortcutsFormHolder); shortcutScrollArea->setWidget(shortcutsFormHolder); settingsTabs->addTab(shortcutEditorSplitter, tr("Shortcuts")); for (const QAction * action : parent->actions()) { ShortcutEdit * shortcutEdit = new ShortcutEdit; shortcutEdit->setObjectName(QLatin1String("shortcut_") + action->objectName()); shortcutEdit->setShortcuts(action->shortcuts()); shortcutsForm->addRow(action->text(), shortcutEdit); connect(shortcutEdit, &ShortcutEdit::editButtonClicked, this, [=](){ if (shortcutEditorSplitter->count() == 1) shortcutEditorSplitter->addWidget(new QWidget); ShortcutEditor * shortcutEditor = new ShortcutEditor(shortcutEdit); shortcutEditor->setDescription(tr("Editing shortcuts for action \"%1\":").arg(action->text())); QWidget * oldEditor = shortcutEditorSplitter->replaceWidget(1, shortcutEditor); shortcutEditorSplitter->setSizes({shortcutEditorSplitter->height(), 1}); oldEditor->deleteLater(); }); connect(shortcutEdit, &ShortcutEdit::applyShortcutsRequested, this, [=](QList newShortcuts){ bool succ = Settings::instance()->setShortcutsForAction(parent, shortcutEdit->objectName().mid(9), newShortcuts); if (!succ) { QMessageBox::warning(this, tr("Failed to set shortcuts"), tr("Please check if shortcuts are duplicated with existing shortcuts.")); } shortcutEdit->setShortcuts(action->shortcuts()); }); } static QList< QPair > _dc_options { { Settings::DoubleClickBehavior::Ignore, tr("Do nothing") }, { Settings::DoubleClickBehavior::Close, tr("Close the window") }, { Settings::DoubleClickBehavior::Maximize, tr("Toggle maximize") }, { Settings::DoubleClickBehavior::FullScreen, tr("Toggle fullscreen") } }; static QList< QPair > _mw_options { { Settings::MouseWheelBehavior::Zoom, tr("Zoom in and out") }, { Settings::MouseWheelBehavior::Switch, tr("View next or previous item") } }; static QList< QPair > _iws_options { { Settings::WindowSizeBehavior::Auto, tr("Auto size") }, { Settings::WindowSizeBehavior::Maximized, tr("Maximized") } }; static QList< QPair > _hidpi_options { { Qt::HighDpiScaleFactorRoundingPolicy::Round, tr("Round (Integer scaling)", "This option means round up for .5 and above") }, { Qt::HighDpiScaleFactorRoundingPolicy::Ceil, tr("Ceil (Integer scaling)", "This option means always round up") }, { Qt::HighDpiScaleFactorRoundingPolicy::Floor, tr("Floor (Integer scaling)", "This option means always round down") }, { Qt::HighDpiScaleFactorRoundingPolicy::PassThrough, tr("Follow system (Fractional scaling)", "This option means don't round") } }; QStringList dcbDropDown; for (const QPair & dcOption : _dc_options) { dcbDropDown.append(dcOption.second); } QStringList mwbDropDown; for (const QPair & mwOption : _mw_options) { mwbDropDown.append(mwOption.second); } QStringList iwsbDropDown; for (const QPair & iwsOption : _iws_options) { iwsbDropDown.append(iwsOption.second); } QStringList hidpiDropDown; for (const QPair & hidpiOption : _hidpi_options) { hidpiDropDown.append(hidpiOption.second); } settingsForm->addRow(tr("Stay on top when start-up"), m_stayOnTop); settingsForm->addRow(tr("Use light-color checkerboard"), m_useLightCheckerboard); settingsForm->addRow(tr("Double-click behavior"), m_doubleClickBehavior); settingsForm->addRow(tr("Mouse wheel behavior"), m_mouseWheelBehavior); settingsForm->addRow(tr("Default window size"), m_initWindowSizeBehavior); settingsForm->addRow(tr("HiDPI scale factor rounding policy"), m_hiDpiRoundingPolicyBehavior); m_stayOnTop->setChecked(Settings::instance()->stayOnTop()); m_useLightCheckerboard->setChecked(Settings::instance()->useLightCheckerboard()); m_doubleClickBehavior->setModel(new QStringListModel(dcbDropDown)); Settings::DoubleClickBehavior dcb = Settings::instance()->doubleClickBehavior(); m_doubleClickBehavior->setCurrentIndex(static_cast(dcb)); m_mouseWheelBehavior->setModel(new QStringListModel(mwbDropDown)); Settings::MouseWheelBehavior mwb = Settings::instance()->mouseWheelBehavior(); m_mouseWheelBehavior->setCurrentIndex(static_cast(mwb)); m_initWindowSizeBehavior->setModel(new QStringListModel(iwsbDropDown)); Settings::WindowSizeBehavior iwsb = Settings::instance()->initWindowSizeBehavior(); m_initWindowSizeBehavior->setCurrentIndex(static_cast(iwsb)); m_hiDpiRoundingPolicyBehavior->setModel(new QStringListModel(hidpiDropDown)); Qt::HighDpiScaleFactorRoundingPolicy hidpi = Settings::instance()->hiDpiScaleFactorBehavior(); for (int i = 0; i < _hidpi_options.count(); i++) { if (_hidpi_options.at(i).first == hidpi) { m_hiDpiRoundingPolicyBehavior->setCurrentIndex(i); break; } } connect(m_stayOnTop, &QCheckBox::stateChanged, this, [ = ](int state){ Settings::instance()->setStayOnTop(state == Qt::Checked); }); connect(m_useLightCheckerboard, &QCheckBox::stateChanged, this, [ = ](int state){ Settings::instance()->setUseLightCheckerboard(state == Qt::Checked); }); connect(m_doubleClickBehavior, QOverload::of(&QComboBox::currentIndexChanged), this, [ = ](int index){ Settings::instance()->setDoubleClickBehavior(_dc_options.at(index).first); }); connect(m_mouseWheelBehavior, QOverload::of(&QComboBox::currentIndexChanged), this, [ = ](int index){ Settings::instance()->setMouseWheelBehavior(_mw_options.at(index).first); }); connect(m_initWindowSizeBehavior, QOverload::of(&QComboBox::currentIndexChanged), this, [ = ](int index){ Settings::instance()->setInitWindowSizeBehavior(_iws_options.at(index).first); }); connect(m_hiDpiRoundingPolicyBehavior, QOverload::of(&QComboBox::currentIndexChanged), this, [ = ](int index){ Settings::instance()->setHiDpiScaleFactorBehavior(_hidpi_options.at(index).first); }); adjustSize(); setWindowFlag(Qt::WindowContextHelpButtonHint, false); } SettingsDialog::~SettingsDialog() { } pineapple-pictures-0.9.2/app/settingsdialog.h000066400000000000000000000013711475760775000213300ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef SETTINGSDIALOG_H #define SETTINGSDIALOG_H #include #include class QCheckBox; class QComboBox; class SettingsDialog : public QDialog { Q_OBJECT public: explicit SettingsDialog(QWidget *parent = nullptr); ~SettingsDialog(); signals: public slots: private: QCheckBox * m_stayOnTop = nullptr; QCheckBox * m_useLightCheckerboard = nullptr; QComboBox * m_doubleClickBehavior = nullptr; QComboBox * m_mouseWheelBehavior = nullptr; QComboBox * m_initWindowSizeBehavior = nullptr; QComboBox * m_hiDpiRoundingPolicyBehavior = nullptr; }; #endif // SETTINGSDIALOG_H pineapple-pictures-0.9.2/app/shortcutedit.cpp000066400000000000000000000076411475760775000213720ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2024 Gary Wang // // SPDX-License-Identifier: MIT #include "shortcutedit.h" #include #include #include #include #include #include ShortcutEditor::ShortcutEditor(ShortcutEdit * shortcutEdit, QWidget * parent) : QWidget(parent) , m_descriptionLabel(new QLabel) , m_shortcutEdit(shortcutEdit) , m_shortcutLayout(new QFormLayout) { Q_CHECK_PTR(m_shortcutEdit); QDialogButtonBox * buttons = new QDialogButtonBox(QDialogButtonBox::Apply | QDialogButtonBox::Discard); QVBoxLayout * layout = new QVBoxLayout(this); layout->addWidget(m_descriptionLabel); layout->addLayout(m_shortcutLayout); layout->addWidget(buttons); connect(buttons, &QDialogButtonBox::clicked, this, [=](QAbstractButton *button){ if ((QPushButton *)button == buttons->button(QDialogButtonBox::Apply)) { applyShortcuts(); } else { reloadShortcuts(); } }); connect(shortcutEdit, &ShortcutEdit::shortcutsChanged, this, &ShortcutEditor::reloadShortcuts); setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum); reloadShortcuts(); } ShortcutEditor::~ShortcutEditor() { } void ShortcutEditor::setDescription(const QString &desc) { m_descriptionLabel->setText(desc); } void ShortcutEditor::reloadShortcuts() { if (!m_keySequenceEdits.isEmpty()) { for (QKeySequenceEdit * keyseqEdit : m_keySequenceEdits) { m_shortcutLayout->removeRow(keyseqEdit); } m_keySequenceEdits.clear(); } QList shortcuts = m_shortcutEdit->shortcuts(); shortcuts.append(QKeySequence()); for (const QKeySequence & shortcut : shortcuts) { QKeySequenceEdit * keyseqEdit = new QKeySequenceEdit(this); #if QT_VERSION >= QT_VERSION_CHECK(6, 4, 0) keyseqEdit->setClearButtonEnabled(true); #endif // QT_VERSION >= QT_VERSION_CHECK(6, 4, 0) #if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) keyseqEdit->setMaximumSequenceLength(1); #endif // QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) keyseqEdit->setKeySequence(shortcut); m_keySequenceEdits.append(keyseqEdit); } for (int i = 0; i < m_keySequenceEdits.count(); i++) { m_shortcutLayout->addRow(tr("Shortcut #%1").arg(i + 1), m_keySequenceEdits.at(i)); } } void ShortcutEditor::applyShortcuts() { QList shortcuts; for (const QKeySequenceEdit * keyseqEdit : m_keySequenceEdits) { if (!keyseqEdit->keySequence().isEmpty() && !shortcuts.contains(keyseqEdit->keySequence())) { shortcuts.append(keyseqEdit->keySequence()); } } emit m_shortcutEdit->applyShortcutsRequested(shortcuts); } // ---------------------------------------- ShortcutEdit::ShortcutEdit(QWidget *parent) : QWidget(parent) , m_shortcutsLabel(new QLabel(this)) , m_setShortcutButton(new QToolButton(this)) { m_setShortcutButton->setText("..."); QHBoxLayout * layout = new QHBoxLayout(this); layout->setContentsMargins(0, 0, 0, 0); layout->addWidget(m_shortcutsLabel, 1); layout->addWidget(m_setShortcutButton); connect(this, &ShortcutEdit::shortcutsChanged, this, [=](){ QStringList shortcutTexts; for (const QKeySequence & shortcut : m_shortcuts) { shortcutTexts.append(shortcut.toString()); } m_shortcutsLabel->setText(shortcutTexts.isEmpty() ? tr("No shortcuts") : shortcutTexts.join(", ")); m_shortcutsLabel->setDisabled(shortcutTexts.isEmpty()); }); connect(m_setShortcutButton, &QToolButton::clicked, this, &ShortcutEdit::editButtonClicked); adjustSize(); } ShortcutEdit::~ShortcutEdit() { } QList ShortcutEdit::shortcuts() const { return m_shortcuts; } void ShortcutEdit::setShortcuts(const QList &shortcuts) { m_shortcuts = shortcuts; emit shortcutsChanged(); } pineapple-pictures-0.9.2/app/shortcutedit.h000066400000000000000000000024501475760775000210300ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2024 Gary Wang // // SPDX-License-Identifier: MIT #pragma once #include #include #include class QLabel; class QFormLayout; class QToolButton; class QKeySequenceEdit; class ShortcutEdit; class ShortcutEditor : public QWidget { Q_OBJECT public: explicit ShortcutEditor(ShortcutEdit * shortcutEdit, QWidget * parent = nullptr); ~ShortcutEditor(); void setDescription(const QString & desc); void reloadShortcuts(); void applyShortcuts(); private: QLabel * m_descriptionLabel; ShortcutEdit * m_shortcutEdit; QFormLayout * m_shortcutLayout; QList m_keySequenceEdits; }; class ShortcutEdit : public QWidget { Q_OBJECT Q_PROPERTY(QList shortcuts MEMBER m_shortcuts WRITE setShortcuts NOTIFY shortcutsChanged) public: explicit ShortcutEdit(QWidget * parent = nullptr); ~ShortcutEdit(); QList shortcuts() const; void setShortcuts(const QList &shortcuts); signals: void shortcutsChanged(); void editButtonClicked(); void applyShortcutsRequested(QList newShortcuts); private: QList m_shortcuts; QLabel * m_shortcutsLabel; QToolButton * m_setShortcutButton; }; pineapple-pictures-0.9.2/app/toolbutton.cpp000066400000000000000000000016751475760775000210630ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #include "toolbutton.h" #include "actionmanager.h" #include "opacityhelper.h" #include #include #include ToolButton::ToolButton(bool hoverColor, QWidget *parent) : QPushButton(parent) , m_opacityHelper(new OpacityHelper(this)) { setFlat(true); QString qss = "QPushButton {" "background: transparent;" "}"; if (hoverColor) { qss += "QPushButton:hover {" "background: red;" "}"; } setStyleSheet(qss); } void ToolButton::setIconResourcePath(const QString &iconp) { this->setIcon(ActionManager::loadHidpiIcon(iconp, this->iconSize())); } void ToolButton::setOpacity(qreal opacity, bool animated) { m_opacityHelper->setOpacity(opacity, animated); } pineapple-pictures-0.9.2/app/toolbutton.h000066400000000000000000000010411475760775000205130ustar00rootroot00000000000000// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef TOOLBUTTON_H #define TOOLBUTTON_H #include class OpacityHelper; class ToolButton : public QPushButton { Q_OBJECT public: ToolButton(bool hoverColor = false, QWidget * parent = nullptr); void setIconResourcePath(const QString &iconp); public slots: void setOpacity(qreal opacity, bool animated = true); private: OpacityHelper * m_opacityHelper; }; #endif // TOOLBUTTON_H pineapple-pictures-0.9.2/app/translations/000077500000000000000000000000001475760775000206565ustar00rootroot00000000000000pineapple-pictures-0.9.2/app/translations/PineapplePictures.ts000066400000000000000000001000721475760775000246620ustar00rootroot00000000000000 AboutDialog About Launch application with image file path as argument to load the file. Drag and drop image file onto the window is also supported. None of the operations in this application will alter the pictures on disk. Context menu option explanation: Make window stay on top of all other windows. Avoid close window accidentally. (eg. by double clicking the window) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Version: %1 Logo designed by %1 Built with Qt %1 (%2) Source code Contributors List of contributors on GitHub Thanks to all people who contributed to this project. Translators I would like to thank the following people who volunteered to translate this application. %1 is built on the following free software libraries: Free as in freedom &Special Thanks &Third-party Libraries Your Rights Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) %1 is released under the MIT License. This license grants people a number of freedoms: You are free to use %1, for any purpose You are free to distribute %1 You can study how %1 works and change it You can distribute changed versions of %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Third-party Libraries used by %1 &Help &About &License GraphicsScene Drag image here GraphicsView File is not a valid image Image data is invalid or currently unsupported MainWindow File url list is empty &Copy Image data is invalid Not supported mimedata: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap Copy &File Path Properties Stay on top Protected mode Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in Zoom out Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Fit to view Fit to width &Paste Toggle Checkerboard &Open... Actual size Toggle maximize Rotate right Rotate left Previous image Next image Move to Trash Configure... Help Show in File Explorer File Explorer is the name of explorer.exe under Windows Show in directory Quit MetadataDialog Image Metadata MetadataModel Origin Section name. Image Section name. File Section name. Camera Section name. %1 File Description Section name. Advanced photo Section name. GPS Section name. Dimensions Aspect ratio Frame count Name Item type Folder path Size Date created Date modified Title Subject Rating Tags Comments Authors Date taken Program name Copyright Horizontal resolution Vertical resolution Resolution unit Colour representation Camera maker Camera model F-stop Exposure time ISO speed Exposure bias Focal length Max aperture Metering mode Subject distance Flash mode 35mm focal length Lens model Contrast Brightness Exposure program Saturation Sharpness White balance Digital zoom EXIF version Latitude reference Latitude Longitude reference Longitude Altitude reference Altitude %1 x %2 %1 : %2 Property Value SettingsDialog Settings Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Close the window Toggle maximize Toggle fullscreen Zoom in and out View next or previous item Auto size Maximized Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Use light-color checkerboard Double-click behavior Mouse wheel behavior Default window size HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures List supported image format suffixes, and quit program. File list. pineapple-pictures-0.9.2/app/translations/PineapplePictures_ca.ts000066400000000000000000001024111475760775000253240ustar00rootroot00000000000000 AboutDialog About Quant a Launch application with image file path as argument to load the file. Inicia l'aplicació amb el camí del fitxer de la imatge com a argument per carregar la imatge. Drag and drop image file onto the window is also supported. També podeu arrossegar i deixar anar un fitxer d'imatge a la finestra. None of the operations in this application will alter the pictures on disk. Cap de les operacions en aquesta aplicació alterarà els fitxers d'imatge. Context menu option explanation: Explicació de les opcions del menú contextual: Make window stay on top of all other windows. Manté la finestra a sobre de totes les altres finestres. Avoid close window accidentally. (eg. by double clicking the window) Evita que es tanqui la finestra accidentalment (com ara en fer doble clic a la finestra) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Version: %1 Versió: %1 Logo designed by %1 Logotip dissenyat por %1 Built with Qt %1 (%2) Creat amb Qt %1 (%2) Source code Codi font Contributors Col·laboradors List of contributors on GitHub Llista de col·laboradors al GitHub Thanks to all people who contributed to this project. Gràcies a totes les persones que han col·laborat en aquest projecte. Translators Traductors I would like to thank the following people who volunteered to translate this application. M'agradaria donar les gràcies a les persones següents per oferir-se a traduir aquesta aplicació. %1 is built on the following free software libraries: Free as in freedom %1 està construït sobre les biblioteques de programari lliure següents: &Special Thanks &Especial agraïment &Third-party Libraries &Biblioteques de tercers Your Rights Els vostres drets Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 es publica sota la llicència MIT. This license grants people a number of freedoms: Aquesta llicència atorga a les persones diverses llibertats: You are free to use %1, for any purpose Sou lliure de fer servir %1 per a qualsevol propòsit You are free to distribute %1 Sou lliure de distribuir %1 You can study how %1 works and change it Podeu estudiar com funciona %1 i modificar-lo You can distribute changed versions of %1 Podeu distribuir les versions modificades de %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. La llicència del MIT us garanteix aquesta llibertat. No és permès que ningú us la tregui. Third-party Libraries used by %1 Biblioteques de tercers que fa servir %1 &Help Aj&uda &About &Quant a &License &Llicència GraphicsScene Drag image here Arrossegueu una imatge aquí GraphicsView File url list is empty La llista d'ubicacions de fitxer és buida File is not a valid image El fitxer no és una imatge vàlida Image data is invalid or currently unsupported Les dades de la imatge no són vàlides o no són compatibles Image data is invalid Les dades de la imatge no són vàlides Not supported mimedata: %1 El tipus MIME no és compatible: %1 MainWindow File url list is empty La llista d'ubicacions és buida &Copy &Copia Image data is invalid Les dades de la imatge no són vàlides Not supported mimedata: %1 El tipus MIME no és compatible: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap Copia el &mapa de píxels Copy &File Path Copia el camí del &fitxer Properties Propietats Stay on top Mantén a sobre Protected mode Mode protegit Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in Amplia Zoom out Redueix Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Inverteix &horitzontalment Fit to view Fit to width &Paste &Enganxa Toggle Checkerboard Commuta el tauler d'escacs &Open... &Obre... Actual size Mida real Toggle maximize Commuta la maximització Rotate right Commuta la maximització Rotate left Previous image Imatge anterior Next image Imatge següent Move to Trash Configure... Configura... Help Ajuda Show in File Explorer File Explorer is the name of explorer.exe under Windows Mostra al navegador de fitxers Show in directory Mostra a la carpeta Quit Surt MetadataDialog Image Metadata Metadades de la imatge MetadataModel Origin Section name. Origen Image Section name. Imatge File Section name. Fitxer Camera Section name. Càmera %1 File Fitxer %1 Description Section name. Descripció Advanced photo Section name. Foto avançada GPS Section name. GPS Dimensions Dimensions Aspect ratio Relació d'aspecte Frame count Núm. d'imatges Name Nom Item type Tipus d'element Folder path Camí de la carpeta Size Mida Date created Data de creació Date modified Data de modificació Title Títol Subject Tema Rating Valoració Tags Etiquetes Comments Comentaris Authors Autors Date taken Data de la foto Program name Nom del programa Copyright Copyright Horizontal resolution Resolució horitzontal Vertical resolution Resolució vertical Resolution unit Unitat de resolució Colour representation Representació del color Camera maker Fabricant de la càmera Camera model Model de la càmera F-stop Relació focal Exposure time Temps d'exposició ISO speed Sensibilitat ISO Exposure bias Compensació d'exposició Focal length Distància focal Max aperture Obertura màxima Metering mode Mode de mesura Subject distance Flash mode Mode del flaix 35mm focal length Distància focal de 35 mm Lens model Model de lent Contrast Brightness Brillantor Exposure program Programa d'exposició Saturation Saturació Sharpness Nitidesa White balance Balanç de blancs Digital zoom Zoom digital EXIF version Versió de l'EXIF Latitude reference Referència de la latitud Latitude Latitud Longitude reference Referència de la longitud Longitude Longitud Altitude reference Referència de l'altitud Altitude Altitud %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Propietat Value Valor SettingsDialog Settings Paràmetres Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing No facis res Close the window Tanca la finestra Toggle maximize Commuta la maximització Toggle fullscreen Zoom in and out Amplia i redueix View next or previous item Mostra l'element següent o l'anterior Auto size Mida automàtica Maximized Maximitza Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Mantingues a sobre a l'inici Use light-color checkerboard Double-click behavior Comportament del doble clic Mouse wheel behavior Comportament de la roda del ratolí Default window size Mida de la finestra per defecte HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Llista de fitxers. pineapple-pictures-0.9.2/app/translations/PineapplePictures_de.ts000066400000000000000000001021451475760775000253350ustar00rootroot00000000000000 AboutDialog About Über Launch application with image file path as argument to load the file. Starten Sie die Anwendung mit dem Bilddateipfad als Argument zum Laden der Datei. Drag and drop image file onto the window is also supported. Das Ziehen und Ablegen von Bilddateien in das Fenster wird ebenfalls unterstützt. None of the operations in this application will alter the pictures on disk. Keine der Änderungen in dieser Anwendung modifizieren die abgespeicherten Bilder. Context menu option explanation: Erklärung der Kontextmenüoptionen: Make window stay on top of all other windows. Sicher stellen, dass das Fenster über allen anderen Fenstern bleibt. Avoid close window accidentally. (eg. by double clicking the window) Es vermeiden, das Fenster versehentlich zu schließen. (z.B. durch Doppelklick auf das Fenster) Version: %1 Version: %1 Copyright (c) 2020 %1 Copyright © 2020 %1 Logo designed by %1 Logo entworfen von %1 Built with Qt %1 (%2) Gemacht mit Qt %1 (%2) Source code Quellcode Contributors Mitwirkenden List of contributors on GitHub Liste der Mitwirkenden auf GitHub Thanks to all people who contributed to this project. Vielen Dank an alle, die zu diesem Projekt beigetragen haben. Translators Übersetzer I would like to thank the following people who volunteered to translate this application. Ich möchte den folgenden Personen danken, die sich freiwillig zur Übersetzung dieser Anwendung gemeldet haben. %1 is built on the following free software libraries: Free as in freedom %1 basiert auf den folgenden freien Softwarebibliotheken: &Special Thanks &Besonderer Dank &Third-party Libraries &Bibliotheken von Drittanbietern Your Rights Ihre Rechte Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 wird unter der MIT-Lizenz veröffentlicht. This license grants people a number of freedoms: Diese Lizenz gewährt Menschen eine Reihe von Freiheiten: You are free to use %1, for any purpose Sie dürfen %1 für jeden Zweck verwenden You are free to distribute %1 Sie dürfen %1 verteilen You can study how %1 works and change it Sie können untersuchen, wie %1 funktioniert, und es ändern You can distribute changed versions of %1 Sie können geänderte Versionen von %1 verteilen The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Die MIT-Lizenz garantiert Ihnen diese Freiheit. Niemand darf es jemals wegnehmen. Third-party Libraries used by %1 Von %1 verwendete Bibliotheken von Drittanbietern &Help &Hilfe &About &Über &License &Lizenz GraphicsScene Drag image here Ziehen Sie das Bild hierher GraphicsView File url list is empty Die Datei-URL-Liste ist leer File is not a valid image Datei ist kein gültiges Bild Image data is invalid or currently unsupported Bilddaten sind ungültig oder werden derzeit nicht unterstützt Image data is invalid Bilddaten sind ungültig Not supported mimedata: %1 Nicht unterstützte Mimedaten: %1 MainWindow File url list is empty Die Datei-URL-Liste ist leer &Copy &Kopieren Image data is invalid Bilddaten sind ungültig Not supported mimedata: %1 Nicht unterstützte Mimedaten: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap P&ixmap kopieren Copy &File Path &Dateipfad kopieren Properties Eigenschaften Stay on top Oben bleiben Protected mode Geschützter Modus Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in Hineinzoomen Zoom out Herauszoomen Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally &Horizontal spiegeln Fit to view Fit to width &Paste %Einfügen Toggle Checkerboard Schachbrettmuster umschalten &Open... &Öffnen... Actual size Tatsächliche Größe Toggle maximize Maximieren umschalten Rotate right Nach rechts drehen Rotate left Previous image Vorheriges Bild Next image Nächstes Bild Move to Trash Configure... Konfigurieren … Help Hilfe Show in File Explorer File Explorer is the name of explorer.exe under Windows Im Dateiexplorer zeigen Show in directory Im Verzeichnis zeigen Quit Beenden MetadataDialog Image Metadata Bildmetadaten MetadataModel Origin Section name. Ursprung Image Section name. Bild File Section name. Datei Camera Section name. Fotoapparat %1 File %1-Datei Description Section name. Beschreibung Advanced photo Section name. Erweitertes Foto GPS Section name. GPS Dimensions Maße Aspect ratio Seitenverhältnis Frame count Framezahl Name Name Item type Objekttyp Folder path Ordnerpfad Size Größe Date created Datum erstellt Date modified Datum geändert Title Titel Subject Betreff Rating Bewertung Tags Tags Comments Kommentare Authors Autoren Date taken Datum genommen Program name Programmname Copyright Copyright Horizontal resolution Horizontale Auflösung Vertical resolution Vertikale Auflösung Resolution unit Auflösungseinheit Colour representation Farbdarstellung Camera maker Kamerahersteller Camera model Kameramodell F-stop Blendenzahl Exposure time Belichtungszeit ISO speed ISO-Geschwindigkeit Exposure bias Belichtungskorrektur Focal length Brennweite Max aperture Maximale Blende Metering mode Messmodus Subject distance Flash mode Flash-Modus 35mm focal length 35 mm Brennweite Lens model Objektivmodell Contrast Brightness Helligkeit Exposure program Belichtungsprogramm Saturation Sättigung Sharpness Schärfe White balance Weißabgleich Digital zoom Digitaler Zoom EXIF version EXIF-Version Latitude reference Breitengradbezug Latitude Breitengrad Longitude reference Längengradbezug Longitude Längengrad Altitude reference Höhenbezug Altitude Höhe %1 x %2 %1 × %2 %1 : %2 %1 : %2 Property Eigenschaft Value Wert SettingsDialog Settings Einstellungen Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Nichts tun Close the window Fenster schließen Toggle maximize Maximieren umschalten Toggle fullscreen Zoom in and out Hinein- und Hinauszoomen View next or previous item Zeige nächstes oder vorheriges Element Auto size Automatische Größe Maximized Maximiert Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Beim Start oben bleiben Use light-color checkerboard Double-click behavior Doppelklickverhalten Mouse wheel behavior Mausradverhalten Default window size Standard-Fenstergröße HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Dateiliste. pineapple-pictures-0.9.2/app/translations/PineapplePictures_es.ts000066400000000000000000001036571475760775000253650ustar00rootroot00000000000000 AboutDialog About Acerca de Launch application with image file path as argument to load the file. Inicia la aplicación con la ruta del archivo de la imagen como argumento para cargar la imagen. Drag and drop image file onto the window is also supported. También es posible arrastrar y soltar un archivo de imagen en la ventana. None of the operations in this application will alter the pictures on disk. Ninguna de las operaciones en esta aplicación alterará los archivos de imagen. Context menu option explanation: Explicación de las opciones del menú contextual: Make window stay on top of all other windows. Mantiene la ventana encima de todas las demás ventanas. Avoid close window accidentally. (eg. by double clicking the window) Evita que se cierre la ventana accidentalmente (por ejemplo, al hacer doble clic en la ventana) Version: %1 Versión: %1 Copyright (c) 2020 %1 Derechos reservados (c) 2020 %1 Logo designed by %1 Logo diseñado por %1 Built with Qt %1 (%2) Creado con Qt %1 (%2) Source code Código fuente Contributors Colaboradores List of contributors on GitHub Lista de colaboradores en GitHub Thanks to all people who contributed to this project. Gracias a todas las personas que han colaborado en este proyecto. Translators Traductores I would like to thank the following people who volunteered to translate this application. Me gustaría dar las gracias a las personas siguientes por ofrecerse a traducir esta aplicación. %1 is built on the following free software libraries: Free as in freedom %1 está construido sobre las bibliotecas de software libre siguientes: &Special Thanks Agradecimiento &especial &Third-party Libraries &Bibliotecas de terceros Your Rights Sus derechos Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Evita restablecer el estado de zoom/rotación/inversión que se aplicó a la vista de la imagen al cambiar entre las imágenes. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 se publica bajo la licencia MIT. This license grants people a number of freedoms: Esta licencia otorga a las personas una serie de libertades: You are free to use %1, for any purpose Es libre de usar %1 para cualquier propósito You are free to distribute %1 Es libre de distribuir %1 You can study how %1 works and change it Puede estudiar cómo funciona %1 y modificarlo You can distribute changed versions of %1 Puede distribuir versiones modificadas de %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. La licencia MIT le garantiza esta libertad. Nadie está autorizado a quitársela. Third-party Libraries used by %1 Bibliotecas de terceros usadas por %1 &Help Ay&uda &About &Acerca de &License &Licencia GraphicsScene Drag image here Arrastre una imagen aquí GraphicsView File url list is empty La lista de ubicaciones está vacía File is not a valid image El archivo no es una imagen válida Image data is invalid or currently unsupported Los datos de la imagen no son válidos o no son compatibles Image data is invalid Los datos de la imagen no son válidos Not supported mimedata: %1 El tipo MIME no es compatible: %1 MainWindow File url list is empty La lista de ubicaciones está vacía &Copy &Copiar Image data is invalid Los datos de la imagen no son válidos Not supported mimedata: %1 El tipo MIME no es compatible: %1 Image From Clipboard Imagen del portapapeles Are you sure you want to move "%1" to recycle bin? ¿Estás seguro de que quieres mover "%1" a la papelera de reciclaje? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Mover a la papelera ha fallado, puede deberse a un problema con los permisos de los archivos, una limitación del sistema de archivos o una limitación de la plataforma. Copy P&ixmap Copiar &mapa de píxeles Copy &File Path Copiar &ruta de archivo Properties Propiedades Stay on top Mantener encima Protected mode Modo protegido Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Conservar la transformación Zoom in Ampliar Zoom out Reducir Pause/Resume Animation Pausar/Reanudar animación Animation Go to Next Frame Ir al siguiente fotograma Flip &Horizontally Voltear &horizontalmente Fit to view Para visualizar Fit to width Ajustar al ancho &Paste &Pegar Toggle Checkerboard Activar/desactivar el tablero de ajedrez &Open... &Abrir... Actual size Tamaño real Toggle maximize Maximizar/desmaximizar Rotate right Girar a la derecha Rotate left Girar a la izquierda Previous image Imagen anterior Next image Imagen siguiente Move to Trash Mover a la papelera Configure... Configurar... Help Ayuda Show in File Explorer File Explorer is the name of explorer.exe under Windows Mostrar en el Explorador de archivos Show in directory Mostrar en la carpeta Quit Salir MetadataDialog Image Metadata Metadatos de la imagen MetadataModel Origin Section name. Origen Image Section name. Imagen File Section name. Archivo Camera Section name. Cámara %1 File Archivo %1 Description Section name. Descripción Advanced photo Section name. Foto avanzada GPS Section name. GPS Dimensions Dimensiones Aspect ratio Relación de aspecto Frame count Núm. de imágenes Name Nombre Item type Tipo de elemento Folder path Ruta de la carpeta Size Tamaño Date created Fecha de creación Date modified Fecha de modificación Title Título Subject Tema Rating Valoración Tags Etiquetas Comments Comentarios Authors Autores Date taken Fecha en que se tomó Program name Nombre del programa Copyright Copyright Horizontal resolution Resolución horizontal Vertical resolution Resolución vertical Resolution unit Unidad de resolución Colour representation Representación del color Camera maker Fabricante de la cámara Camera model Modelo de la cámara F-stop Relación focal Exposure time Tiempo de exposición ISO speed Sensibilidad ISO Exposure bias Compensación de exposición Focal length Distancia focal Max aperture Apertura máxima Metering mode Modo de medición Subject distance Distancia del sujeto Flash mode Modo del flash 35mm focal length Distancia focal de 35 mm Lens model Modelo de la lente Contrast Contraste Brightness Brillo Exposure program Programa de exposición Saturation Saturación Sharpness Nitidez White balance Balance de blancos Digital zoom Zum digital EXIF version Versión de EXIF Latitude reference Referencia de la latitud Latitude Latitud Longitude reference Referencia de la longitud Longitude Longitud Altitude reference Referencia de la altitud Altitude Altitud %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Propiedad Value Valor SettingsDialog Settings Preferencias Options Opciones Shortcuts Atajos Editing shortcuts for action "%1": Editando atajos para la acción "%1": Failed to set shortcuts No se pudieron establecer accesos directos Please check if shortcuts are duplicated with existing shortcuts. Por favor, verifique si los accesos directos están duplicados. Do nothing No hacer nada Close the window Cerrar la ventana Toggle maximize Maximizar/desmaximizar Toggle fullscreen Zoom in and out Ampliar y reducir View next or previous item Mostrar el elemento siguiente/anterior Auto size Tamaño automático Maximized Maximizar Round (Integer scaling) This option means round up for .5 and above Redondeo (escala de enteros) Ceil (Integer scaling) This option means always round up Ceil (redondear enteros hacia arriba) Floor (Integer scaling) This option means always round down Floor (redondear enteros hacia abajo) Follow system (Fractional scaling) This option means don't round Redondeo (redondear los enteros) Stay on top when start-up Mantener encima al inicio Use light-color checkerboard Utilice un tablero de ajedrez de color claro Double-click behavior Comportamiento del doble clic Mouse wheel behavior Comportamiento de la rueda del ratón Default window size Tamaño de la ventana por defecto HiDPI scale factor rounding policy Política de redondeo del factor de escala HiDPI ShortcutEdit No shortcuts Sin atajos ShortcutEditor Shortcut #%1 Atajos #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. Enumere las extensiones de formato de imagen admitidas y sal del programa. File list. Lista de archivos. pineapple-pictures-0.9.2/app/translations/PineapplePictures_fr.ts000066400000000000000000001031461475760775000253560ustar00rootroot00000000000000 AboutDialog About À propos Launch application with image file path as argument to load the file. Lancer l'application avec le chemin du fichier image comme argument pour charger le fichier. Drag and drop image file onto the window is also supported. Le glisser-déposer du fichier image sur la fenêtre est également pris en charge. None of the operations in this application will alter the pictures on disk. Aucun opération dans cette application ne modifiera les fichiers image. Context menu option explanation: Explication des options du menu contextuel : Make window stay on top of all other windows. Faire en sorte que la fenêtre reste au-dessus de toutes les autres fenêtres. Avoid close window accidentally. (eg. by double clicking the window) Éviter de fermer la fenêtre accidentellement. (par exemple en cliquant deux fois sur la fenêtre) Version: %1 Version : %1 Copyright (c) 2020 %1 Copyright © 2020 %1 Logo designed by %1 Logo conçu par %1 Built with Qt %1 (%2) Fait avec Qt %1 (%2) Source code Code source Contributors Contributeurs List of contributors on GitHub Liste des contributeurs sur GitHub Thanks to all people who contributed to this project. Merci à toutes les personnes qui ont contribué à ce projet. Translators Traducteurs I would like to thank the following people who volunteered to translate this application. Je tiens à remercier les personnes suivantes qui se sont portées volontaires pour traduire cette application. %1 is built on the following free software libraries: Free as in freedom %1 est basé sur les bibliothèques de logiciels libres suivantes : &Special Thanks &Remerciement spécial &Third-party Libraries &Bibliothèques tierces Your Rights Vos droits Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 est publié sous licence MIT. This license grants people a number of freedoms: Cette licence accorde aux personnes un certain nombre de libertés : You are free to use %1, for any purpose Vous êtes libre d'utiliser %1, dans n'importe quel but You are free to distribute %1 Vous êtes libre de distribuer %1 You can study how %1 works and change it Vous pouvez étudier le fonctionnement de %1 et le modifier You can distribute changed versions of %1 Vous pouvez distribuer des versions modifiées de %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. La licence MIT vous garantit cette liberté. Personne n'est autorisé à l'enlever. Third-party Libraries used by %1 Bibliothèques tierces utilisées par %1 &Help &Aide &About &À propos &License &Licence GraphicsScene Drag image here Faites glisser l'image ici GraphicsView File url list is empty La liste des URL du fichier est vide File is not a valid image Le fichier n'est pas une image valide Image data is invalid or currently unsupported Les données d'image ne sont pas valides ou ne sont actuellement pas prises en charge Image data is invalid Les données d'image ne sont pas valides Not supported mimedata: %1 Mimedata non pris en charge : %1 MainWindow File url list is empty La liste des URL de fichiers est vide &Copy &Copier Image data is invalid Les données d'image ne sont pas valides Not supported mimedata: %1 Mimedata non pris en charge : %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap Copier P&ixmap Copy &File Path Copier le &chemin du fichier Properties Propriétés Stay on top Rester en-haut Protected mode Mode protégé Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in Zoom avant Zoom out Zoom arrière Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Retourner &horizontalement Fit to view Fit to width &Paste Co&ller Toggle Checkerboard Dés/activer le damier &Open... &Ouvrir... Actual size Taille actuelle Toggle maximize Dés/activer l'agrandissement Rotate right Pivoter vers la droite Rotate left Previous image Image précédente Next image Image suivant Move to Trash Configure... Configurer… Help Aide Show in File Explorer File Explorer is the name of explorer.exe under Windows Afficher dans le navigateur de fichiers Show in directory Afficher dans le dossier Quit Quitter MetadataDialog Image Metadata Métadonnées d'image MetadataModel Origin Section name. Origine Image Section name. Image File Section name. Fichier Camera Section name. Appareil photo %1 File Fichier %1 Description Section name. Description Advanced photo Section name. Photo avancée GPS Section name. GPS Dimensions Dimensions Aspect ratio Rapport d'aspect Frame count Nombre d'images Name Nom Item type Type d'élément Folder path Chemin du dossier Size Taille Date created Date créée Date modified Date modifiée Title Titre Subject Sujet Rating Évaluation Tags Étiquettes Comments Commentaires Authors Auteurs Date taken Date prise Program name Nom du programme Copyright Copyright Horizontal resolution Résolution horizontale Vertical resolution Résolution verticale Resolution unit Unité de résolution Colour representation Représentation des couleurs Camera maker Fabricant de l'appareil photo Camera model Modèle d'appareil photo F-stop Nombre d'ouverture Exposure time Temps d'exposition ISO speed Vitesse ISO Exposure bias Biais d'exposition Focal length Distance focale Max aperture Ouverture maximale Metering mode Mode de mesure Subject distance Flash mode Mode flash 35mm focal length Distance focale de 35 mm Lens model Modèle d'objectif Contrast Brightness Luminosité Exposure program Programme d'exposition Saturation Saturation Sharpness Netteté White balance Balance des blancs Digital zoom Zoom numérique EXIF version Version EXIF Latitude reference Référence de latitude Latitude Latitude Longitude reference Référence de longitude Longitude Longitude Altitude reference Référence d'altitude Altitude Altitude %1 x %2 %1 × %2 %1 : %2 %1 : %2 Property Propriété Value Valeur SettingsDialog Settings Paramètres Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Ne rien faire Close the window Fermer la fenêtre Toggle maximize Activer/désactiver l'agrandissement Toggle fullscreen Zoom in and out Zoom avant et arrière View next or previous item Voir l'élément suivant ou précédent Auto size Taille automatique Maximized Agrandi Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Rester en-haut lors du démarrage Use light-color checkerboard Double-click behavior Comportement du double-clic Mouse wheel behavior Comportement de la molette de la souris Default window size Taille de la fenêtre par défaut HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Liste des fichiers. pineapple-pictures-0.9.2/app/translations/PineapplePictures_id.ts000066400000000000000000001022561475760775000253440ustar00rootroot00000000000000 AboutDialog About Tentang Launch application with image file path as argument to load the file. Luncurkan aplikasi dengan lokasi file gambar sebagai argumen untuk memuat file. Drag and drop image file onto the window is also supported. Tarik dan lepaskan gambar ke jendela juga didukung. None of the operations in this application will alter the pictures on disk. Semua operasi pada aplikasi ini tidak akan mengubah gambar pada diska. Context menu option explanation: Penjelasan opsi menu Context: Make window stay on top of all other windows. Buat jendela tetap di atas semua jendela lainnya. Avoid close window accidentally. (eg. by double clicking the window) Hindari penutupan jendela secara tidak sengaja (contoh dengan mengklik jendela dua kali) Version: %1 Versi: %1 Copyright (c) 2020 %1 Hak Cipta (c) 2020 %1 Logo designed by %1 Logo didesain oleh %1 Built with Qt %1 (%2) Dibuat dengan Qt %1 (%2) Source code Kode sumber Contributors Kontributor-kontributor List of contributors on GitHub Daftar kontributor di GitHub Thanks to all people who contributed to this project. Terima kasih kepada semua orang yang telah berkontribusi ke proyek ini. Translators Penerjemah I would like to thank the following people who volunteered to translate this application. Saya ingin berterima kasih orang-orang berikut yang secara sukarela menerjemahkan aplikasi ini. %1 is built on the following free software libraries: Free as in freedom %1 dibangun dengan perpustakaan perangkat lunak bebas berikut: &Special Thanks &Terima kasih &Third-party Libraries & Perpustakaan pihak ketiga Your Rights Hak Anda Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Hindari mengatur ulang keadaan zoom/rotasi/flip yang diterapkan pada tampilan gambar saat beralih antara gambar. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Hak Cipta (c) %1 %2 %1 is released under the MIT License. %1 diluncurkan di bawah lisensi MIT. This license grants people a number of freedoms: Lisensi ini memberikan orang-orang beberapa kebebasan: You are free to use %1, for any purpose Anda bebas menggunakan %1, untuk tujuan apapun You are free to distribute %1 Anda bebas mendistribusikan %1 You can study how %1 works and change it Anda dapat mempelajari bagaimana cara %1 bekerja dan mengubahnya You can distribute changed versions of %1 Anda dapat mendistribusikan versi %1 yang telah diubah The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Lisensi MIT menjamin kebebasan ini. Tidak ada yang pernah diizinkan untuk mengambilnya. Third-party Libraries used by %1 Perpustakaan pihak ketiga yang digunakan oleh %1 &Help &Dukungan &About Tentan&g &License &Lisensi GraphicsScene Drag image here Tarik gambar ke sini GraphicsView File url list is empty Daftar url file kosong File is not a valid image File bukan gambar yang valid Image data is invalid or currently unsupported Data gambar tidak valid atau belum didukung Image data is invalid Data gambar tidak valid Not supported mimedata: %1 Tidak didukung mimedata: %1 MainWindow File url list is empty Daftar url file kosong &Copy &Salin Image data is invalid Data gambar tidak valid Not supported mimedata: %1 Tidak didukung mimedata: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap Salin P&ixmap Copy &File Path Salin &Path Berkas Properties Properti Stay on top Tetap di atas Protected mode Mode Terlindungi Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Simpan transformasi Zoom in Perbesar Zoom out Perkecil Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Putar Secara &Horizontal Fit to view Fit to width &Paste &Tempel Toggle Checkerboard &Open... Actual size Ukuran asli Toggle maximize Rotate right Putar ke kanan Rotate left Previous image Next image Move to Trash Configure... Konfigurasi... Help Dukungan Show in File Explorer File Explorer is the name of explorer.exe under Windows Show in directory Quit Keluar MetadataDialog Image Metadata Metadata Gambar MetadataModel Origin Section name. Image Section name. Gambar File Section name. Berkas Camera Section name. Kamera %1 File %1 Berkas Description Section name. Keterangan Advanced photo Section name. GPS Section name. GPS Dimensions Dimensi Aspect ratio Frame count Name Nama Item type Jenis item Folder path Path folder Size Ukuran Date created Tanggal dibuat Date modified Tanggal dimodifikasi Title Judul Subject Subyek Rating Tags Tag Comments Komentar Authors Penulis Date taken Tanggal diambil Program name Nama program Copyright Hak cipta Horizontal resolution Resolusi horizontal Vertical resolution Resolusi vertikal Resolution unit Colour representation Representasi warna Camera maker Pembuat kamera Camera model Model kamera F-stop Exposure time ISO speed Exposure bias Focal length Max aperture Metering mode Subject distance Flash mode 35mm focal length Lens model Model lensa Contrast Brightness Kecerahan Exposure program Saturation Sharpness Ketajaman White balance Digital zoom EXIF version Versi EXIF Latitude reference Latitude Longitude reference Longitude Altitude reference Altitude %1 x %2 %1 : %2 Property Properti Value Nilai SettingsDialog Settings Pengaturan Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Jangan lakukan apapun Close the window Tutup jendela Toggle maximize Toggle fullscreen Zoom in and out Perbesar dan perkecil View next or previous item Lihat item berikutnya atau sebelumnya Auto size Maximized Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Use light-color checkerboard Double-click behavior Mouse wheel behavior Default window size HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Daftar berkas. pineapple-pictures-0.9.2/app/translations/PineapplePictures_it.ts000066400000000000000000001035671475760775000253720ustar00rootroot00000000000000 AboutDialog About Informazioni Launch application with image file path as argument to load the file. Avvia l'applicazione con il percorso del file immagine come argomento per caricare il file. Drag and drop image file onto the window is also supported. È supportato anche il trascinamento del file immagine sulla finestra. None of the operations in this application will alter the pictures on disk. Nessuna delle operazioni in questa applicazione altererà le immagini sul disco. Context menu option explanation: Spiegazione delle opzioni del menu contestuale: Make window stay on top of all other windows. Fai in modo che la finestra rimanga in cima a tutte le altre finestre. Avoid close window accidentally. (eg. by double clicking the window) Evitare di chiudere accidentalmente la finestra. (es. facendo doppio clic sulla finestra) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Evitare di reimpostare lo stato di zoom/rotazione/capovolgimento applicato alla visualizzazione dell'immagine quando si passa da un'immagine all'altra. Version: %1 Versione: %1 Logo designed by %1 Logo disegnato da %1 Built with Qt %1 (%2) Costruito con Qt %1 (%2) Source code Codice sorgente Contributors Contributori List of contributors on GitHub Elenco dei contributori su GitHub Thanks to all people who contributed to this project. Grazie a tutte le persone che hanno contribuito a questo progetto. Translators Traduttori I would like to thank the following people who volunteered to translate this application. Vorrei ringraziare le seguenti persone che si sono offerte volontarie per tradurre questa applicazione. %1 is built on the following free software libraries: Free as in freedom %1 si basa sulle seguenti librerie di software libero: &Special Thanks &Ringraziamenti speciali &Third-party Libraries &Librerie di terze parti Your Rights I tuoi diritti Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 è rilasciato sotto licenza MIT. This license grants people a number of freedoms: Questa licenza garantisce alle persone una serie di libertà: You are free to use %1, for any purpose Sei libero di usare %1, per qualsiasi scopo You are free to distribute %1 Sei libero di distribuire %1 You can study how %1 works and change it Puoi studiare come funziona %1 e cambiarlo You can distribute changed versions of %1 Puoi distribuire versioni modificate di %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. La licenza MIT ti garantisce questa libertà. A nessuno è mai permesso portarlo via. Third-party Libraries used by %1 Librerie di terze parti utilizzate da %1 &Help &Aiuto &About &Informazioni &License &Licenza GraphicsScene Drag image here Trascina qui l'immagine GraphicsView File url list is empty L'elenco degli URL dei file è vuoto File is not a valid image Il file non è un'immagine valida Image data is invalid or currently unsupported I dati dell'immagine non sono validi o non sono attualmente supportati Image data is invalid I dati dell'immagine non sono validi Not supported mimedata: %1 Dati mime non supportati: %1 MainWindow File url list is empty L'elenco degli URL dei file è vuoto &Copy &Copia Image data is invalid I dati dell'immagine non sono validi Not supported mimedata: %1 Dati mime non supportati: %1 Image From Clipboard Immagine dagli appunti Are you sure you want to move "%1" to recycle bin? Sei sicuro di voler spostare "%1" nel cestino? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Lo spostamento nel cestino non è riuscito, potrebbe essere causato da un problema di autorizzazione del file, da una limitazione del file system o da una limitazione della piattaforma. Copy P&ixmap Copia P&ixmap Copy &File Path Copia &Percorso file Properties Proprietà Stay on top Rimani in cima Protected mode Modalità protetta Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Mantieni trasformazione Zoom in Zoom avanti Zoom out Zoom indietro Pause/Resume Animation Pausa/Riprendi animazione Animation Go to Next Frame Animazione Vai al fotogramma successivo Flip &Horizontally Capovolgi &Orizzontalmente Fit to view Adatto alla visualizzazione Fit to width Adatta alla larghezza &Paste &Incolla Toggle Checkerboard Attiva/disattiva scacchiera &Open... &Apri... Actual size Dimensione reale Toggle maximize Attiva massimizzazione Rotate right Ruota a destra Rotate left Ruota a sinistra Previous image Immagine precedente Next image Immagine successiva Move to Trash Sposta nel cestino Configure... Configura... Help Aiuto Show in File Explorer File Explorer is the name of explorer.exe under Windows Mostra in Esplora file Show in directory Mostra nella directory Quit Esci MetadataDialog Image Metadata Metadati dell'immagine MetadataModel Origin Section name. Origine Image Section name. Immagine File Section name. File Camera Section name. Camera %1 File %1 File Description Section name. Descrizione Advanced photo Section name. Foto avanzata GPS Section name. GPS Dimensions Dimensioni Aspect ratio Proporzioni Frame count Conteggio fotogrammi Name Nome Item type Tipo di elemento Folder path Percorso cartella Size Dimensione Date created Data di creazione Date modified Data di modifica Title Titolo Subject Soggetto Rating Valutazione Tags Tag Comments Commenti Authors Autori Date taken Data scatto Program name Nome programma Copyright Copyright Horizontal resolution Risoluzione orizzontale Vertical resolution Risoluzione verticale Resolution unit Unità di risoluzione Colour representation Rappresentazione del colore Camera maker Produttore macchina fotografica Camera model Modello camera F-stop F-stop Exposure time Tempo di esposizione ISO speed Velocità ISO Exposure bias Bias d'esposizione Focal length Lunghezza focale Max aperture Massima apertura Metering mode Modalità di misurazione Subject distance Distanza del soggetto Flash mode Modalità flash 35mm focal length Lunghezza focale 35 mm Lens model Modello di lente Contrast Contrasto Brightness Luminosità Exposure program Programma di esposizione Saturation Saturazione Sharpness Nitidezza White balance Bilanciamento del bianco Digital zoom Zoom digitale EXIF version Versione EXIF Latitude reference Riferimento di latitudine Latitude Latitudine Longitude reference Riferimento di longitudine Longitude Longitudine Altitude reference Riferimento altimetrico Altitude Altitudine %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Proprietà Value Valore SettingsDialog Settings Impostazioni Options Opzioni Shortcuts Scorciatoie Editing shortcuts for action "%1": Modifica delle scorciatoie per l'azione "%1": Failed to set shortcuts Impossibile impostare le scorciatoie Please check if shortcuts are duplicated with existing shortcuts. Controlla se i collegamenti sono duplicati con collegamenti esistenti. Do nothing Non fare nulla Close the window Chiudi la finestra Toggle maximize Attiva massimizzazione Toggle fullscreen Attiva schermo intero Zoom in and out Zoom avanti e indietro View next or previous item Visualizza l'elemento successivo o precedente Auto size Dimensione automatica Maximized Massimizzato Round (Integer scaling) This option means round up for .5 and above Round (ridimensionamento intero) Ceil (Integer scaling) This option means always round up Ceil (ridimensionamento intero) Floor (Integer scaling) This option means always round down Floor (ridimensionamento intero) Follow system (Fractional scaling) This option means don't round Segui il sistema (scala frazionaria) Stay on top when start-up Rimani in cima quando si avvia Use light-color checkerboard Utilizzare scacchiera di colore chiaro Double-click behavior Comportamento del doppio clic Mouse wheel behavior Comportamento della rotellina del mouse Default window size Dimensioni predefinite della finestra HiDPI scale factor rounding policy Politica di arrotondamento del fattore di scala HiDPI ShortcutEdit No shortcuts Nessuna scorciatoia ShortcutEditor Shortcut #%1 Scorciatoia #%1 main Pineapple Pictures Immagini di Pineapple List supported image format suffixes, and quit program. Elenca i suffissi dei formati immagine supportati e chiudi il programma. File list. Elenco file. pineapple-pictures-0.9.2/app/translations/PineapplePictures_ja.ts000066400000000000000000001043601475760775000253400ustar00rootroot00000000000000 AboutDialog About 情報 Launch application with image file path as argument to load the file. 画像ファイルのパスをパラメータとしてアプリケーションを起動すると、ファイルを読み込みます。 Drag and drop image file onto the window is also supported. 画像ファイルをウィンドウにドラッグ&ドロップすることもできます。 None of the operations in this application will alter the pictures on disk. このアプリのどの操作も、ディスク上の写真に変更を加えることはありません。 Context menu option explanation: コンテキストメニューのオプションの説明: Make window stay on top of all other windows. ウィンドウを最前面に表示します。 Avoid close window accidentally. (eg. by double clicking the window) 誤ってウィンドウを閉じないようにします。(例:ウィンドウをダブルクリックする) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. 画像を切り替える時に、画像表示に適用されているズーム、回転、反転の状態を維持します。 Version: %1 バージョン: %1 Logo designed by %1 ロゴデザイン: %1 Built with Qt %1 (%2) Qt %1 (%2) でビルドされました Source code ソースコード Contributors 貢献者 List of contributors on GitHub GitHubでの貢献者リスト Thanks to all people who contributed to this project. このプロジェクトに貢献したすべての人に感謝します。 Translators 翻訳者 I would like to thank the following people who volunteered to translate this application. このアプリケーションの翻訳にボランティアで参加してくださった以下の方々に感謝します。 %1 is built on the following free software libraries: Free as in freedom %1は以下のフリーソフトウェア・ライブラリで構築されています。 &Special Thanks スペシャルサンクス(&S) &Third-party Libraries サードパーティライブラリ(&T) Your Rights 利用者の権利 Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1は、MITライセンスのもとで公開されています。 This license grants people a number of freedoms: このライセンスは人々に多くの自由を与えます。 You are free to use %1, for any purpose %1は、どのような目的にも自由に使用するできます You are free to distribute %1 %1を自由に配布することができます You can study how %1 works and change it %1がどのように作動するかを研究し、それを変更することができます You can distribute changed versions of %1 変更されたバージョンの %1を配布することができます The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. MITライセンスは、この自由を保証しています。誰もそれを奪うことは許されていません。 Third-party Libraries used by %1 %1が使用するサードパーティライブラリ &Help へルプ(&H) &About 情報(&A) &License ライセンス(&L) GraphicsScene Drag image here ここに画像をドラッグしてください GraphicsView File url list is empty ファイルURLリストがエンプティーです File is not a valid image ファイルが有効な画像ではありません Image data is invalid or currently unsupported 無効またはサポートされていない画像データ Image data is invalid 画像のデータが無効です Not supported mimedata: %1 無効なmimedata: %1 MainWindow File url list is empty ファイルurlリストがエンプティーです &Copy コピー(&C) Image data is invalid 画像のデータが無効です Not supported mimedata: %1 無効なmimedata: %1 Image From Clipboard クリップボードからの画像 Are you sure you want to move "%1" to recycle bin? 「%1」をゴミ箱に移動しますか? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. ゴミ箱への移動に失敗しました。ファイルのアクセス許可や、ファイルシステムの制限、プラットフォームの制限などを確認してください。 Copy P&ixmap 画像をコピー(&I) Copy &File Path ファイルパスをコピー(&F) Properties プロパティ Stay on top 最前面に表示する Protected mode プロテクトモード Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view 表示状態を維持する Zoom in 拡大 Zoom out 縮小 Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally 画像を左右反転する(&H) Fit to view Fit to width &Paste 貼り付け(&P) Toggle Checkerboard 背景を格子模様に切り替え &Open... 開く(&O)… Actual size 実際のサイズ Toggle maximize 最大化を切り替える Rotate right 右に回転 Rotate left 左に回転 Previous image 前の画像 Next image 次の画像 Move to Trash ゴミ箱へ移動する Configure... 設定... Help ヘルプ Show in File Explorer File Explorer is the name of explorer.exe under Windows エクスプローラーで表示する Show in directory ディレクトリに表示する Quit 終了 MetadataDialog Image Metadata 画像メタデータ MetadataModel Origin Section name. 元の場所 Image Section name. イメージ File Section name. ファイル Camera Section name. カメラ %1 File %1 ファイル Description Section name. 説明 Advanced photo Section name. アドバンストフォト GPS Section name. GPS Dimensions 解像度 Aspect ratio アスペクト比 Frame count フレームカウント Name 画像名 Item type 項目の種類 Folder path フォルダパス Size サイズ Date created 作成日時 Date modified 更新日時 Title タイトル Subject サブジェクト Rating 評価 Tags タグ Comments コメント Authors 作成者 Date taken 撮影日時 Program name プログラム名 Copyright 著作権 Horizontal resolution 水平解像度 Vertical resolution 垂直解像度 Resolution unit 解像度の単位 Colour representation 色空間 Camera maker カメラの製造元 Camera model カメラのモデル F-stop 絞り値 Exposure time 露光時間 ISO speed ISO速度 Exposure bias 露光補正 Focal length 焦点距離 Max aperture 最大口径 Metering mode 測光モード Subject distance 被写体距離 Flash mode フラッシュモード 35mm focal length 35mm 焦点距離 Lens model レンズモデル Contrast コントラスト Brightness 輝度 Exposure program 露光プログラム Saturation 彩度 Sharpness シャープネス White balance ホワイトバランス Digital zoom デジタルズーム倍率 EXIF version EXIFバージョン Latitude reference 緯度基準 Latitude 緯度 Longitude reference 経度基準 Longitude 経度 Altitude reference 高度基準 Altitude 高度 %1 x %2 %1 × %2 %1 : %2 %1 : %2 Property プロパティ Value SettingsDialog Settings 設定 Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing 何もしない Close the window ウィンドウを終了する Toggle maximize 最大サイズに切り替える Toggle fullscreen Zoom in and out 拡大・縮小 View next or previous item 次の項目または前の項目を表示 Auto size オートサイズ Maximized 最大化 Round (Integer scaling) This option means round up for .5 and above 四捨五入 (整数スケーリング) Ceil (Integer scaling) This option means always round up 切り上げ (整数スケーリング) Floor (Integer scaling) This option means always round down 切り捨て (整数スケーリング) Follow system (Fractional scaling) This option means don't round システム設定に従う (小数スケーリング) Stay on top when start-up 起動時に最前面に表示する Use light-color checkerboard Double-click behavior ダブルクリックの動作 Mouse wheel behavior マウスホイールの動作 Default window size 既定のウィンドウサイズ HiDPI scale factor rounding policy 高DPIスケーリングの四捨五入方法 ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. サポートされている画像形式の拡張子を一覧表示し、プログラムを終了します。 File list. ファイルリスト pineapple-pictures-0.9.2/app/translations/PineapplePictures_ko.ts000066400000000000000000001030541475760775000253560ustar00rootroot00000000000000 AboutDialog About 정보 Launch application with image file path as argument to load the file. 이미지 파일 경로를 인수로 지정하여 응용 프로그램을 시작하여 파일을 불러옵니다. Drag and drop image file onto the window is also supported. 이미지 파일을 창으로 끌어다 놓기도 지원됩니다. None of the operations in this application will alter the pictures on disk. 이 응용 프로그램의 어떤 작업도 디스크의 사진을 변경하지 않습니다. Context menu option explanation: 상황에 맞는 메뉴 옵션 설명: Make window stay on top of all other windows. 창이 다른 모든 창 위에 오도록 합니다. Avoid close window accidentally. (eg. by double clicking the window) 실수로 창을 닫지 마십시오. (예: 창을 두 번 클릭하여) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. 이미지 간 전환 시 이미지 보기에 적용되었던 줌/회전/플립 상태를 재설정하지 마세요. Version: %1 버전: %1 Logo designed by %1 %1에 의해 설계된 로고 Built with Qt %1 (%2) Qt %1(%2)로 빌드됨 Source code 소스 코드 Contributors 기여자 List of contributors on GitHub GitHub의 기여자 목록 Thanks to all people who contributed to this project. 이 프로젝트에 기여해주신 모든 분들께 감사드립니다. Translators 번역자 I would like to thank the following people who volunteered to translate this application. 이 응용 프로그램 번역에 자원해 주신 다음 분들께 감사의 말씀을 전합니다. %1 is built on the following free software libraries: Free as in freedom %1은 다음과 같은 무료 소프트웨어 라이브러리를 기반으로 합니다: &Special Thanks 특별한 감사(&S) &Third-party Libraries 타사 라이브러리(&T) Your Rights 사용자 권한 Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) 저작권 (c) %1 %2 %1 is released under the MIT License. 사용자의 권한 %1은 MIT 라이선스에 따라 릴리스됩니다. This license grants people a number of freedoms: 이 라이선스는 다음과 같은 다양한 자유를 제공합니다: You are free to use %1, for any purpose %1을(를) 어떤 용도로도 자유롭게 사용할 수 있습니다 You are free to distribute %1 %1를 무료로 배포할 수 있습니다 You can study how %1 works and change it %1가 작동하는 방식을 연구하고 변경할 수 있습니다 You can distribute changed versions of %1 변경된 버전의 %1을 배포할 수 있습니다 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. MIT 라이선스는 이러한 자유를 보장합니다. 누구도 이를 빼앗을 수 없습니다. Third-party Libraries used by %1 %1에서 사용하는 타사 라이브러리 &Help 도움말(&H) &About 정보(&A) &License 라이선스(&L) GraphicsScene Drag image here 이미지를 여기로 끌기 GraphicsView File url list is empty 파일 URL 목록이 비어 있습니다 File is not a valid image 파일이 올바른 이미지가 아닙니다 Image data is invalid or currently unsupported 이미지 데이터가 잘못되었거나 현재 지원되지 않습니다 Image data is invalid 이미지 데이터가 잘못되었습니다 Not supported mimedata: %1 지원되지 않는 mimedata: %1 MainWindow File url list is empty 파일 URL 목록이 비어 있습니다 &Copy 복사(&C) Image data is invalid 이미지 데이터가 잘못되었습니다 Not supported mimedata: %1 지원되지 않는 mimedata: %1 Image From Clipboard 클립보드에서 이미지 Are you sure you want to move "%1" to recycle bin? "%1"을 휴지통으로 옮기시겠습니까? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. 휴지통으로 이동하지 못했습니다. 파일 권한 문제, 파일 시스템 제한 또는 플랫폼 제한으로 인해 발생할 수 있습니다. Copy P&ixmap Pixmap 복사(&I) Copy &File Path 파일 경로 복사(&F) Properties 속성 Stay on top 맨 위에 유지 Protected mode 보호 모드 Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view 변형 유지 Zoom in 확대 Zoom out 축소 Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally 수평으로 뒤집기(&H) Fit to view 보기에 맞춤 Fit to width 너비에 맞춤 &Paste 붙여넣기(&P) Toggle Checkerboard 바둑판 전환 &Open... 열기(&O)... Actual size 실제 크기 Toggle maximize 최대화 전환 Rotate right 오른쪽으로 회전 Rotate left 왼쪽으로 회전 Previous image 이전 이미지 Next image 다음 이미지 Move to Trash 휴지통으로 이동 Configure... 구성... Help 도움말 Show in File Explorer File Explorer is the name of explorer.exe under Windows 파일 탐색기에 표시 Show in directory 디렉터리에 표시 Quit 종료 MetadataDialog Image Metadata 이미지 메타데이터 MetadataModel Origin Section name. 기원 Image Section name. 이미지 File Section name. 파일 Camera Section name. 카메라 %1 File %1 파일 Description Section name. 설명 Advanced photo Section name. 고급 사진 GPS Section name. GPS Dimensions 치수 Aspect ratio 종횡비 Frame count 프레임 수 Name 이름 Item type 항목 유형 Folder path 폴더 경로 Size 크기 Date created 만든 날짜 Date modified 수정 날짜 Title 제목 Subject 주제 Rating 등급 Tags 태그 Comments 주석 Authors 저자 Date taken 촬영 날짜 Program name 프로그램 이름 Copyright 저작권 Horizontal resolution 수평 해상도 Vertical resolution 수직 해상도 Resolution unit 해상도 단위 Colour representation 색 표현 Camera maker 카메라 제조업체 Camera model 카메라 모델 F-stop F-스톱 Exposure time 노출 시간 ISO speed ISO 속도 Exposure bias 노출 편향 Focal length 초점 거리 Max aperture 최대 조리개 Metering mode 미터링 모드 Subject distance 피사체 거리 Flash mode 플래시 모드 35mm focal length 35mm 초점 거리 Lens model 렌즈 모델 Contrast 대비 Brightness 밝기 Exposure program 노출 프로그램 Saturation 채도 Sharpness 선명도 White balance 화이트 밸런스 Digital zoom 디지털 줌 EXIF version EXIF 버전 Latitude reference 위도 참조 Latitude 위도 Longitude reference 경도 참조 Longitude 경도 Altitude reference 고도 참조 Altitude 고도 %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property 속성 Value SettingsDialog Settings 설정 Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing 아무것도 하지 않음 Close the window 창 닫기 Toggle maximize 최대화 전환 Toggle fullscreen Zoom in and out 확대 및 축소 View next or previous item 다음 또는 이전 항목 보기 Auto size 자동 크기 Maximized 최대화 Round (Integer scaling) This option means round up for .5 and above 라운드 (정수 스케일링) Ceil (Integer scaling) This option means always round up 셰일 (정수 스케일링) Floor (Integer scaling) This option means always round down 바닥 (정수 스케일링) Follow system (Fractional scaling) This option means don't round 팔로우 시스템 (부분 스케일링) Stay on top when start-up 시작 시 맨 위에 유지 Use light-color checkerboard 밝은 색상의 바둑판 사용 Double-click behavior 더블클릭 동작 Mouse wheel behavior 마우스 휠 동작 Default window size 기본 창 크기 HiDPI scale factor rounding policy HiDPI 배율 반올림 정책 ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures 파인애플 픽처스 List supported image format suffixes, and quit program. 지원되는 이미지 형식 접미사를 나열하고 프로그램을 종료합니다. File list. 파일 목록. pineapple-pictures-0.9.2/app/translations/PineapplePictures_nb_NO.ts000066400000000000000000001022011475760775000257310ustar00rootroot00000000000000 AboutDialog About Om Launch application with image file path as argument to load the file. Kjør programmer ved å angi en filsti som argument for å laste inn filen. Drag and drop image file onto the window is also supported. Å dra og slippe filen i vinduet støttes også. None of the operations in this application will alter the pictures on disk. Ingen av operasjonene i dette programmet vil endre bildet som det er lagret. Context menu option explanation: Forklaring av alternativer i bindeleddsmeny: Make window stay on top of all other windows. Få vinduet til å alltid ligge over andre vinduer. Avoid close window accidentally. (eg. by double clicking the window) Unngå lukking av vinduet ved feiltagelser (f.eks. ved dobbeltklikking av vinduet) Version: %1 Versjon: %1 Copyright (c) 2020 %1 Opphavsrett © 2020 %1 Logo designed by %1 Logo designet av %1 Built with Qt %1 (%2) Bygd med Qt %1 (%2) Source code Kildekode Contributors Bidragsytere List of contributors on GitHub Liste over bidragsytere på GitHub Thanks to all people who contributed to this project. Takk til alle som har bidratt til prosjektet. Translators Oversettere I would like to thank the following people who volunteered to translate this application. Takk til følgende dugnadsoversettere. %1 is built on the following free software libraries: Free as in freedom %1 er bygd med følgende friprog-bibliotek: &Special Thanks &Spesiell takk til &Third-party Libraries &Tredjepartslisenser Your Rights Dine rettigheter Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Unngå å tilbakestille tilstanden for zoom/rotasjon/speilvending som ble brukt på bildevisningen, når det skiftes mellom bilder. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Opphavsrett © %1 %2 %1 is released under the MIT License. %1 er MIT-lisensiert. This license grants people a number of freedoms: Lisensen gir den en rekke friheter: You are free to use %1, for any purpose Du kan bruke %1 som du vil You are free to distribute %1 Du kan dele %1 You can study how %1 works and change it Du kan se kildekoden til %1 og endre den You can distribute changed versions of %1 Du kan distribuere endrede versjoner av %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. MIT-lisensen garanterer deg disse frihetene. Third-party Libraries used by %1 Tredjepartsbibliotek brukt av %1 &Help &Hjelp &About &Om &License &Lisens GraphicsScene Drag image here Dra bilde hit GraphicsView File url list is empty Listen over filnettadresser er tom File is not a valid image Filen er ikke et gyldig bilde Image data is invalid or currently unsupported Ugyldig bildedata, eller for tiden ustøttet Image data is invalid Ugyldig bildedata Not supported mimedata: %1 Ustøttet MIME-data: %1 MainWindow File url list is empty Listen over filnettadresser er ugyldig &Copy &Kopier Image data is invalid Ugyldig bildedata Not supported mimedata: %1 Ustøttet MIME-data: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Er du sikker på at du vil flytte "%1" til papirkurven? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Flytt til papirkurven mislyktes, det kan skyldes filtillatelsesproblem, filsystembegrensning eller plattformbegrensning. Copy P&ixmap Kopier p&ixmap Copy &File Path Kopier &filbane Properties Egenskaper Stay on top Behold øverst Protected mode Beskyttet modus Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Behold transformasjon Zoom in Førstørr Zoom out Forminsk Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Speilvend &horisontalt Fit to view Fit to width &Paste &Lim inn Toggle Checkerboard Skru av/på rutemønster &Open... &Åpne … Actual size Faktisk størrelse Toggle maximize Maksimering av/på Rotate right Roter til høyre Rotate left Previous image Forrige bilde Next image Neste bilde Move to Trash Flytt til papirkurven Configure... Sett opp … Help Hjelp Show in File Explorer File Explorer is the name of explorer.exe under Windows Vis i filutforsker Show in directory Vis i mappe Quit Avslutt MetadataDialog Image Metadata Bilde-metadata MetadataModel Origin Section name. Opprinnelse Image Section name. Bilde File Section name. Fil Camera Section name. Kamera %1 File %1-fil Description Section name. Beskrivelse Advanced photo Section name. Avansert bilde GPS Section name. GPS Dimensions Dimensjoner Aspect ratio Sideforhold Frame count Rammeantall Name Navn Item type Elementstype Folder path Mappesti Size Størrelse Date created Dato opprettet Date modified Dato endret Title Tittel Subject Emne Rating Vurdering Tags Etiketter Comments Kommentarer Authors Utviklere Date taken Dato tatt Program name Programnavn Copyright Opphavsrett Horizontal resolution Vannrett oppløsning Vertical resolution Loddrett oppløsning Resolution unit Oppløsningsenhet Colour representation Fargerepresentasjon Camera maker Kamerafabrikat Camera model Kameramodell F-stop Blenderåpning Exposure time Eksponeringstid ISO speed ISO-hastighet Exposure bias Eksponeringskorrigering Focal length Brennvidde Max aperture Maks. blenderåpning Metering mode Målingsmodus Subject distance Flash mode Blitz-modus 35mm focal length 35 mm-brennvidde Lens model Linsemodell Contrast Kontrast Brightness Lysstyrke Exposure program Eksponeringsprogram Saturation Metning Sharpness Skarphet White balance Hvitbalanse Digital zoom Digital forstørrelse EXIF version EXIF-versjon Latitude reference Breddegradsreferanse Latitude Breddegrad Longitude reference Lengdegradsreferanse Longitude Lengdegrad Altitude reference Høydereferanse Altitude Høyde %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Egenskap Value Verdi SettingsDialog Settings Innstillinger Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Ikke gjør noe Close the window Lukk vinduet Toggle maximize Maksimering av/på Toggle fullscreen Zoom in and out Zoom inn og ut View next or previous item Vis neste eller forrige element Auto size Automatisk størrelse Maximized Maksimert Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Behold i forgrunnen ved oppstart Use light-color checkerboard Double-click behavior Dobbeltklikksoppførsel Mouse wheel behavior Musehjulsoppførsel Default window size Forvalgt vindusstørrelse HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Filliste. pineapple-pictures-0.9.2/app/translations/PineapplePictures_nl.ts000066400000000000000000001020541475760775000253550ustar00rootroot00000000000000 AboutDialog About Over Launch application with image file path as argument to load the file. Start het programma met het opgegeven afbeeldingsbestandspad. Drag and drop image file onto the window is also supported. U kunt tevens afbeeldingen naar het venster slepen. None of the operations in this application will alter the pictures on disk. Geen van de handelingen in dit programma veranderen de afbeeldingen op de schijf. Context menu option explanation: Rechtermuisknopmenu-uitleg: Make window stay on top of all other windows. Houdt het venster boven andere vensters. Avoid close window accidentally. (eg. by double clicking the window) Voorkomt per ongeluk sluiten (bijv. door te dubbelklikken op het venster). Version: %1 Versie: %1 Copyright (c) 2020 %1 Copyright (c) 2020 %1 Logo designed by %1 Logo gemaakt door %1 Built with Qt %1 (%2) Gebouwd met Qt %1 (%2) Source code Broncode Contributors Bijdragers List of contributors on GitHub Lijst met bijdragers op GitHub Thanks to all people who contributed to this project. Met dank aan alle personen die hebben bijgedragen aan dit project. Translators Vertalers I would like to thank the following people who volunteered to translate this application. Ik wil graag de volgende mensen bedanken die vrijwillig hebben bijgedragen aan vertalingen. %1 is built on the following free software libraries: Free as in freedom %1 is gebouwd met de volgende vrijesoftwarebibliotheken: &Special Thanks &Met dank aan &Third-party Libraries Ex&terne bibliotheken Your Rights Uw rechten Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Voorkom dat het zoomniveau, de draaiing en spiegeling worden hersteld na wisselen van afbeelding. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 is uitgebracht onder de MIT-licentie. This license grants people a number of freedoms: Deze licentie biedt een hoop vrijheden: You are free to use %1, for any purpose U mag %1 gratis gebruiken, voor welk doeleinde dan ook You are free to distribute %1 U mag %1 vrij verspreiden You can study how %1 works and change it U kunt bekijken hoe %1 werkt en aanpassingen doen You can distribute changed versions of %1 U mag aangepaste versie van %1 vrij verspreiden The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. De MIT-licentie garandeert u deze vrijheid, en niemand mag deze vrijheid wegnemen. Third-party Libraries used by %1 Door %1 gebruikte externe bibliotheken &Help &Hulp &About &Over &License &Licentie GraphicsScene Drag image here Sleep een afbeelding hierheen GraphicsView File url list is empty De bestandspadlijst is leeg File is not a valid image Het bestand is geen afbeelding Image data is invalid or currently unsupported De afbeeldingsgegevens zijn beschadigd of worden niet ondersteund Image data is invalid Beschadigde afbeeldingsgegevens Not supported mimedata: %1 Niet-ondersteunde mime-gegevens: %1 MainWindow File url list is empty De bestandspadlijst is leeg &Copy &Kopiëren Image data is invalid Beschadigde afbeeldingsgegevens Not supported mimedata: %1 Niet-ondersteunde mime-gegevens: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap P&ixmap kopiëren Copy &File Path &Bestandspad kopiëren Properties Eigenschappen Stay on top Altijd bovenop Protected mode Beschermde modus Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Bewerkingen onthouden Zoom in Inzoomen Zoom out Uitzoomen Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally &Horizontaal spiegelen Fit to view Fit to width &Paste &Plakken Toggle Checkerboard Schaakbordpatroon aan/uit &Open... &Openen… Actual size Ware grootte Toggle maximize Maximaliseren aan/uit Rotate right Naar rechts draaien Rotate left Previous image Vorige afbeelding Next image Volgende afbeelding Move to Trash Configure... Instellen... Help Hulp Show in File Explorer File Explorer is the name of explorer.exe under Windows Tonen in bestandsbeheer Show in directory Tonen in map Quit Afsluiten MetadataDialog Image Metadata Afbeeldingsmetagegevens MetadataModel Origin Section name. Oorsprong Image Section name. Afbeelding File Section name. Bestand Camera Section name. Camera %1 File %1-bestand Description Section name. Omschrijving Advanced photo Section name. Uitgebreide foto GPS Section name. GPS Dimensions Afmetingen Aspect ratio Beeldverhouding Frame count Aantal frames Name Naam Item type Soort item Folder path Bestandspad Size Grootte Date created Gemaakt op Date modified Bewerkt op Title Naam Subject Onderwerp Rating Waardering Tags Labels Comments Opmerkingen Authors Makers Date taken Genomen op Program name Programmanaam Copyright Copyright Horizontal resolution Horizontale resolutie Vertical resolution Verticale resolutie Resolution unit Resolutie-eenheid Colour representation Kleurweergave Camera maker Camerafabrikant Camera model Cameramodel F-stop Openingsverhouding Exposure time Belichtingstijd ISO speed ISO-snelheid Exposure bias Belichtingsvertekening Focal length Focale lengte Max aperture Max. opening Metering mode Metermodus Subject distance Onderwerpafstand Flash mode Flitsmodus 35mm focal length 35mm focale lengte Lens model Lensmodel Contrast Contrast Brightness Helderheid Exposure program Belichtingsprogramma Saturation Verzadiging Sharpness Scherpte White balance Witbalans Digital zoom Digitale zoom EXIF version EXIF-versie Latitude reference Breedtegraadverwijzing Latitude Breedtegraad Longitude reference Lengtegraadverwijzing Longitude Lengtegraad Altitude reference Hoogteverwijzing Altitude Hoogte %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Eigenschap Value Waarde SettingsDialog Settings Instellingen Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Niets doen Close the window Venster sluiten Toggle maximize Maximaliseren/Demaximaliseren Toggle fullscreen Zoom in and out In-/Uitzoomen View next or previous item Ga naar volgende of vorige item Auto size Automatische grootte Maximized Gemaximaliseerd Round (Integer scaling) This option means round up for .5 and above Rond (geheel getal) Ceil (Integer scaling) This option means always round up Keil (geheel getal) Floor (Integer scaling) This option means always round down Grond (geheel getal) Follow system (Fractional scaling) This option means don't round Systeeminstelling (fractionele schaal) Stay on top when start-up Automatisch altijd bovenop Use light-color checkerboard Double-click behavior Dubbelklikgedrag Mouse wheel behavior Scrollwielgedrag Default window size Standaard vensterafmetingen HiDPI scale factor rounding policy HiDPI-schaalfactor - afrondbeleid ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Afbeeldingen List supported image format suffixes, and quit program. File list. Bestandslijst. pineapple-pictures-0.9.2/app/translations/PineapplePictures_pa_PK.ts000066400000000000000000000777051475760775000257540ustar00rootroot00000000000000 AboutDialog About بارے Launch application with image file path as argument to load the file. Drag and drop image file onto the window is also supported. None of the operations in this application will alter the pictures on disk. Context menu option explanation: Make window stay on top of all other windows. Avoid close window accidentally. (eg. by double clicking the window) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Version: %1 Logo designed by %1 Built with Qt %1 (%2) Source code سروت دا کوڈ Contributors List of contributors on GitHub Thanks to all people who contributed to this project. Translators ترجمے والے I would like to thank the following people who volunteered to translate this application. %1 is built on the following free software libraries: Free as in freedom &Special Thanks شکریئے &Third-party Libraries تیجی پارٹی سوفٹویر Your Rights Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) %1 is released under the MIT License. This license grants people a number of freedoms: You are free to use %1, for any purpose You are free to distribute %1 You can study how %1 works and change it You can distribute changed versions of %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Third-party Libraries used by %1 &Help مدد &About بارے &License لائیسنس GraphicsScene Drag image here GraphicsView File is not a valid image Image data is invalid or currently unsupported MainWindow File url list is empty &Copy کاپی کرو Image data is invalid Not supported mimedata: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap تصویر دا نقشہ کاپی کرو Copy &File Path Properties وشیشتاواں Stay on top Protected mode سرکھیات سیٹنگ Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in وڈا کرو Zoom out چھوٹا کرو Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally لیٹویں اُلٹاؤ Fit to view Fit to width &Paste پیسٹ کرو Toggle Checkerboard چیک‌بورڈ چالو بدلو &Open... کھُلھو… Actual size اصلی اکار Toggle maximize ودھو ودھ بدلو Rotate right سجے گھنماؤ Rotate left Previous image پچھلی تصویر Next image اگلی تصویر Move to Trash Configure... Help مدد Show in File Explorer File Explorer is the name of explorer.exe under Windows Show in directory Quit بند کرو MetadataDialog Image Metadata تصویر دا میٹاڈیٹا MetadataModel Origin Section name. Image Section name. تصویر File Section name. فائل Camera Section name. کیمرہ %1 File Description Section name. تفصیل Advanced photo Section name. GPS Section name. گی‌پی‌ایس Dimensions ماپ Aspect ratio Frame count Name ناں Item type قسم Folder path فولڈر پاتھ Size اکار Date created بݨاوݨ دی تریخ Date modified Title سرلیکھ Subject وِشا Rating Tags ٹیگ Comments ٹپݨیاں Authors لیکھک Date taken Program name Copyright لائیسنس Horizontal resolution Vertical resolution Resolution unit Colour representation Camera maker Camera model F-stop ایف سٹاپ Exposure time ISO speed Exposure bias Focal length Max aperture Metering mode Subject distance Flash mode 35mm focal length Lens model Contrast Brightness چمک Exposure program Saturation سنترپتہ Sharpness تکھاپن White balance Digital zoom EXIF version Latitude reference Latitude اکشانش Longitude reference Longitude لمبکار Altitude reference Altitude اُچائی %1 x %2 %1 : %2 Property وشیشتا Value مُل SettingsDialog Settings سیٹنگاں Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Close the window Toggle maximize ودھو ودھ بدلو Toggle fullscreen Zoom in and out View next or previous item Auto size Maximized ودھ توں ودھ Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Use light-color checkerboard Double-click behavior Mouse wheel behavior Default window size HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures List supported image format suffixes, and quit program. File list. pineapple-pictures-0.9.2/app/translations/PineapplePictures_ru.ts000066400000000000000000001075711475760775000254030ustar00rootroot00000000000000 AboutDialog About О программе Launch application with image file path as argument to load the file. Запустите приложение, указав путь к файлу изображения в качестве аргумента для загрузки файла. Drag and drop image file onto the window is also supported. Также поддерживается перетаскивание файла изображения в окно. None of the operations in this application will alter the pictures on disk. Ни одна из операций в этом приложении не изменит изображения на диске. Context menu option explanation: Пояснение к параметрам контекстного меню: Make window stay on top of all other windows. Расположить окно поверх всех остальных окон. Avoid close window accidentally. (eg. by double clicking the window) Избегать случайного закрытия окна. (например, двойным щелчком по окну) Version: %1 Версия: %1 Copyright (c) 2020 %1 Авторское право (c) 2020 %1 Logo designed by %1 Логотип разработан %1 Built with Qt %1 (%2) Создано с использованием Qt %1 (%2) Source code Исходный код Contributors Участники List of contributors on GitHub Список участников на GitHub Thanks to all people who contributed to this project. Спасибо всем, кто внес свой вклад в этот проект. Translators Переводчики I would like to thank the following people who volunteered to translate this application. Я бы хотел поблагодарить следующих людей, которые приняли участие в переводе этого приложения. %1 is built on the following free software libraries: Free as in freedom %1 создан на следующих бесплатных библиотеках программного обеспечения: &Special Thanks &Особая благодарность &Third-party Libraries &Сторонние библиотеки Your Rights Ваши Права Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Copyright (c) %1 %2 %1 is released under the MIT License. %1 выпущен под лицензией MIT. This license grants people a number of freedoms: Эта лицензия дает людям ряд свобод: You are free to use %1, for any purpose Вы можете свободно использовать %1 для любых целей You are free to distribute %1 Вы можете свободно распространять %1 You can study how %1 works and change it Вы можете изучать, как работает %1, и изменять его You can distribute changed versions of %1 Вы можете распространять измененные версии %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Лицензия MIT гарантирует вам эту свободу. Никому и никогда не разрешается забирать ее. Third-party Libraries used by %1 Сторонние библиотеки, используемые %1 &Help &Помощь &About &О программе &License &Лицензия GraphicsScene Drag image here Перетащите изображение сюда GraphicsView File url list is empty Список URL-адресов файлов пуст File is not a valid image Файл не является допустимым изображением Image data is invalid or currently unsupported Параметры изображения недействительны или не поддерживаются в настоящее время Image data is invalid Параметры изображения недействительны Not supported mimedata: %1 Неподдерживаемые mimedata: %1 MainWindow File url list is empty Список URL-адресов файлов пуст &Copy &Скопировать Image data is invalid Параметры изображения недействительны Not supported mimedata: %1 Неподдерживаемые mimedata: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap Скопировать P&ixmap Copy &File Path Скопировать &путь к файлу Properties Свойства Stay on top Поверх всех окон Protected mode Защищенный режим Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in Увеличить Zoom out Уменьшить Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Отразить по &горизонтали Fit to view Fit to width &Paste &Вставить Toggle Checkerboard Переключить фоновый рисунок &Open... &Открыть... Actual size Фактический размер Toggle maximize Переключить окно Rotate right Повернуть вправо Rotate left Previous image Предыдущее изображение Next image Следующее изображение Move to Trash Configure... Параметры... Help Помощь Show in File Explorer File Explorer is the name of explorer.exe under Windows Показать в проводнике Show in directory Показать в папке Quit Выход MetadataDialog Image Metadata Метаданные изображения MetadataModel Origin Section name. Происхождение Image Section name. Изображение File Section name. Файл Camera Section name. Камера %1 File %1 Файл Description Section name. Описание Advanced photo Section name. Расширенное фото GPS Section name. GPS Dimensions Размеры Aspect ratio Соотношение сторон Frame count Количество кадров Name Название Item type Тип элемента Folder path Путь к папке Size Размер Date created Дата создания Date modified Дата изменения Title Заголовок Subject Тема Rating Рейтинг Tags Теги Comments Комментарии Authors Авторы Date taken Дата съемки Program name Название программы Copyright Авторские права Horizontal resolution Разрешение по горизонтали Vertical resolution Разрешение по вертикали Resolution unit Единица разрешения Colour representation Цветопередача Camera maker Производитель камеры Camera model Модель камеры F-stop Величина диафрагмы Exposure time Время экспозиции ISO speed Чувствительность ISO Exposure bias Смещение экспозиции Focal length Фокусное расстояние Max aperture Максимальная апертура Metering mode Режим измерения Subject distance Расстояние до объекта Flash mode Режим вспышки 35mm focal length Фокусное расстояние 35 мм Lens model Модель объектива Contrast Контраст Brightness Яркость Exposure program Программа экспозиции Saturation Насыщенность Sharpness Четкость White balance Баланс белого Digital zoom Цифровое увеличение EXIF version Версия EXIF Latitude reference Ссылка на широту Latitude Широта Longitude reference Ссылка на долготу Longitude Долгота Altitude reference Ссылка на высоту Altitude Высота %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Свойство Value Значение SettingsDialog Settings Параметры Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Ничего не делать Close the window Закрыть окно Toggle maximize Переключить окно Toggle fullscreen Zoom in and out Увеличение и уменьшение масштаба View next or previous item Следующее или предыдущее изображение Auto size Авторазмер Maximized Максимизировать Round (Integer scaling) This option means round up for .5 and above Round (целочисленное масштабирование) Ceil (Integer scaling) This option means always round up Ceil (целочисленное масштабирование) Floor (Integer scaling) This option means always round down Floor (целочисленное масштабирование) Follow system (Fractional scaling) This option means don't round Следовать системе (дробное масштабирование) Stay on top when start-up Поверх всех окон при запуске Use light-color checkerboard Double-click behavior Действие при двойном щелчке Mouse wheel behavior Действие колеса мыши Default window size Размер окна по умолчанию HiDPI scale factor rounding policy Политика округления коэффициента масштабирования HiDPI ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Список файлов. pineapple-pictures-0.9.2/app/translations/PineapplePictures_si.ts000066400000000000000000001041031475760775000253540ustar00rootroot00000000000000 AboutDialog About පිළිබඳව Launch application with image file path as argument to load the file. Drag and drop image file onto the window is also supported. None of the operations in this application will alter the pictures on disk. Context menu option explanation: Make window stay on top of all other windows. Avoid close window accidentally. (eg. by double clicking the window) Version: %1 අනුවාදය: %1 Copyright (c) 2020 %1 ප්‍රකාශන හිමිකම (ඇ) 2020 %1 Logo designed by %1 ලාංඡනය %1 විසින් නිර්මාණය කරන ලදි Built with Qt %1 (%2) Source code Contributors සහදායකයින් List of contributors on GitHub ගිට්හබ් හි සහදායකයින්ගේ ලැයිස්තුව Thanks to all people who contributed to this project. මෙම ව්යාපෘතියට දායක වූ සියලු දෙනාටම ස්තූතියි. Translators පරිවර්තකයින් I would like to thank the following people who volunteered to translate this application. මෙම යෙදුම පරිවර්තනය කිරීමට ස්වේච්ඡාවෙන් ඉදිරිපත් වූ පහත සඳහන් පුද්ගලයින්ට මම ස්තූතිවන්ත වෙමි. %1 is built on the following free software libraries: Free as in freedom &Special Thanks &Third-party Libraries Your Rights ඔබගේ අයිතිවාසිකම් Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) %1 is released under the MIT License. This license grants people a number of freedoms: You are free to use %1, for any purpose ඕනෑම කටයුත්තක් සඳහා %1 භාවිතා කිරීමට ඔබට නිදහස තිබේ You are free to distribute %1 %1 බෙදා හැරීමට ඔබට නිදහස තිබේ You can study how %1 works and change it %1 ක්‍රියා කරන ආකාරය අධ්‍යයනය කර එය වෙනස් කළ හැකිය You can distribute changed versions of %1 %1 හි වෙනස් කළ අනුවාදයන් ඔබට බෙදා හැරීමට හැකිය The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Third-party Libraries used by %1 &Help උපකාර &About පිළිබඳව &License &බලපත්‍රය GraphicsScene Drag image here GraphicsView File url list is empty ගොනු ඒ.ස.නි. (url) ලැයිස්තුව හිස් ය File is not a valid image ගොනුව වලංගු නොවන රූපයකි Image data is invalid or currently unsupported Image data is invalid රූපයේ දත්ත වලංගු නොවේ MainWindow File url list is empty ගොනු ඒ.ස.නි. (url) ලැයිස්තුව හිස් ය &Copy &පිටපත් Image data is invalid රූපයේ දත්ත වලංගු නොවේ Not supported mimedata: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Stay on top Protected mode Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Zoom in Zoom out Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Fit to view Fit to width Copy P&ixmap Copy &File Path &Paste Toggle Checkerboard &Open... Actual size Toggle maximize Rotate right Rotate left Previous image Next image Move to Trash Configure... Help Show in File Explorer File Explorer is the name of explorer.exe under Windows Show in directory Properties Quit MetadataDialog Image Metadata MetadataModel Origin Section name. Image Section name. පින්තූරය File Section name. ගොනුව Camera Section name. %1 File ගොනු %1 Description Section name. විස්තරය Advanced photo Section name. GPS Section name. Dimensions මාන Aspect ratio දර්ශන අනුපාතය Frame count Name නම Item type Folder path ගොනුවේ මාර්ගය Size ප්‍රමාණය Date created සෑදූ දිනය Date modified වෙනස් කළ දිනය Title Subject Rating ශ්‍රේණිගත කිරීම Tags Comments අදහස් Authors කතුවරුන් Date taken ගත් දිනය Program name වැඩසටහනේ නම Copyright Horizontal resolution තිරස් විභේදනය Vertical resolution සිරස් විභේදනය Resolution unit විභේදන ඒකකය Colour representation වර්ණ නිරූපණය Camera maker Camera model F-stop Exposure time නිරාවරණ කාලය ISO speed Exposure bias නිරාවරණ නැඹුරුව Focal length Max aperture Metering mode Subject distance Flash mode 35mm focal length Lens model කාච ආකෘතිය Contrast Brightness දීප්තිය Exposure program නිරාවරණ වැඩසටහන Saturation Sharpness තියුණු බව White balance Digital zoom සංඛ්‍යාංක විශාලනය EXIF version Latitude reference Latitude අක්ෂාංශ Longitude reference Longitude දේශාංශ Altitude reference Altitude උන්නතාංශය %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Value අගය SettingsDialog Settings සැකසුම් Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing කිසිවක් නොකරන්න Close the window කවුළුව වහන්න Toggle maximize Toggle fullscreen Zoom in and out View next or previous item Auto size Maximized Round (Integer scaling) This option means round up for .5 and above Ceil (Integer scaling) This option means always round up Floor (Integer scaling) This option means always round down Follow system (Fractional scaling) This option means don't round Stay on top when start-up Use light-color checkerboard Double-click behavior Mouse wheel behavior Default window size HiDPI scale factor rounding policy ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures පයින්ඇපල් පික්චර්ස් List supported image format suffixes, and quit program. File list. ගොනු ලැයිස්තුව. pineapple-pictures-0.9.2/app/translations/PineapplePictures_ta.ts000066400000000000000000001177111475760775000253560ustar00rootroot00000000000000 AboutDialog About பற்றி Launch application with image file path as argument to load the file. கோப்பை ஏற்ற வாதமாக பட கோப்பு பாதையுடன் பயன்பாட்டைத் தொடங்கவும். Drag and drop image file onto the window is also supported. படக் கோப்பை சாளரத்தில் இழுத்து விடுங்கள். None of the operations in this application will alter the pictures on disk. இந்த பயன்பாட்டில் உள்ள எந்த செயல்பாடுகளும் வட்டில் உள்ள படங்களை மாற்றாது. Context menu option explanation: சூழல் பட்டியல் விருப்பம் விளக்கம்: Make window stay on top of all other windows. மற்ற எல்லா சன்னல்களுக்கும் மேலாக சாளரத்தை வைக்கவும். Avoid close window accidentally. (eg. by double clicking the window) தற்செயலாக நெருக்கமான சாளரத்தைத் தவிர்க்கவும். (எ.கா. சாளரத்தை இருமுறை சொடுக்கு செய்வதன் மூலம்) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. படங்களுக்கு இடையில் மாறும்போது படக் காட்சிக்கு பயன்படுத்தப்பட்ட சூம்/சுழற்சி/ஃபிளிப் நிலையை மீட்டமைப்பதைத் தவிர்க்கவும். Version: %1 பதிப்பு: %1 Logo designed by %1 லோகோ %1 ஆல் வடிவமைக்கப்பட்டுள்ளது Built with Qt %1 (%2) கியுடி %1 ( %2) உடன் கட்டப்பட்டுள்ளது Source code மூலக் குறியீடு Contributors பங்களிப்பாளர்கள் List of contributors on GitHub கிதுபில் பங்களிப்பாளர்களின் பட்டியல் Thanks to all people who contributed to this project. இந்த திட்டத்திற்கு பங்களித்த அனைத்து மக்களுக்கும் நன்றி. Translators மொழிபெயர்ப்பாளர்கள் I would like to thank the following people who volunteered to translate this application. இந்த விண்ணப்பத்தை மொழிபெயர்க்க முன்வந்த பின்வரும் நபர்களுக்கு நன்றி தெரிவிக்க விரும்புகிறேன். %1 is built on the following free software libraries: Free as in freedom %1 பின்வரும் இலவச மென்பொருள் நூலகங்களில் கட்டப்பட்டுள்ளது: &Special Thanks & சிறப்பு நன்றி &Third-party Libraries மூன்றாம் தரப்பு நூலகங்கள் Your Rights உங்கள் உரிமைகள் Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) பதிப்புரிமை (சி) %1 %2 %1 is released under the MIT License. %1 எம்ஐடி உரிமத்தின் கீழ் வெளியிடப்படுகிறது. This license grants people a number of freedoms: இந்த உரிமம் மக்களுக்கு பல சுதந்திரங்களை வழங்குகிறது: You are free to use %1, for any purpose எந்தவொரு நோக்கத்திற்காகவும் நீங்கள் %1 ஐப் பயன்படுத்த இலவசம் You are free to distribute %1 %1 ஐ விநியோகிக்க நீங்கள் இலவசம் You can study how %1 works and change it %1 எவ்வாறு செயல்படுகிறது என்பதைப் படித்து அதை மாற்றலாம் You can distribute changed versions of %1 மாற்றப்பட்ட பதிப்புகளை %1 இன் விநியோகிக்கலாம் The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. எம்ஐடி உரிமம் இந்த சுதந்திரத்தை உங்களுக்கு பொறுப்பு செய்கிறது. அதை எடுத்துச் செல்ல யாரும் அனுமதிக்கப்படுவதில்லை. Third-party Libraries used by %1 %1 ஆல் பயன்படுத்தப்படும் மூன்றாம் தரப்பு நூலகங்கள் &Help உதவி (&h) &About &பற்றி &License & உரிமம் GraphicsScene Drag image here படத்தை இங்கே இழுக்கவும் GraphicsView File is not a valid image கோப்பு சரியான படம் அல்ல Image data is invalid or currently unsupported படத் தரவு தவறானது அல்லது தற்போது ஆதரிக்கப்படாதது MainWindow File url list is empty கோப்பு முகவரி பட்டியல் காலியாக உள்ளது &Copy நகலெடு (&c) Image data is invalid படத் தரவு தவறானது Not supported mimedata: %1 மைமெடாட்டாவை ஆதரிக்கவில்லை: %1 Image From Clipboard கிளிப்போர்டிலிருந்து படம் Are you sure you want to move "%1" to recycle bin? பின் மறுசுழற்சி செய்ய "%1" ஐ நகர்த்த விரும்புகிறீர்களா? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. குப்பைக்கு நகர்வது தோல்வியுற்றது, இது கோப்பு இசைவு சிக்கல், கோப்பு முறைமை வரம்பு அல்லது இயங்குதள வரம்பு ஆகியவற்றால் ஏற்படலாம். Copy P&ixmap பி & ஐஎக்ச்மேப்பை நகலெடுக்கவும் Copy &File Path கோப்பு பாதையை நகலெடுக்கவும் Properties பண்புகள் Stay on top மேலே இருங்கள் Protected mode பாதுகாக்கப்பட்ட பயன்முறை Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view மாற்றத்தைத் தொடருங்கள் Zoom in பெரிதாக்கு Zoom out சிறிதாக்கு Pause/Resume Animation இடைநிறுத்தம்/அனிமேசனை மீண்டும் தொடங்குங்கள் Animation Go to Next Frame அனிமேசன் அடுத்த சட்டகத்திற்குச் செல்லுங்கள் Flip &Horizontally கிடைமட்டமாக புரட்டவும் Fit to view பார்க்க பொருத்தமானது Fit to width அகலத்திற்கு ஏற்றது &Paste ஒட்டு (&p) Toggle Checkerboard செக்கர்போர்டை மாற்றவும் &Open... & திறந்த ... Actual size உண்மையான அளவு Toggle maximize அதிகபட்சத்தை மாற்றவும் Rotate right வலதுபுறம் சுழற்றுங்கள் Rotate left இடதுபுறம் சுழலும் Previous image முந்தைய படம் Next image அடுத்த படம் Move to Trash குப்பைக்கு நகர்த்தவும் Configure... உள்ளமைக்கவும் ... Help உதவி Show in File Explorer File Explorer is the name of explorer.exe under Windows கோப்பு எக்ச்ப்ளோரரில் காண்பி Show in directory கோப்பகத்தில் காட்டு Quit வெளியேறு MetadataDialog Image Metadata பட மேனிலை தரவு MetadataModel Origin Section name. தோற்றம் Image Section name. படம் File Section name. கோப்பு Camera Section name. கேமரா %1 File %1 கோப்பு Description Section name. விவரம் Advanced photo Section name. மேம்பட்ட புகைப்படம் GPS Section name. உலக இடம் காட்டும் அமைப்பு Dimensions பரிமாணங்கள் Aspect ratio அம்ச விகிதம் Frame count சட்ட எண்ணிக்கை Name பெயர் Item type உருப்படி வகை Folder path கோப்புறை பாதை Size அளவு Date created தேதி உருவாக்கப்பட்டது Date modified தேதி மாற்றியமைக்கப்பட்டது Title தலைப்பு Subject பொருள் Rating செயல்வரம்பு Tags குறிச்சொற்கள் Comments கருத்துகள் Authors ஆசிரியர்கள் Date taken எடுக்கப்பட்ட தேதி Program name நிரல் பெயர் Copyright பதிப்புரிமை Horizontal resolution கிடைமட்ட தீர்மானம் Vertical resolution செங்குத்து தீர்மானம் Resolution unit தெளிவுத்திறன் அலகு Colour representation வண்ண பிரதிநிதித்துவம் Camera maker கேமரா தயாரிப்பாளர் Camera model கேமரா மாதிரி F-stop எஃப்-ச்டாப் Exposure time நேரிடுதல் காலம் ISO speed ஐஎச்ஓ விரைவு Exposure bias வெளிப்பாடு சார்பு Focal length குவிநீளம், குவியத் தொலைவு Max aperture அதிகபட்ச துளை Metering mode அளவீட்டு முறை Subject distance பொருள் தூரம் Flash mode ஃபிளாச் பயன்முறை 35mm focal length 35 மிமீ குவிய நீளம் Lens model லென்ச் மாதிரி Contrast மாறுபாடு Brightness ஒளி Exposure program வெளிப்பாடு திட்டம் Saturation தெவிட்டல் Sharpness கூர்மையானது White balance வெள்ளை இருப்பு Digital zoom டிசிட்டல் சூம் EXIF version Exif பதிப்பு Latitude reference அட்சரேகை குறிப்பு Latitude அகலாங்கு Longitude reference தீர்க்கரேகை குறிப்பு Longitude நெட்டாங்கு Altitude reference உயர குறிப்பு Altitude குத்துயரம் %1 x %2 %1 ஃச் %2 %1 : %2 %1: %2 Property சொத்து Value மதிப்பு SettingsDialog Settings அமைப்புகள் Options விருப்பங்கள் Shortcuts குறுக்குவழிகள் Editing shortcuts for action "%1": செயலுக்கான குறுக்குவழிகளைத் திருத்துதல் "%1": Failed to set shortcuts குறுக்குவழிகளை அமைப்பதில் தோல்வி Please check if shortcuts are duplicated with existing shortcuts. தற்போதுள்ள குறுக்குவழிகளுடன் குறுக்குவழிகள் நகல் செய்யப்பட்டுள்ளதா என்று சரிபார்க்கவும். Do nothing எதுவும் செய்ய வேண்டாம் Close the window சாளரத்தை மூடு Toggle maximize அதிகபட்சத்தை மாற்றவும் Toggle fullscreen மாற்று முழுத்திரை Zoom in and out உள்ளேயும் வெளியேயும் பெரிதாக்கவும் View next or previous item அடுத்த அல்லது முந்தைய உருப்படியைக் காண்க Auto size வாகன அளவு Maximized அதிகபட்சம் Round (Integer scaling) This option means round up for .5 and above சுற்று (முழு எண் அளவிடுதல்) Ceil (Integer scaling) This option means always round up சீல் (முழு எண் அளவிடுதல்) Floor (Integer scaling) This option means always round down மாடி (முழு எண் அளவிடுதல்) Follow system (Fractional scaling) This option means don't round கணினியைப் பின்பற்றவும் (பகுதியளவு அளவிடுதல்) Stay on top when start-up தொடக்கத்தில் இருக்கும்போது மேலே இருங்கள் Use light-color checkerboard ஒளி-வண்ண செக்கர்போர்டைப் பயன்படுத்தவும் Double-click behavior நடத்தை இருமுறை சொடுக்கு செய்யவும் Mouse wheel behavior சுட்டி சக்கர நடத்தை Default window size இயல்புநிலை சாளர அளவு HiDPI scale factor rounding policy HIDPI அளவிலான காரணி ரவுண்டிங் கொள்கை ShortcutEdit No shortcuts குறுக்குவழிகள் இல்லை ShortcutEditor Shortcut #%1 குறுக்குவழி #%1 main Pineapple Pictures அன்னாசி படங்கள் List supported image format suffixes, and quit program. ஆதரிக்கப்பட்ட பட வடிவமைப்பு பின்னொட்டுகளை பட்டியலிடுங்கள், மற்றும் நிரல் வெளியேறுதல். File list. கோப்பு பட்டியல். pineapple-pictures-0.9.2/app/translations/PineapplePictures_tr.ts000066400000000000000000001032431475760775000253720ustar00rootroot00000000000000 AboutDialog About Hakkında Launch application with image file path as argument to load the file. Dosyayı yüklemek için değişken olarak resim dosyası yolu ile uygulamayı çalıştır. Drag and drop image file onto the window is also supported. Pencere üzerine resim dosyası sürükle bırak ta destekleniyor. None of the operations in this application will alter the pictures on disk. Bu uygulamadaki işlemlerin hiçbiri diskteki resimleri değiştirmeyecektir. Context menu option explanation: İçerik menüsü seçeneği açıklaması: Make window stay on top of all other windows. Pencereyi diğer tüm pencerelerin üzerinde tut. Avoid close window accidentally. (eg. by double clicking the window) Pencereyi yanlışlıkla kapatmaktan kaçın. (örn. pencereye çift tıklayarak) Version: %1 Sürüm: %1 Copyright (c) 2020 %1 Telif hakkı (c) 2020 %1 Logo designed by %1 Logo tasarımcısı: %1 Built with Qt %1 (%2) Qt %1 (%2) ile inşa edilmiştir Source code Kaynak kodu Contributors Katkıda bulunanlar List of contributors on GitHub Github üzerindeki katkı sağlayıcıların listesi Thanks to all people who contributed to this project. Bu projeye katkı sağlayan herkese teşekkürler. Translators Çevirmenler I would like to thank the following people who volunteered to translate this application. Bu uygulamayı çevirmeye gönüllü olan aşağıdaki kişilere teşekkür etmek istiyorum. %1 is built on the following free software libraries: Free as in freedom %1 aşağıdaki özgür yazılım kitaplıkları üzerinde inşa edilmiştir: &Special Thanks Özel %Teşekkürler &Third-party Libraries Üçüncü Par&ti Kitaplıklar Your Rights Haklarınız Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Resimler arasında geçiş yaparken resim görünümüne uygulanan yakınlaştırma/döndürme/çevirme durumu sıfırlanmasın. Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Telif Hakkı (c) %1 %2 %1 is released under the MIT License. %1, MIT Lisansı altında sunulmuştur. This license grants people a number of freedoms: Bu lisans birkaç özgürlüğü kişilere veriyor: You are free to use %1, for any purpose %1'i herhangi bir amaç için kullanmakta özgürsünüz You are free to distribute %1 %1'i dağıtmakta özgürsünüz You can study how %1 works and change it %1'in nasıl çalıştığıyla ilgili çalışabilir ve onu değiştirebilirsiniz You can distribute changed versions of %1 %1'in değiştirilmiş sürümünü dağıtabilirsiniz The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. MIT lisansı özgürlüğünüzü garanti eder. Hiç kimsenin özgürlüğünüzü sizden almasına bile izin verilmez. Third-party Libraries used by %1 %1 tarafından kullanılan Üçüncü Parti Kitaplıklar &Help &Yardım &About H&akkında &License &Lisans GraphicsScene Drag image here Resmi buraya sürükleyin GraphicsView File url list is empty Dosya URL listesi boş File is not a valid image Dosya, geçerli bir resim değil Image data is invalid or currently unsupported Resim verisi geçersiz veya şuan desteklenmiyor Image data is invalid Resim verisi geçersiz Not supported mimedata: %1 Desteklenmeyen dosya türü verisi: %1 MainWindow File url list is empty Dosya URL listesi boş &Copy &Kopyala Image data is invalid Resim verisi geçersiz Not supported mimedata: %1 Desteklenmeyen dosya türü verisi: %1 Image From Clipboard Panodaki Resim Are you sure you want to move "%1" to recycle bin? "%1" ögesini geri dönüşüm kutusuna taşımak istediğinizden emin misiniz? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Çöp kutusuna taşıma başarısız oldu, dosya izin sorunu, dosya sistemi sınırlaması veya platform sınırlamasından kaynaklanıyor olabilir. Copy P&ixmap P&ixmap'i Kopyala Copy &File Path &Dosya Yolunu Kopyala Properties Özellikler Stay on top Üstte tut Protected mode Korumalı kip Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Dönüşümü koru Zoom in Yaklaştır Zoom out Uzaklaştır Pause/Resume Animation Canlandırmayı Duraklat/Sürdür Animation Go to Next Frame Canlandırma Sonraki Kareye Git Flip &Horizontally &Yatay Çevir Fit to view Görünüme sığdır Fit to width Genişliğe sığdır &Paste Ya&pıştır Toggle Checkerboard Damalı Ekrana Geç &Open... &Aç... Actual size Gerçek boyut Toggle maximize Tam boyuta geç Rotate right Sağa döndür Rotate left Sola döndür Previous image Önceki resim Next image Sonraki resim Move to Trash Çöp Kutusuna Taşı Configure... Yapılandır... Help Yardım Show in File Explorer File Explorer is the name of explorer.exe under Windows Dosya Gezgini'nde Göster Show in directory Dizinde göster Quit Çıkış MetadataDialog Image Metadata Resim Üstverisi MetadataModel Origin Section name. Köken Image Section name. Resim File Section name. Dosya Camera Section name. Kamera %1 File %1 Dosya Description Section name. Açıklama Advanced photo Section name. Gelişmiş foto GPS Section name. GPS Dimensions Boyutlar Aspect ratio En boy oranı Frame count Kare sayısı Name Adı Item type Öge türü Folder path Klasör yolu Size Boyut Date created Oluşturulma tarihi Date modified Değiştirilme tarihi Title Başlık Subject Konu Rating Değerlendirme Tags Etiketler Comments Yorumlar Authors Sanatçılar Date taken Çekilme tarihi Program name Program adı Copyright Telif Hakkı Horizontal resolution Yatay çözünürlük Vertical resolution Dikey çözünürlük Resolution unit Çözünürlük birimi Colour representation Renk sunumu Camera maker Kamera üreticisi Camera model Kamera modeli F-stop Diyafram Exposure time Pozlama süresi ISO speed ISO hızı Exposure bias Pozlama sapması Focal length Odak uzaklığı Max aperture Azami açıklık Metering mode Ölçme kipi Subject distance Konu mesafesi Flash mode Flaş kipi 35mm focal length 35mm odak uzaklığı Lens model Mercek modeli Contrast Karşıtlık Brightness Parlaklık Exposure program Pozlama programı Saturation Doygunluk Sharpness Keskinlik White balance Beyaz dengesi Digital zoom Dijital yakınlaştırma EXIF version EXIF sürümü Latitude reference Enlem kaynağı Latitude Enlem Longitude reference Boylam kaynağı Longitude Boylam Altitude reference Rakım kaynağı Altitude Rakım %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Özellik Value Değer SettingsDialog Settings Ayarlar Options Seçenekler Shortcuts Kısayollar Editing shortcuts for action "%1": "%1" için kısayol düzenleniyor: Failed to set shortcuts Kısayollar ayarlanamadı Please check if shortcuts are duplicated with existing shortcuts. Do nothing Hiçbir şey yapma Close the window Pencereyi kapat Toggle maximize Tam boyuta geç Toggle fullscreen Tam ekranı aç/kapat Zoom in and out Yaklaştır ve uzaklaştır View next or previous item Sonraki veya önceki ögeyi görüntüle Auto size Otomatik boyut Maximized Tam boyut Round (Integer scaling) This option means round up for .5 and above Yuvarlak (Tamsayı ölçekleme) Ceil (Integer scaling) This option means always round up Tavan (Tamsayı ölçekleme) Floor (Integer scaling) This option means always round down Kat (Tamsayı ölçekleme) Follow system (Fractional scaling) This option means don't round Sistemi takip et (Kesirli ölçekleme) Stay on top when start-up Açılışta pencerelerin üstünde kal Use light-color checkerboard Açık renk dama tahtası kullan Double-click behavior Çift tıklama davranışı Mouse wheel behavior Fare tekeri davranışı Default window size Öntanımlı pencere boyutu HiDPI scale factor rounding policy HiDPI ölçek katsayısı yuvarlama ilkesi ShortcutEdit No shortcuts Kısayol yok ShortcutEditor Shortcut #%1 Kısayol #%1 main Pineapple Pictures Ananas Resimler List supported image format suffixes, and quit program. Desteklenen resim biçimi son eklerini listele ve programdan çık. File list. Dosya list. pineapple-pictures-0.9.2/app/translations/PineapplePictures_uk.ts000066400000000000000000001075641475760775000253760ustar00rootroot00000000000000 AboutDialog About Про додаток Launch application with image file path as argument to load the file. Запустіть додаток, вказавши шлях до файлу зображення у якості аргументу для завантаження файлу. Drag and drop image file onto the window is also supported. Також підтримується перетягування файлу зображення у вікно. None of the operations in this application will alter the pictures on disk. Жодна з операцій у цьому додатку не змінить зображення на диску. Context menu option explanation: Пояснення пунктів контекстного меню: Make window stay on top of all other windows. Зробити так, щоб вікно залишалося поверх усіх інших вікон. Avoid close window accidentally. (eg. by double clicking the window) Уникати випадкового закривання вікна. (Наприклад, подвійним клацанням по вікну.) Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. Уникати скидання стану масштабування/обертання/гортання яке було застосовано до перегляду зображення при перемиканні зображень. Version: %1 Версія: %1 Logo designed by %1 Логотип розроблено %1 Built with Qt %1 (%2) Побудований за допомогою Qt %1 (%2) Source code Джерельний код Contributors Учасники List of contributors on GitHub Список учасників на GitHub Thanks to all people who contributed to this project. Дякуємо всім, хто долучився до цього проєкту. Translators Перекладачі I would like to thank the following people who volunteered to translate this application. Я хотів би подякувати наступним людям, які прийняли участь у перекладі цього додатку. %1 is built on the following free software libraries: Free as in freedom %1 побудовано на наступних вільних бібліотеках: &Special Thanks &Особлива подяка &Third-party Libraries &Сторонні бібліотеки Your Rights Ваші права Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) Авторське право (c) %1 %2 %1 is released under the MIT License. %1 випускається за ліцензією MIT. This license grants people a number of freedoms: Ця ліцензія надає людям низку свобод: You are free to use %1, for any purpose Ви можете вільно використовувати %1 для будь-яких цілей You are free to distribute %1 Ви можете вільно розповсюджувати %1 You can study how %1 works and change it Ви можете вивчити, як працює %1, і змінити його You can distribute changed versions of %1 Ви можете розповсюджувати змінені версії %1 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. Ліцензія MIT гарантує вам цю свободу. Ніхто не має права її відбирати. Third-party Libraries used by %1 Сторонні бібліотеки, що використовуються %1 &Help &Допомога &About &Про додаток &License &Ліцензія GraphicsScene Drag image here Перетягніть зображення сюди GraphicsView File url list is empty Список URL-адрес файлів порожній File is not a valid image Файл не є дійсним зображенням Image data is invalid or currently unsupported Дані зображення недійсні або наразі не підтримуються Image data is invalid Дані зображення недійсні Not supported mimedata: %1 Не підтримується mimedata: %1 MainWindow File url list is empty Список URL-адрес файлів порожній &Copy &Скопіювати Image data is invalid Дані зображення недійсні Not supported mimedata: %1 Не підтримується mimedata: %1 Image From Clipboard Are you sure you want to move "%1" to recycle bin? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. Copy P&ixmap Скопіювати P&ixmap Copy &File Path Скопіювати &шлях до файлу Properties Властивості Stay on top Поверх всіх вікон Protected mode Захищений режим Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view Зберігати трансформацію Zoom in Збільшити Zoom out Зменшити Pause/Resume Animation Animation Go to Next Frame Flip &Horizontally Перевернути по &горизонталі Fit to view Fit to width &Paste &Вставити Toggle Checkerboard Перемкнути шахову дошку &Open... &Відкрити... Actual size Фактичний розмір Toggle maximize Перемкнути на максимум Rotate right Перегорнути праворуч Rotate left Previous image Попереднє зображення Next image Наступне зображення Move to Trash Configure... Налаштувати... Help Допомога Show in File Explorer File Explorer is the name of explorer.exe under Windows Показати у файловому провіднику Show in directory Показати у теці Quit Вийти MetadataDialog Image Metadata Метадані зображення MetadataModel Origin Section name. Походження Image Section name. Зображення File Section name. Файл Camera Section name. Камера %1 File %1 файл Description Section name. Опис Advanced photo Section name. Розширене фото GPS Section name. GPS Dimensions Розміри Aspect ratio Співвідношення сторін Frame count Кількість кадрів Name Ім’я Item type Тип елемента Folder path Шлях до теки Size Розмір Date created Дата створення Date modified Дата зміни Title Назва Subject Тема Rating Рейтинг Tags Мітки Comments Коментарі Authors Автори Date taken Дата зйомки Program name Назва програми Copyright Авторське право Horizontal resolution Роздільна здатність по горизонталі Vertical resolution Роздільна здатність по вертикалі Resolution unit Одиниця роздільної здатності Colour representation Представлення кольору Camera maker Виробник камери Camera model Модель камери F-stop Діафрагма (F) Exposure time Час експозиції ISO speed Чутливість ISO Exposure bias Зсув експозиції Focal length Фокусна відстань Max aperture Максимальна апертура Metering mode Режим вимірювання Subject distance Відстань до об'єкта зйомки Flash mode Режим спалаху 35mm focal length Фокусна відстань 35 мм Lens model Модель об'єктива Contrast Контраст Brightness Яскравість Exposure program Програма експозиції Saturation Насиченість Sharpness Різкість White balance Баланс білого Digital zoom Цифровий зум EXIF version Версія EXIF Latitude reference Посилання на широту Latitude Широта Longitude reference Посилання на довготу Longitude Довгота Altitude reference Посилання на висоту над рівнем моря Altitude Висота над рівнем моря %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property Власність Value Значення SettingsDialog Settings Налаштування Options Shortcuts Editing shortcuts for action "%1": Failed to set shortcuts Please check if shortcuts are duplicated with existing shortcuts. Do nothing Нічого не робити Close the window Закрити вікно Toggle maximize Перемкнути на максимум Toggle fullscreen Zoom in and out Збільшення та зменшення View next or previous item Переглянути наступний або попередній елемент Auto size Автоматичний розмір Maximized Максимізувати Round (Integer scaling) This option means round up for .5 and above Round (цілочисельне масштабування) Ceil (Integer scaling) This option means always round up Ceil (цілочисельне масштабування) Floor (Integer scaling) This option means always round down Floor (цілочисельне масштабування) Follow system (Fractional scaling) This option means don't round Стежити за системою (дробове масштабування) Stay on top when start-up Поверх всіх вікон під час запуску Use light-color checkerboard Double-click behavior Поведінка при подвійному кліку Mouse wheel behavior Поведінка колеса миші Default window size Розмір вікна за замовчуванням HiDPI scale factor rounding policy Політика округлення коефіцієнта HiDPI ShortcutEdit No shortcuts ShortcutEditor Shortcut #%1 main Pineapple Pictures Pineapple Pictures List supported image format suffixes, and quit program. File list. Список файлів. pineapple-pictures-0.9.2/app/translations/PineapplePictures_zh_CN.ts000066400000000000000000001017521475760775000257510ustar00rootroot00000000000000 AboutDialog About 关于 Launch application with image file path as argument to load the file. 以图片文件的路径作为参数运行程序即可直接打开图片文件。 Drag and drop image file onto the window is also supported. 也支持拖放图片文件到窗口内来加载图片。 None of the operations in this application will alter the pictures on disk. 此程序中所有的操作均不会修改图片文件本身。 Context menu option explanation: 菜单项说明: Make window stay on top of all other windows. 使窗口始终至于其它非置顶窗口上方。 Avoid close window accidentally. (eg. by double clicking the window) 避免窗口意外关闭。(如:不小心双击了窗口触发了关闭窗口行为) Version: %1 版本: %1 Copyright (c) 2020 %1 版权所有 (c) 2020 %1 Logo designed by %1 Logo 由 %1 设计 Built with Qt %1 (%2) 使用 Qt %1 (%2) 进行构建 Source code 源代码 Contributors 贡献者 List of contributors on GitHub GitHub 上的贡献者列表 Thanks to all people who contributed to this project. 感谢所有参与此项目的朋友。 Translators 翻译者 I would like to thank the following people who volunteered to translate this application. 我想要感谢下列自愿参与翻译此应用程序的朋友。 %1 is built on the following free software libraries: Free as in freedom %1 采用了下列自由软件程序库进行构建: &Special Thanks 致谢(&S) &Third-party Libraries 第三方程序库(&T) Your Rights 用户的权利 Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images. 切换图片时,防止重置当前视图的缩放/旋转/翻转状态。 Copyright (c) %1 %2 %1 is year, %2 is the name of copyright holder(s) 版权所有 © %1 %2 %1 is released under the MIT License. %1 是在 MIT 许可协议下发布的。 This license grants people a number of freedoms: 此许可证赋予人们以下自由的权利: You are free to use %1, for any purpose 任何人都可以为了任何目的自由地使用 %1 You are free to distribute %1 任何人都可以自由地分发 %1 You can study how %1 works and change it 任何人都可以自由地研究 %1 的工作原理并对其进行修改 You can distribute changed versions of %1 任何人都可以自由地分发修改过的 %1 版本 The MIT license guarantees you this freedom. Nobody is ever permitted to take it away. 此软件通过 MIT 许可证赋予用户上述自由,任何人无权剥夺。 Third-party Libraries used by %1 %1 使用的第三方程序库 &Help 帮助(&H) &About 关于(&A) &License 软件许可证(&L) GraphicsScene Drag image here 拖放图片至此 GraphicsView File url list is empty 文件 URL 列表为空 File is not a valid image 文件不是有效的图片文件 Image data is invalid or currently unsupported 图像数据无效或暂未支持 Image data is invalid 图片数据无效 Not supported mimedata: %1 不受支持的 MimeData 格式:%1 MainWindow File url list is empty 文件 URL 列表为空 &Copy 复制(&C) Image data is invalid 图片数据无效 Not supported mimedata: %1 不受支持的 MimeData 格式:%1 Image From Clipboard 剪切板图片 Are you sure you want to move "%1" to recycle bin? 您确认要将“%1”移动到回收站吗? Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation. 移至回收站失败,这可能由文件权限、文件系统或平台限制导致。 Copy P&ixmap 复制位图(&I) Copy &File Path 复制文件路径(&F) Properties 属性 Stay on top 总在最前 Protected mode 保护模式 Keep transformation The 'transformation' means the flip/rotation status that currently applied to the image view 保持视图变换 Zoom in 放大 Zoom out 缩小 Pause/Resume Animation 暂定/继续动画播放 Animation Go to Next Frame 动画逐帧播放 Flip &Horizontally 水平翻转(&H) Fit to view 自适应视图大小 Fit to width 自适应宽度 &Paste 粘贴(&P) Toggle Checkerboard 切换棋盘格 &Open... 打开(&O)... Actual size 实际大小 Toggle maximize 最大化窗口 Rotate right 向右旋转 Rotate left 向左旋转 Previous image 上一个图像 Next image 下一个图像 Move to Trash 移至回收站 Configure... 设置... Help 帮助 Show in File Explorer File Explorer is the name of explorer.exe under Windows 在文件资源管理器中显示 Show in directory 在文件夹中显示 Quit 退出 MetadataDialog Image Metadata 图像元信息 MetadataModel Origin Section name. 来源 Image Section name. 图像 File Section name. 文件 Camera Section name. 照相机 %1 File %1 文件 Description Section name. 说明 Advanced photo Section name. 高级照片 GPS Section name. GPS Dimensions 分辨率 Aspect ratio 纵横比 Frame count 总帧数 Name 名称 Item type 项目类型 Folder path 文件夹路径 Size 大小 Date created 创建日期 Date modified 修改日期 Title 标题 Subject 主题 Rating 评分 Tags 标记 Comments 备注 Authors 作者 Date taken 拍摄日期 Program name 程序名称 Copyright 版权 Horizontal resolution 水平分辨率 Vertical resolution 垂直分辨率 Resolution unit 分辨率单位 Colour representation 色彩空间 Camera maker 照相机制造商 Camera model 照相机型号 F-stop 光圈值 Exposure time 曝光时间 ISO speed ISO 感光度 Exposure bias 曝光补偿 Focal length 焦距 Max aperture 镜头最大光圈 Metering mode 测光模式 Subject distance 目标距离 Flash mode 闪光灯模式 35mm focal length 换算至 35mm 焦距 Lens model 镜头型号 Contrast 对比度 Brightness 亮度 Exposure program 曝光程序 Saturation 饱和度 Sharpness 锐度 White balance 白平衡 Digital zoom 数码变焦倍率 EXIF version EXIF 版本 Latitude reference 纬度基准 Latitude 纬度 Longitude reference 经度基准 Longitude 经度 Altitude reference 海拔基准 Altitude 海拔 %1 x %2 %1 x %2 %1 : %2 %1 : %2 Property 属性 Value SettingsDialog Settings 设定 Options 选项 Shortcuts 快捷键 Editing shortcuts for action "%1": 编辑“%1”的快捷键: Failed to set shortcuts 快捷键设置失败 Please check if shortcuts are duplicated with existing shortcuts. 请检查快捷键是否与现有快捷键冲突。 Do nothing 什么也不做 Close the window 关闭窗口 Toggle maximize 最大化窗口 Toggle fullscreen 全屏窗口 Zoom in and out 放大和缩小 View next or previous item 查看下一项或上一项 Auto size 自动大小 Maximized 最大化 Round (Integer scaling) This option means round up for .5 and above 四舍五入(整数缩放) Ceil (Integer scaling) This option means always round up 向上取整(整数缩放) Floor (Integer scaling) This option means always round down 向下取整(整数缩放) Follow system (Fractional scaling) This option means don't round 跟随系统(小数缩放) Stay on top when start-up 启动时保持窗口总在最前 Use light-color checkerboard 使用亮色棋盘格 Double-click behavior 双击时的行为 Mouse wheel behavior 鼠标滚轮行为 Default window size 默认窗口大小 HiDPI scale factor rounding policy HiDPI 高分屏缩放策略 ShortcutEdit No shortcuts 无快捷键 ShortcutEditor Shortcut #%1 快捷键 %1 main Pineapple Pictures 菠萝看图 List supported image format suffixes, and quit program. 列出所支持的图像格式扩展名,并退出程序。 File list. 文件列表。 pineapple-pictures-0.9.2/appveyor.yml000066400000000000000000000157661475760775000177640ustar00rootroot00000000000000image: - Visual Studio 2022 environment: CMAKE_INSTALL_PREFIX: C:\projects\cmake LIBZ: C:\projects\zlib LIBEXPAT: C:\projects\libexpat LIBAVIF: C:\projects\libavif LIBEXIV2: C:\projects\exiv2 PPKG: C:\projects\ppkg matrix: - job_name: mingw_64_qt6_8 QTDIR: C:\Qt\6.8\mingw_64 MINGW64: C:\Qt\Tools\mingw1310_64 KF_BRANCH: master EXIV2_VERSION: "0.28.3" EXIV2_CMAKE_OPTIONS: "-DEXIV2_ENABLE_BROTLI=OFF -DEXIV2_ENABLE_INIH=OFF -DEXIV2_BUILD_EXIV2_COMMAND=OFF" PPIC_CMAKE_OPTIONS: "-DPREFER_QT_5=OFF" WINDEPLOYQT_ARGS: "--verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler --skip-plugin-types tls,networkinformation" - job_name: mingw81_64_qt5_15_2 QTDIR: C:\Qt\5.15.2\mingw81_64 MINGW64: C:\Qt\Tools\mingw810_64 KF_BRANCH: kf5 EXIV2_VERSION: "0.27.7" EXIV2_CMAKE_OPTIONS: "-DEXIV2_BUILD_SAMPLES=OFF -DEXIV2_ENABLE_WIN_UNICODE=ON -DEXIV2_BUILD_EXIV2_COMMAND=OFF" PPIC_CMAKE_OPTIONS: "-DPREFER_QT_5=ON" WINDEPLOYQT_ARGS: "--verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-angle --no-system-d3d-compiler" install: - mkdir %CMAKE_INSTALL_PREFIX% - mkdir %LIBZ% - mkdir %LIBEXPAT% - mkdir %LIBAVIF% - mkdir %LIBEXIV2% - mkdir %PPKG% - cd %APPVEYOR_BUILD_FOLDER% - git submodule update --init --recursive - set PATH=%PATH%;%CMAKE_INSTALL_PREFIX%;%QTDIR%\bin;%MINGW64%\bin;%PPKG% - set CC=%MINGW64%\bin\gcc.exe - set CXX=%MINGW64%\bin\g++.exe build_script: # prepare - mkdir 3rdparty - choco install ninja - cd %PPKG% - curl -fsSL -o ppkg.exe https://github.com/BLumia/pineapple-package-manager/releases/latest/download/ppkg.exe - cd %APPVEYOR_BUILD_FOLDER% # download and install zlib for KArchive - cd %LIBZ% - curl -fsSL -o zlib131.zip https://zlib.net/zlib131.zip - 7z x zlib131.zip -y - cd zlib-1.3.1 - mkdir build - cd build - cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% - cmake --build . --config Release - cmake --build . --config Release --target install/strip - cd %APPVEYOR_BUILD_FOLDER% # install ECM so we can build KImageFormats - cd 3rdparty - git clone -b %KF_BRANCH% -q https://invent.kde.org/frameworks/extra-cmake-modules.git - git rev-parse HEAD - cd extra-cmake-modules - cmake -G "Ninja" . -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DBUILD_TESTING=OFF - cmake --build . - cmake --build . --target install - cd %APPVEYOR_BUILD_FOLDER% # install AOM for libavif AV1 decoding support... - cd 3rdparty #- git clone -b v3.9.1 --depth 1 https://aomedia.googlesource.com/aom #- cd aom #- mkdir build.aom #- cd build.aom #- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DENABLE_DOCS=OFF -DBUILD_SHARED_LIBS=ON -DAOM_TARGET_CPU=generic -DENABLE_TESTS=OFF -DENABLE_TESTDATA=OFF -DENABLE_TOOLS=OFF -DENABLE_EXAMPLES=0 #- cmake --build . --config Release #- cmake --build . --config Release --target install/strip - mkdir aom - cd aom - curl -fsSL -o ppkg-aom.zip https://sourceforge.net/projects/pineapple-package-manager/files/packages/mingw-w64-x86_64-windows/aom-3.9.1-2.zip - ppkg ppkg-aom.zip - 7z x ppkg-aom.zip LICENSE -y - cd %APPVEYOR_BUILD_FOLDER% # install libavif for avif format support of KImageFormats - cd %LIBAVIF% - curl -fsSL -o libavif-v1_1_1.zip https://github.com/AOMediaCodec/libavif/archive/v1.1.1.zip - 7z x libavif-v1_1_1.zip -y - cd libavif-1.1.1 - mkdir build - cd build - cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DAVIF_CODEC_AOM=ON -DAVIF_LOCAL_LIBYUV=ON - cmake --build . --config Release - cmake --build . --config Release --target install/strip - cd %APPVEYOR_BUILD_FOLDER% # install KArchive for kra format support of KImageFormats - cd 3rdparty - git clone -b %KF_BRANCH% -q https://invent.kde.org/frameworks/karchive.git - git rev-parse HEAD - cd karchive - mkdir build - cd build - cmake .. -G "Ninja" -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% - cmake --build . --config Release - cmake --build . --config Release --target install/strip - cd %APPVEYOR_BUILD_FOLDER% # build libexpat for libexiv2 - cd %LIBEXPAT% - curl -fsSL -o R_2_6_2.zip https://github.com/libexpat/libexpat/archive/R_2_6_2.zip - 7z x R_2_6_2.zip -y - cd libexpat-R_2_6_2/expat/ - cmake -G "Ninja" . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DEXPAT_BUILD_EXAMPLES=OFF -DEXPAT_BUILD_TESTS=OFF -DEXPAT_BUILD_TOOLS=OFF - cmake --build . --target install/strip - cd %APPVEYOR_BUILD_FOLDER% # build libexiv2 - cd %LIBEXIV2% - curl -fsSL -o v%EXIV2_VERSION%.zip https://github.com/Exiv2/exiv2/archive/v%EXIV2_VERSION%.zip - 7z x v%EXIV2_VERSION%.zip -y - cd exiv2-%EXIV2_VERSION% - cmake -G "Ninja" . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% %EXIV2_CMAKE_OPTIONS% - cmake --build . --target install/strip - cd %APPVEYOR_BUILD_FOLDER% # install KImageFormats - cd 3rdparty - git clone -b %KF_BRANCH% -q https://invent.kde.org/frameworks/kimageformats.git - git rev-parse HEAD - cd kimageformats - mkdir build - cd build - cmake .. -G "Ninja" -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release -DKDE_INSTALL_QTPLUGINDIR=%QTDIR%\plugins - cmake --build . --config Release - cmake --build . --config Release --target install/strip - cd %APPVEYOR_BUILD_FOLDER% # finally... - mkdir build - cd build - cmake .. -G "Ninja" %PPIC_CMAKE_OPTIONS% -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=%CMAKE_INSTALL_PREFIX% -DCMAKE_INSTALL_PREFIX='%cd%' - cmake --build . --config Release - cmake --build . --config Release --target install/strip # fixme: I don't know how to NOT make the binary installed to the ./bin/ folder... - cd bin - copy %APPVEYOR_BUILD_FOLDER%\LICENSE - copy %CMAKE_INSTALL_PREFIX%\bin\libaom.dll - copy %CMAKE_INSTALL_PREFIX%\bin\libexpat-1.dll - copy %CMAKE_INSTALL_PREFIX%\bin\libexiv2.dll - copy %CMAKE_INSTALL_PREFIX%\bin\libavif.dll - copy %CMAKE_INSTALL_PREFIX%\bin\libzlib.dll - copy %CMAKE_INSTALL_PREFIX%\bin\libKF?Archive.dll - windeployqt %WINDEPLOYQT_ARGS% .\ppic.exe # copy 3rdparty licenses for the libs we vendored for windows... - mkdir licenses - cd licenses - copy %APPVEYOR_BUILD_FOLDER%\3rdparty\aom\LICENSE License.aom.txt - copy %APPVEYOR_BUILD_FOLDER%\3rdparty\karchive\LICENSES\LGPL-2.0-or-later.txt License.KArchive.txt - copy %APPVEYOR_BUILD_FOLDER%\3rdparty\kimageformats\LICENSES\LGPL-2.1-or-later.txt License.kimageformats.txt - copy %LIBEXPAT%\libexpat-R_2_6_2\expat\COPYING License.expat.txt - copy %LIBAVIF%\libavif-1.1.1\LICENSE License.libavif.txt - copy %LIBEXIV2%\exiv2-%EXIV2_VERSION%\COPYING License.exiv2.txt # TODO: Qt, zlib - cd .. # for debug.. - tree /f - cd %APPVEYOR_BUILD_FOLDER% - xcopy %CMAKE_INSTALL_PREFIX% .\cmake-prefix-copy /E /H /C /I artifacts: - path: build\bin - path: cmake-prefix-copy pineapple-pictures-0.9.2/assets/000077500000000000000000000000001475760775000166575ustar00rootroot00000000000000pineapple-pictures-0.9.2/assets/icons/000077500000000000000000000000001475760775000177725ustar00rootroot00000000000000pineapple-pictures-0.9.2/assets/icons/app-icon.icns000066400000000000000000016216101475760775000223650ustar00rootroot00000000000000icns#TOC Hic073ic08vic09C(ic10`wic11ic12Bic13vic14C(ic073PNG  IHDR>a2IDATx}yGuUu̞Ze'@  ؀clɐdQ#1/1"0`o u[J{]~TUwJ{JrNOOwuuիW18@Gs;:խl tD R Df-[wvW<"pT@G/rzYZ y`Jz~? D !  G5+Ɨ>&;J$OΙY)' tFZH pbp(2B 0?D}KÎB8*i3C+f=bvljFpP " a*m_%LU8*`7k >( !N%sE:EALF>#ݠp6`''%jNH!Aoܸҧ:G8\ H^#NX ̧4(R  $ )  +u龉‘#Fޱ \zΈ-2bÏl |vǶک f$$0Xް2f8"ꆻkO:$a{JD %d~g{= v#ܤ2:~kw6if+t$ UW}^~(8E2TXݑo.GnmA0D>%-ގr$ه~0d JF5 )qf} ?۩a#kY7 Oӈز.(R`UbR#DÄ8A0\N@ sٚAI_K;qn8,yMH|*tCD#JH԰ At@Rps\dğa8)s\ !Z5b5k.`8k N\y [Ld<8z+6a9<gU yQk{ž 2(pĮf0%@p':65!T p[L74 aZ ` [sf9BN2{"η #~l f;c!j+9]kõHRwfsktFC@BYy HA#ь2ZVeP` wP#te@: !% 5ܸ>>g4/]+|9 H [ H VP[b@AH!.ـ T<|1G*A0"@( "FrAa1sGCx$Jm@XX"ȗi3S y"X#R+m_W}d1}Ԍ'3bopC\s5-Z+09q/bNw >r{z[d񢜁-H"t#Q#uPs1_P OijB;hD}*_],ACkmMHGA3͟\fM=ߺxFQyRX&P1xZW}q)K+oUzZާ '\4U%I@`l1C1C!&ЈYTJ< Fϓ`XvE"x+o6Fi ơ^PVD.g9`/l ukC|W4J"RW^u6 >'|""*#0i8@>JJgqxJ#O$1z<=n |;Rz ahGD: V Og Cx~o.'@kІ=8 G::+t'ؠIbpVz1O9Azq¡ JFnf4q#0skBӬ' ݜ zI}eORH)6`V47ݠhJ |z,n=!x:<4I/mGVYsfX 2hljq'E |doil΍W]2k펛v_29* 6 vbz8ݧ3NԶ0a޲)YKp Zx̐coG\ƊGsKK4 l]L&iXʌ耪ke؆3a4G0^ 8COqzCX^2nBH,Xsύ kgfx˖`%S~Th_ښd1n/@_%.$G[舅 M@a(DP @qZ"2eW"+`!M~ 3,Z֌ν3#NaѲhmk)eGH F\dk͛'q@GG(vT) dpR؅h,Ai }4]/y)y6v,z [ !`B(е?&d`_\@b+JpwP?pͷoE u|/| 8bpRO~dЋ,h B`pڇ&Kxfx/G#7W5⬚!l (F)CrDo/Ǝ^,{ # .B1.e+)B>YR o {ۧ\h|@b[a2ulu,b˟8Yhda.N1A h xD.Sr!*F!0ME Wd0;c& xzaON!uf"g 3ޡ-8wh:<-FX`hp4"`fR),9nYVJxgT8~8- esJ|R}g(Ht,!m-__@#Q6hTX"P$Sv26e#)l Q M:gV o:8Q,ϭt]-_-7\*&`fH)pb4b_ B)ர~ql\0.J/?qyRGsc"B 5&K/ͥ@qމÏg`hUՖܝS94 IxF5^=6}uqr߯ФXEKcۦPJ.m3ZZ?̠'3rOMc¸^lɓ5% 0rB ~mgs*@asͶЬ5#ЄA[| UA^Q$"^V6)` ƁƓĬw3P!Zg|_5f̜90 ;m/ч/XƤrЬ(d< lLXYqf̶Y\FPcn ^?$Tej6*upnv^[׉4x+>]"k$Bެ Vmg&* Mz8`#i[`LP3$ yt &aߜMa8yU8~yB/ $0bщkXkhgaѰkވ*MXkn|i& qXѳHg/2Jpm,PZbbU$xySTf恸w.S# 34#CAD$&/|hN}dpXv̱I1'k(P89+ Ok܂7lB(ŀR(EgqNz!>X?$<(xV)>& ic SRKvs'v1 `͗/ QŒ2;s܀r~$vG T1I.8̫#>ql:&ԂbT5]`fdZ Z!P x_f=^ &yٗ~@!! v pC<JV(|FY /+}8a!d[(R%>yv(D N(Ȉܬ@cU0F ՚R0XF%?4R ZmtQ^F杅&ԗ!\D7aqupL #輖7;@fJI|j/ֳ W gLuNbq22 "M-@t@fƵ]L0 +*I5jx_ܳQ s { 2!liǎ d:0s$%5\X#!SJ}]J,(8f-c( 1g#lBHdʪER$>%(lr%ፗgS80hWl{ИИ1⦐fX#d\у^cZvD`2C*(Q MOBPCYjV 8a 4#ڑWwŠVxݏkB (J2l9p=kw fLv27qXIM;R%-UnGX@F@$fм$0+R RaoJɤ$=P;%oP Z+Ȇ6l3`7XE6 d9Y/(q켁hΦpSUƫ-ܖV [P!cVM`nx.u*f hJ x-g!Tg@g7@Mgx7HQzȾ$8])g A`X8;oN0 }ڗ ? ([/'RȂ0L(1֭qD#3;^.:0$>vRm1ƵԱì K0렽ix Jlgɼl2cC#&\'"mu[}p#Sk6uSZ@6Cjgx9vaT,04~ #?4rRJ_"Y` CC*8 P+S4:Vfw=h8X2[xds*HO$TQ*ͦlj8C"<2V"{T' 8բ[R* J< <ʥ"JV%^*t]نd%3/ КֆXT-DU'h"9bF R 1GLRz9!K&Kf<(pP4!"Q7{9 ^k"H*:;)A  !TLTWF(Ab.nlCZgPhl_DB"5e֘Ch. a$`_~r~JS $ƁlIMO#D!Q܎VQ_S޸M/yR(3u#:F|f/A^ Z g2ztbhonBTnA@x['JGsV@nf<3~1C]߸o2X4) Hr~MP-|z2aIk Te8b>Ub7 ^ď݌xfɵT}WFI (ѻQt=TahZ>`DTg6]s+PXzW>&NJ ׋ؽAyr8RahT7|xҞA+?_UhZ݅Ql4 9f@kތm/Bz#|x0P.Q)Q, C4z=~ ¯FX* Ar {GQ!-),\~pI !APكϢԷD">J\,! e O"u.aZx,XsX3]2=N:K HD, *It$ mng.@{,:ap狨 tg)dJQ,0M6B8  (RRTqD>~;N=RzKUrD読cܞEME:{ {,%tB.voF?tP2*/j"( :@  >SѸ{OwQnNj mH #I)y^wؽJDa'0D~hN>\`? $p-?#㾯v]`憻^ w73Dඎp[ KDh0A`",raŤpdb R'}M~P}5>8miR:א,ŒVkA,5yfFڮ l]O46#;Q]r'qAv=3to~$ ֡DrYrJU*yC. M%\vOpj2HZCiMT M,SL2 M`CZm^9 Lɼ7 T~2{E~+w=yUťi~VW} :T.S w9~R2Ur3 $ Еvٶ &E[OWp'Èypb$;]lJX(Lm}S#~8LPccbh&T-=|%yis^׭9A0<;\UVF+H^E^-W߇~oaB3sy^j}'='|0Wx+ko/*qo;Nu<.ӽR.E/$QbcԳc "h] ~ϭ=ɶsX;IϴVUQH'# Z$œCN5ئ)(waܷ9D9ϊ.wJmըOcBj*鯄ϑitqC~&dk#0al+~ i9&J~t=8j C; VJ_}Oۛz&\ׇ+ ]8;`N&}<#j|6.1!B2Ѕg~J_QGZZcu-PU}ϧq F0#ٲ ?m>=ݜ`9\?%];Q1B@k_UG:nlo/@.cU\o9>11S,Qp\F:rCEisauAktill2`+AXJqZ"WZ0u E+PhYGen.Bi (l\vi`||]b໢"|Oq wpujDP w Hk&iɞC?>N$pJ;AY/(w['X't-H]VgMG /_wvM !=oF.`Tp>N%T]8ᇜq`x SLF#۫=4j.Hʻ=aT8 ^{t!J(^|Qc?d, i&RZ]3sG>X~(4vd殄h`v'޻ϩ4& G'$:OI$-^4U &PJ?cO^4.RiK>6/|+ݦΏmф!P @ַku>f0: U|<뽧Z')ʤ7)v↭7zDjOL$ꣂ>X#YҋHW]ɍ%AGuMY/ 넦'!U"2^PPJqҦH*Zw /QF CN'xG3QGG .~ !VGjBJP]{khZ7~TKmBHԊRBݶQFpj7_uQQjqU.M)+“e/5kpcTad&TA(q۵_V Az;ɭHGTW}lBhpLLܰ4ǔ wfiBzuut?B1F5|,>55t5O3q<#iu/~Pkyͺp-a' B/^w'18 pKJVK5(DVޟMcp_#WϠ B|ua2m#]t+4vh5L6UJAz_'z18f; /0~,k#CZOMcp.0xvD&{gOcp[RZfT&r18BK_ǵ,PDHkҭAX{%RR*QHAO,aXwĬKS!lzzD;FGܰCkV!AgLI=fnbLȖ+k˃%pTxE&k=[XD{"âK' =* Jſ^N<8r5ߵ@K?oj([bWJ0,ko^on㽓y18J_WӥDX覒;&laLe18 7|wZ\g׬hBUA18Ǡ?DZIENDB`ic08vPNG  IHDR\rfvTIDATxw%YY}v:9tݓ3 f /W LOATRwbQ/NzUF &OOprکj=V{OW\U+AmFmFmFmFmFmqfBVm,WɟaPMH1*HOԨADW5JUH޵o1bț|Qġ J@702 t 8 % @YQq` d ":#u392XwvuUA1g(M;uM[ٌp([ af&QX! GGs:᫳ǯ~)>mkm̸p'tzHT|I OG@ }`;CN0~ȏptVs/b3X*2nȩ1ݪfD|J`@*6s>(0M1D=8fn3mx܌nGU+\ \x9߹<p­|OD, ^wVm, sg\عF<؟_'PWim>0osiQMf 5݀\Jʲ}Idί#ԍ&W iRQ.w+_UGE @ {t)3~x)p9KDDoBK٥eY1pp  ]p<8mfZh3&xu#ZR x5S%KOjI@֚M A[<|q}㲿;=X4 =7@x F :kKz|Xzo`4mh7 @3 7#|AU{UZn@#׿A_҅ImYAƗtl%[Ѯ6Aژ Xh\YEs9{3n,X! `!_!p-ZX/1'-L !k*4ƝZѨ61mɟܓb)%8y3|ƈ| .{vG g-صo/T"Xl9)VczoB "W rs9컬 OIz!R0zͫ~˅n~oA'AC,rI"̏fNqhU"N2i[Lfujo?ϢӠ7\>-^w_0ёy?'YĐ^VOoGl.|\ l!.Vx|cq̿T{wKEDDy{ Ei·mfO"a NM74l362:γxpDC͂vbE%X`'_J71[>ۧ`g`4o%YݠKI8Q@h6|]яj3_X/bފ6mNXj@/귚dũAђ Rsq,b1?VɽbvQϬ}/7/6V%4>k4eͅC#Q1uO7s`K4hd 49Q]z:;Ǯi 8nw{bG;o z?&d' 9󣙍oEf)'_+&Z& Nqـnwx Ӟ @mO/( m0v,psD۪# O|v_;m&o!?a YVK7gӰe {Uu ivqU"p @9CLKZoI)i0o oBnZhM43bYG_$a*0?A9Wq!jV#3LnPT? ؓ%H6c%%[1 ;.ó~j>E$"צEcfR+ ٸZ5ТqڐE< * ho!W?Yx| mν7#~I9\iotURDgTŸTƌh䒄HxgTXg~ M5 4  ~x=W`n }3UA/cT7Q8o6 n,'B6eݷ $4'_5dRh'!ʓaYM,E17u}6/ wcW<>uO'2s$D.oV͂8D@MfI&z&|.0&Dj[uf|~}i&YМ'{t[b״gq?Y0D0?'dfA6oJ{0fB +%.FTXEٲat_ ?Y%4HQD"I3uͣ 8+@T26{1'|@[E)ׂ *7wfF |RS~|jl/~߬Ih-?pR~ W=Dh`g`trgb1 UcKV7y+Uy(O Rf ֍$$d?- 3i`3SCo^F|^@/=H96g `>km/)qZ*R~B ;c)?R)U?,*&8U|D&vdX$HqUn6NJlDϘ8QH$4!C++60_?\* ׸*y 7C0VYkKvs/0f?LgK\ 4md?]V1T$kLb߬ j OKz+]F >KJ7l k.$N(~њ!L}vfW[Tv yJ%zk $_c8D5d;O|I]*5$z~6M_GS47Γ =6Lo 𐻨UI0QS =5sU71IsNK"ot}/"#MFDNnR>eFQ뛄+mQ=.,KISzKvZ;O &ߩb>w HS_wI!I"|[g_7ɓ$#V8p ]!뢸r)`ȅ9<\ MY pݲlAɟv4(hCX | )Z{Wpݻс5#8Ε6K A7J/(+M-'?dC،pSR`LsLQ>뺛_+ᙌFMr3o?mloB?kv}5-4,gҥ“Ȅ  $9*p:"eGZˉ|  ã<&d>:-3,[,` 6W-= kP-?=dI]}(y3 jU~.s`Bu%0$!룯㱑:݋:[; ?=Nogsw.o4]o.-ПdN⧑jopfp#M/c\ tz8t3N1Pqb"Ge>8̒JB64e.jYlwҳ CJi{_6.Il O"';9Xߖa!M5RL }{u;>2puWlϽ@u'|34e0+ys{x$ mHY_yrC753Vbb$>Ri- I } Ó USdnIMRKHy&2y6ޜoy7s{3cz#ǪGw· G \G*u)&ƚƚ87S}* ʹ&EhE$%CIX8Ww¹ܚn?R ݯ ">mz:*'дHޓfftmeșH @.)Bd}`@|w0\Q;N7g&":+oJy [pJy:x8* p%R5}촊%2Rs2l3TmaNsfn3.4ڭ}Dm]ܩc2Ȭ4f0Bqr#ۋ3Ƚ-GqԄLIs6p@S]{_tХ6@?RG~ɰm3^6]9XUG(t2^~MKbNBq QRZBCGJFo<03Hrr~;mtjFYDG;u mA ɼ#'^ޜ_†B8꧿MĄe$A󑞧?1 _}']G9?A?Z V6)yyևL4 aڒQ$~q6'ңy|8t{Zn;tpP1p=聝~op[. =e+xUPQ`}9G >oDt4-tswɱg)בUDyBGܹ&|q4sMݩ,$?M;XU MKc| s錁p9}j'(1r)H4()InTʳe:

ȝt6`iiN}"}(h>JeZ%̄Xۿ7K}ۜw"\&@8U:[kkf'1$6 "I柋ôts҉9f8&(u\k?e\.GY$E~Bo}-]#PIUy@</N#pj”E :[SP5)-/98jhU0 ZIFLSw'Qjr`ƿ=ʿpy"JyPνR;V+\RCM~*0Dhy3Є2#~_u 1⃳kd!(=O;cG ]8$D?&# 0'ӏC g&OP/Oa1j?[)b7nG/CG\<}x]tʜ:Tkw:)eʙ5x|#2Dt>@KKHd9 mh^Yrgjt.:#Lʉ07^kPG_ ]G1as|q+ \]Po=6ŗcLNUeXvO|c^g+o"!-3;-o4K?e+5ԛ3M*ykV-b*77Xoh[ VE5|+FN7GR.=Sr9zذi]=xu;.`;Y-<2Ś;lZ"c;?NuPbK(L8$D+"0-Ed]8EW^: :;I9~!;?sa9PM=#2`&e:v\p.ݽgӵmnϥq'_rN8,zOJۖh\Ɠ?h9l†-&pJTd9غ}Ri+ ]c㳅뗧,@ ~~<3/b!0o&oqlu4EsFo k+8o)Pra^ 8r Aps96m L@n9\oڈ:'putv\amuiڬΥ,,ܤx.07vmK:wJ'5 V5d_%U_8z[PQhv/qmrlڶCXcyVz7[.gfi9 r!ڹT:m;4H$4?g2R PdC6WxtƧ2Plz,ʎ3c6 h((lپcçl,D`` [oQ:2ySj1q[fgϔg}?,q 8/L &\ve}D!+Ut1a xLc=i[@S;Jo}+` d"ºulݱ|a;c jZJNgg,CcvO&.\)WR!8Dc:{p0 *vQZ[V9w yx ,v=bypcy-'TV٣l~-0hpQUb)<7~8º!J>_T^U^}O33635|!_ূcȯK%cCA'z}܋Zjeb/, k"HCh[qF k!tQLJɅK9e3Eehst?hb}, Ý9}1fLc/ sADXa۷/t{zvcRǎYk~-b12!,M32TXhr8r i(j~եAΕQd\ Ϧ#2ȽSe8RG\^Q' Z!2ʞ/}Stnbq^Oi栳þ2;jq"nzlF>[P7fVgV]ꗸen򂰄>С;*‹/ 2BpT{V]W-ڣJ DHz?!~Z)UA‹jPTϧ"gEc}rOqF͎ܴX s^gvfvəЦ Z?hde`Hǖ1ˈ`\ :j1C@I)'(ByQ>'~h~hlD;&l Ӆ%CER8cRZǃn..&Awolx96lڀ6?[DV;|IeJۋ8S@[>~3R7H`˄/,Z4 LQ˿ʯ3d^.Ť]cHC i}yxF5|p1RmXԟj=1G1=1٘YSL8p\Wy+^tY ,P00OMbZD4n6Pť 쨟SvU5'Ƨãr8pSWՇ5}7gP-ЦWpr*@d-Kœbb[6˥ϱ#xse i>+Ϲ9۫_N8 {#繷.nlU)!S;˦`S}"4?S)ic JyF!>D5 U|7GNbnظy#n-"0DWw"z#>pq+A>i<ԍ/M+Sd;mf_ p }Jڲ|üx.0';pU 5/L1VeAlj@xnG\Z;23 ĉ'3 <mc~ZJ Z7aAZ8v(;)sUw7jiBs̘H|ωEf"sQCxiЉO&/6m $N@v],ϚIczNELіcM}~Ert\jn N?Џ3㗨 \zQ^r=&O ΃rV4N] fYrj& GxطY_ J -"<(vv(fM >캍*q5}]fLE(9'xU~g?Oa]B^Lq`Z2qrз 3tήNz{@'NDx6Qε/_Sg(rY"玜+M NQ=mÍ<"N4"mhg7[lώ9رL8ўCKQa,w#his O!/>.0 qk +c_UKz7C_F]]9Ńyg9+j%* tdXP>ܔҾ0OM#5i ^&nIDS:rKB MsY.;A0y]rjp'}Ct:+0IPDuotog1x)m}PY_\qܕ2j CDǫ^"Xyȯ%pބXhBɯpl+ITg!,!&JoRydXOaDJ56 Fm$uWi3];O*ƾyRqGLDL|#?k2Yn:sф~a_^O%%2$KqWrq^r^34=xڠ6O4мl.:& L'!Ʒ0>wu*)Oc/ \h>.?Ef `q,0sAB+*۪yaErXA}!>^)ЌBZ$VrY~7Ѱ!\hDbnMSZUիV%>rY:y|2ߋ 3qɛjB&PiGf;$3h5I=&T3> W6Q!KgJ4? !NT}t>!=77kቅ˶#S^|,b-Qc/}?x+ ngFKhn @@-̂ii cPOo&5/Qz[lx6kc!4 U69I3ŽFM iroj!6t+c,@:>0φl3ZnXL ʱ}yrqR}%Gϔh@0K0TL3zQJ0(NeSA}e=BFRuJ*m<)"xB4G$8b uʆGqy)JX[XФ]A.hOWsa~C>74.SK0^BS:Z$jO$Qy!IYVGӝG$RZbk8kCՀV8V˃8 8;0*']fN$A˲L^W#GOZU8XLؖ!`*=pGG@O|Cȍ> pXq\|'_p$W|>};n.fPPQ ~u9CZY;߲Q=< . PDe 1[ " `Ȩ-lE 21q΅wn@7ԂmI*@LxܞSm͊k̈́O7ѳįXFB ~$^RI:7@ƒy"kj9?_O& RÌ~_j|]p&/މ͌sV{ٕOxd"P-׍2ĩI8ESe#G-*LD!fu~N'=oՑSF' :}2cT5&\ۓL,@M U7>UЉ)|/spjOD2q\4e!Jr)\s#? sf\Q۝ϊ3^Ҵiipj~xI_j, )՚k)lLb"T6$ zʖWnJYS@~Ҍ!OEH qeb1s2Vu70F>GGf Y8|ɛ"6%D :n楤7UBNov2Y<] ]—n};߈+},I$.IHSfŚ%McIjIDO㚩d$tF[֛ϴw.AG&*A v WGi=c)@Dӆpp8Q*ӹ,¶4ޭ}GRƂ6UG-a .+so,yK; ̀aIhD4I>b2Q* n'^DV[1,S nf+:ShlBCo O01S6'?$ h1$khy[֑-{[d%O-u&CSFcl:Qd `W6j17 ¢1ޥEL:1P$߁5wƔ4oF(}htxj\pkxaӽCAg *l!lvPFqtP3xtf (D5UZ445nZ@&kJrH:n:$_^zAraYAÙY ܤ&A3S"MMFHIo4nWy*="DGҟpD@6 "FcL&el>e3@U'yOd-F%TGaj50)"%^҂?9W)"&ݦHS%0I4+qSc:R9hv6!F#iP;)mjlHm]v#co{C#LCO.h' q1S ӛp[1cpE l80C: ]lxɕ:qKuE_P=u(ȃ O)Jj_q,/|a'i*&%Ù{V(n\FgK &ꄓJ2}5qv ?0~x0qzLDDaLzREɤt$6$7a\,]NrѴh*[I42hAXQ.+ΣV82<'$'Go[~)Iꙭf'OPYZ#pgJXG:A_F #H6Ac'ĩqqvESFֽ(z7g#YqqEAQM$MQQb18."TTJzըnÒL P$ ƫr_ "Zl3V[k`^ &ȳmC//QcRe6ׇB 9 _|W~ =8"&5Ryª\;@Ou(~yr-7e vɰ w\ ^$ sUbV(4Ԑs$4I>U^rAu(όc(1mA6gǬi A'*CC.J^J:.5$m 5]HVxlRڌP NQg T|' oh1HC4@ϹT.݊}<\!O;ùlpg@`qF 3 [7|g*z,_`kP3;*f4QZlPmm:FƦdE֖ētT3)&ئHflƺ o;~dHI4qWwa4ҨR9u`Cwvfs; $1Ʈ|SRTO>~l?@b.ѓ8b.,0ro驇mGHXEe{%$eE9L 8uۘ[|uŎRVU4F).?\XHD3 KW*6= OwEFs2鲮;}<'Oi'6&3 c!~e#üȹG"ZO~lƜ|7'®;5f=%5 %ࢥ.tٞhPn)IJdKHj)Sb[!Dw=C?aAuFCXR='E(qimݑ{T[fkӻ3GA-5u{/QȮpHS0=DMF԰A&X/vwHń3=+>Fg10Im8ՑCZCa?tCKu\&P~=.-<&2*&dMֵAaShx#Xf XouZ+ [:UX$W=q[1~}=?68K.q\pUs4>Ņ' vlχC z>ti\&_"3)e)q݈kNF%% l{Sp@ֹyT5zY6 PޯI B)rP{͈5$A6_Dxqw o>U})oz-1[0j[2vɰA%e GN<ϣVPT*ԫ5*z m:CP /P()J% B0h8 |?\eå,a!!9ND}4褡49 J 95D7CMٚ\x/BuAU],ڲ, 5{nD0|1X&:"_~X ;^VEwEl;^MR/OY=PCwISY$N#F$2&00L ˳3Vj&1ZLXe"B.P(R蠳r|PhxƇL0Ң*#.T lpIL„csќkYd͠CȚz [o!lY~?@(uk>ɭRDYaM c 宑szvQt!3~8bW3cqSk)ͨW3;5j\K/V^1;3(|^z)JVZQU#slyDSiI(a, #1J]ȟCY:32^K2 lё ΆP=LſGQZ?,0Q9W'lqBJdB#-@0 z"Hm>=B qƚ0&*LAP-`fr2!E-C}VLCO_?]] AD)|V-)KR<(HԼ`Zq<\0o_3@*I:݇7~eTgN7PTk) \e4(_`΃C2ΪqG&s!YQTEE:6_oߗ^y˜װ<ߙsQ5avzG8~ ##xzp\*q=15>ʑ8qƆOPAhs|n k:E8:ǐ '{%?p8:›eI%T'\2,)N͠~Y[m#> _g٦t%mBDx3:v)S ̸T!v7$HLS<;WB lI*3L30Hw_\:%BJ9 p#Q%$*|@#E*n.`V:b#bmu)Xomjc-EÑ&`ُ!YwR/pf"bQ҉.[IeMNm[S6*J6#ȘPטbjb ^gzEc 3Ӕ+e&_nreCZ;]MGb3&L _\c]|L̚u+XX_-ZGZ~惰č_V *m m. 2Yٗ@jhL\qhdDŽ1+AC Ӕ=Xv~ `k`Gyfq 3T˳tu;8HGw=KDO˾740$dp4㹭|~h*.g=f킡Mw_{xEW]h}tM5Uٔ/)ը txAkN:&kϦ k c'3zلO3cء8rip_`QgW@x/}8󩓋v VE20J~Noo)aW@}ȍ +*?j0V>!m(L+ol?EDꔺ9 Ta*;h&\103=ȱLONbwDՙy wT~K%rG/hn}ŋH1f)[a[X4admj73qs)Z)T"KjN:74_Δ"[Jq4hv"qΤ̈m@{Ñ470& !ZWgblǩU31@HPjCpCcԽ@ы|Lb*7ȣK4|˔Ho˼봆(ԧ6' TIV|?Gaf58Ma 4|f o1 $V=7L-UXqQ8?>2XLEl=22W|o{cӖ&5Sn?.aZzB'Oo3ߤ؏nrbMO#AR"6zZ@H}$-m %m-(Ηo2aq'L_HO%=ϨQfJeva33阮Թr~y|gqۋ)^¤ۗbѺ/?!c1oW;0cs2[Q+_Jl6T~KGhuh+(-Z7w3)maOec(O0>2bgcc3|94:uฌxpNIA÷JF?tI9ձ#+}HΨdb c{#<·8#E.\ʔ R3V~i!W$("~@Ǐl ]q =وUVRFIegDs?61gt\dgҹ\KOOcMYLT}w63 *>j!`vmb=E}r3<ڻu?~b ]Q_jF11I L> ZKϠ' Jev |'Ѫ`s'؄Eq3'&ř`25|wʣ_GM*^="wWό38~013 kڹ&mU@%Opk+<65ƅlHq:GPS>}wSxScpuwGx'ȢQ5>j<5?G5kAP%Mϖ t.b'/J_UԧǙ=cLKP8*?|ӷ|m ]7)V~ /ivx%&LNiY r Ta>z uq`F< ˜}}<ëG-*tQ]OP)t +_6;A}zf\gKV/j)΢8./U-z&.ZE XFǐFɓpρ`nzTofAO4=*o`Yz3uGs6rl$\bhG^Z)SVFU2>LÇ%K̉*GU񧖺Uc$"O.kLC 6L>; OC P@F SDٌ&Xdps9ŁLAW{a b `D; i{UZ(|lͦg/WʰI%!;;rZ|q(m`cgQA /j@v~A ~"B.W/XՅ^~fLpعfM)͕h㷲#*l_H;iVfpN2s1fթQj'>He8^#Xb{SMF "}(z 8]]R6i##lX#֌c7ZOJPi<.5XξXgmrvax6FU GS8WQV۰ˉ_D'FZavf_t㐨*X6x AcK"L͂XI[#WOQ65WƯU0*^x8xbuԽ:"kb3yH_ʲT=7"~p팈iF L ~2Gs)߂LJ"e ͐z 2WůUf-!)fuq7*!XM*+q˲Uf|Y8>^**+onz0Ų-^YNXR޷tBzXuY@ܡJ*INBm\|O|`XB D"`V"#v w[sfy/_zkވC+}n6(+u6<zM2;D6T=~xl gш4&ƹ jwi3_ԆQ|+ 듵tW;q>ť[ k|Ɲ_f pb2d&8:ďӐGs<&cps$o\QI1ѽQpactNb bz_(ͥ{ss*w/m``~Xi5(@*mzg'/okH'4~ٱc+}N67P&>__NʮݟC/Dِ͕^v 5j%'7dδ%Lש?ő7hAÇL``?W\ 5nao@+ ̹f m;7zM4Vƶᛔadۖ!YmAs~UcXWzm, uC.XJObϮ7Lȧ?`MEC4%,A 2ޤkNi@dMԁF3G3?;\-?StmgR]9PX=|LѫXpIDK "ͷ&yB=VYOKfE(HfLYEJh5DPk =L`~1H=寿4~th]`?_}~vĎMg56N1.L47+ 1F:'/ɶO`e1 1R̿׊V~Z] S}~`p<}/??VRIk<Ņ2 M<0t'0_\ǟ+&Fף.y]D9#A&I~! ` ?B;fGۚ㿌8oΙ#~7V TMǖ7/dD Z쾹 JjN:|i*;>EYF4݉MF+ "zɇd;Q6G8ߩ<313=IGGzw(a!y<Ҍ"Lmӧfe⬻yݞy*ט|L>|'Z(^n[W9g E ^y-. 90 @d2BӚA|$̑*b ƫ1L=|NP>:7 Z[>OgܹF8ʳ$P\hH䥪z lpԆĢQMAr>8d~ ]3:dTcQ誁ad 1fGPkk _r p~]{nH !П%.)qo]y3ZBMF T*TG}\l|K8|Pu4/گa ] ȯpR;gF@,XP4s@a@/`աjƏFm(y?bM-vK®7!HΨyKkM'_bkKϦO }hL܂ahgGת8\]|gWZ v Gѧ42SzWs&Zu53ph.GЌVCP7y{F^-;`sG!O|^q_f)k <օ:͠vL2;]s4s5FEA*T%!?zZm2P4SݽdYi  vU؞]o7?G{6m7gğßşX.;p:pq:'G+^k L옫]-٠V@_Hv h9]@@?|䛠?qG5{@v]w_pZS+c3cq:G0"i `OpU@B )vvtv!.|)9J2G ?vM}-NNxnxEĩu( \  :bm >~'2?܎]uaGvn_~%5u1<?y^LĪ`|T}0=Lm`VF}5^2qqrЉSD 8́8 8Mt Q-_O=& `?"UTyR)y:1e l6VbW*0F@GC @Sx@E{3cuKQ۵tj{n*/xKxŻ ߨJ}5h35]Y@!E6  A7LI 8n \H[0% #00q# ;_܏µ{>i?dKWn]oZ, mF[#.w$H%VP X|C'H}hu]Wu׾fu{oĀ"o=tl 1U*||+$xۂjWm;E5.¬|Z{Wy qq"iwUnb0 \:{*領8]fm4`7:}۳t@@qf:@5jRyw w۳36\fPr7 |Nܫo{[q)x/Xmw~pT jݦE࿁,ﻫ \с _PO X{GJ;&/T]9fm1C{04p9N^!{WfK6hÞkވ8?㥆Kq:vy%*l3~#w}V=@x:K,6h㌅.8& mFyS;I8cwכ8>: mg.xyI8{V[P>\6-]/9*;wn*i36x|ڷ0x- |Y6-ODR3 ?AX5c> q:փ^mY;߄Q:@ @gv|;(7' 0QnZAmYݻA>V= fmPP\vsZB(#tC0QnSx('E|+6hǮu7~nS,s 09I}n|e\fmxͿG#F q[<~Pxxl``*h36^F\_=gOf+Lx~۫6h}Y +VԡohW| {VgЈ顃ވk36XQTK9gewjuGsղVfm7POSϕ|m LM^Y{[6hVm!%e\oYCC@m>b7߉\ g/UG r5C@sem \l k5 HlI]^Nzg>rϭZm@m"Y㸚D퐀_M-yWmFmFmFmY/rKIENDB`ic09C(PNG  IHDRxIDATxY%i}="#3rʬ}^ƐbK0Y1-B$q00## Uܤ2P-*R]UTgVeUK]l$L kf$Uo7]5ȯnڅ5wUxe}W_Uчs+TQ1*_ַs7n0m muo; A(ROmTJRbCj +VP3""ETJ"X#:u`(֏PyS0NIj[.Lԩ[eW_]a_ *G uUJMEC"( `2@7UMNT*ёf%V h,jF~$jF6(aBoZo~T%8/wĉ'W˗C*Tph*T8 4`Ԯ40xDV Si!-6P!XD"Tê+QADaf^UQ%c0 d{PDQ`^P!adQ+" ]w{&Mz[ vd=E{Be6PQ@X^/ MZiBPV$vcXpN tDX%UDJJSETM6Uf5Z2 JF˧h*SP !SG)9'}}DxzHxzƚMMM W& ondpI0i.ǽ7oד.*Txx >[/09("m,v@:"V--jUFT,AĠj%CNa̮?dnGYT5W!A(*8A\- Ho ]ly[kn-0u۫/_| *T8 VVV jnW B_OzZ7!uQMOZ O:3zZ՟1ˠmxi7U!D cPm]uJW=qR Sx_zsG@D Tu`)51RiD[z4&qz!Pb*{| ϟ_mn99 sròxh{LKh J& UC&#R$ZTeL;' U-A TuUѮl z)zrmdqjN|:PHb* dqߵ^oкuv<2إĻ1Q6ox#wڦt/> [T @#W^y^Q=p' #m_t;{=U;lj`{*wj[@>pUku+=No{!G#r] .<m#iϝ9"O ('1P"*zd;pȘe)m \9 3*: MVrL׊?b'Ok*KQȦZuz#zs^%Uxa CTx XyhQwtZBS"<'bV*':uE3}Hˣ#̗}Bw|{'f:'JaS<*0(ܬڨ p_kً-Eb$?/bPY4Ae\"ET 1fD9¦\}o!(N@6G?doT*p_ҵQkK>U^3*rhk-ϫm#Cwr`Ywv񞃍S^wPC, 7FOw[GM"*T(Cp(淾Oki|}9 i>a<.1'(Dk=8 i#al3$U>@-зEj"G1~U t}Xi*TFpPoNtkEsɳ>gD"WNhPC&'s(x~>֥(ۗ0W1e46CrO )σ}Y3쇷 0* @^O?GqNBOωQQ 9lmgʃHǝ30{cp47c?#D2Y՛^oVݎZ+Fcpb֗.-<%|8yxAE4k@$bl&fn}r soI9t|Iҟ{wfct YLP13&~k/S%Xb* ++ nz}qD+OK]>/ȋ(Oex? ˿ޫbv9j vncPލT#ozTMM(j$4;T @xl|Faz'77^fPTxP[ v>F>ʧD9M w}xY9 y< {P ?ͼuhQw_XUEBw92W3V'R. ,Ys 5AyioKv?>g%bo{;hW`v|u#XT= ^uSEOT0Wn]T& AUV^NԮ *Tsb^=0P#*Q1ُS71+M0؟nN<;SE T8 ew)|#_ "r /m^ߝޜou}CyˎmskdrϨ"2B}*'FP}G<PUyo76vEcSb3/T E>D?{W~$"?ˋ˿k]W‘D<OQDjes ip^ʝJ~gֱýv? s4XlX4!2 (DE~#0 6\PᾢbaoZ?Qy G+`nl# 0ƒ䆪 cqlMn^ GUG+gݰs`,U8)"MEw^%N}3{`quۛS{NK/lvxf(qLqM)RvxfW~C3d5.sbSQ=+ȋykVP:G`?EyQ9UFd9<[{T|ߜJ,t*:z3&=2uO!(2 !؎QMA#c˗CBCB<76Gf;S _E^TLFGT {]{P 6$|c$ɛQ;Z)Pᨠx`7y٩|A~/!\LQq.=4m 0B_Y&x]ƙYg]_1ä7c~_ mW;C0 bN|('Uyޛ{>N_q Bo AX%Q>OkAsoъ(9e؛<_rݏH3)wp` #*||E(~)?޹7,B#WoKOD_9U<-J6mܞGT엹&ѹ;7B=kmķo*|'2~xq 7aʦ#E7Q@G{^Ro}[[ES9#AsA6j_:m)*`c* "xv ?Ji=xUU0P#(ȫɚ=uxE9h}Rw:ÎsMq971BX e}%.X@L)/t(]Șf}|Y/\`IUi *j9c^}2@vUPƒS*+++~Y%|W| ᔵxuѯb ܎ݡg+h/(i>Ͳq0}1I Q^GHD[́T@Jp m?L~䳨>)b:!,'=]Uy&2ScJ9&7QJv̈v_HѹNf!3{cUESG^g$),)nW_;TwT#7W;D:^!\#`˿bfZ`_Gg/(/Jw 8WPxC}+_>_}P>alu.5YW/'D$@Aw?ߝ +//'%>Ou_BxSK}g$y gAg;+ %zx >QaVAp/ϝNr TiQmH{U ⯬nLӝ k藭1LsQ1[G(~%{w?P6̓gm/5 %iwPc1UQzC~tkO?]fU@JpĠ?:cLskj/*B{TCT{U91L΄'%w7̬<o(5uܥ XeU%3)h&zF_־U%0Ay9Cujd/NB}/lB94G^ZXS'_Q K6_1;+/_z|,P~`>|J78hfR~E~qܒꃥY881t]U{w\w_$*@Z?zΫ~o^Dzbfd20x3(WBB=|栔/HKtɎ2AY"?4<Ơ{2 Hv7z^yW9ik?yT+*!cee /w>N¯O 9E]W dGmi2˛l'ֹ{/_>[T> x+|9aT)ZcD Kֱ~{*w9>;n5?;7̼"~x҆6OϞwHy9qRaqJ8Y Ã8+!H%tme; ZH2 һ_}YOG]o~ ڏ{K.̼~݇ KA$0p@haw<$._ `@w}f`AaUwЋ{/iW>nqk4M>R?XáV ExxQk`"*^~xY"&|eٿHW7gܙ;_B?7e}CA"-7 woP)ߣmnui*.hvA]}Эp"y{("sL,Gn/p'T QSy%cj{T *SᔵT1Eo9!8h?߫(a 7gܽ9801)5EXq̿kF;T Dx@?I2  zO>;>pCr7,R\^Βfz淟{Q"F Py:?Oo.ϚL(r{yE1, ]\74JpfT$C5s('m=Kdǎ(]&i_!ϱ%ei@޺Kle-4|A$NEG*查(onʬMBTW'ϊڿ(Sb="}{[ÿ;.U!3vv+w_L2%fmp`:a2CwEYƷ}ي~?]On*[og_\Ǭơp|AU;c9QqISﯾ~ =pa/Q.{F+" pm2+Tp 1~wc#D[<$Sk퇼 >ae;u퓊D9!"r6=J*=Iy';+̻s@q%;f+YƬ}^}ʜيr3T%+sʛ/;;_Q`^bHXN?7߾|WJQiӿt缺/"S8oFB+TPacL(/* ^ ڭK?m>5V8|?ϋ Fh}zh=(J wog粶ۗJ\~#{ #<((lم~E{鸅E2~3;{~;w3m)6̷%> x D")@LA\_^u T&Cw筓GW@azwp0eNuPx_6N2<\\_on|(=Wn"(Sό[?-~{7/,c`VEpg$QIn]7^D8D 2^&"_ b  ߶ٗw'{M[f۟Yo:y4z`P2fZ;noت('ie蜞K0 wʡDc0#Ag%u, (u t_4n5c'\x[ >pc߃VxQ1o~[aS>$F^ѯ Ikm]ۿB A#ƈ1%UE ~6|a@ۋ%_F/IEYUɾTE0^~|0ηfS8\/gjn=r:K_ e஻/]aflwj_:o&o/PMHQh|~箍ISa }Qk%Kx@Vկb703썌e}ƙ_o2K) + +g[m G4-{M/UݷU݀ iS/_F H۫?< Nbfa܎?K:q_˟N᜶v[t#<Gxɫ7o ++Eb xʕג'D+*AQ=8$RɼL3PWMgLE?g\fq݇): )#8zL}2 בsC>=6.9mmI c2 x4O@>o775d?%PQ(J} "x䴈bhus?ZY˗>}^MO~U\4FLсOokN=J\N%u! e3b3>WlN- 9C0f1˴`wL.3;Hij}.\Ꝫz㉊η-?#oF30G]WquWr3(iW\鷷he'&b2X 1C*ɶzU91̮o F샜fL=@G8Fﺽ/N-L/G.̭?;ms-S.iOS-o_i-\}xa PTSP_TګtKT >?xY||QA;{])|s"d[R 1XFc}&mOsL'Z ^3  "亄m[ ?pD8jDI_31!DCu磋eLL"^y?W k+'jYhvz5z+yV80*`PUρe1D/h?/l,\O bs+m?۱a'},0$`(SiO$5';&ztF1ms{~MIL#6`a[3 >cT' Ad@:)MR"\)B"g0x%mhk3P]V`24jQOe`8 _ y{A1(iư|~W5Z%O5_Ƙh7V|w^ߣ~~rڋyي9π2X=Va,{KXRR@t%Gdۣ\4;!Uj"3O86q=we3dNG)s \`söKx=H X4H$af8gEƘy 0o]˗/?h@W(j/v%1bBk(66yT ˋ^?Ě'T}x_n[??D/%es@x;HF2=X,$b˄lIDan׷Hn˗<Heg`oQ=A'="J,cHȇ79,245SS2itG@U΁H' kԳt>g|[ lyJFϴ_Dl|Ru;okT b#i/e/ȓuW?(̌XfKfsXzlJ ْ05xwtg+˶ծ8MTmrr/1C]\ ?|J?ꞑ$&{hf$4Ǯ˷wWXS'H07!= "bkiFX=Mط dҚfLvjv18B%" ,h MBS2`;Po@3uP&~sa)T(Wg9>lr :#8o6Swnepibsߎ^o<5Yi W>khy‡(*XS 0bL(rПWƕ!bJb6Wd(e1TMv$CB&Td@X҉SvY&W5\`Hn$iP}E(@D"[`6CjD<FX;: x$%ro0_7/Zh^1- hyj{]O  H"5+򌱴T@fzw~%Ϳtvy'73?t4Q C Xƪ0] $Qlnݱ۵H I }2:. aQ,0ELD'8I*v֭qGL${{!6ːĹb! 0&Ҕ؝bMI^B׳<vŒ(b́u{j@Ċe/Fp>v#ب?o@>49g 5 s(^A0u#4!{^K *` ++j+s9%XuU@Q gaK$lJĪԹcjIɔ9],"kg9Ll=Ryh#H IwT)|BRu%h0"A;1&&zS0޳``3΁G |@jͿۃ˗/f/˳|Ո|Dt-yū^p!οW/~J x)ta|JSs|^EFL@K%{oB.1wB8e,ofS[5K;ȉqKID N$1IW.a`k: ,0bIt$F:GP5PĽ:@SueI$11@34)wdaHjɵ%ޝQۯ&y6D@!z'.]"k,~FU}kVxފP[@9\l/q~炷Bo?0 ++߱]>!܁p@H'7 #= (vWo#:ڣMc/wҴ)c<3zֽЗ6NkuT1FYT1/ZuOkvƞͿ;:4/;~KH'{ Q!DY65^L#{E[ b+|V~҂$-"OER/h]L gɿL"/`^yVKwSj`M2羞Y)i]᠘w')IlPMLѶeg(;/Hl;뀦hpb{ \.2&YLeR[N @S']&0H-L De`xw77WVVzL++ dIFsV%@VFȈ[Dy2!06 U*nL­K2)Rl2ϼ3;mM&i GEIwRN"yF 'ʄӸozOw{4ɵuq6*x & _S`.:^"\\x}gSO}y ?/§ L?h +zXsa++ܺ|y?R 2 _)clC7soͱIv߫ovCW 0unI۹ߕd|?.(0(0 $25ِ:K Xmbj-)|(zw"8ڣ㷈3~eA,ԽCG|fp40 gUP<=_Ph:E3[@9R,fk0ȇB= _>(h<ykiŰNN8=q齯|w$ {cN<Ө1V+cabKȪY5 nJ52XƉZ% p|0MR]C[6ivͷGab@k jL/DxB;BPRɕl:"N@1s~VEWZ{gewx++귯׆/y%_t#^xb;KSW2/ykLS ?SzP4T{c.pP< op|/ R-=+s?1H|= Y7mipG$J;*T aD@%yyѡ`G'P!'7LȲ(<85X6J{w{@G {Vϋ V7[_Y |Υ\ 51|ZD#$yak:wX=Heya d0WTuYoewY&lo^~Ù_H:ץmKD_BbyJpR&l67 $QKoIyaWPǧe!)Rw}"? 1E` >Z8&u THYeR\lwgNtAة!٫&`R+ wR56o}O6 |]|20r=Ms5d n}Ctj\'$S . 1#o(1u(0>QMz C&L)f@E ϩrwg#gP*Yt`us?HxNFNdV=}2"O(0c?Fg|f\vo73__*-_%&N꿑{0YV?lWg̾ 4`[D47`bU)/ ӶψfR&͊y9.s!Q!p)xwD \B%+ (ř XLj ~9x]"tޫu KW=pA8/@UV^vsgU3)cJ+}?0̲K4-uyR>)'D\31ɘNGPhJ]G16yebW6%iF{Izq}+f͘͡#NlJ-4` HxkQvJ:XN-ea,R(l  ' 2 .t ylX1gQ>7DK$Bҁg-?gƠ\p@ɿ0m's X5isK2/!NLVbsNEO8-[,0",8d|etf#157 CD/3Dγ9tJhcK [C(Q{CUq*pαwħq2 ڼ;0[PhWeu~ ֎Npr~!t'D+Y'r &@3-5bZMD州AF}X0+++~!15eA^T% צ'1unX'1NUgY}}mj$[ؼ4 D8jiAY)ij>Lpu=!)ؑ(wD{ܨOq 1AcDƲmH= 6-q(tIFnlu7xR GoƞA9 h- &'p@1&Mh&?s;WcH}"0Q<";6gn_vƶ_ U*W"K@)&S\)qZ-xPa[X-qCBNg!-H%da\n=5F[AG9[#ǵ1M9F5nW|E =i qsc…S D|A˞Bk;MlcX>)m]qT$5g>)T;G~t~$_6 2LiTc;3L; Y!3&>x&1Fu ]'CPbvZǞA{Wf/ 3O/~%{IDI4fڬҠ/n"WM3 %(y3zFXFhɐGd (K($1}FV/#>q}#fs]F|Rr D0#Xj;qx,<Wog,/W6}˪4Ak; WrI0xCGDdϿUG ]C7Ɛ͡f;|6v7{gwI w.ofw$f7&v%Lr"\b1ƀ d$B]&1dqwlHT`fLRz6A츸\BDZqqUNQ! '(8N#\; {P.A*Ӓ:unMV#\20PI=# a0~.MK^!NՍFwgĭ~ gdkofϏwD|Yg<2mLəv ?h;U$J2"O6! %4T%*LH3XVIDLV#EE[D/O$U(y|͓ԋ+7[\3m֩3W1Yg˟9i#K7G5&ɮ6咿sz[\ۈ8AIxOD$S ̏`3`ʃ>{>́'+v:cƴy_#0U 剥N};ﮯi3sZ u+4#Nɋbg7}(Rx Vk8b,daW7hq4Q] ӤʑVc`ijɘVg:X|6X매.c6.u`+`0^~e#(6dWA+1Gt7/_d^\!7#G/@Q8>8Q<( b88Ixb#ȴ7%c`,Fi>=xu^q+#lj쳈pZ[?BmI[S Wp0 r8IDeoO]Vv/ /F7 &~^2#*6cZa noL ^@ނ5bGn)A>WϒTK8)Y0;5qf%2 ļvM.g޼8:7hsMڬQ'W<<0h &MTBo'~>cGXYY1R]yQ}i^q0VeWqfo[P8`lg LJS\U8UV{w2fBop0edQBf 2\!p&Rch}z_X^}J>+ bb+D3ɿO* nd:}ŠW8<bʄ>ruc^ dpwЏ=t*:@^YlԂmDwhm$tj5ZU)vbAY ' Nwn-%`8|QwГ5\˫r_Iqa&G0Y ҏ=7޻=7c6)kD]p1~Y#^KH8ղjDY@fY>0759V`TvS< s# X-ҠKC 6*&X]wMh=;CoeS]U8LLk5E4KFd0\,kn|GXy6>,yE$HMۧ7m㎿]0[=oq5`, lq67i'̉Nx+T8vU:l^0u~µ̈́KY][(( yecײ[ÔKDt";`D$R{?Nx$nZ9>𤈜D *`"b4ؠ6ɕV +k_u$I(bmy^;QsecRe[rPB {|=W\< @%MEET`CCQXo_r?#yH(lީ%T7 Zl?kPaW<7zOwꀏ\Ϥ$V !w#OYA։uN/ԬH M/vs/iq.\q: YUXJ<A2 ؠ`EW8ސ%Ae%xB֩s:H'?P2eWYT3V%Ɏ=G& W#&#`:kJtckwY]ي ) [Tnn%a`F>z%/TX3; %>zҘ ,/FE!Af`f"YSR+W,-k^E[9.VȈKu[D$\{;@[ m Vt"B>~BL? Vׯ]T 5q/91v2cjsl3%:g϶GmܦɈ0Jp dR]`H8۰m Kq;b%Ex8!u?~MuPN= 4Uo J˩eQ' kW{{C^d'E O6_z/2KLCukD‰lDre8Ӵ,EB+"+HxN(#{]ígu&L#{HX>![koi&6WXɕoKF$⋟{?ϵmq,o~A9OV+ f{>dܲ[}swɾq]m"!ƲF۴`^!<0fhxcyfrȓmr-cD"Bj۱@'T[gmpZ»k[x<:E" >!LW H>PuY?R~f6sV첍OFu\dGF#)ayFUR8+BG۩~D`:C,< C^cnbr \8۰47 rahGBҰ)W{mu1tM0uwa $XTw#e 6A`;ZFRsݪ Ah?]\?խo\yc_r(1Ow915Qݗʼǟ;}:q^fiY؟ AA5lE~r;vd>!O-ZȦYnhDhŎXgIyrQ4S>4b>&J6Y^\]GiFؠgFݭh>wjGj":vzi/1Q=Rᄈ`aaX2I/i?!( c $lPc:]Bx ,Y_|TK',]9tG XZ!Bh`z>r҇uL[, sb1'FXtVFH1 hD:~gT|ﱅjG2!ZDѤѪjh4Vu4ױ^ AO?[vʕadz\yP]'`7΁6ϝδ(u(@:ǹ\*>!w?BߣԭpwBhɀϟ -K=(7B+/@PY(H0u;B -d+"ܨeju Q4M1R9GZfEբlRk y 洃/ 4=BE3y+`ee,,\[/!|\![ؠN7WW8~P@;.-/xD4񿷔;dڀf(<ѱ$NYzyfgt?DiuN >D|tmVb " $r#`%jVVMѤVmJ}V Bsj@]0l_?ڼ~=VNJe;rB՟)PK<{wej̝T10u00lMT<ᏩcZVx҉X1V=_ul_E@Bnh}:ÛU:%";Y4w i A`k=$;_qmfaݠСl# 3i?~%є(0ɉǹFh4 ӫe|=1Q8x~dd,JZ l&7[:MZ6zc FT  cjQQ8urY]Ͽ+7cn!@iUs^a>1@H%hӟ鶻&ܛ(ϙoY-c%Kĺ""q8VHj?Y7<քsmZ>tl$r44Mu*mI i:.fVHfc_.SWhi%E4MZVz> 3EGU@pP_İGʍ!DXml*zN @Lj11RcaqZbris-N馡xtQK781k,DyYu6v;AnB㇍$o!BN: -jک>Xc]+a~h~N\YYy_GfX?y#}3̓K$ _R Aɺ6]R ]ؤƀpTc,gZ6,'f I`{`n8R utcezT=QR7=;~LoeQ! ,zF c}4M mf0 1&gp+W!43&Mj'F_'0 WQYpQDcu^r)fnU8^P2:2pi:n&KtaXn: *zB73I,wEbmX󒇪0dqzx`'!ZH٤j^hSk4#UOy'X"#a\g_3ڹ1 W^1f-LjdfڴG<̕g$i wvSPKQc6#XD~=8N"#, '0SSan yb{'źhݷ99NM"{I( 16b ~4M;= Z, Eua~WUcc:/}M7xx饗lqR}53w NT80i:C|=f ܻfnr*˃89rr k-XYPPp8ĻJ`ņzBvM$"1ׁy Aһ|Nm#c@]x3:+b1*є]t/0;{aנs?ÆYƈqj f! q9ɍvw PY!ðN.$rvMN?fɭR'HXsq0igffIONBZ:c ,Ƙ<[0Mzˆ\X0zs"<1V^֑"lQcIzm_Y@h2-@hFj&'?5l*'szm`a!" wq&z y΅qV0hzNIp1"ؚ/55g?ᣔ(X0& .=ȓF80m?Ꭽw16^>LR CMU qD1?S5Mtfz[~̲[)~ZU傀f=.3 '` Skh4pNk[?A{WU*bH7%wA^j}d!ǂHl4p(H]C#O8p1)t7d)a:v>֧LV2(S0&d!xaHޠiYRclq0`*43T9pJ4w,h^q,N8 Jm?;/|(h Re0SRM '98btPz%JGP ٟӬV#+LH?\أZctNmF`V?j8Qa=ld+DL^2:Gi #q@vjˠ^Q"$<_G?H=_ro!ЇR:% 0'MgP MECG4&˵;YÔͧ59 Sp;O@?NF Lj2+=uox7\lDir>; wN}! ,41(AOt,ow."~%rlK!S*D!=R+ƒI֩*#8e?QgR̃{SO/Vb8U$Y~! jxLblN>Gik, oJ7hbO*9+<t:kG*O>XcVVd kPrG^'o{bS^6t{*|5E|[=9bDr\T3sybqÆdD1⽦xK(?Uc6]wo%äM.oW\~GGD5i? RqW<-r+Ŭ8{%cF/p{l6%m'ɼgģ0dw+x>r[!xsh+vK2BACjb-00&tRX#0e8/;&lJ$~q8\YNvIf&ؔ;& *Ky7s7 YOG{?G׸׀GG0Aޜ@YT`K Kϭ·sGYFyQey/t 8sWaL8< Rj8ܯ'c`IrN625ÂyX;CO0l -d? )CGG#<fIs"yqڐ8Z_;f xvJ'Br_qVS6f&#Cwz;y-zs%#zoG/JEgp$b7n-Ο P cBOL5~J)eQS M<X3cbfm@Qg%ǥԻ< k:6ˋ4\?J~c,!x>;t'57Fʼn#*+$p  Aa)ƒ֒rx}Un:B3,7 Z&eHO6NjʵhVpzP@ke`6HGMJmQBM07Z@Dd8"CRhD(=(LT^7<~yP]Fuoש\ITY4LGUD D[?-(/8if5qտ1ó/( ~ȓ~':O5N^n%KD&Έez\ jܒ67LfUlQ'Ɍa)I 3Hj*{m{^wq'cLT%܁q}qT eR۠86MG74|ld̶Y KKl|^ Qx3⟫iq!OgKXuK,M[?O[op$3g̚=-b"E'Jd͇X:::O -Z:&,R2Yy!m-6mnJM$2< vp{AS"DT:PG^&gNys5彍aM 2G ElLT"AǭI 3' j=I2{G'Y~GZ(newޥ^7o.<߹Λy{]H2W#QlFmcM$@e=;Wv{Kّg9g2g=&^`RUK? H'}*Ou.uN!x)m?'BHIRZ 8izM>6\n[Rb*7㵔skxnbt`ʹ9ocx>rz[)7nǀOc\hgk,M\Ќt<DQ. -Fx[h~0h,..=:d Nsc?i2Hf]7I ڪ,0ʸ Wm+Ӕ?΄$N4? $E 0hfVF֙DjPIpgGIӦnRȫ:{޻%?{?r?=szq$k!Q#}O,x~z?{W~ٍ CBYw=B#-Mo[fD$$a{Rz~HHJKU]sۦE?-{?(߀qE:Z׳1T) éefhP 0 SskxVKxeBwF{@% [tm8h3npb! m:kc Fi(yq_Yԡ&e=oޥ.q7 %oj+Wި2.#$ð~F~o #:[RzKS|yeq%w?Y_qʊq[YRy(HNm/_fr7ǧ`*^JƄRye&:~H]%ȨȌHJLw!l+=xO,iw)E6L 7 <)e2~o `\yp>+6YlYӴGNUD;[_?Mj[SXoߤz&eJ -N :2?M!,.YhSױ63]=fiO\A:بQc…}wͦ~103=dkʒ_tUN.c+؍{ cdc8f>$ِF%`+Dr$>KYLDXbjݏVX\$msn'U.945Gֶ4e8_bFajؖxҭRׄ:B.Kt6319wk.5_WWh40Qy2G j̻Gv EX"_(m"J OU]Д?S&z( >oV>&uM։4cLWS-ͣ E4 0Y5FaޡXt;l/APo6褙KλܑdX(Kd~͢[WO$z! 4̂Al1i0|K_OxH1w`Y"l] MH@0Z[V"Mi!gOx"]ߢmgYLǪY"MQ% "@Iw ʒ05PF`@)䩁l8^9Ox$=r3#oEM ;Q`gks^p8`r? 0#Q!aش5ׂW%ydptcx Bk|2gxHBzؠKNd2q K2_ -i[\LW9{*ۂHck~ا[q BS$V#2)lI}*=zWChLn ҠEl[ F9\L QcT2{^C'I*n$="`\}۝6a-Lc9!.-hWIL6IGG[ c:'[j(XlYz龟#:lZ룺WmW:(E,l*`BA@OFpqD;ݠCLQ ZjvŋY^gd֊=9TfduWEQ-e5m!¶԰7H@lHudCVKD j X[R&U!Yӝϰ"bs=}n+V͊~ܟ0l+3ۦcpsէehQq͝z7R3-pkRn2*QĔEJ,Qe)*Bk*Nz'01V *a"Wwu@kZkIz=C;Au ;Q9,g:0:3:=e: 1_nTOZP*x?O%.=~W&wRdс +r8R \ Tϊ4h9v!*"0t|.OY3,>ge7] 7r[?9U&;Wn޾\-펱</vb4knm,ڣ[{E!d^ IvvwQQ WrE,U_9Җ~wєc& YRnA \QYr=go?Ftȟhl .ԛ`/QTۅbQyOAU3 Xo\ }*2VIklqq q& y:|Aq?*3x, z^]';l2=Z`gp'q|&*1OGOnjNGdevbQ0Dv<?;?d6rwM9O<K(X1CT.`K~αA'^| ݭX8,չ*@5T2nG|>\/N!,d[5JᷴuѺ:|@:kt9߁*b !萱:\E>(sֈ!xEh|0}=)Uv256 N{{5\"$fgw8~rT(\l2e<qrtt< 7?#R!MEN}n3୷myF H4mU U4՚7 x#XQ,@H%[!/K ' Lp6ł/BV"B=` *M|RAҳ-g91BE};::yA:qzzdx4!ϲ2? DDk {bz? u 8?6Jp#HϠ=]k۟MO"X.x) \rnq?nDH`8~!pv`u2 {y32{̤Wp0[0"ENolH}a~;O^<{N)>u@UL`Jz=8׭ŷ}ȫ#WyM[o%\ih_kj 4TfAڬd3 W@g|Jbqb!DzKF\' WB$LH"NĩQc}+ƘP4H}83]\~*C=;C>׽-YɈ)t>i#&XWQUW?۽Ə8~.; Q@dłD /0yfO[)x=Cbu~`_ iY5ƔȶnF'<Gn8A rT=R:Eq✯ـ1^G8?'NN./[ƒQP/N52h&f[&l@oNz* .`30ډԗ3NO'eN~Pѿ(1G|_6#(vj[ _zo{~!y%aqZ<+W#xE6hH|]OqǸcG*ONβ/|zA}0y7Fp,8UXCoc0zAgYHVyl6c|4jov~Ka;"Fe KZ`Zzvۥ?hXcq [cbWKA͹ %28Dd'!`Ug;d4w{~OP/a0fWɬd<)3Ǻ胼?/L_{3K¿7jU ;Mଊ.93hU'~ʭ}Rˠb/j)MY:~v7S5~js5QZ7i 0Xf-Q[\Y,26 ^ N R0@(}]w4ǿ$II4Î \FHIuBE T4U':-nփm[ Vt.h8{/)7G|f>+e{_KSm~vxw*NxsKi4Ў,KU0#Ap^cbzqmwX~WKE-4SL#LvBDdYAQy'>(b82K؟SyMBֻNa0t\p@ITMcXN>H'Z9?1)[l"0@?Sny5!ITxE˔Bl` ABuH<c0 GOPzD某{!L!D sM_̡_ $ȗ:39?ecb1F\"NT1p9Ǵ@X ~.5ⴌl~%d㉸h^_bsxGË#[!JanF[Mk0@%!D4B$1{{p=i.U?k-q/+ ow v1(l @k$"P<_~ElzEnALq=+=ng9,UpUpnj>N,X1TN^[KiG@p,Dc!HH $2:sdiJ$A 1&dIcMO|[I?L!p/L<"z[k?c~qQ8PqLIǜT'hn)~cL?Wm?}/riI]z/K˲:*ObzowB)LML"rB~X4K>- Jaenدc1QQ~ pL\PJ~Tr'OֿKha>7D>2߲(P ,Bl _2qwG= ubcvgGNK??"9_ bsb96;qdJƴ(~ 'OO|(n T 85jp* mS%"RuDs;Wʌ1`GKF8)?WF8$}L^`kdP84?qD[w~wg\{Fl`2Cū̫]UY>2߁Ě_g2ǁ;&;x1Eq[ӯtC۷k}XiYu,K9tg\D/F=@ȒT^t@_MH(xlƁɹn3R`Tɰs&ކ̆J]zdS>u FL&;XWf+,89 qDqB" {p.ĥ᦬fLc(D  fC U45O֗;߽:aU*y RiJϧ'Js;=0E%OQKT21ӣ zaKu Ǯ9)77m51'"'}G̼%WS#Pr6O:I< rP( 1IIѐ"O P+AŔBW(*T՟W^;1~뭷}lݯ75YS3 PV|s,#_W]cMTMm-25n]LAS_){N`qWy "|"7ByC0 8nؔ'|:z40ʈqDaԐb;#bGEF8ki|qKh_'9czy'1Q&C\rKb̜!S?) 1DxS\? kx| gHKuð1o؍^/+N5apxe^A@ە d26 ()\%_ :nF|)93)쌡)jЊ' sWf[.dJ~rW&us"6? $qΑ-rvxq|F`1Q\m+/ [#/d*I_ۭq_WyUZ*kձƼ~+f)F}U^d:P3 ͹c3l`V|εHv(9vĢjXo4349G;s)ocٔ-OXůJ90)8綝Q1'>;5^^!~E.!]!'a׈0LS3= MQTo}Q=DXc"wE4Uň1{^ ˒tO (JSE6݆Uyjp-ȭ.7҇ ݼ(Q8,NmKLn"\:c?s1oDcٌ8.WO7sSV"ٕ=c2z x>}^(EQM>VXSH!fS%D,^o=r&ɿկ>;Xx1?Ux\yKg%/ w3nwy%Cn\khelHek^uYĚLA}:ZhlaKl^q43'Z`sd D=fG1LlLbrI< !OPLƛјW)cUqŽ Pz?uJOrn[NqLe'0?Ky).>9'ܭgAP3< 1Q`l* F Ԛ>aZD X~^_UCU |1'AWĻ.{# +jX Sg}^/PtSܞfvbL*z_n, \bݐJPIy3Ky-0GZb!"Ĝ U_ +` 9TQE{#_vթT ELyy.V˶!8Lv>bUgO^Ocnfwˏ1ꖽkEɚS_wk.|威! {̝VaN4) ZWDt9tAoyfJj79{)gdd!?@uώJt* L-?{gף䈖vJ|*ʹyꟁmu SPzhL_rv%㆙:3xd)j+0?7uռ_O1/`)EBj~QScO7kַ2ul具Q -Z>Z29skv0'.jW ecr"N=2bfrwڢKOE|19 '4_OgkSOuO,:)p85~ɧtD3쟓OK;g=GPD>C4_~[J/{d $9bH9g2} <{oCS^ŢgK 9q;Ϳ~ S֘Vgd Cne ZQ h1one ;[C7jvdR{}ŽA~ _NF4f* U+_Ťkc5S Pz$HqK|Xq2L"t2+!`Umg=i]wnY*ˏvW1b9/xտ(''VxPl!LT)X@` 1OnR*w<]k?Qi)P ƱǢd`!{h_FlPa+BvjYjߧ#^h'xo;T:{ɰQ@wvyV 8)s4H/j&8JY /Bչp}ߋ!)2b?,M]}mK:/7o_W4ZknwtW wz}|-o7oo]zq)<i4 ̊ZnW=}'|1>hŽ|E8 :c+Ymp`CyŞbǮAϱɈ J$!)]訛bvb CSΙ n=Ww-.{@e:`D'hO PQV}7Zd#DuP5 q+{HN( ĕa~#~>9s Gcl~UZ'M.6Uų[X<68p{[ƚ b S$_>9Vbۊ~+^~ |.^.%L%FY3:Wΰv^_k,;%y[%Rs.;N3ܞϭ.bhe}-eB^^~köoGD3/םum29&|54!Р ܔW{( $!J(&Kc~.>s 7팞 &Ňsن:?jSm/͌ HJPsی1qMbbN|\m=>5P ո]> sVb$|^>mZ|caq\ko\x$܃] rM&޿xl ą>iا:E WI7{\K`urm2&3|=/=P >//?MDsF NLd2CR!h5^Mg|S9XO3W\+H,t㚟gjqD>g7?ϸ5R%4Z4dbtuLth뙂sk5LAផP87Sy3|  )pƒ((7̌ďħ\73b LSÖ _j$l-+Wn_mFhHHtLrr4GOzp!խ2w#bQ olxU1G;S 7Ju@_2`KʷEU{bx/~~KQ_M9-DOybSp>/x[\.)7d @!1xnN1NfS 9H. L} UG!±G ٹ0 R@]hg#$MШ5v=kR< q aƪ!oban0q2^)54yeuХPU%“Bq"hF=7CnM?d/{L⦄3#ײI/^6h+bqNJ<3S1x V 2b>9xG|FA󏼆]QW/R ?W<˿U@sӌ3}bqj0!ƫ)9`Ln)>Ǥ#>!fzMGH1 x{u|o`ly?*-D?0% u7@z`뵝]uÔΡޗO V 㼻aK*$~<]6J8N0^// d1`()#nrާ&-L/IF5$[r3{,.)?=sq{24j39!U{Sapn1I~'@;L>%<ž#>fzƈJfLDMnvo7pHv!&c-tR.]|~7ޣ@]|P{~A|P[K Q@4"99d*Ho_NMzF,/nhj]6756S\Rjbxb jF(8p}!} GxvEVn9pjͷ{՚u7Ԙ[.ervѾ}˛|q4׺+x#%)7\2ᘛhuִt+GX>gQs_پbd}P W .Rbrrd./o0 {#~cӏ0#H :& 7q(^| ?*v;ޯ//F }w?KRg΃n AK3@Tz~p?OR fw60?!jJ!oqq";zJ\97\SPo6S([cWfn=N ~S#ÌJSɇ$H)v&y6SD :yÎn`&q#+A0HvQ; 'H殊d_"+ͼ 1^Ǽ%{3~ 97Phl]b3aEd]Uucܒ@;8U1SN7q>$,j75)6ͯ>qMmkub45[nok5 Xݾ9p-)#Kz(.-؈ke͌Ԯ5_-~20_j:&hJk,2|x*f&]Էըxd#$ac.GF`5:>ف(A`$ƓXXʗ'ptlٯ|O|Tf`Ǡ3TcDem`EmGlVNg+ => r'0<|r2*OM\%|;_rs;cqv3~ϩmѠESzZn ( ~qL$hZFbčܜ0?ŔtR@Ss M5R ]׭i[^Ъ2i{^ksj*cmjat~GfܬnbhE9fY S)J;@=-k\M 9>m.em2 n ާCtaigv`_ :{7"1XFP RR8L#^#ٽ qϊҠ2+<+MyOp Eѯ㣽G._?ݙ8Tщgy,_VT z$8R V zŘ!,)3mMxI3e,Ӊawŏbzѐ7crz8Lj/اAVHgZf3J!TԾ[cLXD jQ!6K48Hi_'ɛPdOD(":ſo?sΕ (@D΋?3&QFNĔzSo(55>92ىF1y!I1FT.Sh4hۦ+̷k(1ksE&}}n ˊ3!.w+kyo(JH"Cd,9kaU]?_LFy569cKqSe |^\~.kP7G|F|` Hv臲8Q[>?ˏ]3|6j|2Շ觍QM[ƉswS 3 OQ>`v^>*[*9,'4,9∾`}^yZ8WRb>uԗ x\Wd"e)>0n1sCCf| l-7}_k_/{POb*Z2BD謡7V3ollG 4lwx?ji,-ʀ!9Fa]=R_FÖbLleDl\ee k:5 4SZPw)UlϦ%qeA^!zs=b#$TYˉNwuBΆPk [c+@ןnyAh"aL):p9nD/q}ӻnJUD.q7%WLAJS;Y` j-"b߱˜wsn)JS,$΁zZcߕI*!hԦ{ɶ̅DC<< =$ ཟ6;{_ p@#FVPX<F>_΍)ё*'{[`%,>1ײg -x:xr4-2i[pRRd9Xk ֚p2c#!`O^}^]Ȧ @E [o}9+vWm$0<4.;Fǂ@f #m_ Ma^f5kvQ kFLTI ?b]X66ih]iAT?S6qq#td8tb.j{Ejzg5U vPNe {O9NAIdJ=jhz7}6b2TDX/"8ZS2RU ㆡd-=CCloQ֧8{wGh^+,T An򆪼noѾ6x4T)TVDcWgg!7WLCb# gI4-ꨀ墰 3}x>LQdH DsZiJb5ksXç@y]hi9@$!vTwa#{?ݝ65ئVH+hy}+Z3`XMMHG hh̲U`$dlsYuYj|$lD5v;o[Wyܾ}5>0"cds5 ,6evoeXl_G}77T/OK[IL/K+-^&}}]X42PFB51΁7ᦧ!jb%CU1";EGyvl$u?3GD*~{# (FqJxlgc48fEo2gmΦO1Id@f;$$9&|on6F*(7Nup:6s?NJbp0ɳuNfuj‚fm|;5Q%LmD=$#Q HyL$V~, XioWWUj}B5Ӻ햎bUj,6vn]}ZXF3umlyYp:9gL҂{CIZOFEGz{_{v:S|:^ߢ ݜ"2[甜ⱑ>Q<0bƵ-e.XMF+c^}z0&î%y h:[Vb5Blh9.톭Vh&,[7og]C^ юŲ(V4ߚ ׹^ܼNK;C;wRJ;N@RV zXGW@kmm;ܿ?580$D[pl@ŨxL4pOۿE<cWk/|7Wk]>3e\yࢪ2«"z-;lZaYQ-3<OֻB^;ު Q$( (A\O7Th߽r35(3)jsMTBmJhR]qXڷՈXhL k`GaNj64SZE z Ac L1 72Ҝ4ȥ[QBo:3&k1qCeʨI~}V(YI? #O"nppGa .B 7?\|]A1QLG"1F,螨ܶ޴W:F3''Y0 Ub#yԺѴ~M5򫩈74. au]>klRvR8 fdI()|ɻe:~n^>ʳ2O2]Y3rFiTퟖ)rvOm..BQk`"YrR[`nN6Fd̚%j?$Fi(;5<'&?@?Wٹ0Ɍ,k@0*_!6BE5[ PU)5+Ph;w돮k~!qpA?ƊN6~ugB[Tc0QB dxuvn[o?M2Cl 7)ZfPվe,hGn?{1@b|7٦Eު+cy\::_ eX)2E{^S4g&l]˼ݺK%?4z]]S֘՛޼M()(2p4+8_$ؘ}վoV_M߁c(,ݏ5x5g8_W%,0b26D!o_'!Q\2-sb4Ё~i}{ 7yj UJ_x+\ܹoDX rLj'LI.J ) y b+ !6Q9qnQ@?q0, ')RX|D)܉Hҍ0qBv$${7HvB(^([MJIss@$Q ɋe,x@)Fg =5h)MdKj.M9kU2v_i$hD@{"!7Cƨ+zLG ѪB4VAWj;W _s۹M|:ۭ-_<ܮ 6߲ݰnϐX[O]]7[}X5f2Rq^k;Dw{4Ʉd, k Xʿ#13Jd$DD161QlĽC`>`dykjm^jb+un6MG/R\np.zpcv~sf{`_ g3A7=FmƘd P탽\ᙦ!* `= |_|Ble^ы#v ')YAQf%5rCl5$ c=l{(A'ب:uwHi&~ ㋔bzJ1;ixOȕ6 jv@Ձ&rMp%z}kTu,غ+CSlRV6v4ݬ^_7 6!C)lP6Ɔ/Z=;%OmFrbD1;aؓ(*X f^<\>Nm.O6S w k;׾~7[%JCܳFsFl]T a|L!QlSSKl! vYJQ5QZ#OW{TQ8a/{d\H`*`M>fL'4 0|V N(&'٨ddFkw_"T='Km\;}ܻj\ VTjK5" =$" -r. T~kLAvgf3RkXWڲ_SfxR`Ql)X}L@y5[:. y`y vcs"6=C+&́Q1]N??ܹ_G;4xѵlw*g3|YϧST[|XxBlek7G7FP0XksM/@ =tZp:+Hs+FKgڼ]yV?Ke Ӡ1A0&xq]Ƽ"G*m94vLFD\J%pK)N\u9wu\ѷ~;2;!&bOz1WxKU[mm^,tyc|HykE4׭ڳ/RӇ䧏Q?f 2gw&Μ9ʨw񂞊ȇ U80Ж\[\!=q:+gx6Ad٬⫌ZVCqSxG\R"/r|:QL["Bʡ`d\h:~(V?}4u61tT Η>1hU ZHoa|r\߫5߮'ߡ9Uѫ޾ȟ2*fzźl{_uwu$J$NԸey';Zq֚~~J!dZŖX#rrg[_]ΙP[ A=b"us\ψg 2c")BDȏ( ^vmW̝Fw NN)&'1-A@5 jtFF+WJY*ػ>96`4a)6ZK L8Y.+&JPTe *SH,JĨrl!~pt7 yZ)#Dvoуk"bx𑉢𑪾r+hj6MB6Μ- emlT<=t p-Zk[~׉imuD OjͿ]G-T6SКKW _eF:3s .յ Ef)',]jhb J#xl=edAeIRVxPGaLgԾ6a' P+reJ/rQ5TLPqu >+y#cKgk-bL-F*ςr8Ls[Gb z8v^rʀa*l$8Mu9>SSoqQPňHbJ6w J 5|^}OtԽ L}mgM;0|5;4&Jhi,-ی+OL0'Y#p.#/VvK V|)5uֵBgf $h^x)\_8߾9.׻otWD`Xc#DQFuc#5,hк?T( dZ cRr5s7T"o]1./^'Н^aB S3`liYM|m 9q]h4bAW&q[B!"x!nJ.q@ܹSKt,>PUST.{`jB17 yBO 9+9w+py+EQ}w+^ hg& X16LQDY0>Tj~{pji(4 2Oz#n_;#Č#KJ\Snzm$s">އ_)獫&Ke(2}1{nגjhfl,r j44~dj_.1Uv34$]Y(hYNXݾݴvQ U&rkySj00ڒ.LES(p/c1+<OkFfbM,Q(8k#SjUYկqKx4 $X嘟%zyi )T|*~' 8Fuh4[Ʈg[9X䧏O Lw"F"$^{_'m]I eRL^}<][ސhpM'P+-ximኂ<(<)|Ε6%,ta R4愰P`.4 !IbG'sVN<=}(t:+"LIzMBRd11WL9 H])Fb?ZIq7Rʺ4KkdψD\j~2*ɺBno):4f-%yin!"_ݺtCYJwy|qGװp4Ti2,۵k:}kV|犂".Ici^,~ #*|(n}`LbJgAUL@#kMH8?8>˂0Δz} (F+/a"nelF||KGS}//Y ,8sb96=ZGKy_AEj^lؼO`yui<䧏'%.*k$qїw/{h-\IΝ~~hdaTPsER h#z@9j/?EQ]QUBhs( -Qs2׀ އiL()Y')Y֣{ 8 T>g<.e@+<l_xvMYuΤ(B!1S3dd]rBub|D~bzga[9B6{6d_ S^J+zSDgA=z@չv]67ec]t7ǥPd6"mH-vO楖+', ?j=\T]nUGaaUFssY2$$>I ~qLTVX~+߉y5,O "[Yx~Nیׯ]m,%'fbv9PƷ=?-s"JMȎgP&M?0DU,J_nɾXQ|9eJ@lohuyT@m#{Wm?haOɳ _xdb=7rZxӂB Ϣ'I/!JJ@cuBu!C`^OEȶm/Ob•202{> (y|xӒl۸>R$FiU7P~ɫ~ Y$|gK5._v_sIU(m&^Cͦ<5Ӳ"/ij]#^q~/OSТrF4"Kɲ< s\ۯzy~e1E{W Q^LIF'A Y(z6b ifsת Pu`>:~UW()K6}*lfFfnEI|:NGb>g#dk^;w3*"(V!R;Io ͔f~Oc6_B XL;y f'eprqZ<~,8eJ\6m;ǡJtH>W% Q Ռ(i9yz[CBFyw!);̤>^;\: ~Of#e yFQ+F n3+-_7~L|)cXmh`-zYRoKbmc}GMSo6Kٷ ]G]pnkM[5h%MOg=nxRW> 6"Ig3,ȳ_rj"PF?8,#Θ1IG6+< )13`!dWUV-f<~}7W> 5#P!3}5uR3cفN[Z(CQS'yR-_c"ey毴~oGbgP!b/>eÜ24qh 8:]]y#34WU-Šr T5D8 \pyN(`a ʍIIyzVGҌ`c<Kjz.`j d;&?y@~7=BmQJ^Ly@ qlb=Q@"΋fM͗- c¨7l~MD8n7pc z@uB J~_L ͼõUgri7-MlLRTPlUqˉJ$VMƿE]kg1iBף7Dq .UI8Ab,zO^Z2 UmkكS{IrAkOkvO^^3@;1TԉfGwL19)m " veVK!$7Q~"s7U5qP7 6 Ywu4KaWWx<#2Y+\XW8/ ̫.qQE"z 4BB#Ԕ1xL͐sȩ9 5_6"||Lv|>m-:RQ{UmzZU+txӐ[X+3Z)74Ve诫A5hLD<:x$Q*o1ͯҵ1(CIXGw#ԩ/?6ˉy_9m\%,: z'$rs+r8qxX"N{B/`V:N_~'&L$Tŀ6+f2=Iد c@ATDU7/;u6H}SU4";)}w .- ɾ:~˟+3ѭ|V;:l &ߨZTfSre[e|5)9cCRJbsٌ,MӴ7}1>w,DOxU,Sx6% BfހKb!1R ii>pō23CF#{Ss@ALUqzw-#|-X|]:s`y\6&?}H#a/ B #5$I6RxiB_1W_3mQXlxx5L'Pv3>uyNHSf t4,5-.އll2a:1hԑ}/Oag=3Kf'ٻRe3dGwCYDxD8^(aN43?usU5Vl`h7!~ we#˹Z,4™@5"tpX|{WoVG3tNk'_n](fi: ZJ>[P PL:}\>耽d ;!2A֬#4qϣE5~i>x,}G791eA\oj.&n] Uw郟=OATUՋC$ջ[x'{VOSyz\6UQ/+4QǗ^hOZ|dk8, /+*:тUݘŊ(T?k}2m<]^4||BB2u˃xUq^) +e /po?PU>#J`m)/!׮W]<`^ QQX)ݣ{;T޹Ch<(Fu'A/C@q 4ϖ۾ay|igw%1p3! /B~4+qg&TDkgՎ[!7=&[2 lEp @@GH\Oٖ$SyaM?lM yrgX48d-+H ixPwy=-l-6oͶ^^BsBFʙ,BxYiؾ$\[S'Yt­р[Cn$$ňbN EA}&k%o ĂͿvܗ|:Y^(J~A飏NfP_2]!b:1yӭڇf'o|`L0?Qnx;U\ӓPp8^/Ȳ@ד[eL]gy(ft>;=I5cbֺ&rbQp;st\EF>9%;K#{uŶfA1f̢<Ͼ|F:o;_O?\~w~"S p5O"M?Z1+y7Z~:vѮAs6&һ: v궍Y޵07S7il2a63\Ql) "ӬєǼ`QJ=FcBJH0Vu ]G7y`bv% M}-'lW}6urg=PM )郟1dGq[*>KNIcnF /%wSk7k~ZU؊ψR2 D/!Ȫ[z]z ϳҾ,XtyuNɋ4҂YȜc9ܕl@LZpn>ŐpR.5R/c3aiZΘ)̛%J3P#^EH -_ WoBok4W7Z) Wˠ0x@}1ؤ_e R1//X{U\QPdٔF]Az+n8L#FVlr8&gU#إ_O@.1@sucd4Z_TWAAL00&lQ ݗs p染!H؂pOxGcؑ@t͒:z7;izyA]kd%'ዂbrBz|,~NQWβPT#T~"|廳ǻfOz3ƨW^كG%3*!rC_\h-XĢpLre*IS`6cNw>&NXؒb.ݰo-Yu.QLNFH< )Z W)ppMw6|B5>=?&up.!Æ/MMu]zq{ܶJy6&`Ae,vKXL?l@:)o+y5* ZMX2:"?}Hv1nzϦ _=w+3)'[>!w)ŷod|G QE5xav1BA`J57/cMyNe1cMHļ綾+0uI:07_Om CD+E+R\6%<$?}D~b6B 2Zn'+0Hc6if7@QQrX낓ړms}hUyWf/o/C/|w8!ٿLIPNK&"_g(!7KD0p ˲b,P /g |D)'PBwg v0qcc[;-ڭnhX ^Q\ps 4(fcq@FǸ)E:XSWkO{H C<ŧ@O>)>]8Ȃ T#ͣ$G|2m K_g?]KV:SkϷخ~N7[|{)5sՠUlJ>9!?}Dz|1"UK!2Ϲai/_/@qExWyݽO)xW΅oR3| Gy]1c#3{(`Cl<U!&cG<@3\>>fw@Ls{y͇N hοۏoel_D1%49H+n"7"f[-PNZcm+x_j-ez5k 4eUU6hbY (ܜ(?[lhvEFUrW 6cz}lDq) D[ "YςD׸Pp*G^o~[o^({eACສ~ب9_ <>_-TEWIsʵ%nhueڮv& ^U/ !]`#lU<:ѹ 4=qn7끊s Mw^'F@E.oQmn+3b2]|W3IDހh{Gh:ƗQY ת ѭnuX%=ιXRHŖ V15WV[hE Tf=-'dt݈9!nbFbI08ab6)8GжnE<` j Ec9)ù"Pċ_[l{ jV [| #Ka`񉦻yk`dSmDVfAEhO05r,zs? tn_=?={ξv<~5bx7} _"9Ľ02i ay._B5i~5qң0 $>QdYW%z?(@ab?JUY dtfzߣ(j@1{WL{:n` zD}FF6!D iLz$-^Db8I$I{=8Vl-,TQ}ʑlt h@?}I@7=ݹyu^ [.߀g_˛9FnN|_G)$;LcI!bPJɓk鿶j_w Xc>& "y( ׭0WBxj<6wG65#*pdΏT5}UŖ{Ѕzb6*IK2$L%SLGCbr\J"$ڦ-b}|hǏ]~ _!8߼&~Ym+^-ilUX"o}kKVon]濵μd +r+/=.ONOV`8Tteu5`Cg Q{w<("~lŦG?R~_. y&lffG?D꿢ȁ"#Vv X`D$dcbL`{=@bzOӐ~U/irA6 fL߲[lq0CD>"=*?l%ܹ+~ۏ~x}X/cLX*mͪ}m߀ڄV'qyCΞ0߮,mj{q q6Z[=U }O ~}kq1||T&EQWZC #5b'@w*wd,bD0 K"nـ-4"bj$ A/7J}nWV%#&6d3lh)&'tKg!s(e(?KPH912aQNpQ*/Dx(|ww&+Wa+wOL&|Ah_idgE+*@ƻ΋yK`ڊq@gE 4HTkXG`>~L<إ#_SLN)fI]-8 jkP tq4-n}0WlT@DH(>c,N1PIb-.<gT:W"VXwP m5 mKG+|AH qw7QLFy:g%+0$_y!,:BrQ[9p_1hN/wpVxN^W=&z6&^Uo~=p6ͽ˙7<ι⼎1XKV7M'9.lM(f#7S&x烟G,,i͜Yק;G}Y:|Tc0q109yaekbA*(w\׿4+ ]l'I:O߳/b{seleTuD8VB`ٌb6&f`6ˋ-rԗDP4vj-`A1X 'TCҠ%b-.<OAW? {;\? O;7_I[Duߩ 1\mL@Y3{wؼ^f*+O1# !PCD;$ |Mq)tLR&ȡ;>D#A8A槿6-3KXCgxEBH?-_|ko~0CiT2&9[l@1LD}`XR>ςi 恢4|wE't9 +u!m ZZtBbEj(BU4©1̻: nzHX4`'˲`+__wY6K\mQ,/17ωs0&:hk?e_Qic<W煉h,/҅ɲ>C"ba>;( pY˧tKlPBbux43!. ""D={IdB/aq->)Arӟ?Nlt/RηuC<7 +OE1P11k͆v$0 ڵ`0QHHTU,d3\: Y9r|T\KDDC0hp,Jz6)"/_H2[l\0=Ehoҫ8V8{7~cŻ I߹ Z%ߩ hͨkv>EZ3 + K+lDB>8_saL".R%$Zd:!)=÷ y 4l|L6]"B[\j9]Ox/M%꙰΁2?]Q*~Lj޿$W6ߗ}l`(PC! ΅ޕ\Poe# * R.4%>}>DI[A`- wE~ޕJVx '0"^!A_ql]kZgf;W75eyMk Fw#ʠP8ˇUs8ePmP*`fQ-YG ])+2Y2Q9kcC0 MN"Vb?@䁠߹SΝ6yOx;&"={[&A;S%pVJD*yo˟~.TΏ!9>'1<+||5Y0U=|?;=gVx*(_2O!q[ 2P0q& -t(}o]d Et3BDE*SlOJ^OYZ'6߿zWHmo-8/Uu^S'Qotlg;wo񄏾oW50T/;e T5mfo ߁F6azYo2 v6lQ<6ͻX9Ņ%`-~[@1B"-kQ\pH._=Ҷ [q_)oeUDT_S|ʧX6oI !+Dk^&=z:ǪOOD b3Ca,?b:?︗v+\޽Wܟ˻I6եO|fy`&߶awX͛9TD7n-WkBIDAT~>ƸZ鼎h.3gh { L>~b#EQ:,^[=yB >,\gx5vn}D2[-H(?3]' /e.odf._BxyXXMUinhnWgׅ:yl>ؘ&A@[-X7E%S}cqGޗ&wxa  ao5t9'rXoxPj@J&P{fGNeO[,"x1?Vw= Vxɣ;;{I\nDu EJ]mj]tZ>g_]qt,o_5oz|kVϳbo/G{W>=9|@2[l@?ƘS'VxsN?;W94DO#lŹsIx)fS.ҙ34q-^2z"ÑK~'JVxk?(bkP_c]95zfƽutпigfXvQM;gk.9mPW3uQ'_dro->yl*2Vʟ =z.{|[9❯}G?0pT/"b[l񼠊zYloHRSPFqٴn5lIBe(3}79b+?w~"6bc9TL@m;ڟ9޿ݿFo[ fqk{]~h/~Kծ~l={&|y7R2 |/:-jT{FU_{) [ΝRSq;aо+/y3b-FH0ߡwxUŧ3PO6:gYVc|@~\/- Ûn<|Ǣ! "Fm}J6+޿ߌ_]+ktVFh ޙGӘ]h$TK Z߂8W=ڧP9f.CޓǨwm}xQy+Z(cUߝ?loooM9os 56:`-o1AlD߁ۨbzi~+l2B {~6K~0|sV읾~>g9?!mejovtxk9[UYl_a?y}]+ڢӛJ!ţٰ"b#&~F:z`lRBX;wv̽oQ\^% ]=V+W8W9A51.>62`+ Rr}TEЋ~K%`l~q/=JkW F\(u8/: ].~P ZF|@>먊UC U z|5#;J%R6_ O~$QsL>.gb-B8`GWQhOs[-$T#?y.{lAxg#M<}q (#g!P{7[k߱׽~47V5϶YNJp=ۻຮNIDj$K(ۊ!rJ:/q^|?U^U]VUbWr;~~nNU괝Uؖɲ5K`RDLts ֯tŽ묽&0d(nh_oAq4yJu wn{9O{ڱkVztؾ}"Z) ]g(x6]L г @ kg`R(@>iCouŎO[HӻLW]6NMo߯_u .Ͳ ynvqw\]wb?Y7U7_qykqN{tW]sPy͹fRB>6h݇扃H уl=n |' >,O?kb\<Lŧ~ `߷$@V ښ(.2P. i*.w]{ 3Xje p˕ȷ$GYsWmw^m[N=W9ĺIt\f.db|kf?lOԣf89vk}Y3#,s`j]f4L,wWu%g}Ory- ( l !D4G#5kec©BH<rp%m227t,ד@ļ(hY:9γnqM+@T NMTt3Bi" ;Zn8^!>Axx&/O0|+͵I)7kœ x6g;^zԳxļJe.b`,5r1ܒ:9Ipď =dRO?@ڭ0_/)!!tVk3^of̱ß<Ό,6<ǝ8W1L/R|Eg|<ϹZ5F9|{ Z<pP'p}+>Z_-7X0DH:\d8nZBAڀo vSjf\skyzftj8W0azv3|ӳӋ<&2JО XB!Xc|:]H$Щ~'V#5+4<X?ʷk]F3dZ)&5$U9О#T,Ah,ot6M8!獿kjs O~u=kO_( AvA[]cV6'Ow[1TmHϱΙw2p1{N՜gYbg33'0_ ɧdVFַf VVB!D^.@B VPZFzͷ5o.u3-V0PT[jR!0UPH4b`D(g(P{v̀`:d#<par}k/V1Fr17:y*x#BBe*Fr٢'M^1wxq-)sW/f Jz7!c ܅(`;C 3k1p7px$BMjݤe7`Ңff'>%g~Y]?}s>oy/%Vj#Gyt/ѣH (5Oċy`.h!<nW;kXtؑgX]6JĂ~sF?יg>p3pَoaOߑ<tw3~ϧ/!C=2BPB~^:89!'d6 q ?45vT_\'pcp0`,JAI DekTguF`>ݧkayD.j0`Ph=>GPL@&C^ CXu߃]6DX*>:0Fb@˚;!&@,h 22la{ L;}gsef}O^<}8sYgeOsǹpYD"TzP` V{Z5 '\rj&Wl9vonJ埼5BRܟ lqk4W P!Ңo޹3\ه9ܷqĜo9[T?d+(Ou-䣇ƇadiΩn횚9*@P`L cíݾx` iUB]>@&WKf֙),F;Cϼ̡Y'sя[z0!nN_`~3_,9?*A{֡ByVF1z >+Z>\gȐI(<G/ts ,~k`6R~S% >JTT/f 30ogy/'i'@ H6!#GcP<XY؇@n"^!ROU _cq'֮ )[ޞZ)&{{|| ,:\g"_1=w/Y?ӹ~uΘ1ߴ98s H&vHG5j:3B8qn#.3#^S2>Րva*=Tm]-'yiZQY7P!fBdo<2FPN֪!=| XkJv' Xf |>Բ o4o?C>y CXoKEPRF( lq=KP !"Yjr97{IsU90{홫`^Y<>wgh+6ɪ X}i( 9[倵N>Or0_rMQ'('- fxxew,'=U* [,"M:ZcVf03HvfkY1pCg͑Z?χo?of\L@BRMXc64qp}*P,MKZB|A`xoʍyߒO;oc1kC)"Í$Ty@-2{cha1(1 Xcjա7lj7c^+4/I4 L7bippp{х.٧(\q\b 1w4B-(tΦ2g(7D0s`%}3 [KxgS#I݀+6 5F8Ԩ[Pg K}Zݬ1 C1 "dR֍hsh6ߑ݅[LKJy W.Zٱ$Yv'xp6_Δ~$ ֬#5r4 nɚV@v S٩ZX!!וZ#/*/rG$pw&> -&5Ɔ+XSo[9t u#u=%lȲ `Ӧu]fij3+zN^>:ݗi{^A@RŲuCkoD{xk\Àg΃31lw,w#v^Jf󪷞l 3rQp э4˪pN2l0P2 <\XN; f`b D0fozݔkű7zV~L70F WB #Nvz `g=BBRPPeW0.xwA frsc y1T~KUؕ xk m2N.ҩ𳶵J~N03@!G 2QEAᐔ~_ܿ?jzWbpp0%}뽱7&]/jlN@bY{:cXXJDK:U) Bx~;jm;Mx϶JccՉb6f]+Bs3J_$-=YP6S@'Ep^ ar,k&"=KB>t;j/XF(WbJNTrt Y{mqߕ[+V/m]m[Lå^\hzA@(,BOprFOYa2ӞB ``KquoiDo4> ?uEWt}02~BE WXެ*h:7ڋ Mu6, uǚcS &&cJ{NJ7btjou2p$bPy`ǥAzyt_V/;k> - .y_x6f=Va[^-7 %"e!bgɌ@Kg<ӷH8P@84g}YIz/^&1b|[!e o^Qf h5ay*Pl8 RKO`L*qҟҴ1Y> X*YW۩r7b}RXTǩ5~u眼$!+ɠTO {/ rY;?җk7rI.͂6u.gDi] @ s y:=v徱| @ MH〆 >pp(Aѡk!ߞO܁q;X^Ek`נV밢Y޸5ԝ ӿ03 z μ}԰W2/Ǭ}>闫3ɯ UہAr;Œӆc@uH|J#1w[bpWo{|o5c6X]WaHr#H\.r@[(nOYǗS'-X:5?y&|aׇ7C=Đ5Y ^^ RѮ H&Pj7`yț ",I 29!O˜u}jp2NmG<)kW#},Y!+eο=uc%TvodOi$CJCLZcU\~> <V}erWUVKc)\B+SJ^TYvZ2 :G?iښq0?y]d% ( H 0:0Aڇނ⡨Ć>vchK4WreoFMJE 2@jxHV'+ЄTprr(u2d&ϠmrxjZ`Qqqz @b :zVF*~Gt~34#tvY<3 5N9)ouό  ~w^<p+`8p`Kܼ1T&}1c=mpI.xAp@v1!X1 \tfZ(0qt~r/{99PKD8 J xY:"ODibEz"w<p`ntuyoR(^B~M$7PZ~ {Ht "PQ" "}L,gAy<~}:ߵ5jN:d`Z%M(b 'tLGp(8eylt5zݟak2R7a%[t&{&@Np8jU:"drX'0P*Nv6%=t:SƬѓZhJ=m16.$v⏀PP^-e Vy [] 5Էvf嬔[ La=uHJ D7nA]Yyf3UIϺ suӯ紫f|?Z)OVl *(44DIL@1 P8. #1l6XhvgX~'>Qw2/m{lOU!0Fv.N/pZ1T^dwK4yM,;bazo鯿`R_4Zhz{ o|y9m)h]Iq@6@PcdB~Az@N `;K N~5\0,"uN3:SE@Z<ڣSL & Rj&Cc@i #0YFS 6"nᡡe^{vcIՌvBגq춯^9l:JS!9-k78b\nvMpgܚk [동Uh,/"B ev{%3?=tKn]DBh=B(S(,==Ld@)H s\6pjUx;Eo\@&9&&&: 5 j A C0b<4^[ e[<(T-YpCܓcwx! >q7Wv&nMUY%Cb3C^E'B9 ~ߢi=p "ΝDaF A)PUB`XV*YP j9歔bŐJ$e%Y L $)(Rb$E3$Z TB"EbL)VaE K- ߴp!3ĊP"fu_vl֩P[{ת*r>, >Jɪ Iqo(Xzz;ر <pn @Ÿ7aC?m`YR/RxYUJ%,3Y-]}8nYѝZB y!V!h6[T%כ¦T5nVa>Q,t?RU[..v%CUKbe3)3K ^4Y(=XǞ;εѓ[^"tJ=CvJܕ.sN6QYz/߼?lIƀ͸Ae=.EY"LI<<$iHmUw m_66pι0~`|ӄ 7eY]:% BQwVBVuMx sΝ?/a+h`dU G!dH)o |cQ|"'89Xأ =F#kB*=XIR 0Y"Yk+]&pιs4(/"B BA 1 /MxĐ~皞۶U*[X8J3DP?$~,3ΎdH)d;@"nX[ ]svcp ~YSx&`100E>B~ZB~nciW <^si37FW4{~@!.%@ 1̃j/dK cxRq s-~Toa s@loD#P"~ +}s[Bmc{ˡz&Jx@]A 6@ >=ys-жmRkGh2=JI^0P!ny k#+VYss-!k)Nd3k? >3`Hځ1 A߰FY-o<}s>YZ?A|^8! b?H=Qw5ΆgsnۊAH~@#[陀E ir8. -@m+.uW':_UFz]п 6K-.Ҿ%ᡘϽ;|3眻Gw6{{ 13T7Q 553@`EfW_XU@o/\<s羰} $Ea[ 䙀" d(09? +'w眻n㯿~>, :|!LNMҺTR_j @s۹y9._m*%|$~ <X81s#xPӀ'G]{/usϼ9"O z )^(IB a#[¯ZwyPy8EoW0#2#j$陀#2"o"`*Yx2xKwx s]DʱB I U1f,$Qxdѷ~ ୥nr眻ھ=^jNY5 A2nTA"` (bB {YF]c}wm\j>&sَmR"h!dd N |H3o۷9ȿZjI EE3 !HqJnW]6W&jpι%{Id] 1I !x&`k D #E]\F{۷sKeW> F+{&`a`H)? X VZs2,[bln@+ͼv"2%!ƒ$2Ⴢ"'@}5Xs}9؎ӱP~H|Jԫ0-uVI C9x[HN.)_9UƲ82mǶTI$\`H'^ /y [9L mkU g>*g))Y}^`Cp[itkRb9疑{+[ @#jo}뙀 CFp;L5|+o뮻D&[NH }ZuoJ$d-," )^/6F}lU7ھ}> 9疥|B/Bp APNmE`̮+!c1?&QEP9疱oTy+c1F{`DaQ\@#{E s-cvU&n\kH! vW{SPmWuͥn[>BE"5ݢ##R'(75 b`snXu,5NGMVyb !٭jmޥnb[hYvOX@-U%Y$|8`rVA-9 f)TmqCqRhv`)鯊|wb%sέ`CCCVi^5@>Q#:;@ %$UTvU7oA<pιnhb íģ |Ɩm$0ƘU^f;)^OyRm!<pιU`Ƕm)/N)>kaz&3ҋSK!X?wZ@jA<pιU/>f3|қ&k<X]R^l'-Z/9 ݕYM >F~"7TgŊsέ1 /+!{~.cRуyWQ HR^_&snѿJ'^-AOxLN, $ѪvY<59 啾C ?H&*#Y:"8544d1= F<0P[(KݦsέaCCC-'b _H,LC`2Xpռ߱/Ox2Rw(A8Cqpgsέlwv[Qd7{QXa20Vmhhe.sιH}3]{(Eefo0vnb񅀜sΝ; }BR:a2 !'%%3; = >ӳiRo1ys}O@ =°Հ+0 \,I:wNt>7qQysԓO׺W=߃5Ng!@d [Hdޯ~c=19ˎ=1. xL^4~(Q OYz C#L<p9wH\?R*a&A+YA ˻!Bq/ⷂoqE^uVN~9ܲu77z_T] u9Cm ,%h4 5">"T?~wX}gwhsnEرm[W?; $!BPa j4׏ sιEG_v'?r,&rl+AIE&L:@a8ec/6p9hk5ٵz"=oI!F0\sM}&9Ѿg^z{7𥀝s-&R_YE6 ]IV N/HmyJ=/d<5Cj||9ܢ{JP1 {!}VgYVڝ" LA@ DE:,>i琧s{g3VT39#o 2|Hot9>QvRdL9}ũ{L"P(1=يt_V_y!s  zbѵfXEMTO 2N>;> "B 81`'Cxpt`5[X<sԗܪ\ص` a#UB("HMDQ dZ&( 8ʀfLLz5t󻷍,x9E򞱛ż*ve.FKKTb Ptσ9IܶcGy&27_?_r\ߠ[讻ոUs9s9s9s9s9s9s9ִ눧r>IENDB`ic10`wPNG  IHDR+IDATxK3gǃ |$[䨁JPI fFimn̮#B;BnTh\i* ZEiTWw}7If/﯅yɰG2n|8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888MW=q磀 xo3OO<|Ts˵'X:n~/^n-v;r`wsMvwn5:׬Zھrrcn<[FEK+$ِ@$,#PPQY̍H3܎˅ my*Y !Pf #` I(.Bd@hѬ1ZӀr )H$bHqD@HA"(I˗*"R"rQP"' Id888!i8m L b- 5eLaRla8T{.ֺVY  5;qgq?_M[{aev'c#M)BMii@MT= AC:)"jYCT=jjjj"kj SA5`0&H&G?d¶ _q<07gB 1xrZq< Gv `.((JPgd@ smQ< lP ևaC5 ^_ŷ`7qqK87cO+|\}ĭ9i; ϽWۺ50jh^&kV0הz-<6kPnT]d7!ֈXd5FX, _PP ` &YDB1fbFX)0y/+=:laIE@ 1J2rCPCD   E ( I  M,Q ./b`Q& Lz ~k֗i00H8쥁=mǁڭAow뭝؜hnΒ:Z֪^mkOsmnn<8sq޽赒71 JF Ø6A-O}K%%TVXOkIXϨz5cMTf5DI F&R )ȄP(Hz!)b?H` Qw(UD;ڧ*^J?+9N.arKG]E@@ EH1HIB0 (e 2xmPDPFr)m)#14<!@CO`ߠ}D rh@X_@^64S&),Z,4H,ei,ds/Owyqq87??/o-˃zFhi J 1-ZjTϩ:e52GQ(?zP::|2AExpF_ GeU$IҎYc'[5 @sNA9PF9%9H)y>Plc@ᨌrRQ91P8!!i=I}R}}Շ/>,$ ,BzOaؗeXH'޳/O88q9f/Zm 0C;4keY "QAP#J VbԠTboh0)֏5T$+q4cNHwm:-/x9O5}4m8[Cg93Q"byK'I "!خQށQƁQB0" ه0 8$XH>1ƾJQ"¾p8A>8<<78qǹ83h~>{ί<{/dv0`2J>g wn+NBޮYTblY <Ė68gƖbl Y#P5)TTd*!% QJAG2G8TMg7'\9'{2K3y%U$PbFQC G!hڧx `8Gda;O1/q{7wU_~/oڶgϟ b!rqSqgFX__7s[^QVzʼW cUoWOR5* *ohZdSMXhFV?$kE}@IW6D hHw2?fdj^'Opf; ~{.ßcic?8:E"@TD,dq.@&"( @ R.n.ut;t(8<2;1`AM~8 X[ d~d{ùOïӧx5qqq8 u[4/ ~[*65yZ9Α l$Ԕb`b]`<TX)50 2HOHA}(?LB7 Fؾɇ3 Pp&@,cPG90cn@T@_B_bϨ..nDޥ@!P;$=yf"@%ѬA55 @ X`*(E@%jdQxsqBV|of~1~V8$ͲF4/P85PdzEf2!3FE+a]@; ^ݐpp0zd~0|;]_yqOqc8ӧ+|7-yok/zv@ 4zz8 C=j0Z |Bȵ" PDp4%0Qyf}v)|2y FA%TD AH !@H px@PUn=a6d6zom͇Z ۽s'^~qO:!|qǹqy'#{׼ɡҤ4 4rXgT#j)-(kQl -iԜ69Hs"Z[c-5e 7\>!0w装|qf3㑤 D1)BAR8p@>@1"Хxgy#enZzP 1y2vBKf|7]:8P8MA_E~f q@R#يT@CB:"jTb*`HD:"O(֊/?}GT,(x:{`<_|4G a#0 (E)Pр&Y>#zz;$pH2C{Tǐ3eC]tޠh`@6\[[p8s#q *{N:6Z[@hC[1PZq"#}&ɚRE~< 凁 3_G}L8c;άȒ<HJQHbbeŪ'="x `;D=n6[3zVmn˾$848S$nlO<޶KZr[ !KyÒ̭ TZ66bh-"`Z8~;4Q,W훝XTŹs>c\ )P @%}8@d C~H9< k!0Z~9\zq:9qJy,--dy+2md8s@7y:0ysAF&2P, @ظQSO';o3h)}yNB_S4V j2Ф4Ob X=*<0b(v5dထ Cn/|?;qG8㼇uk߽h5y5`#ZiyI@jQ 4td Y6v H ( FIP2BCI'aW.]@0i_0jn"I&O'88tcV6v;m&nJ:N_oޠfk 9Na#y!v̱0"F3HOBO/}*-)BJ1! #>]2#":؋^CctG%/cш?.8 .pcE_<{> =l^[v6l hVZ+vaQ0Oi}>V BCvN-S\"bVu5a©h4Y|;5t1FDEQD  )B؇iۢ𝔿!WB;ZcO{;8/ksv;~y'q(Zh/%IVKBS"Bm6?P\H \XN lYQHD~uDg 83)l΀(Ę Đ("@>}$JzK-bAb@nh p: CqyNw88p /~whg&\˒H.fҢ1j<9m 6 4$X@J#`a @'ޥ?y\-׹/@% XS|1PԤCqI èo}P>ZZ0}+h;m ŀZ_{{ q\W:i$KZ@ojRWpGE2e:4)"RJ&*Ŏd~fjSFIPH :o[oeڢJĭܴ+g_#qǹPqH>{<[o4ۯ6k06BV1눶Ha ЊAw$ZjA&Ȕ@`FXpO˕gz'O{X,fz #q˘[5mΐ^C<8{uŀA=ΞG? 8S w8smX__7IjukZhCRokG(t,hEG IXp> Z.th?Nz׆KtSI6 y$(*Bp@MmN uT|:˔K\pvq|9F@#*G>#mѾ];#_blbpsѻctqfrCAI IjZhZʹ @[6ච;n+% :!ԃ0-w0pc8nIF9<C@j[ 5o#B28hd@3pq>&\8·B_|EG4zZ^oB,vE,p-H-4' Na!̊Niq#0/ɘg "PaQIJ @lSc.;0b#nl@k)BP850 xa_.2lz͜sk#aJk77[3f|pqko9s~X}tZBˇqQіiqJiU] kRD$%Vo10N')@&``(`v@B \xŐNf?Fs8,f~q?yB<tn?zMt>Klb\;f\c~B'6y SK_0c`l;fw Qt4oW-_-Kq98 *liGޛV;t{u"$'{~{O(;?źA؎oC-;nߥ8׏v8 _|̖d꽇oa#\KpG9Dx&mP @,SZx}gpwa-.W-6)Fs=v"W5+fIwlPywn1V"y܄8ssp 8|3?D7/ima8WC2P[2rYߎw ݋ +xi &-j Fq60UѶEKYn~4si#mj2ۿYW'G @ y"kPX#hq-#_]`]@ӝA6هeb:\38%[=ط԰,+V@q"&-""u&,39= />ӮX=1QџIJހɽ:d$`v$3E k2Qd@F(hHںL |ǀ7 o%a+Eo|mU8~n8_<:\BV(3E=G6ED-Fdy*SPn_W ɯr_}U&#'B2˚+T 9)HD.A{4l+2/B"|UZk77 83|dO! -/w`MQ;uBmx/J3]w ,Phlex\P֜;bL"[r@¡=P[K3 ;1̇UR{ݽaXʞ\K !;VH a&Y(^ 83ōOŘO!AMF lny|B{+9|͵wÃe`M8\1p>{F l1VDtO +V(-jـZR8Z Jƿx:U5e3SLsL}s_><uUlR4*W(A+u2NmWqTD@ JD.w)6ז۷`xY ;/^ x+pǹrfqK`}}mv#b) i"̓jK{s܇AX^|enn:we__Pz|PFI|9 `¾Z·D _j*_'Åp'82GL$~-m믾wZq*nB\6ⶨ{x(AHZ"ФF0ZNdowa$ N @%AA_ _"7H-r. Vmm7j_O#q>.pϞك_VtBmG- wx7w#*`"9MQ?頑ߙfޝx_?.Gν 0".@0R`R*ABZ!+x-[̇|nVtW/=ȯq>.87/AZ6;rLZ*i%C,c=h3Lٌ},W`c/XQ}Q)#} T^ZÊ˩>⋫}O,_O'8{J)@uA- %4۝+(qµ_r/Ã_6%fL-w^`遤UPː%( D^~Ks1ߴm!ZPqYv|D 1ƞ_J-ߐ|ڛ97+j@qn:7~q>Z O h$v30UGr̲IW![J>5w-wvYޏ-R$ X,xExA%^dCd|p{ۖki`n;^Z_>8Krm-$/aA  e)p ۂn 7Yp|(MW7Чkj{-?QtC^a:.;*SG0(WX0C`e7*Y$(V87 cyS `D "͸-&nN!^l><78΅ǹ!6kyڟl!s)݃Z!얠eP : 3'3dW-_u̠)/d|%T=?lo{iS6]ñU5`}~ [Ma}0g"|؆CjIέ}UG.ga@$nC굨w9Bs6?8p8΅3kKsca`z+K`-*;QX``D"РxѱߗĴz|ʪW5.d#f[Bp!Sv8*!eU\w2z qŒYA@$E CA] { ~'Zb췊bxZV?U8MZ;s˵PЖ]ΰ[A3ؽ>`K鶈sZ(F{s+5w6Z:"B\BQ/¯M- 5|0}k[*nnnǨ98q \?'OŴnacp+M {em"dU*4 ptrs NǑ5']+>,qk;!__f{X[iT`Ť,d#f35կ0}l|+~ \.>M}xŬwUp:SII#Vr?.V_S@%9/f:~\8xV4"ӂR5yi ށt 6fR! KP88eo9ʓ\O {D [Jr₀O@b,")!w\1S<է /m~ʒ)C,XxfpB_T o%o{W4*NmF8>95B\_ v^ٝ~:fb{h?1` =Iw@.QX&h bygr@*_֚;4w0f0!EE'b▀W$^x!ꗒAf@ yܟo|n79qTpq%3opky9ozoc.⭘wが \ ͑VYacd ǯq8>HFcяXK!4I6b+n{{zmv٦9ǙQ^\ ˭Sa.5VxO*{B\ )FA<5k$g>8gK7UlVp2™㯺,@Si9hK%ecBU_9ƛ;UA 3?!`[P0Ga+4Eŗ·鰾}تagqMf8qg6!qU&:=R܁H>%P*K4`@(,jڷ!Ue[LB~rEA +(@X$ab@.-IoB_e|[zp/>qYfnD={fϟ#dP-;ly">!Sia @*[D(A% >G|p=bx?}z 9&(!P'8`"1d)ǹLN YN A4 tަxc IuYޞ_svp˧_>Cs1gIȠUCIAXqW ME4fVD7^i"ʳW.mosO@"J˞џt*SmB;SyƼZɈbgF(T,^2C?QxVUx\sPI{&M[tx񢷹ǹx@ǹ7ר9%r (PcXp@GD2H1_7~s0o]<:L+T@ДZ B<) kԥpێs1z&Xȳ*SJ?w-ljZH"b ˎ(ju3GΨ_v@>3f<.-E"O?_n 0?Ȏ8?pAtk79& 2ܱD$J`X[P#X`a8 (X]-7;s>4 7|wQ!OrƘ7@i8"(BБØstk}r@873 H| w! a@ @Ĉ+5/>kYOFT$es~i_GT%s~/|R6^1ެ[)+LvB/|6m'lAC)P5!j :Q%(oHjia߶WW#8ǹγ:lBUQ?ᑄ;:"ZH~̺=: /12|_h:$IL@d`T$"gDlPCeqp$gjYֱVƀ"#\ҌGKy8\6hXTPB2RQ9Kd 8r`n;^ZϞ>' tz|=e15ZØwL|#HZxQ"FK12+:ygC+^ՈU,_b pէgWl@UeI>%>_S/UTrٯ~L[ҹ!Gf@0 E )mʚ Xcح׿kq߼G8s;p\2wb x莄eBM٥tϕQFr{O񯜥W)xM%LſsT/,{WYGyJu'DuW]C_yk|i\399ʩa#Rѣro:vȶ &"fHAqy:2k0͠>q;"ZyX1#ȳCnlJa4^U3Uz@I _x >=PGLWҹ*24H AMaTL2wdXtǹ6\\S?/^7bk)qU@3< ɇ Z0 dzEig-l#JW18g;QhOlVL}u^bw֝/msx,t/8Wߔ}PxL bE@ )W!JįB_o=\+<qѽ{۪7aZ_N" GhYbBf6!8% vǹ<+b b݂BD$^=|~apI8 w8N 붅0c/ Uk}+A%xd_ s)5>_u~gg/vFjDD߃bJ{HJ*lU/QM_|FZN~[4SjTJr2LFɟ_p<@  )bb@F٪'i=i–WW3d8 ٳg6շaKZc O=x-:Bluw:3pq. 3eE4Y"RHZ~<y}FܜqypSH_eZV>V /!QXY[B :)t%:}I gO*t&6BjKگ8^E7%.zDVWNPdUs T\m}~{)5%i/<eW͹PsLw hlq@ jhМ)68~|:3X׺-[oyhO@HCk@ pF`Ҵ!p[d%/+W,PuᔅOW~$ۿi%ecvH(!] k~Kߘ7ђ~iL8WL-sp}}zRoB?_T1~>-SXѺqp@UKTg_8 y-HA7a2Ϻ-mRyŋ(8F_mXۦ)]ne]D |L'1 w[$Т1%4TÍ ~lW-_"Tlns'q>Z|<}wj! S=ၢx@EMC*}BW73g/6V#W򞶿g;`iǔk'*1L\̦lpB>~>opr4%n NN~.y@,{]^UD@ѭ8Ꞔ:@*)J6mryc=nb]Rt>Z*ٟuj̇8X!'~"Cx`@˄HZK^WퟩUlpOgЕ+*JJ^\~ eS1rse1O2?Qlټ_b'Z,RPy<jg E!; EhfAgpss3;xq!q}c[[]Y'sѲeAB&;8Qbf0 0ɠnkZ?~rexyNqw8r5[uՖŹ {,OHX!,O5?W!i_tnC3k2r{UO[~WTYהSo< )-D!uaT. b@#D{͠3ou!e5[8; \P-[: O |B}@D܇xWԂuI (F ^mZYg/iO4}'W_bsJo7_@r1{U`O$ :UjЈ/~_~R^~4C/]_5i͜F}Ih0 640Z)!@ hjĜf rw~ |pp n-A; vo(> P !-j F ;8sd Qmaea^ޟٟq;͑lVZqħG2y #g=E8㼏=W & #GAeȕ!DwZW_.5pC&ïFgy]ǘjQx@b m$ Hhk+jK4瓚vEe'Zd 7ƿ<9*ozū_RxJ4՗/60H ?m㽕HǗ<,,@EEԢ9!_e^"G9!($H @*6-Z>5L^ Ϟg:A\_>Ivx)ߓ]Z SB#bp8ǃ_>7hj$ۀ-QXCb'0藽O9Asqj/CR|U 4$iby?88BT Ƞ}= y/5<'8w87#?~N-kO=pzC=j\EƴyipͽSAi ;(`a$F׶\~ֈ.q;kka]gs T%< `95ZOCkWؗ:r/IP5AyUsTPi{,s8sIx;5Y}ypMO%D] "pL! 7E|{|,^. \~qq9RZʖk("k4_C4WY6?uK/_b)+\c)%%+2#'/iobwIx5wbW<_eWUQPFi%J^vy0)b~7#5 1*Y>66+87 w8ך/wy;11*E2AQ_g;V^~B_Y^IZk^i-;_%L|,[\z7`(3x'4cT} $||bRc~~{{!PQ_P0Qb|U5eTqPR2AiCHDuEP9JLjfXo!V0z/Q8΅<]}TsW?&$nS'Q`$!E\7#.|醊p>x=`>tyIg 2!@\S"{q1|:|3O 8x@!_֖ZfQ"`}@*:4 fvqqEN3@ +$<9P\ ݭnwCg~t"Tq"\3NbQWPЧ @ hs nWr89 @" )2cVoײnsg}c# qεB_jV{L#D<pL++/Uֲϯ_:PWj~bK̡\*oo%W<ߓݕ}2 F4!!$_zIyGg1 yƫ}&㜋K9uk';oA!{5+0v(5aN57`f?=MþceW~1L`/9briߐ^/wOP )%!2`YC/~q_"q&_h.d=ǀbɈD8ԫ| 炙/['dF~2`J#Jd_p~{U_|N.B|FS:_uFjBIYv?Tnʅ?_V|u|S?f~1zeqt%|eW8_e] j$%% !~.FJJC~l/ ?@ǹ9~͖LlMcD{Ȋ4 ,7S׋?0֞G@py ) -l  Dh0DJ^gwPXӓ:spfu`O"ò,5@yQ2Y)IPb;8af0 .\lppG??Kٳ/">*׉8w83W_?ԭ0,{4{.jSHCg͹H= >t=<-6ag-``9-3`NrFp %$ {su,Ƿ?!TgGuq3i' x, XGq:KoL2Y1gEk]3RĖۛ6D;9*ޘM9]zoC&)fT7]4ҥxɺR )0y>K4Q\>ƽT_:)sv~^J*L^LVNS]`LC[V5a wWu<|;̡%J5}GҏE]q/nuEeg9.uTuP0pE`"!~|baDqvp>Vע%skp z(>5IbIfi~|׹_NԶفG3c_*gfק?ǹ,$@S2{Pz$RNg?yzcw!_<{fK۶7Kt wi\t2NFn;My>z~4pG=/ur87 4@ (y`W¡Y,u 8G;FXZm\=K=YxOE<$ ` @B i(n]D$BY*ֺ\w\ٰx8vTI+وߓ}({\`2$|lNs4x~{GOo_yǹ2*$fa1l%`BdaD?o>}={K:Lj;Ǐj-yLj$>p y pӱ!K5%9;S`W3wPi/]_:T}izDL?wIw3W:[tBA p|/&q>!M((ѨWi0u΂q*dz9&S(:gXވЉo$)id&D$T3XS3}pw8?^&o~Hϛm ܳQzhwt$In>iC?>[~ cc]< >Xظ'f0$ثxDY3G5nSG=N݉o}62Ux7|]x@ײde#Eaa`7Z6K:dž;KE76G]ycny@p’&A̔s(>";~|72cap?$8opym'ϏxphN;ǀߑN;)8F0 bν!8!q&?|$D<m-kԈOއppJ)OjK6?~iۛ2G3uG)51s^^GmHmʖ=!"doG`=3rgI>]y .E> $#СT;?(g:;^?6,  ?Oُ0d " V,`Qn:?7vm#N‪Dg#Zw; g{A؉ "(3Yg&z)&ZihsYwը@.bBttjGI~m_BOr/<)| _mk$ygqKQX ꞈ$)4Q|qEڏ:.g# =sb%90;&_;B1avp<`0zS>cLKsul/g6wp4!Y$8v0g ]qkYs q\?ԷN'ޟ&у7,F0IZ-.dnt?_|{{m C0H>xmvw?Ǡ5/fGP8w8γg,Z,[ b#H+ 6H$ej1b/~ !W??f}~sW=[+o~n]ߜByOO8ci`zз8_1:]<8eyzs=v8(2u>IwRc `,R@c p&B 8-@HFfu< :wqRnPXe$LJ3h+>Q*>o6ZtS r@>Jey\Wf7.'XKt֩BѦeR1PfiR̅Cٵ$[C#M k[!nGckDpp.u_ֳynIc \t@d $(Yu~/9vSݓGaC0 08rg T;ǑIOBOm8 ̊Ub2w^&{U{I4)!4 c?=Gs DpT>")gߝSM_Wg9 A$v'1=v'.oY35ҙ BB11[cz/Gn{ZBԨ=YĀ;!!;y, 㳧O3<(gqs!Hg ŬZ~VAEqDhѭ8u}ZCZ&,}°/ 0z?8 j:ޕOeNfϛ;βJ_$ 7ߵtJM8UN;GCDcGQ4Ajg%,;cqqX2E$Ȑ ; D`?rcuv^'H#)3<6-(f0+v?Vg_|qp@l+|e8kvrw?!SXY@20ƐfB}o0gqs!l|h~ۢ+5#M#h[}1:3?@4.986qr!Bφ9", "_pT植p~;$~/v(f㻔cqLRZ8ծ<½jqK0?8Z% 8 8l t!p6?3<5ʉػU2 RdL!A#`>G.H7t$H6.JQR b'Ϟ/677z:?:Փ~oo7+;4+02(cҢ!ZH!~v p w87H꡹b<ȡG>t_K Zq ESnx50 ~Q(_~$h|Nds_gNO4g%"Fƽa02O#@N1l3GnHx`J\|Ls(7^￯;ݼ0)8qǀ"G 8@Nt4{"HQ;:e(82N{G.S9~~4V~|6zvE ~}BC^ޔMP!lF G M1." G!H*'HGC?rYy8^㛽cm98.nG @c}Ihk/_zw3y~}€Gx}cCӼ]0DXqw8Bon/һzIz.%XEFG1x>$qj)SYD&3x)';(n) s=>2'gpyyWƻiWgrN8}s(L?y?NV 81֏ ^uF )@ 9jQGu:ږeg% <\%gÉ!Za]E =40D I,Mι"{#"3*j@3(fՀ h @=8 .Ef0A;sA6f Hp"n;+"+a/U{5S5S}yAue_+/H&7`G gfMs88# _=y\M&LڦlUv 1y"TQՑT!֊ikȡod_/e@fɓ'_?ݖžGf1v6ŹR$Y_dޅ?[IQj8VP2LJ^[?t9u6o"` )@Ӡ}Ӥa';ςm<5cj`'>͍~/|Cr89"s `6=Dl&&̝pp?n^_="~eɓ's~=['a("Jo3j|!*TvQBD~fY 3GNdy?r/_c'nCp{A= >M*s! 3LJ~^^?5;|;KtoޭYɲݿIx?gz}Kj>?Ä}޵*](uet]w@eJ7`9ud)1 ݖ$ynzٻ]kl{}JI s&,`LC%mJO9\Y0gB Ef+q_xZkGbl#vOD _Jypk_|ѣ7hks:?>*F;=1@s3*T GS1cԹUOGկ?y|@0_//ըm)<g  "Q>d{⦬/T3"\]= 8ﮡ_;?K8i ˶|ɮ;/ BcHDK kx.S>K_m-jWi=Qy=-"2V HU mxc=/Ht/YnhHr Vٟ(ݱzKJP#!X~7a#!wxRJG#V>8jZ 橝I][?,i},O !Vz~uRfB{8m`LD_U#)%N& bl( X xWrtm|?]Ϝ15#>WĐ6(kQ,F')yOHE0eBD3KHA9кhK{0q~/>L}'O_~Wf],<CǢ0S@8'bI}'SIf1u"B&-ӭ؟o6s 1yfdbKp{CC .Ž"R Fd2e_Kײ8)@ }'@'Sˉr&g AV -J``(O`2sJq7)wiDLͥv@CB~]Z2:EHVATsjk1yJAlxzwTn4}nB-e{ߩLMy$b? _D%"#$yEd)A Px S3n!XkW4_{-X2@Nd.ē'O.\u0qi!?2 ?6"bR:x 2Ӫ낀.Yӥ?Uc߱H@VGuq2/e/e Jl7au2DIdA)p,z 2$@')N\GX?~Y-cZ2+ Gw|FҦ䀡f8 *Z+c@_~|FQ0gfc6!0yo&fӆ @sb@`O`STGKhD@Ep*o#2 wCG\C-֙@1Lt?谮61LU~L~ Ќ[@%C1]_\M9o ?g^S5[=}N=ܾs;0zku>oY5+5El_vtKUyYo-'+9'/qpwfaL^]2$z& :A].YIϲl ejpx[=?C;q*kmmj@Z t4d jLO}'x8\giQa";A >ꋠ~ 3 p˗c-6wKsu!C'sح.Jkn^<L Lٞpaf>m0=|/O<9ȼ!OnO&իlۑ#π;&އ'WG?^}cVk Ns\buűH8Q؏/oZ+}tuYn?1z韟Gdžoۅu* u1sQJ&Vv)T;s?\$͙0qrZHH!%r$P6^Rls"ar" m"B;ti!o}*ߘЏ~}݉ ?R( l0I* Ph9&sS +}}Mf2$'2oğ#Y,Llyg{la Vs&J׻ o.dSEWuKb{-\3S-]_@#zti@CHX0]S4P 21aDX么m}gկj~a h .HA-'L:X݋IW)eGA80閟8+s#xX#6]QqG czEl :*RO6Ƽ~X>'q|_l>v}@*M ;7!1Mѧe2Wzz{8I ;@KXIJ4I`Wr3?08z~|M[*d7&n)Ǝ^~(1S`I PZÜ9cTO$JHѿ1W!"T3,-0Y-_}{y[c/&Nh$=ڏT_=UaaTYSZn'ҀtO'0a[=u-"9a@`(FmBUXkȶcQq6|k 8W3~Bw_t׷s/ދ< yg}uoR}C a?,E2[ZYێdyɉL2Ne[:/bI"`($u͊a`]I+uaڢfd{q|xw\s2 '4Լ,lf]~i7aĂԌl;BZb}IG1RB R&yVJ1*2x;<'s\Ŷ= XwW!Tdfmj۳#n!7*4cB?VGc|Tba)c D KrXL.b[E앷$Looiɳ nDD&ӑsyĴM CcLDplՒ'$r>@':d ve.33 )8?9,geCTXP9͟uL8nݫoX]] 11 cZZZF(P?|jHj*i âK'S>1K74PX 'og`7jd.N-;bvYj`}8|,f^ߎmMg b* v_]"QQ05|G9m3bjT0lۛn.|;aAAJO`ϑ@'<2x"YNrf2>K۟II d>1]þ@bj\8Q7(B@Jq0 մC9~?IǏo= yr s*Lxb⾈}πGm¦@"]{8y&;8f|Y<'5___\t9-X_1gj߈&s'>/hZqX/N ndn"|]"p~ X\M4 h26iE^ue ̉wьs5_У5eLfL3b~f @ ČD@Q<#@t`} .HNx w~}҇89goU{ ѝ`5ex^ۗb}}Fs-go 6ڰZ9KA>䑈<쎪lQu | /R/A0 R`D6 ny͛hhS=vK!(95K=οk])poQ橽HK(8Ҩ7$fQyyznBṀi cd^&Pz#-cZ&4qR-B [jk5G6bSjƶ`"i} q( H΃ZJexMJͧ.^ft RBp `@E}S6:<}2o0?slWLGbO#QddRXz>޺ᒗ=ƎXcBر^@bѴ?˿5g2oONd_<;[;BxADdgS3O:O1~T%%GRpR,['R3Be~ JIHqxo(M2 (E2+f9\=)ĈOm2.ݶA,DCBo(И$Kzͳ.4x {fvlЅ2;'O7v9~. 1@>DUBAj_BTŇP´EَCxF'Oӧ֯zQϷ6?*<#l$ue/@nM=wGHe!ߏw4IML$dsLuknH!|vr1ТGdp6&Nߎw_zܽb#C_5+lCl@POu0 3J8eDD GA3Ds@ЈEi۷g_qKxGՃr0_`GEhdApfNRcǜmK`c,g@믿?bLw0y`>{dD6\z [%'>O~a [hWn 0i`]FӰ=қK߈sSY TPQSPR(vcF/go/]4$J1i8ҙG,  ,8;}Fp@X?s޿K>'[|.J`Kc ˿W O9m/̳ǿ6͍ݞ#T'"|gGt[aG2^%.Hcb–bPnt-%|  y7r đoʇjs b {(= 26L.o]fy ]2Qp$ǔD@(WK}팉2c'wL{I@(iJ@<\-e86nU@R_ZCI~8 )r5{(""@i2mδ. 4noNxS TNĦfH}NC)nG|d7" ?WGӱ ʽ~ #-TT1+H(< "cM'̶6\aWdޘ#712آmn 5&w@vD*D,IzR,}U89GLb`輝Fe; e)Fsodh~%>~i\I u&'h"*SA teՁiWt9S_2o@F<лfͩZMÓ'?7oa1C={wWސ+"9BEpXD*'" âmڦLUˆ2 ș{%'2ZLivG&#*'Rm̳7fR2ǬZKbp6d.KG݈4}W$%ow)1 ᰺ b1PZjFT$}=K׼bL`(: OK>럌|hubKɄ V0-]~0{AK ?o.O6Nr5wqH|B/#i,Pm(]7}XUHnaR'/O hs > `aTl]3Q An)"#D01.x jO5'$i/|O_L`r=>[xkRG-.S2/+׻lG&egL(]ƴTD{r^oghĻ\WlceKE:#*jF6Ha::,ɫ@6&&قQu@:E{c@!5 e罀mw8|oًsU0oSȞ= f58.x|v[Lq-)b? _<>pKo`7:>'n19N`$"6 Zz&<|x_a?Fr ß_mM@n{33DaM)dpΐ;20g' 4O$UߑQq(%)Sa_e-pi-@d2Ka=[/r.zRc,T8qSrBG;X4C:2zк NhX1Iax- 11cn#v(irzo7{a/VVgbG w"Rjʞ[N -~4Ԙ 25ȴ᪯}c{!wd9 SZ{*=-FNDANf2!a t5WgQrH1@{Ugwy&),8O^Z,}er Ei")އ>SRB#Clh ߟutJRf*fq;UGh [fvGcQx$tW/_=~dJ|w^]orj]@}[bE4|4°m6MSN~Y3о|!<`b~m x-Q/OfAb<gbwvM@3,Vw%;ڀS&RC_~߲Mf,OOzg2B_^_%&qJC1GLFboh7Kk>Y0bYKamJ}ޠ  H0T[ # fbL6>y|03B x!ρj}W:Qȣ1>W;`D(5:ÿN ;DDYafămcDɖsas-f[{O7q3*9 bf?M1prC؞"2Uq@wFy zcT79ɼ=Ch(jq+Bƿ,xSQH@P@ h: &x/}wGtmqۣP`b={CnNq-)a37C}`'Bag~& c*߳g" |6Qm(Q$Ќ6m\~O2yn~ƣC/y?UYHiLUIRh??,Ej/d.qFxZO6f2e9&dG<Z5mh^lוty{#tj>VCCa⬍|!΢,@%hP(aAz$>Zy[(DB®g^L&آ<{X_.F[s/Zg_aOm&K]7mQz*¨(b^eaf?GѢJaG*Ȱ=3ISʮ~{QŖbiլFw(}Onj/{}羞>{zgd7Š?փ3Eyr$ ,=BbU)2JZ*DR"=hRNITgosO<`yPPp䛴;u[$)B%iƱyf2f!PSFFwLSk= 5}O$֎ p>& 쁩4@8jM_LxgϢVfEL2q?~ُL2QsK8lo7'}T,@U ޗRQU*T*Ry۝d O3_<{O=sz:v">{'05̙e>XNV`@*8e`!q_7 0wU3̇0?>O4)Q8N hAːۏ6&:tN՜ӏ _Z Z-ߥ8%uwb'^М}-+6 w5bo ǿZvdZ䞷cU~#y Ϳf*@Q( 7*Eʅ/S''>~_?K^NYmU]3"1Ll$ q2XwC # H bW&TD>!}QwˠBsm`Th ?$T@qA1uTEx>' OǏG9^pO_`҅L/ݐBs4FA(: )"}v<ܴ--m(A&fcƱE[bOR#K{sSyr_=)HDT>86͘b6El7F݄6Gœ'7|0/^t"!I+D3m`D*0a+$hш4[g/_ԝڇnI_$%RF?5v盏י̧EpN 7^abQ"0e$6,_]+z\sm~|>\G  ˘*jÉQHLc\?XO]EgVؽx<SZEo+F?>Wr>_焇ù+8s'Xĉ~]DD@%Ɔ-hPozZU'(CʖFwkRNUP"2-z o>t(F7[wqSp j"l9|-'CLD[fl{dD=RQ&sMnj_ŕഡkĤDRBR-u%hEy9eBÈep}z@.se!/x탴p*f) ff*gbסeGդ-VQKYJ3B(8U(*'n*fRV-mD6MԐQ}1oy4ڈd2WLN||-쮈cf{ [M )03HHv:9%G"utL&s5>=`?I7)T*e H+ -EwβfhYdf`M:pX{1p׏jϼ 4Z#D c#@@\@4`j-̭m C¤jѪ7ʨPF$Zp*8c+U0P 2*UʉTV{˯f>r#e,e۾ -*XT 1t5P]H5, )1śA^&\]GQ kɿeLKLR% N.,J,qS忓xD,5 khT+m> ̚x9^s\tB1_E ,) @ZVHڝ2NWԫgTNle; ]?y ̕z_Asc~Nc-3Z e *q! *4]wJT,L`>}1X *lH+Bb}!G_M|GvYl<2{l*HR% C猵?_sby䟱F9sw9_?15g"eRZUFR1X?]d2ģi_-Jk1qۃnRSR3&=Զ/\64mX~#whҥŅ"y8AqCC9$>h|`sT6E~\V"6[``Җ^M dq E`!9ňQnh;7P҆$u/]e7|5VCև~N̬ zJQJ+etlJ88I^q3Rg)O:f 4Ŝf#JbR 74ɒ!?{O c w1bPmp"fc=AU=JqJ+FJ7HF z&\>po?K_?VXMU@ 4M0`LUcpjjr]6hƇ[HyO_O y3LcE@W4aLk1~vc5b .?pP8r10͑c); IcbE($M/W!>P8R HY- [³ބ/[ '>"L~vƆ1w16@JQ;Ew.5q,;a8*/3KHv|' xDOꃎGKOo:3ZO chٟE`$Ab'٠Om-gDͺzADѢ"cB1FCD6`vz5|b!@hvzFV/S$ &PPԹ?;:|0ިhX af憠S3 `TUFVJš/}og!'> ?/O*f8 k=1˜Xva`* r< npԸ/SQ2Jk݈ld7]7han)ݧExZF)HwTI1;;kbZN,] BkʮnU˶x[}Ƙ5 =L,>@0[ 0d`Z`o "+ZVh9FQA DA'{OXnh:k׭ dÊd씛!mG!aqm ^rk (A-zXH?!I;߃[hX9pAtgaebZ +=2>D&VK~OO2BN|$<}T%8fpw bmUρ=qpaS Ӡ_ټ4gi'@][ua ~.[էgI5U8"? 8l`2L=S{;[MZ qJ@LƳz׻ے55P1T"% 8u:7踃u#Rprص7Qˀ J x EZ$/(*鵵~LZvo(UVv}:ӻ-ӂpZY7 lqDIko1eeiѧ!u~Ƭ\8ƎQ5rD)TR=.\-.er'%)&xbTƭɆ9?u"xtk!'>~ #gV;jrnj=YX}|x"اJT㻟dn}~e'"%$yhX7^3)W(2yF!uCu'ΰBUǵIy>I TOZ%&bgbR 6fƼYr&l[<{wBw)*U9?s dk㘧etgN d2˞:$7?w'/>Q誾ތ6Q}4/-fyZcW !};9m7,ciP]@ qULo+-}v'>A{rW YOO2crc)hCB|̠ +f1\HZfB@1FT*B 5N%|*X卍Vc~ۋ eNd8nnBk=>Ȟ bLP)UВOV4ʧ^u8+;zA@߷K"9gd2e7@ 1 ߻}8sA7#m=\G(W&ŐN_}7?NM7o"#[ q_@q-*,8DK:eBH]~[f}pJ`ىz@m2'aalGfAXg1[Ov _QWʴrKt! .Yt h0Ffav}m!ŽeAx/g}U'ƦA2#܏]߹k5?o},s/hWo; jͿ 3I2XP$ ; @2d Mm&'Vb?e9Orv]A,cw8p-r_O1\o[?C+t{5޷1P> !,@߯$It &u-]W./-WЍ>4r_4E C{ZaoSh-:yE5ykcS7rSpp-OSS= NeA-__X6ʞ3M n1_TߘӒ%Z 8(s VݎU&|oJ'!x5*ޱS? :Э3_ZqN/??ny~r&PDlɄ#_"۾vMhcp.& 7@h[,o1Kw;zhSR]! sBؕHV5v8op1 ZD3DWƎ3ׄv53bt^oAa {df1$&X4,Av^!(N48ʕb"%Ffe!eođkk '>`L~ /#h7@n {"z;&&`}xjGN%|d2#ѵ| sIY&=a<]^M‚#$y|㸉c^Z^[qGo>!g>y#1ZTXKsOhi @,ni s]% ] ^N&ehkm[ M @h}LnHR"NU Lʖm&^¨6̵+GRog[aWD#– #K>8fv~8"sͮ7jNPq %Tkcb?d>v$gh0/bF5%B{rZtWhhqƅ&XS]]Vӈf{Z׍kS?k9{W&bWX8%$?)1 e@Z#  z| ]2p n]NK Ez2(h6JM=N[Bznm.i1)B)qT`ˬ\r׉`@TZ0QdSM!L*qO@u(O ƴhv+aWfw춊N0$7`̵']=>0}^޾/?{qop坽XoQR0#RgR$fYXd2Ҿ(Gi(0~c0B" >U41 ?`oR5]?8n_l?XDE[CopiȊ=8-Z>mtPXj[߆>)@wV 0j_{l폪h ':olZ2щ7[ByIj|JsxoiDwȘPӐre$,-(}K!H5LDP֭d=I,֠Gp+vl+6P"D"e'h$3jj/9T%75\fLg2ՙ&=h~ٍ L;S8o _-uX7G%JhKec j ?58n9{yc,зw];O̰""no 'F|,ͽOzx.1jbr{.㨷T1K޽p?wexK`U!kZhZc& AUWCSWSaIL@GbV*N;ógW5LN||We .&{mHU{Li[\?NäQ`1kd2I\ţ8M}:gj\<B`ԭ1k`8/f-u`^G#6 bj}M|-CL+E-Y ;=r2I0Lwa\O I Jid@C/a^3[{!:GU.uuzDC N 7nOq2WNN|ln:FpzL]-1F4fWr* s},W:iP1%R+d2mB"V1m9up>'эLo8,ET-C:pI:2 袵se%7c?wS R3voe]*IU9|Жm~I$1y`6pTqzthcRUN. M˗pN( e)ρ߼2 —֎>G䮙mQjt jOrsB~[ߙ9{)/UjINKl? +8NU%VF&tnNwY e-)/@G0G}LGQo]lF)࿛.E~8{^Ūs՞E:Y_ދyJAEzS@v־o}Է~2"ɀ~ҧ,OWe7,כ$1)1ӄhT96's2x/r<RGL&q'%ܭ/ @ _=9T a{ SG }qw U'%^ߵ~;|*,AYE\`"(hL88׷eǪьϣGp} `kb?vo\/+{]p\|oNVI=W"QQ I]fq4KS0V=E\ą`!s<\8g2O<ѯZ7`;Am."{-`,і5Q 57.CL&9k?ސd4@L -UV/$õd-f>K "U^&/7Ac= '\ IZ1ZK2n;M '.}WR &QRj*ɓߘVf&O>+_ʲFAm=b Xeq?f2O 5$.qϤ iR31)%&"|UL6]S4<7Ƌ _x۾н`]1L$tF̘[j4mp̉](Uя:uS.5'L&X+Dx4q%% 1Ab8 'a(]84>,h7;=?,&ߌn/-C; Zoh|LV pN(  %t%8dM~6+<uL8{d`(X\推c"m0"dޔtkG'1]տ;d2%N;Vv9mGmFy ?;ys@crXl0Q.B'}UH` N@%(DMmvt7*g'"-drla6mv&HTb07xP]kZyj?+CͿh8d>N.PZڢ'eBEMAEDpt,[NbKu덅7fuj,<ǵn}Cן֮Oh4cet>I r5I 4t5"`)mCq8\vD/.ig2CrMic64'pP7Ӥ'Ywgrb? zw».oh><ly,ue!E'?I O>ԆL2XDEX/X4FjULJ!"j_ZvK\0o:VQ2-&PQkg>ߙbٗy2B K @2lͨuˠ_r%[mG1fc36p+*L_߽}+!'>?1Ҡ8vU];ЙT)1HGMhm&ɼ} q;ڏZ`>-)c P-+/[-:jC&zB\1It'ob`I& 3)*(J!K棻Lb0F`KUlMЪܾ+!'n0f&xLcFpb m 6d#]4*]Ϳd2L*zx4yȅz>bq9T5kc"hCL@Udޖnt%@44f(I02;h3N I`ok͑ɜINPL,~?l"v e&&bé̕ T kEG/Nh5|Rd2OߵAB/k]E5.mf4XK]/h uiO0WD@U)Rj4gΛ +#'n O_Ukv ajP 1k&V*]l_iL&:PEWO8f-ϏZ-q2k/@˽fpI0[ o(i}f${qi̦];"";2(AZu9wrf!O3|K؍VHF '8RB5ߍd S ")*)\9]+!'n<+n-6LF p,10hd.uv%wE9qd27Icק(_ca7o,ׁyj{||l4hH}hEόʘR& ˱u  C  87vyg>nr`/Kw?)7L]Ylr =3g-02W=4!i/p.}.yLJ7\^oUc%iK-?C9Yd2׉IaQ,$YiY.oy5̣aՁEc49w-ݨLL( 8*3Md֓@kSJ:I0'39-lr s%nx‰œ2.D$-e*#p)$ho2s ӟ+ i^oI`Dn-_} #Šd2M"F,>4-U: H#=,R8 t+`f#e\Doi/ 013UaRV\[1>̞<7HNd.!w,6n+0v–)T5:ZMw.Fi;4:y EnN~>K/qp]<s:|R:x,5Iҝ?2̛~4w+KCǕ3[-h(5y<מy7ۙ}|\t+^TXwI Qvcm *vLJQObt"e q5zݗ;~̟N hSͬQMHP *Ap&#-dT,h_^Ӭ\ 9p#0h+?-%^S$u3K7): RL&sq.Yh]@3#,i,f3-G 1j,v9d$$o`F&X.- }srJPTB JJ,v1lZ>CN?~—ְ]v@&Ne.uFw;L?d2'fHH[# f~+fVâ=֨z[ʡ&&XʘyY|0֨HBd\:99qJP)R-8ї?|j|}x_ D w Hv%].-aqu NA__r'*n-'<V)b+s)8-+./OL&s9훚üD{ ` ,!~@={ #05'{d2׳2*0`рǵLJUfE:p4vL a2 QZEAٺPAHʭ APO2BN/ "=ܜΏb)®v[LĨA//is)cNXSPe}(.3G=Cd fif{Y'5ɼ!6#д"MXy5iٚԭR7*\Y42* N'4ȶ>'*MV]fޙx<կoebRm-"[Ąn{K_Da&sx#i݋aw&b)oжF8Bg/ %_G4m4RZLO&DMƢUoz#gS&l_wN2$'O"oo-?m eb*Z9 X+Kk.oS4+S&7gJLFXtNn+N3Dz ,hwm0jx=shk!x;~;~Nqst YFO`!$r&*C( КQRd$ʦfw[`~1[,?/?_e>tr=W %AwBl*-TdybwY\tng 9qm(?|xk9׹s;o]g%Cn_<0#Lv Kma`}c1@PO2Ht'\9Vv=89(=}>F}ud]LСSE͜@a"hpaL[h>}r>} 389'/^nEn 6*lSL*Q\1\qdn|4|9 NDP@EPYM\W_2@7/i_4CBHs5j~'\,-H`@L P(Tb `6k6?^"' /7{b숱2ԩ*!dZ)E7IoƟ\o)Eb*˶WKgt$i]"mh twfjd2Imċ *SAvDQh,Jigzy񓟄gϞ)ɜGN'Pŏ.4;wEkb@)ҫ-Vf>&NQbcc*f,zӿ-x'WA^(UJ'* ƿ;B'(ݲVݚCtnb4h}}mcRw^ "5/b_!󬴄d2keg[! dĂD0Bm9moK;]^67F/g?c@ bW?U1n0eK PlI_ξE5۪3蜇9dyy'y~Gÿc_RSSNL*X{s/*gt\t"}JBRI @, o}8nav׍YkƘ'KАr[:̛~XqnW濫-SZ\+gyTڽ!c@ͬ LVӻ{/U6̼9() ip`vWpDƘ9|ÿ̧ͰsQL+oL&s􁴤t/D0vY*[] Y 0-cB`P0ڷ[wUyk5amQ8B G`.ԍņnqH1{Aq +>FBGuk&nV;҈3LIi Ȧ;f"-BeXQ___mgm}&!׊ɓ'O_-/'b veK-3+#4(M ˂OLh/}j [] ەU [.1I :aJQqX 20XF`ywA}63>-^R_q,shwid2I-Y 621"R51A ʪF ?.G޿wǷo/],Ço1ɻ9pM<{LkT m`Blê.7]3Ͳm_?]fL I_0N-U,[U_190$.v *uI`1X$qeGMQk8jFXh|\+<1Чݘ? -(cbb*;2{_!oL{W4dn4.ZDlٲJDQv0~Ͽ?~~8ƨ=NN\O>qhSd[|%¶&"S ETf#e'.4wsn_$T|N^[;zpCa?NǩI; UR)T;þv%ܪݱr{쎕\#A4\VXݮ,~D`aטH~x^a P =9M׎3=Q>9^ >fb=ZG= >vnpt+@Vd/%`(>1qwEN+_[U߄yì Oo7@f&kqq0?; [A6d d)Pa8پəD2FR >]?*f2ׇZD(;avF7VNDٮi)*&Hԅ.XdqFJX _~6 n\. ҝGCCjJ?l//!mX`bV)ܼGdn"3RA )JUTuWv-▖VU-\Qb|1i639pM|\0+&T-MԦR4?3WAgϭD..Q)#aoܙ(wݩro+[2.7odGmf>y(I; X=薷e M3A XP9#?l}o ZZTAkqLzQM)ARCEEY\YeU*+G!œT_ߟ8wk;&~|Fy쎦-6K^nfޞaJo74jg2׆z)/hYߛcewiV}Ou NBo #T6JfL0A8jyҴݭx]zgO`䏘+F13 mGE+jK'@?Cr9ť2d27WJt4UEAQ8N(FUW(\QUdDGRT,h}|iQgxAN\zWˣtF~A¶bMTo`} -͵45|Zxo~9w8k{VTVI ѓL&sY MdUs"T q NboܪL -:C9!#1ʼn1vU*a 1 Ph&L1^HK9V֛#vMT1vQ8WX*&d u]C-ާAdn+]:a1w9GYTeEYB]QUXT6EdM UUl_ O&H?mU-Mm1ealjB@XtB?ϝi~rL&s,$LX7Qm8McnoJ}SZOVpiitB?- 6+aZ*"0rє' 4U5K1ii%jJiR0):W΁8L%:J LDQAp+Kx)+\太(BNljfd`fV H<|7] ( ׀h,MM-6(@q̥aߧ#:Cf2WPq!l`h# ۣX9`Wc`(p8l`nRw;_XjsIIϴ=`3TaAim$;S0Ro+ThѺ xP N<Ud.IŖ,KʲHe(qeSDBvbH 1j1UUSwӣoZ 'CN\Ϟ=STV1-BFeˌ D*ȗE%ÿ>_~S jOu .lipf%\36¯!l @ى%#A&sNQQDTyx8UOQXzRWo^{vrzčFp,PCpNp" 4Ok"?ʝTzbHF%*KRCA@X1Z)Z8ܢƩR> q.6 L~IU( W 97~tR1'"!Ǝ\ԡEd :gǿor'BN\λȅr$llaEt/4 kKtc:Yjo\Cg 4ObU {e`EӿY B m=5:u gq{DžQjw0U!,1BMN}{4%4!jG!fi%~ms+& A]@qPQLR|  fDI*d4U߈jTQVU({@w8̰<ʈP L-( /[ks_񿉍Z9 W O{*ubvCL6Ѱ-f0@E{Pڸ6K Zl55ZX`  ?hkpbhJo'߹'*fB@Vh]ωLkI_TQ4U(A`"ɲy"BabBBġ).j1/Re%>w#''3Ogum L3̻0t_s+uЬhd2WٲRh G6 a7wߝI4^I)2&&fm A4>t3_+?aN}&K>phG/[E% 8m"ViZ*ݤd;L9߹X/ޟLʲLs8W}=Dϥ})!#PXP5x N)Զ7ǏgϞQ)9pE<}ww1nzN7ٖa["if(R_t$9G$vw>|޾F.u~ }tYd.?5*6eo/F)T;T"iԮ y+;%6!,k`q~AgC6l4ϙk:W $31RjalEE<1 qq9 \;gŀhrT-M"j N r{nKԏXiPQI<#_T1FGIN\_|Fqq4{ݔ$efbL xFѬe ^ 6Iy\5C;' U4۵OQ{NZI1~tF?7e61U|aK'7υyf?dj Q![,*(1pPsEm$N&y'Dg_OQE5QTeLԥV2 G:X3Ұ Te$'LumQi (&]jWUQ㋼4e,'"4]cQjsj#?>/,9,/QY1}2DUcgF5hhf!۷"g5L&6 E)"WT㒪QF(޵CXU\JaA TuqTB ?|~?Ϟ9pEѿM9v6Q6X6Tu{ys;ʐ_NRd2A#M k?cAԃRU)GF8lEkH{o[jGqs++&*DͿ&Ϳ\F6VGVeP*kX݀@qe-df"K; H4⯪׋-LeL:+"p)^ N6c糖s/0.kCw/׽n:N:–។fL"Au)+C߉dqn")M'6p D@E&KM&?d X>0WF}?5ԣUr'!ogEBMJCH$؁Kz@}XG6F;|88 63ߡb=2܌?w[EMaΕG{4* x>^( hJB>D(~#LN2,<#Ǝ`iUB9j_`'5H U9exL#*/ u U@o0UM@6M8q٫c8;[p0;jP wD0B[+>}8>/INj[VTw`PwVT\lg4mx?_ߝ^ ţ2ŎW-ZUQ`+`bQzʼnOH%^6mWhі;=dw_ -F":)`Ĭh%u [(IL~Mw?kZOJ'A0seT9a5gGM>—!BS #( fwBvOBXa]d?ϑQ7*׃ϭ ]/X\VC,<(XE̐ HܬyY@6xui?Ҩ~T ` 6cX1[*N(7 }Ts!>4mh~"by4H f!rKi !QN:ר dqRx#<mODP.27s݄F]0OanIOK5hgɹEo~2?BѳhorNЭz0?҈aU&39yyl {Au2\{Y/.48K#u/۽nzt T1Z]7̒YN!yg b/@H)7ܓ**>!Nݿ A{C3b|2;mSD(+կ _}UY5pAۚZ9 GBI I콝uKp_\AaY 9^A>UOAK` +ô'`IzW[Vh vCY :x/3x4ޘgfrbs\F2JD zAo/ mmr_\ 8`{Z$x J#P/:q|^u1g}}4W ִok y#4iPoׄ\eԙpT:WT 5oEv_x`+Cֺ/|?B銰8GO`BGn/ v8=CT zH 0p0a `+ir7C8g%0+ _s"&l3JUJZrN_[tϝ,^7^'hߤ?/o&w[ZB|$G&'9+ /`@߭[LEŇb]:Aߺ, -A.3!v`'d 0co{COAF0#"bѿn{_!=˙,( _9{),qKn@zAJrFGEA9.2џTs?$Bhϻ|WM7g;m`F|""YlC]j& $zr1xDPv6d|ԟwoȖY򃇳TzF\۳D%s p997wippoJ-e#$IIDATocNbݟOx%؍؍GXqn' n˶0 9 *Y$CB1F8!? ˊsM~yN'!/ﵘ,*nw `Î%|Ϡ19I D\[;O,ok+5pMw=,ǍԪO`"V@`q#0O<_=**n :.vTwR}Dr9 ,Yop#?Ww^`'b'?$Aw\TuP-(Y@)fߨQ џ;|/ pS2A?s7mr(S29]/Z{->o>]~-n~[&/߯~hC]DC?f}qZEB1$޿uy ?>O)n{#߈gztrJ|WEV f%!XME;Toz)$7UNh M*%Oß/6/̵;:&o_?y]UBFsY-^*n 3 d.n'0# ȁ@qBѺ7N ]ZV EwUШ\*pdK(&۾YNg_[Q`瞤+AhX,.yh+fcȹ,N0z@fA6X,Xmh61,x PUmSSÿQYx|w>oPׄ?~k;Z=Ӵ&{BPB$:AɝَqU H/o/Bρ_){<t2.l89uX!`5<2$2~z0E9u%5'y:$IPdm9ҤL)QOB-¥5؍ *6=o$w Tp UbpBWt=ȄL 86^Qq0s26/Zmp.3{Y!_Et zޜSuKXHEM\>_ɺ[8b~_v.6qVbL;#W^WN[?xH?^™;j'۽Y/b6c.(]@,H%}+* %(N@oжmNχWĜϠ{:WdrDQŖwa΢8~5pMW[]zxwz`GdB@:QQ0L2M ew[ ~$T}x7PLPvpC_!v:Ɇ|XUBJo,-Oc~2}zx;UT$8i4l&S/n{T`S-rODʉ8YWV~w?~k/j';&xM[cl q@ +)˥z YE` O2![U\2W5e&^{;̚[=G[~J18O 35ԗLj52kٟ/$ZG*!-sM%HD"H%y#SG{O˿g}֕$@CM\֯p-sDHKP[ -R?#oz^nuW L/Ϟ}M^w'l }*$ퟌɦTQq'0cv]C'yymRWff+0)};O5WLo!LPm:-vlWUEVݟC?]BDg?Jk1F?W ūbxᛀfƏU-U?ȝ@,ʎRs"vd—xdm48{qN& q'@GS.I+-BS~ +Y+***n A-Yco=<{8 XAU(xf6TKzTq ˈ sPB@?CnZL0tyP`۞{Qm$7?DM\JuP#Br]a0)0HKa^q+*nqxzƍW t > o`pHp0&$NN,"9Y21΢o) QTR(/cհ,YMO*xخ` dq?Cr?WZ=߅kӻbۗCߵt0R4(iFO'0wta=(jz Wak}}$D@wofʲ7n?>ysWxyM 56= 9M|{x[՟I[\N1Xlpx+UlG8WTT-5SUdj>IHn` C@DJ$mkG`?7 Sd=^p7zN/I U8"0 an8J2%Xw SŠt}-Y%w/4!WC@h 42{;r ioOY ` pEpIJ%Q4;1K3xAMǝZ7(j-'Wji> Zڅ @YAg:{=8 (2sw虃oj60g@eAo@?ʶLV!=lDe?eݩ-9YPEAuHйkۅKͦvi&K4XLp |f! Oo<ʫ@D'@*Е~0eV^Qq-(La "R!i[޿iBi|19CY?-<͌4&:'$^x!4y򵨼ab:1bM92W]KK'G֓#jxK|_pBp5v ҊTVVq)B")y13ÊDju`XnwCuXڤ՛KOD7q Ql#"<{E83hEK) =dkjSB:4 L~1#f D\f8J4M&bP!PH ɾ(vZ|h͚f>9uybz$PJ4уͬ7ڒ$ߛ3=S32BWbdXii-_;z{u.~?9_/@Pc߶hAvհG.` R U5WS?{|wg!Kyr3`Ȕ3i"5ЁB(M!Go=K'8[  1ωZI`Cbh&@[ϡ V݅+?4,CQ~ljLIJOٚ 1W$~Ϥ3mExxҪKM7}G_Oi=xK|ӟ pX,Ը=X1zC1{X1'gPױߕ?uw6&@o9=)2f6@"7:x|:Ve߬bfJsw&杪, Y3]" z,g;px),en*K@V6[ C6!#7LY]A`( ] xJ` '}9ΤciYOÚ <2ڑ ʈ _&WW[~=[Nҗ_~5+j-:4`'iWۅI 's"=oiʷ5o_^?GΙ/ 85Dž{ Cs-^xN/@&/r)JUT|p89X*ܫHqu""˔SCQ}"ViJSL%h-d (_HTaTP\Nhtn>!p<VhIK4F(BAfPa+nPb {(Jud "" ̉awp܈f =Bcmٟ)!5,?SRf &k2-i<qH О ya/li]\:ՓV\=W88<1=m_|Ŕͫ ϟ,%> h լ8`nCF: ,]***T-G}{`UgG1H,Xݙ[ܧpw#+S 7isK@-8z-<hD=L"<;"|16SR!w9뷒b!?if0X;ƃzU7.ۿnۚ?Tfaw;8<)GR2Ra rIؒ|m/`x~ щ$EW1\]ꏏm&|^}S~ħ> ~qPo;ebn}&H /ldդfvQwmWQQ1a. 8w;8295upRU4tx^ Ȱ݄+Y@ bXkD VA5heY;tp<&[EV d4W3,'@y=W-gME/U4B3`$f K AWF{F{JztO3J|z}g-qe 'j-9c+q@-MDK~^[*nY ҌYLT\3E,M8c0/`Y=qJ+rFNh4⸟K3[y?O\1rGt tikF |,v܅a@!p!0&OY1nMŹbvgUN,)M[Z9W*:{ܷY&j "k]qE` cpHKA4K4/{1ax=;䖿r{BM%^?z*>:OÎ:ؾPvB hWS]^yf緍w߾m ?$8ơ/B8%xchwGa.>^N{RZW1O8 5Y"RDPuGN쉕 qʩ㞝oђ@2`r\dG]HXAbYΩ fZvoŗej'|>MiФU1ɀo#4̙'ё}aPo {4dad."bNŮvy-KT4e@X]4X,c;}1$9t#A% 8W_|eW0H$/˜^ P#ҲW+{갻o\>Qo fg>!"!up;zesu@ ,M L7~!$i&@O"8 8+QOv9ŠHCwk_-Rl[S/\n[Z:!?Ahm:A d0rĆOgDJd4-H8ʖ)Pd)%d%0);h?x_e;gͿ̒wx>y OA>K)=ggLxF; EXׯZ7]-d?W_׮xO #.D+P|G:r GߨzhU4gI;|6&[|*'8 ;ëΰ@PC0@int 8}3uUĤ`<43q N$ pA-by=G<D0"a;wi΍63C (M&@EѹsͿ ~jwL7R`1lM$K3{&H@G3{?+}qU*5xay.@ d@+l:Sq Gˆ g&ZlL Hә|208_a_0' @PAw /V+ëubOgg̴9@k$ ԁ\@z]w;tHiupGf&/g:c?%,ڔ8Vj>@"Q+Eiڢ$L'$` !:O̸4 _=Q4ڋ$|.z^~k_QPomm;4$tSz^.0y ?̂Y9ӟs]r/ug?!_0:+ qS9w |(e0iۚ8m@^p1iB䀈:Su`xԸ̖{[su /K "$`r JA>uRI5 A:anX"Z[ !-%y \+MAS/p@h&"YIT mYo_6s9U91˅axN KbϘG=#̌<ė@:TnXッu + _~gX,ea AVc1`l WT S-cЌIyBD•c1a:1;&+|nq4X gZH,/r+ëu6X x C"`r?3W$FnNX1 9 @Dbv%* xJ-1RIa4Cpvd77mm,Z4MЄq$$0,L)<2 O}(ߛŧZl/xo\m/_b5p5IgӯEkiXdaKJЪxK ){TTF谄A$404/Ps&L,5$awsuw`@iv Z| [Fh| HF,#qeX_MϾ2 -L\ρpX4 M9'Ke/{u<= 8r\Q[zQf'0_#/QƠ*yuԑ k=a]D;j<(P( kXc û_\Ea z0 h:aV}`<"hšaE:5j9 PQ $o8檉rM@ӶX,h-B}w.'fGlҌR:ڌ/H{*ZxRzs2>uGLjGW\5pI|/dpO> \`C P,Nm&Tq>6Zj4C7gv0qDa=tW+z,ೢ(GܩP*?`x#'Xð/$0?Z?d.6.Oܚq h\`D:=u2ӓˬ?>\&ĥ+ ,й=FK,uW8/8fSsIpޣ@$3XL0#;U ?;7m7D":&^9ma4#4#^0ٳ Md_KX:Dk×6~W_I&?=< B-(ҀszU\ :b[wN]Q1apwE߿`pG#t+,@]F4l f,pHpHb9{̬ôy0.ȃq'\#[1Ȗ8!ܬs\*mi+Px|(re 1Yvf|Pǧ凅݈L7A3 Ir ![ HAgIJt';aH)u֝Vt3HGrw젳]EpK4bG,١"& {T%7ڨc\09W=< -{G\-'xlk<l=є>ߔ͊W&ʩSR AKGB#Y&$mA:an2f0j@1y2 ހxPz.:.kELOV8 VYÉe 'T7 &ABJC>Cu LkuncC0aVEDJ I+Ϳl!y-kO%abB"yH%!hf,ߤ~P]ۯ쇅|?z{xu&.o7;h%ي!$Ԉ*1m0*6X+(GA?5ː~В.bԳw`LۘSX,Gk+`:1:ʼnNw h4' 6;y\dne'`m*=p UX ^ /ZMXT-#7PZLQl]Z%[ 7JJNL-J Hp( ?gM&+]+w;?{;77h i VᘰW4>'񔰧 2SSz>az'@M\/'ab V /PPkJnkqV0 m}߂)B9.?Ł3zk ]Aϩ@O:yh<?!0mqϭ8sGwѣvFN]F2 lL( 鱇{q5Ŏ8Ghp l*< 0 z?%p D/`xVoSb B^u'I WF81M愤3 o#E @C=vp܊E7@c\x ܸSH" XG2H^WUKtI~-ͦI"ܿZ 2\^ /Wɰy;h n[Uo"<˕d .Cg+4i>I n_>rwS@fc|l%PO5ؿ7P/̪mJ?8]~fK1rDs&~kٷF1M~g}|[8 ~]+ 5p,:i|`c)- Ґ*7S+.\C;-i!_Թ aRl'x\ FxI(cWCwEb;<@t*a-~&}}/%7 &^L.л߰ 0Xm1m2bH 9WW+ë8ΈRq" P!`$ 6 iI$.pI&NǜD,e/9u\|OΕlL]iɌ /H~g_47=Os{Wkl4_ҷQWB1H /ԑMŅ(ӹZ0il@B6u'\>; ̔v;,أaAȜx8EǷTe4   %},AMeH SJC8'ry4Cg:fZqŞr 4 TnV Ƅiz xY>CgxfɍfMeb8GG}04w@y003<9 8sߘY{vk~0y^WD4*Np;O YGCN6$c, '}.XGKD_=n~i\nQ1ίDuH}6n:c'"Cv33 ye^E>$F8@ Yod@ѳA=n o1 1o(p}7m7m&xVe>yD63Bܵ\ פ ){ Ff%l}~u|o_Q%qz_©µZɝi]M*W\ dÕn;u1AlJ ߖc;Aiﷃ-#d #[B['"b]c!=B99)39H+(8 =X;q`gcݐ;n h$@f Z#̠2'}9pRD#J̒# dB9%@86Q!HҌ -к> Qa`A, +K_|;S9ް1RB*miE0$ `1wE >'m1|ȮT_S# ZZGxmG;?{]ϿCO~qߨ&. h98'.b :-W2#[baFቾqƖ-V@ےԛKs CWix<&}@WfM=#p%l-s=,GܴmJbS? AXㅀF щϏ Xif)ruV8I{@ Owd`*K"`m*1w'X'(?_c829CWlQr1OLj-ѰC5{x&hv\G+Ɂ!_wNܘ[i%l nA`P}1k߹lwK̮aA# d+?{Zo=o[X|yo| P)$- Z@ ]p?e,.%mO?`}΢n/3?ro~D(:nKZR}<&%l'x\?H+a=Gm0USu ' gmNdHP%`,eJaZWƔJK+AΖR/OiD)z>V  IKkHl,}E̦y`T62KY,! LO:x.,ФY42r;x,~"SMC%Gsl Nf:f.,_T]7}79˕Q̴'$$W[1˘[_K?Oa+* 5p <t;;&pY *¬ "O9hWT o*?; OdGxb'طZhȑ2?Ywho†,(X0L !H=L9}B4Y࡟-cQp;+Si(B@?gE4g Iw-iNF~뛹6n$-*qYgW sqlѻ]Bڠ1FBc1P+dr5cČ X%H< t'bqܽz/"k;}QCO>A'ҀH3m&1w߷?֍.uF5[φ __zaЀ$JLHNdه#9+\2`؉)Q_A;Ř1Hs!LᆗڠqC2._$gsb{* IKEB 2ʁ@"X@J R>71`4>݀BeӿOsz`ΪW$qɈ>[ /a^?Y_?PQq)!$RU"B@:S0iCPq_1ZuL2b-lb~&!Z90 @`N hh٭3?ijh ؙ/(Q}"9>$ p?UyK֐8)aĩ;ߠ4맖xs-]?qL %6{W/7n=Wp4c.$#.q`+.28.\sݫ~MCli3eG9q^,Op`-aιaCco3yw$[{W<0q P E`ꑴAQ@/l r CnhiosƎs hId#F:$cTHfg8_2\ìPZ[*D8*L$DKPMIdOG|NAM_뺶q-74$[Q4ݪgV\ d,?4ѝbX>8?Ď'س.J 0P,%C!aQJ qLC-=?l]fUiQ"' Hk blaϴȷؼqn:_CfK 1eOXR)U@N ]87MBp > %NRcD*xD 4 vS~;9Do2ǭK s_?g^<< xW Y9l-a=s֣?SOp`Kse d؍h2Lh":vG͇{TVdo0ncӑ⟻ 85H)i`JEyh b @̞)}׌*:>x4M3N98)c52}v! "z)>BB ;`=-LOw5p~'~jOxH  XUT\I([z('LfAS},Ӳ Bdˢ?e]ѲG˂| Dg=w[GӅÔSoZv>D)e6EW\g CXa0} ph/+PaB@,ST1-)!%\p̚&so+ R:aMis6sھe:8;7ej|po\P/ǀ)H[d& `߫sT!I`O?7|y=*j _~|tKCo`E!PuӐepp/<ݷ5){K?װ^PdeQNst7'UJ&d<\KA-Q{kTAm׏_/-c6cvmM[yllDUf""#GI< 60q0@il6ub?t_B>s|Qo5p>F/.Ѽ zaA@Tib?Ra7@ ;YCeb= SS@\14 6lU+**n-!/9SIn^HяRD@q,W3WSy0,ScH)喀X*̃x' ?-7Iƕ,,;# Q=b44:QRBkhB,ZL\wO$5p^^OfhICJ'@0lvWNB:w?   #?!\9%/*0bxh,'@E{列fݿx$uGs+>-z:&1ӐRB 1YNڐY-d܆ч0jCϦNc`̉#"hlTET FdؖR@d3 FL0yaOwu8Wq?Pѣ=yԯw4^ ZLv M zT-l> #Za=[#.؎QZbK[hJs !4UHA7RðD>>jZ) >8$m`1!FdG[Y}ٳxL$,&!%˖+}I>]蹽M-t[THoM08ˤ^Ŷ\cGH)'~H\< |J$8/HYL7>,ϟ?/TQq 7O )xĥμsCH4f@f\NkhA]QGeL&J^v1O3<ăNcpYqw0Wu-a\QZ?WLʲ8_94CO/EԸ`|ng |hh + !0MN ;*°-zTTr.];L(:$mIR̭b:–hʉ?fWg\dsڋ! ᛀr_ V*Ĺ)¦5`y7RCi7Tu4+# ( 3Aף{1"]L#āBBAPqy!BQC$\ӫ)@ϟ_<HŽ@MV4EqA 8g12 ;0b$d=G\bVX qr!ǓAb3<0לS4@ 8E@B6Ԧ8+ DVW\,7[ht *b 3) {,sWCJ)]W}ף{h0q& ǫ^Uő%Hޜs>zޠ&bwWՖP“ī 1bl{ِPDŽ{A1hm=čs`6x+~d-iw⋃YLLqP})$ $' #dgq1Uad'ĘIb?s_tc_uwR%C)_u}a 8Q ,f> -`AMj@{b덥ޠ&2i){A`Sz}ߖ 4F.JRqoc찟VxlE߰f.y7my~L #e+<5F81,`-񼛣e**}Lہ2L&NlkrM08oy} KTL?A4NK >TǼ]bWh!x8J?\c=,2b1:t})AdɇA1E0A "UwhӈSO}]|_IŽ@M~_߮dϊ;x^|DzN.6*!wEMT\!y`b*[jUвîuc?c-پho<rNy$\!T}X`q0d}[-Ȏ(-q%%l1/Çw8E8PG;cwS`8' "9CɟR'F-ƑS~7ć˒\:P]H qQ@ =ƛ=q)Qe/\9`)`K91AhpO)xgE1aS޿w#? sCG9uoɺ4K0^Lu=pL ׽|`n_Qo>sp^ 6w8&+0S]4 /9߱L$ Ƃ="<&;Ȋvp<c1аsfWTOyR/@IDmE/mnhh>j!me3;/e6zp0E{U}vUo@:K 1\_wXkt3#q`8[NۍP 9L81 GcKK?e~銊kFMݝV׶hU]ql5p7hÿhwaa=<"XXI]hq_PJ׍!ư āBYˊۆfʵ8ODjYP #geS:S)4MB* ҊY AT"?k'ӿ9f43c~=P_ߊ1xsŒ]CfXOÿ{_Q/f;x|wmQBVZt* +xfT]E1d)Z|@;T-Xrt +Iy;PFCмך3Ki#WYNDiȞsJPxϺ&P» lKL]1!Ym>x'AZe'B$+GIt?{WmLEŵ&ހf>z:(Sڻ54oiQʗk~]=pz]/ɛv_\)[LTqs cxiGl=˴=21Hxj&a(@A"Cb(97܃+|´Ar-6%n@B@ 땜@xI23 D] Q}@ۘ]hZZu5֫<>4ˌemw_jx [< - PD(԰AdOv?Ÿ/W?9䊻x^|WM0x!<O![eaIۅ(=vKzQ_+HU_ ): ($+~E@f"%EP30iטB)'˱T5%)h 8Y7e dExd?߄lsPkMF;1}V]qφ8^ @#]N%3@T#ZB8Jis~uş/4k$5-ZQOT^Q4¶ft6찗V8:4~JBd1K[8%*/h[c6GT0,Itpⲝ`y R)kAR@@)51_K @W=I`Mdi9{j 8ϮMqϴWLdUӮsztFyo6yׁ|d {Ԅم3~/#{~'_W_UY@ŭ&ހe+DR5uTz(GL!ݨ %[+~ְMwą*֦ ?OUgp7Y _6;c;~q߷%vC(fBnW{eˀmzlju˿|VTԘyMxIرuK Amf~R̖[x7<@n4(LZĴ-0*brhB@g k)wcG(} ^%fFyRQGhڶAӴ9Tb-f!Kc6+jnla`œaXyG`f3d](1.'~ u@~9cUxmTP<(D4 m@e82L; Oϖe=#<Us6~3Ahc9xD.TTT]^P,` 1m `))uEX̙Ċ~ cpo4p0]$ཇ:wm SgC?Nf]7u{X7Lu,_am'97ilY<@ܣY%Uw=엿L܊Po?ޣV޼@</"LmEf=Uhiihcm-2" Q/V;a$9AC UNEAQ`b)LĒX]Ksp%gz rR|_e=vl}[b ;*EܴԌ7ح}#e=Hd D:!<jJ1,0I@t;զL h7AՍNxoa߲Ez6F)IlHXSF 0Q@ 4s*tG_/־D8$p3W'MEbBw)]׶kZ oEꮸ>>*fDe=Sr}8:FBJGENg+{fpk 5?}E8k{_!!3HD0NXiv3}oMWT's6/Z`cƀRc'zvG gB 0pmf4?+PUM]C3UBEvu㿍TliĄf}aeu#RL-vO1>pZ@@`O|dHZYNZ3УD+j |6G@  98 Ïm 1C ҝ}GŇxu>Q2TբwXn :ƞ-SVZ"թ.Oo9 _/|,^s_mO~ߐeVB`}*0t\"*FHEEŭB ? \@A%W|Tz4.#ْ2c@BOF%h%] ^ەZB4 B!kp> )E>zn5φJ'қ0cO "Xo7OoNH,aS@PgO '҂*s:YUJ;)8zŰq Wpɼy MpSws-Ѱ.xd'x(y/t7nɧ~ 5gߊȯ|]pOOrM&)&ܙI% #AR,_; 0 `^ɀ9:_G( ;U*蒠ODHM)43-z*9^R*ȋ1HYg٦nPp!lCU¥m `PGcIXNX}VK{tдоj@xШ 3G '/o( T@s]y=ۚ#i}jogS U6Mƙ٬_ :]?U@&ˎh(hK%RIO~)YWODM?FO*N O PT8S.bv2=*gngKc8^Zbak4Fx0ga.b /7wGMO #i̩Hrx8 R2^ʯ?f6.?o׷=o[ͧypǶgD*znK'c6 l_N]/pz p?+.`/…RZy9@!*Htk6$6F0q0(.R@w)K ,tمb{dY1K0#l)ˡ {Ow3C*| lAlǸ7_Ƕ ƪ8w)Ys !'?BȂ:1I{ ~uWU%V3j <[c2r8,YQQRUXcVط%c<_haL7PAp]< Nzu zq3r]")֑HH3RBcI,mC6o=ɡ 4MQX HF mRDXXVbߗ*/͜.!އ_KTSk@Mz5%pQT=P+>HlW+ _Z]g+1Ec+4쳦[Pa .*nCl EtgS)p_x^+-n-B81KX`GY !~WP݋g8;C|SP@h <\C@ڳ!-0R9Kg YAiYD4 N)uuu=uǘrRH7l /ă0zS 辨*5p&1> ISJ⮸.fT\fY`?ģt=[h **{%@YztlJSJH1B5-݉]S͕0Mλu_ }ݦ?F>"L;$#>tp@U)X SdAK- s@3d[ P^S}w f_k9+4kF(ΨM'A+=A'+tŤ"e5 PQq!/i0$]g!) `F0S'p4|!s"?04.~w]BiAPBsvR H룟?_*.8"E UGqo[!%_.{-bG8HYNVE T1fܝ9ͻJv@=,#D vv+_C 3l3$hʍ Hkzz3_:.>REr{`XEAr:烛Jǃw=z>'>N+΄ r()D( [J:!t=?巿}MT\ 5p>~&P<_[o;l eh0{n8"Ztnb3H< ţ? bY<#W=/&yp =qEO vw؇!0 صRj)˜ hU1HO)ϭ~M d~GdE>[S@`n/:/x!,(~R>x4m@ƟJ̱ZއfY1뺙?'G#Rʾ ]ILcnz"@ 48A&NN{#V6ޡ&EDUq>W\@_cNp$ )zW# `G|oދCOP`2OK) ޙ<ǐFb 1EA#he) HZPQYB4YD`fyUi#xs! tچͲ=/ufĈ)iŹ']@y"+&o |~5p =5!HcKYok@jL=a+nC$3!N9 F6@EE=hGApNCPPO}.;Wsx,RN$[(*s j`)9^)YGNw%>i=14Fh7-&966Sh؋"%`*"^̛s1- p @A׹ti41Ivp:&Ӫc-Y2\oYXKeN}Ϳ3vגxP`&fCp(qtRYYy&Dq)_W~;wtkQ6D.ҵ!G#317ֈ\"Ũk nڠ oߖҀP3PN#C*(h4Je,-i4kjp+S*@g*,L3:hFI3V@(gvAÑNS* 3%VuSb.QS[Q!DPD(J"MRI@MLI>v "2ÙPN1UPoF_gY?7%@p,1 k= ?K|aY2Z5,h{q{_<:lWO5ÉX@)A*:x$hlo<'}@e=D IfD*O]7DM|WUDeK|%UEݤU]K3]lT&1 G *߯k,8@T2y B9{ DT̤é=?o~7]vp?܄7""R`']l#&n:{I?rDO$ݧ)ez'韤RB97 o2?iunT]l{f(^'s }3k˲Q.pA'sTuE]7MM]xqNr6gORRj-ҠN1kp搨H@C0Q.'Aq m>{+,75+~/fJAFq܁ Xp&HJiRyGEX3"^"E|[K3JOoJ̴Ca|]'lpffO'(Ur#'R$O[O >;WeK+go7I@ $Bѓ﷜=cIOY릦& %$E]V+-s1SSpC 6Hӽ”hl)&;d6 ſ5w(YYb&c .5gs"po8[Ϳ$+(xcb#  )! yl]Z l9eITs}ʼnRE:PUU]aшE7sj*Gw5UOGFK/@+PEŀk":Zν$4"YvD?؛j˥ *4 >iq*8'I,'@=arQzIz𯱖Hޯ8,tC<->C-p8"[$I[4 3(L`T)`,ImGAӅPlԾrz@ 1^늦Q ]0TƥǙ}6{O9wJeڿF]VK/0_-41B jpwZK>GG( PY$әDkl[.5|(-W?H-5TE!}>SMov! SRa) *H- ]sy"\78d±S)0C`SX{WhQ@ Ra $[]5 !V9#b~<=_s_@S<AC )λQL0q&$p;Qv=_LwIDHªHAZ\WXt:x,dAH"^WU$U{?7kJBOpb 1Q\`Rʙ#G(LjX&5 /k-KPY#Y/E_40lR+N괞KT@˿  U;IpD9Mk& fJ= Gu~K3y {?j+/|JF u6Abt 'waa% ]2;qX1ཡT}? 8hRzJVP]a7OQ:ÿq7џw| 񶝏h i"pA<[Pz d^<^Vd zvUYW&9H=9ϴ3ÛQi+BvYrh0D`T}`TO@UPT",kZo0WxOp [ 10w8%KK(b9o*?_}w}A|>S$ݶvȘ#YSP4V}}gg x*nh{cAri͇1vq&OЈvRYZmӢ$V@j m=c3/]63{fM]rhmdu[`f@0_GaΒoxLSS*#CHF?vc[DܨϫDWYSԿɯ 0Hۖ <=$N\.C^o"ItbH RfNvFL6>Ġ MDq@̙l,"{Y Ob'RYіe\soW\7\֎JCɮ( iauH"lf ѥ(a0عc%fo;N@* ĥrNSPũRHUA6Rwk q?1sj\O*o% 6z"d)@v*E}c{v/Ґư(pcpF,jinW@aF]!Q>72StI5MGcC1a kY&%%)$B#n˔!_"NT0ETqf85*UԒN_5Up5{_!΁84?U3k~_iwtr\jn/xq%bk7w#.|w|(;}eB@hQ.{C&Dpnr¿+. ˸Iƿ} ݥ-(x$$>@PǙpnQ ichI3FĨpr HrEꈀv!??=Py[Z6NFe11`N1M!Ǝ\V0U7 HRzs}bhl@~9+(YR p DNEƢh}ov嗿 zEWl*s , $ɧly,G{˿4_!rfYfDhp^=.vDa6(`g|0 r}@?l (Op*_*CVS-O`ȡ8ڲ 5e\Ў.ga 5>`˶ is?-űIO8h+NBi\d $rKQetέ96YƔ[PG#T0c8$ҀҨIsSĿ"~T DUTOTZb~_N(x;;_B2&@ %ʕ^1 +>.0<μD~4`F4bJRO01*&ZHR[GeK͚_:Eֈi>UFR vLqlVlN]J?1]mY*N,]d+XV<؈L,pLr*xLdÿ%)_f)^ **SC0M!IU /*p5udWg߽eB\?ݗ|Z' '!7WbHo_z l眙FCl`҈kأ}dP0IK_`_+5˸6GSv`\f -`hZZ24fw?t'' I.\z_ETN GΜ# [gfh߷D ECu'?cP>1:DR0=uN4)>s׺olW%Gq4ƾ!f |'X;G?vc7 _ ,tMe]'2kH3@e-Kݰ_􆅮5l35 gPe%kB.Uy>8` ¨@9sE3c ѿ}?))9V@MQeZFjZݲS?gEӂdabb CU1Wα ՋEjUKZ[$ۭ,8?Obƪb"TOmYuq_9Aq_LMs߬g*@acHɑK4ֲ 1QWz"w3߯hc۞MzN%%\&N:}&fƝЛ!ËQ p-/}~.9$-%ۥX\$pңԧsW8w\K͕\ŚXS ao]=c\x:ӴSiCQYb ߜ4gМR:Ezdzs3G "B%"KM?7OOQQutsqCQps8L0DM̤/<'2HIҀ}2lnscDߟǓ{Rw(" d5 gn{eGihe3i5}r eb9ƾnFE2N+I"R}t-B.$/}+omܷ|:^3 4.RlmK2ܚe"湖kҚGY:6\[jnbc>\2?i&mrm}t>&t0 K|M^TN4ཧjf[ϱ,E}5}yc8ݏyc?k/)ݮqx"}Y@oPʌb3fQk߽hp6`$a܉0Qoy2"\sY-1~xosk+lU}>0TXDU'9Tܳ= K/$rK(_ _Vk>, ;]w !U8e/&'\q .n7 )c=m2#*!{|%X!` :Gj@Ȟ`U$s^T`˺^_}w:GGq9DM/,";W>2r9FfE_Pp/84 +YI .թw>WxaͿ҈ts \ˬ׼^ q" x#1 TBå1GC8OvV([z1ZўYY𜑍HNS҈K瑪ˤoV)o}]\"͖ "|Uנ_ۯϾξ->sofKEx ;؊d f|$Ϳ!?tDI Gn:K;m?ؓPJ"N= s"n_zxKm9*BOOZtki<{cz%Kķ p.3^%G:jOd:2Ji\"`(,c+ 4p% 7Vq#NrL>U?K>=8PaUӈ7C|YrpUEzw._*r;D cv+ b?Fuf^~m7(PWwԀ@R̡;>KiQfG zh{ہIvQT?|wSSzTN]6:J-xy<\qpY5 8ˑm66U'an`%tPߺ94~ ~i{-k{{"iEqHL(NjZ &Ð1Oχ>O?FK/%p)//,ҵRM?-"9CdL˿ 2wb-SARs.\(AXURt?g;ƥ"}3۱8 9'R-:8*pR¿ݶH#;e4;Kidx!|Ҷ[0CEhUMLƯpDq_զam"Μ43d6XAaL6RޛRi"9\7 X[g:L>1N0f4;_Xrց}lI5l\CT+@bN{?fHD3B(Uv \*ӆjr1 a-s^mɍѳGXP'8Dg / D~ g淗7ٷYNg8WoW"." j`zIA!ixS9P[BYyȺxBT#;2(O ׌X21Xg\Ć(>9\rsDq1a,2n+X@ (¦;zϻ_fH2I%(Vq6\iZj>GnyW:V!_噜!$.P1f H۽x^I WDxƟ5Le#tW1o~[IDqGT NfbI54ɳNdKu߽BAg>>[XKSQҷj4Iv'L ؟5)vf_\J{́n'1Q:||2g; n :s^}3y\{c_>ww>s.]@J[62rp@$ym~9ÛqkFk.%kZ*x.NY/ 1An b_kUCtgj֬#X$ 2`^p<𔊩Q3[-g:i3o zYAAc#P*"Fpla-7t "đ15cBUhE%e|7|7r^6Qs?aꑏߋ  `1 H: Owy,:6ܸA0G"lEcc_ԫHNDjL yiWT?gmuٟk~Yp?b]?ՕŞĈL狇1NHY'O}2 13C2 +bMOOPל0ZOV7U3ʭʥ_5cAr(5"v7!Cl9@-" E 9T4>52tz{az~~${= 0_ۭdL"W8aWw?݇sۣ8 ~V `*N9>' >/!S@_[>_[V > A‚ QqRJEte9w8cr:^]rk^5͐2[}$Eĥ>;89: CN%wsgq{H.qނDx-~P믿wٷEPME1I 9l'i~<XH٭kE\ __53 c u swf$YI\Ǜ?nk{}:GnI'OO&͔ ?kN`>6!e-Ԙ ɎN*ZQqLM]i4GakT/'ooܧD c!1%ښ,+8_2J `BIH*X40fU<slxwz;ye5ߋ.?g_w·| ,P??4K[@ }@l'N-1uWO咒"c{ʧ3 } L6lfr%$lXƓxE,R[3 I.׬ xKe --6hf'4g ٌ4g':$S$89c`:Nqpb\N9R[b>L+B!+{h(+ t/odۨy ǞӦQg8dpLw(`.R:j"^5WT&0z;M͐r4De;WM%No2\C5bh94lp4 jkY?\v/_> 8_|hJ4,@a x>$aE, KeYfnÛ1=M `?kn9~ iYdR߅\4cd"/]g9n+/]˙L=OZpn)+lm{w4"wF)*)h> 6OH ]F^eWٿ 6Jp bHd nAٗ"gF+e\\`fщ:S +S@Oe{p2ܲ+# ҝ,p,Lo&`P^,%#$gkpK I  ^ 85#d_!&e \H<8W1?"9KE b_moXVۤ6+x(p`3UX;Z="Q!Nov7 oAn)Q012<KpoQ! Ro{F+ ̟$C K"I߲HzI){C8QqweɅaN(ErFDål݇~gpa<|&]@8sFuT`zd6xdܳ#E]HY:or?%[@#c|8cڣ;7=rylPcXbM,0'HfQ,A-ߧ" ;Fl ={9 sf<+c,g"ߔ&ퟮGQp~teX9vΡxHѽmjxgN' oDiUtSh'8zc f1CROxj ƿv4t M\SYtWP t}U(CN*Z` x!K ih$kys\B忖8{ipo_3.Snɠ~_T(8Sj"T9TGyw.C'L~HxDm%WNV{d\̣8W_F`h$'D#j ,[{X_eenXƤřIQA3ULZֺ|T I:H q}drkQuIG1JCUКgmc#YF]ѧ}OpCsrN,x1;>70~󛛟"~(;\oh",1Lfl2wA0Ĕ"nXkoJ.'>jWO g]-Y-xC+J8F 3|Xtp-[rk^H*HE*mvZ=<|=pJN"2#I8+Ru"p.bs`M>At{"L&~23|!'*ƶA'@]ǶRi2rp5*EK~hm qDcя{~wF~ٜy'OhNG>#N"Am]N xC\g^Q܆$mzR:tkk>k^5/]˹d?ɥ6:)쀹S#m O;nw e# .~8q(Z*zsϴPc.]˹t,R]<oCL0\ 2jEj"`ssH?N9Can֭% } ~\r˿n?"S'|ϓ)`x}<ɉc㫵BX؍ _WKTn:E~w\Pwg?nAD;ô<" N6^6c4:&2\ʯe ^ܯ ?"iFlt:I2==#ܵp\`IT!Sco9 RNwY[MkV b"$٘X""A1qA<< 'v_3&9y0[C|oPf|朽2/}ַ1/I-Gq܁ׯ_.]BȖ {% }<iǍ gz"; W55:\?9~RH _Pp7Δ0 a-K6R|⨝Lҵ|6_oy!-gXXex5(vq@3D"5Yc *4)ΞXޖޕhx H ;Ā1;c>;*sU1;p[߀D4Ru gqaqI;cb 4x*f\uk%Qwի?1sZ %"x7gL{e8b{HwNSGќ]$L7eܳޱ)I9k:Y{}WMpiU{Y.7ԺҬ˴:wDdKliWʞm1@||?Y)0Gۛ)0{Ssֻ{cfkt;4FGK-XKy.[Ep-tN/uS 4ܩ}oc.ڐDGrĔXqW̡TL#"uco4QpF5."a kkK8\O* kZ`nU 򻯓C !a ll<8ᳳEMfM#_b8f[{z,LM+L5_ 9pcoz,9"r&|ؕ?oAJU:H hjTP'}uws4_kV5g xEr7Nسػ{;v a׼R= dHh8 2 K1^/?7|6|6RVnS]}-;{7x/ 6-c'-QIJP?>CC,$i yԴ9 j6Tm6\f 4@"qko7kMr8R^`%"W @֝9\`A$+ 9c?{,xl_@DVKľrQ؝}7|zB(;jlB4:'(zDB] uzx 0(,%sB؟3>HW=t{q탏ztzҧeoQq4Q:kX9mB:\^hp׸O|9?vQߢ{/ 3sPūBvm؍nOh#,Bhq5N ~:9ooa ڜ u{`;p5/j5+\}5X}֫W;R?//hݓ}}_1U >JgfY/ ZĮY\ח_7m?/'ÂկxuaŹNΰITAŌ0K|,W>'L(*b{> D;m{x}ɣ[OlmJ>ӠE4>Wg:e*v>%ڱk:Q:qM5$c\a?=QׄO]eh0xps9=3TSgO57]z.냏a6mOFQ[Ro+0 8ka%]nKr&q0dtñ;d{dC1w||zl[x!Wc1V/DP-1Uf{@6H:߷E2%v#??֯dsn_;$F@z`? }X)Xa|l'V+\s<-.zrێH.`2_wN#rN )`|s|!xA]M3 hy)+w 95^]|KFEQVK2>U7\7@q܁??E&H% ĈIޝ_1q qH<_, g*;XkxK{7T/>CQpzcNMLFT_LE_PiAqͨHUB* UڱRϙK)3}zܖk#o*nbMie]0ЈMop?n@uOUIosCϏ牵SUXXco wb yJX-WdBdLnF{8nEqfz\bt^/z>x (n֭l2X3:3,# v/iQ1-ؿN;l㥈^G*[VUoS?w^[PPQc Zr: jT`4] ރdF 2cYQןcmOXuMLƿc#8*ʖ\xGٞ/={~5 EbGGrlwԎ3bpôEHw ھIМa* !G& |~sEP xuxF;̇/7}1SOwX >HJ /  oTǛG[p'o^'#@:VL:S&sn_YF8Ҁg5c)vg姫[~֏)G;umW{񔨧l%:5fH;}oMT绊- MްIC,]잪ȧliʞv{-_z.=ǰ[^39 NN5~o4{|K?8yǏTcu$\ qlPyxΉ ~p5co3 mޜaq:= 8mQrl=k\JCę&x:LN o mJwq׉dO زCH?IM풡]bt VMF29$yzWhz!eJKiOg1r^1au._/;Kls2pmgQyaWh4E eI)q N'gFp?u@ 8vm*zo1htft5j mg^9*[f_x'to)((xbXAcO۽#$@:9"&y\r&GR #6Ep7sk$?ƭ|2gDZszi -#pnmj5]@Kli^`Khΰ PxIN"^b&arl޺;31'\!I+ xٕݘswmÝŭn~l)8ZZ5c)Gwq5z\[ik$FJ-m6ÿ nRg+f~AAMM2+` N"m n,wP?3 `(ߏ?Y 0c#p}Nڊ~mz{Fq܁_v/uTDYDZ @n_Ezx Ao2Ǔ>Oۍb}路ÿ?>[l2rLl//;CR-dw2^sֽUwBovlk9Mb8Qs 7)0'a>3j`,s G7G:5S^6\ʮ.xI67w2}p@‘cl%v~)8bo`c?OF"jHd@+y$=W,s\'{]mJ)XNq4nX3? PD,!MR"_ _W5PU^J>gKi/MNrAޏ{l2D}{mו?#IZ8ƾ tӀŜPmΟxha[f bDD؋JsXo&`ZQGׯ\ZM8ΐ*`5 D:g75nCLG)((xj'j +8IvM93a Ev 9GPq)x:)6 C^!zݦ{ɹ giF!92A~Xf2^ jVB; Șw!г]]zo1cGKƬc,~.O) {E Cz w 1b ]woAPGx?V/"h1kq]`iZ8dTmlնandp"ܦF SCDېORsuz<zusZ9+pk 1Qoq5~4-6]l;a}m<|J"d T"^BՋ*Ρ>o2s`VRnWvb<3XPpNp&.1yig>7M _p{_ u]7I9$1(V]3QO*Il7Mq`7ʔJڲ9Ubou׀8Ɓ&' 3e1sM)szʹi=hvx'j&^k{=nsک,0GmT\-G4wQiY͂sweS;F{0UYm{X~@l! k1I5 AYнkؼA–%$3f9>zeϕ5p5 x!$m)E 1$evG\=kj>xbTEU`?6LoI׎Z-MBM~^GCSEq܁__݋2M|NV010\e}^t/|ŒWsgK'2{R&YvW?&8aHGwƜA<{wۯ}*sh?Р9$Ni@Ǽ}zNḦ~7$ݢ хIK+/T>9R\k]zJ n2w<';|zOt'~sp{]QYI $=}G͚7ؾF+7Vo{nb%ciB>pd!j ue爌}7Ee`$#j ~"طUW5  b8ԟ#FJ82c~i4S7j8>fLgS AOprmO__}!(6*] w-Xk @eG<??qHC  G=REe:nq}v هF g  g85BY<"`jKe+GS_*s0>j݋p#I|oDh7܆7BwaYoDCϫaq1@5 n3&f ,[j7Fc8\UFoV$ǀTuJ69g042T;=RĔJs^'ƄN?ߕ20ww0PUU5hiQB4$`ҡ8yRYLx_kF!P5,=DhRbK#T SfpSYМ`%5L[Lp,bMtg'Ov FP1YcET#Vz4!F!P/f1H<6>ѳEq/žA^w5"1t#3!S|BH2#@K:nXM7,5MkPGgBC߲w-fbt!i/[q*Geg8$G>nKw!c7c{Dra7tAu7^:}֐$g0=Ha&#M'L+L,.'lO#ǻ:"5)fTֲ7I߽aսI&t? dwTd8%{sOko3oNd50go?3ߙWO֝8q >o'{=rs;t ŭIĀsۊvs[18 }W`?\;<~ݹx-Jc-gj^6!hGl|0e~CkPo>) 'Cm9?{HW5\ ,,/;ڲ%1nFѿ,zkd{@ӀiŐ} ?)KA>39\ƕO_|hߦT~/(0[,ٙg'3: l5 :;s<KK;tY&ƿX-oAj=l߲N Ԓ YɱP{GJ9J-=f`3LO~?޳_  f7,tMm-mw{2`lo8\lX6 _&ֵ M\辙|Ɛ Clxmaph >izs |5M7~ w)['e|c-Jk֪ւݯuRPp/LG2sLnh-p2\ W4/dRQPPPP5*!(mP. JJTEc uv;OBr+/ߎ//2$^awo3ð<9Up*!R ,1.D^TR]fYJP=wmCmD\+fz ;tSb4D<@_׸Ҙp"\'wY""=stORT.DzG'PY;fc[e=7>>z,=S":v8Ѿ^^cO}e"rAש$Đg,v[GNr>$H{Dj`e9pigj ͵]}+x:gNZւm=րD[w.s>!ٳ޶ :LH&#㓬a yhgb8?6x+Q"]/\i M WO*npt.qL;0O>|DMgS 9Ci#" 3W-T^jgz ?noﴍk1mM'!+xd8L*_+&R UX-(((xH6E Ah໘ $KRT:ze6L5p}ECWrHeLD^g&|}Cn?t pO`٪UuG-6 tFS5걠bx @M6iIXuYU\C,Ѵsty)ƅ-X,駃'^zmUU;(`cb&A1311'7֩vӟ(xNɝFH;WNyEr3A?"N/z][8^͙ϱ`w8<(83<64<]OܯC|߬^če؝?vϨu}upG>f]d'@Ӿda|+ b"&VK10xҋw.8&^Y琍a6 @;݀)0e3ãhLX`q"my?e@AB!  t^2+@~dW_S9r` I$;cLt>>oYt^dA|Mg}[6 `', Ȅ c \eP+[⺚1|(ZpsQMJkjb #j)\p"phhekz2ތtxmq}⿂UCU Q Ai'U<?ss.}"copU逤GCǰ[f΄8x! /R-k`_$)! xǟ:(snjkVXeHXPp)R#x:AX\ӄzK|lq8[Zy_68sEm`65g^ED?v|dIa.:L?nVmD|={C8ݧGZN-Ԓx'`?VaJck xfsN 8~81CBR2Fz]lUA}7XwO>}s\ }Nrbp*ؙ\ًpZ]D8WgleJw'~m[D6m@6Pf\v^! HUyM)}I5!w z[{t|vۤYf,5ⴃx[I^9$}\L3i_by:Nנo5;٠4{>0f5l ͟o~gFyL> 1S6AQp^?Odw}hs S=]~Wo6@{-.hټc-Cl I݆vv?O)_b_d|5ɧeyF 3@S9bc4)Qf-! + Pλooi] 'g?.HgkV ƌĈfSr+aTXh 5_4b;f<;o~a̮0~aa6C b4ڠbt "w9{1[T~fHv8w#&r/x; z~o*9KO8.a0o+;1u)X pif/ {AKſ纪o~A9 >8Õ.暵MA`HA Q*,h--vj9<-exbΏ*xd8sWUCjjV)@U1>i@C E_ȾD.ȅw Yij4~(;?F]Hܘvڄ ЂDbʏ o J 0AM3nAAAAWEMj/ëQU>E>5uv;}V81plDvۛeQaKj.2Dd(ɉϗ_9*|'y0KХ]_/&sَJ 3.K ĝya|sܖ;?hevߚLBa`S^ޣA@Ӈ.qw{iujEfS^؃Bdߞa=KSN&}oX;2TsԤџO%3a.sD=4=ub9 afx{w|O4;xi{ϧ10O޽4/)}bϬ|%'@N|FvRR @<k`Z}ow9dϝ{9vǻ`ww|2y}S>b-R,z׸9Vim>UM=OpNM]u3z WYJUs9BAco_hV'jV&z_ \YUwq~xw__^Zj&ISDSkDZLK;Cv|^R_XOƈjMF2S4ӟ'mǏ x ~>o{o#Uhe]l*.g/8 .$E$jyoHUg3[st 2)x0 Јɹ]ZȲr?ApOr97(|FkOX#\b9{?mհ&K쉺۲߮>MU'X6hc!wwܠiw>:sB\>I1[]1#}xNiWߝ:۟o^s{[s L7ofuNZ9|qa@T |JÉdCm0[7}/0lfOhis`ӿI*˸=Eͦ l6&գC`7JHW//^P-qu>۝Νi!giJr A*a jV#y ࢆeX0o_pME֦X$BJF _!>9RoPPPDalr @cb`[f?>.1<`b$yڿP{բfQWԕǻ|w)UK%%~yu={)_ŘM ߟKH3K^`\DB[a~,Zkk[n k "%@[{p(lAAsj b2k U&K$`p::>Y~ƺt!k4!CCrCi@^ u\xcUU[` [9u1܍ k1R G # D+,FC=S¬~=я{N:w)wٟg(8r?.٘x~u0[hةOx?atf+@ I"'vw3wp?F/g)ՏI-@rƳ5X4M:\̱c˦\YW7+s| YYٓDj@cd -#61k .xi8Tkci ȷ<8캹wkDzf~G^ػ usd&ښwϰ7]؄DNv)CjNu{g$`bھ w/&w@qiP\bIu2s[hg 9L9nww:~hs tfߓsoqqH̞Os{siOqhso KvOpמن=.;zZ}`>6.}N.<9Cgl 4S*D @/ i?<돂cA|2/3u-Vz&X:vzZkPu1$sFr;DDFs{΢u]7?㗿T;4M*x+[W_tbkZ[DZDM`0d $F|Tpt [G/ ?u2!mEN=*K=8;| Ӯ/6z6REWh*ubTCͥ 0NP0J=+|ZQ.iV/V9U WLg%7vu|=m+x23R{":]Uz}j㹊>8~HMnI\#vp%"7NA[ArW<{B\]UY ΥRui`luqV0$bWgTg#6m լo/ [k#"pavf&K͗W[nPxK~}mn)[^+n@6bMR(=TX%q-T 1YǴ-z{ ->}?4qiP̷L=v̟3/rx_z~ާ<ḻm`*#s>95!(Q#!DyJz=Y`l_Rr+|Zr/_ҜZmez 򶎬p:ݹs称`:knv}鿜;RP0X# xs,0V"2i}\- :>?[_/?o ϕ݈{b8赆΃* vg#~joJM'x|'|kduS8oDeyb$M/\퓾an(+\ZW9__%*`d7vXAMbQ- gVjjprə?[,=ڏEO']ؕ]ɍ! Jq0(@k<A5Uj9ʱl*Ζ gˆղaTT;sW/FO>ky&+hDC`m;8RK xP]U?샣0wo:{Ev5\ʕn٘YD<v \TuPa'))[w}^oO .sXh]D$UT@5WJ1iew*TCן[{9! uX.*Bh1Ҷ75#D3F,Z0m@[mxeINŊ,)꿺7+|U'IO}?e*:0T`[o<*hL̩]Tx݆*GBq%o}\٦Al04= LlȮycf{{S8}l6lQ} wñ'"m㚼i΂h `gK|* H@#r#f5SO(ȩK#B;hu]&<';/U>3y9Հ0lÂwK`@^ҳu pN0;ovu\c*v+-Y"&Sbo^P0!M]E%M9 >:L)6<|ZvI_PPT1J` p育 )2;\prg';>NYTIex\CS{V]ԑilaXvݜs۽uxb2T:\uUd7D_ {rl֍`IKBb 9إ!fr^KlŪ8 H@oa_7AXɍ"I}`GwL1c35{wg`bPDv5s(5wI9 &%eO2| QH4qۉtLs֜vx͋g~ns w{읙 )01>8%/@m@bW, prb@pZs);yaO0# ?|W{f bjXDM MpL{~}~setd'@~*B|φX+|JY%np>aتԁ:8srj]b9y ͧ68yK3TMq<,wkׂ݈"fr.BcX-ӂq,ȈX.}'.ޏ0~w~AASŎ+ @Je$JPs8Qcaq)!ࢩ0[$'Έ.n]H5%Cӻ|c!q׳LQzw_U:W2U/Wԋ?/WDU9'jʰ/Fs!_gE5nϟkBd@.wi™sPc8"b!oLJ VvDUD#jQ<7e.Iƿ +8#C#90!DQqw¦st]$l+Y;%˜v#E|8lrLB;빜]_7zYg~y6z_\rWFQAӱ?bA_ND* ^rJTHXĺ֍M5ȏ m*۬#P P! w"V0xlsgypbw%3o}rw?w>QOQZ}c5L(g0k-ښ5AƃE;UPkeM9=ɴgڱ1w>R^OmaW۳OnxR&'7c@ϧ͟_L'48_iiCbp{jB"εJh$U_P.}7=?dAwdw-pv|}ܹ@FN_HդϾWͰ<>I[ovSisw>8Ge{Zſߵh' ,`.9S8  f鎾H*`aƹytM*g-QsW&f? re"P'cP\d)Db:g78m°aߌY 6vq5bΨv%Kc?B5{#.TS9<Ƴh*;'zvs7QA#C6G Mmp+IDATgj)) VKAUЎLB (Go_u®Ptw-(x(zOLWAȈ,n #*@Hd/D7PT99r, DR*T<&l#\$vp>k%ރ;#A0c2`*z@oSÿ̜@0X-6כϿ+8 _k~vjWjW3?U HD.rKmFE&WPPPa2ll:ʼnwFR)']"rP}∄a!=2sBzc9*I6]%`ņȂ,%YJJCTF$ 'J%FFƥ%Gzܟ:rd߹wwY:0>Cɏ9 ]n1>X >1Hλ1*ZYxy??/rJboIQG3*>ƏVeϡTcuKwvFrt<&,5OiV5{;DOzDel^E؍ښ{OF7Ci<\޼0^΁~1('7WxM)3/>Gh`??;ww?Yi8wTpeKDb9tڛnŶnDS=}ѿko? Px/X]AjJ}c8Zj7rQV:>߃QI@#P*N_BHtI@Ʋ(X꘵:sgqۚsw)pn\`?G]S`x3p5xڟõ5?aXυN+ƠߑD`FMafǽ2/H}÷)(߲@ Gp *]/ +`#F"RUҟ  u=ܰ saJܳ}e%o\'۟myX# ƿ6u0^22n'2$P0\)XGۭ=~(pCx9_NcJW1 y.s% V@1a40I‡3| d)@F8 Q+D{dl~\dPgWO2?u!@h2H3,K4-\a xT1CR )u<&x#GY+D5D]Fjk-ugdbBPXXGF,^l0w݁w ?sSC_[Cp]3]A(Sl('0A*T# N*zto047鱔X%K8#T[z|~;X!I<A(WAme[ &@܆?G9??^w3>fGBFNK޴G et| gPlF+8)!p( ?o ;?fCSF]ct?{oBG[j ցQﻳ$.҅%R#RKR|o 7 O=s7'Ma ICħL-vYB+*7W`iuAF-ut6X߭~$<`߫Css]?fqUls}J8O4{S48}aOVwi,Ok`+X|tt-ܟ1!7~(AzMOg"K+j"YXAXk7"{On>p9\оxP׃!?65V]O2_}ݝ)P{|Im\u5µI{7{h$1[ *Րrq P5x'i!ߐ9Ms&{So'p S,&s^q0{6fZ'\% ɮ}Sr?C]\ߩ́_ϥ~=;0gš15˜PRN;dԫ/`Nc<&L.NXsbY0^?L߿ɱ%£Bţ&^*sxYdsu% w1ݻ{nr\DB)Th M'(^̦U!mh@YXR̢&,{|[oLQiŋ=@%J0ȸ1, V{5D= x!@=wMy\hqCg]|^wm a?d۾{|"<3SE[X ֠TNar^v=[l3=J2ue <?Ao C |x[NY%bwpKX}zͅYqB9(+RsU CEb dڌR4w;>;ȋ;LQ9Oᓃ@( @"+@ißUqd __RS p _]i^3Đ", (7ϪLeCd->KZ/9s.ؐhI+^G^UALTńI-@Bo+J5 &qef48gcac J⥓_ #}6}ϚN4!?Te3B Ⱦ!`L8tqwI/o|c_\{l{o+BWhDmڄ5"{CQTmݽAg+9/$ (93qu{Ёq {x;/sU %&|&^~&MRйk^wmƓ9j Ma09Ǚrp ?d@# TDeN@zmo/lصwmM _Iu,7o2HʞC`(@(DPev!駟~tSnda/9)3JB, gdwg`tQ `+A͘r@'&L֐ QT"90~eg dе_qd^ W 3^^$fp031𹢴ʆLc4[42tθ f=g;w}/^,)Q,QpR]s xדP6(Sk}G҂( @cop˿J?:nR<sV,.BFz*{0Zgd<80[︃>216k/s`~W_Y# ]EGq@^ʿ;W3ptcL1]6$zzХ >lkKdxv5* K0Ko[N+y{O%'{'Px# R^6}3nLL(.)W&Ezߎs"V `A4ޗ?37˙ ;n "g Uk @!xJC1w͛ٻ8XEg& E"V4Süd]2yytpG %KW~lOcĆ)`*l#='P.=ܿw.#5x'Ou?{ ]ҾLO־q OU(53>ԁo'? d3 (h1oK}r}ltLHA:7Th1<5a'[۳d]˲'c%F@j{<GOu9N#~Osd5-bz9\M 3͢_¡ Joӻwhdy9XN= z[Usvl;ec)"[(ĠR _(=N&v5ON@9?ⷷ`qa g9`@CxCgM-(-CY@%7L32 =x~^ {R{_v>OiPh d48ys dk8@ yblc`#-X%8 J}Ixx,Dc/yz];xIo(sOҰ>:՛6?U; q&"!hE`(@$BQצ]3=99n?d[‹ӏ'˺`s1A&\DjT;dd\ 3@L) 5YIJp&3A覤)*6*l竭q{;z~Ꮹ!Eh#Nϥ3㺞nVRwUVݿW% eAFkmxo-LQZ kCF1`#|ڋ *:pG_,N Q*:ONQ`Ơ0 ewua9=GhUرϾW ! d[+['E) )\ @'Q7;Qs.ID 'mCh}Ng2E.H \$G,6G0K g9ib'0̤z Ρc6'ztSl+Q jCF}2ul>gLO۵}D‰b ΎB˻7 &(^ F!h;#Qcal( .tc Sۨ{wmw%|xX! G, b dt6pf?yM?0v'p7%ga@# le2P ;!Rw Go; ݄ 6m66MogAux?:}0p0JBko }Fn6rƾ l@.ۛ;DXN =,zUpxd7j2v \[#o{u.w!_[IjPo'Z]a䑙?É(-^/q¤ @be7P(\ep#ۘvB)}S=#!JT(,Q0t".00y2fP[fЅ,`ZB?9C$wgt$ῦou0KxxMA"vut$OZN>$d[ď OQm˂s.V/Y!*@q[N[ pP|s0[%SPO{:)A0(Ƶ4T624T=!C XUXU.; fido!" mxȚXFQ!-YD㿄7 UwPWEJB]  *&Ii0B5Mf4yRp-\q|?69 q*@)"Mn `AzZ j=(kA5jkɆ{"mI Ry>}pQ}Om?se0&3hQ [:@/#(&D .fLJ iEm\3G)jBemNz\Vvz>M⿊A#%j@c.rSٿ<9m_oᯎ }{Ғq_揅3RbMYjo ]Ϟ푱|- ?x,0G 7)sI)].aDɿKü>M댍;e$bH;X? yK?a3׿eE2`HPm P5;Cݝ/쾟>{;NǛ=8?tK֖Q hþ~W]`9x pK0部ƌ《BTᝁ1b ~t 49zF).>d~{z) B)Dk28I͌w905FqF;\ai TD%GѺ#Nkz׿g'5[dUWC5n{`Sz'`"225ƒA ? D-Xoŋo=}*/7o|y՜Z!/Rx"םx@D@*d`\ Bٶ}7i=65J+wpޅLԟ&Iѿ=kƛﰛS7}ER  @&ڢ^mH@ 0dx?: eTNaĠDi ^Ig8n1 N^lH!"dtGDtiiSW6@-k "𰁅kJkL8p?4ojoy C| >f@S_UmނQ}]Nտ+՗Z@, b28#ІEcbB"A#@QEplk9U xˆJXXU|`8oͪ/m3J&rz6PW>med<0$i$.*Nȁ;r|O6G@#IsDhKb)SU!CvINHnnxx?'3T.?)M2|њfv#?h#w.jG ĄXOape4j ekK4xp+fSaQ>Zg_܂(Y*YeL0dg W)^ j*S}w[K+BЈ04bʅ%]#T~ x_4x$*ߡ@a>ѭaP bR~ܻ=~ ()x0'UcvZr>6;=a "Q@l X!]E|>K췓+b2%\K, 7vomioF`zx*&A3e%AV̯{ר #>Je5vl AAU!!FLaQWm(7h$L2b\p~=XMU ' ;a̹_}uN>zMhZm1s WE0&🅗"ɲuԲ%]^}˗?wwhq CIuc^u5Wkh&㿩@E|Ӿ@3 s{ 0LJ `/|_pGZzWjy "@Grq(c3#R%:H5`QC U3uى%Vٿ'"QO6Mz Ǹ_~p0TH@a-LQ@‡,`MwL@ Su_rR@x%!:*/?əc Vw~U,ۥw+ojER?`*`!(FcoFr;q O󚂗_Ø3RB}yFmAc& ƯuBӂ ܻz@GJQqvADBh(!J tqb ԀIM p{,SX1Q@l~C[82eo#?XF!hV3AA\j-wŸ7(Hz*3%%.뮻. D$i,BLG0g# چ'#R}q,(+s$n?~){ e|{`)Ua P.T 𩂀 I:@L(!CBщIx"V 1j+DaLfyk(Xom_I/ dX ~{_C ^ٿw qf!-hD" ]w!; "3}F)_C S%cAK}>0e<9}tW\:%OdwۜRw8SzڟiL-]8r )Ɩ`xS6^n{Nɠ3s(f(7߁cx;1Ah"m^c3k毾3_q%/ZZIZNgBf Txo u0 ( k˨E-`mh g\AM)P{4P"fG.;?̍ ɤw Fz;_ suIGzLOwd뻷̗ѿPzmpozddi?ihi u, qEmXcZV4v=޿h"rM7 X'k Fj(1>>?J.TK55~ 0F@j֣} ߺ\ߌ;CKQde>F]Lۦ~N7Ћed)G z# I*O& 6EG HHt>-=*5D#jP0$] ޷b|_cH}@8)Qurˠ/EkYʛU]#AD yoC5!&#]!!AZ-ciB B$0mTʷy!kpIߵ~2u8 tK`wio{o.}e| ;ck_ZA|cUh*"`x;gGݛz;ez?\?9YMi?m'.עZ%༇ohT%6:?wS?ȸ zcbԄj !Q8cF@pE[A4Іmض~ 8E( XC,2<`7h;S~*3fSv>Z Բ֬P#l(Qw?y]o1qηr8N7& 꿯3Ypԛz{PA90}DpOkeDw&]>7Q00 81NXm4[C;1'5puWOϸ9QH+ 5AaB-PB 6ƄPQ?NNPI1ߚ5z8r5~B)Hr;2-Wwshv&jSd=ߜ~-3xž"q``DRKb.V0F=T8e)lAA5+yɸhɞFP!^j@רHS6S]ƪ.D!@aާ߄FAE ,߬p(i7F[b ~n$Wo!; >Uvu.EJy)+9dA %C7&0$Pqͮ2)И}9o4Ƴi }KwRO+:*qϸsL @BcxσP T%-B@_D &f Rj%! ( `SV*g6ڐރ֌RF¸o^lG58e]uUo/Bٿj _mlgdd'~Ǎ+~cm}y k/ k--+- 8s9Է\<?Ĭq} F -eP^}(PD[XX- 6 ºq,o 4 l6PSXg?s C`<;*N jY%P}S8hxcrg) 2hhSkyt5قI32a%ߗ`!@v|ŧ|} ٞ5875Na<&i X6IȸA7["RHa9BǭX뛣?F'L~ר柔5iK 48o(ޠtu_2: )!N)( Xhi "#KXvXUD8IHR _Eg;&9́},  uٌŋxZ/MY +%_ PSBG`Y42"՗o72_;h؟2}v2*x/@/[@32DH, Z4P1 |j6f=b%̲5kB?t=%o #; g |ߝV_Uyo@>G]f+0%tj zH_l%#:$]s^8HLw`zK7;0 eПw1S}3?"{x,03U$Pa||[xcCcAk#JDE&\RkxpCO6`P*ߔ'#A$^.+>9ə '?->{3n0=A4nI9P]d A79`(Q'[Nkd{L<xӮhG6%8( xkao0E Q6D(U¡EwzOݫhbWe[vqP2.Yo\OO*V x0T%EHk kt'''_{vk!_@ԕ aXֵײzμ(> gBn@(,CBdRqC WbSzeZQ 6 V}>);o'Jf竜aNzb`PV(\+@_u(ba-Jca `FX[f3-I*WοYa+ǑQms)y.o.6p39|J22}#FsPԑZj\%]!;)zyl*_Sc )rN(97pخp#I>S٤QnfL's7d߻^B_G&b,\ZQ*;d6z@}Wg#Ҷs urw7zo=~2P""?{"# 8GCVz9h,D)%+ [BɪHn G~1L޶4#1P8hl ,Q-xL9{OpN3I`~/=^pxghU:nswn}[5㴓3?v`Sm_N޺T7)ns-rfd/tS) FYڍ)My}X OpG?\?-e~ ~% )Ȍ&@@X@ B @C_]=gnR3nE@ %{ѠT4צ;d7quR4*]U s|\zVTC&X6dN@/"g<$D1? ,zcTD# x?}پgDh8A uP֭)rBɌC4ThcW2P ;7gO=k>1 Ubm~Rd` eĉQkuؗ0A8,GUx6߻_ 6MY0#*"5GKmRaG~JEHGxȿ%* qیDғ n{uuPg2gd!E@@IQ-DE@dG-u5c m*G aj{q_%L1^,xlbk'=$֦7,t9 }RR׶oS# Ŕ6N[0 >UbOpΣG˅Ţ0(Aa6@Z}t#{W:G饥7$WVB%bOB꠮7n{ym?F LCx^/צW~+";tkH~Lِ| EKmL$- 8mA$4^O1Y0nO_Pq\~-NB^CCmt٠-fFwbX^8*ŔFc4A0óJzHiG8l*ģUѲX(b1UW"Aaf2;| Y8c+/+XGAf+9ht?K?cajLkFc3zEn#MM>}Eo% !B F@8#pZ/ V.{?)ֿwWk/ K<"]!^Ap!SP,xH\K b"6DF~{`w" :0KKǴxIϹNϫ?z[x 蜍~q$ἂ 8Oԍ Ŷq)Q5ܪ?֠;x{7: hUo[Y)!6M.D?Fw: ]W= [FLWD譧뒟OuEd?׏?_M 1|P5'|bc )13R@u03Mg@_p&@zb~ HT!{ pQ#y.!`QZ*6y7N"D* ,QE+< `Nm?hS 0<+322vB"_*FuJ^TVQdώ5&Uc!xԕXx;hS?"~ _h#clFԎy7'tZFCH^1?32}FRlD<ƣ=uX- - e` L LN;D.`^l/ +ק檐ٖ25|ۜG"ȸ=$JRpPKW}p@xL/_mGgb_c J"۷/%Y!k9wg8L8}Q OI?YF 2\ 0\ూ)ձ G9T$f=4l|=&quh'P|\PUhJ-  tCWG]EXTǺ8^X/K #pr|0zki+B-d1)S  uvv1akC&!1o * q* ^~Upד>*wZ9 Rhfd<|ȇ*RP:c[;le,, i]@.JcȿC_GeOG·&b%WGMo/68Nddd 8444/˘xk-?y^ ]`~`C1Tmd-r 5Oؿm( ^c.e,^7d?'`M;JvdNX=$a@M:ޖ*?6zqzOh\vu[x,zu(+$q.B 2j "ILRt J06UrqK }8_Om4pxhwncXhhjJk)Vf]]&(XĘqT112K8)dToh4uP6lj;چ8J=8n+Bg?O{OWBˣ%_K4,)R-gd42DZ,$z ؖY.sנHU q]WoxyAc6@ PӘ約eA6NoQ d iSaP%> \up &KBFP8;*H4 D*o1[m552lt;MJZ2RiB2yXѠߴWFFƻߞW.*8`8^:- - eZBM g u  xWo%:uu6!ݿJ3j mA_}pdg$# xX8!Qwݳx;?QثП"P1|ᨤGUQ;EQnbI`VfK)W0-@øުrr/`wh}۟ 6,b@ k49¿ZdG'@ Tߕs!##{PHxκ~[Gy|#kRA %s{{0%LjK@E01 |( WH$*Wf><ȸ]70 E$ *0( [)5P4uD< QdKƆ1hHYVq'3} [c5C9WwA\oCߞJ~VxWށ>T:\/#vD%Rje6b?گP oFU!Ɔ(M22 `A 6i1Ͼx9\m7GPk97 a DG 25El RF@? V Z1 97Ц֡_]6M!b{z=32n"f@**-eC͑N?{O?k9hB%T"i!(Y)/]eRErHH,Jv.bb hm*r8]DaT;8)ޝ.&]m\Ow9Kst!## `5ؗ(Ax(Gk6 b[.XY)c [ĬU)I=w}Loyc%нAA:UZѿkj u[hSAzg322naF< JP6Stt 7Dv+=S~9} p_ht RD|&鷃#7YS ʮl?1Ȯddcvgɼ;MGgK&Ɔɮ%`6P-4{"PQ+eQmSRaYC=_̖\=_ isZ"O32CTIc5d;7uI](Whg(GlY,Q,0 v-c tF~]qaDsR6 ]̀]A] zRßMjxY%#@B`(+ "5dmu/2;s9m|e|""GFy=ߛҽ)`RSƔW  $Dm$w9184V΃|pΗԞמ C۞nN$xqkκ1d7ƪ-b[.Xl1 =Laa;nz\`Ѻrc?z*fMQiU,Hޞ$;22n'2@m5z4g1GJ!g<#/P1c%-,?2KD b;+ 03.;iE4}A𲀺mfOOv6yz\eam222Z:  6Цq%|Q6 ئi! WÔ˶J^T)syM|VkC &'*HޅT: 16!՟S!V2ed-5- l jnž,)'O32.G]6zl+͓ Rl-j @\`28Q8bf$OoZeǟӤQԍݘTk07A71 `ܗ:3d|<)#m!4lIݐvCjϟ<";Q|g+9„xp`h}Axh29vEV@`S GG`k@:WP*a<4X"D>]ˣV(0e1E̦Y $l3zo׷cq/#mJq@[q(WW}uU6VA[)ssȸMĐ)h؂\ƃԵN6XC|eǯhVPk|"D)A8#"baZ.kh1j,=waO0ߦ  .k`3!fK;_[`.uȸOY9.bLP@] h 좂)A\5fRT5B$9ZN~H]1aL wW5f*fkm@'8󳱟qPBTN 5[XYCUuGwxG#ٳgwύ CX@ <x$JM- V*NHMk-%$=@i2Om Ƙ| ~Gm|oeq `[uGn5{<ہ&@_l~8`[&1D'S€ 28vKIgdd H&~GPoU}Ɨ z2e,2^e׮JDg@'$wvN@9 #ڦjw-ߟʯ.*|]34v|oހ;@gp$jlH.}٘rO?4[,ox{?[ʯ`䘊Ċ'j){4 8󔝈Vc;g<~>]Ptнg3)޳\q3s|G߸&d;ӸMG:g)X E[j_m@@Pq&E [F{ob; }?dx@+q5dϕ`n=- & ^:luE3թtW2 Dv@vdd ! ~#_'>C]_w)Ɩ0a@[Bl[D2j;>i_[g0pchk ѸW"Hu"@5(sNFm#=%!BI'pD5*_㣏lIv!=Do~^̛+\FC'4#qq""Z>*nz&9r,Ht<!19v:L өcKW9m"=xnY#gW{=. ƨԘq1. 9SWF_ H`"X1mA&I&f2vh>G!V û Kt3cDȸ #TPlv l?ߛ?;O#; >ՅGJ o3RE g^ndd<DEL' OcMZ: 1CD!Hxf:&M#3T;4n^mbKY/휱LwmM6~gO${ESI\:ئXWKb7lk@4hUؿa8n;]½Ղpr ]qJ @/~ 2"7h r}ތe|/8:!8͔$HmPr0mP mF&#s!)?.82zyȸ/h3*o4$\VF7x_m˗z|-_ ͷ K !y(r=@zcb mS. 앱V['P)R#zy5E72.LϸSTFCODb/|Ic``xU(ar=QI h1)4RRYv}joc3bFFƽG i8 Οy仁xprr%=~)#(V0X e1HwM%(WSΚXa51Zf .i]~$edt)!%=QD! 4$Q)JA񐑑q}0VFA|*NO;v#OЎ}Cqѓ+rFFƃ_81k͇OF#D?ɶ+ aBcPKS_G.W7wO8^D@X JS0 ZouuU[gZZN E}&T 4 T] e $D1AV!ݭws =㟣.l<07E3?#] FgAx,wCՅ3J_5#>CT5qF-sÚ8s3?\ۿ,}=p$31G_8}</M{L&ǞH 6@X 9[j ZuPj*ښrkaLls*.5xE4g7H pD9$&FU: zҽ~3Q'#c?:/]E?S10zIIR>9WG g?#C ZS@NdmvQv={/qtXcxmE6#B @r@): &) aˠ0Zm!vglL351O-3+ca)Oߏ Jm?  T"E@D R Y7]dB2S32sșDyᴨ&;nǿUm{6eo wY1T%+fdȇ$VT-Ix{hi KP `L %ĚPc 4`LMssu!QD\@!F4|gjSFFFFFƝz" QEͅ6W]~v}}'_}r~EIYB >[$>`IB=0mI -`p2,[0j)0 ZnM55ʡ``2ZkFǿ)S6UK췐3D_ZU QJ(8h0iFFFFFF͢qI*'` p r kixQk?͏Bvd>3{n_ZS*m d ֈeo7r6 0c#+@ H H!IQ;#2&@Ha@@QZ.A@] S`%L. pBK4zZGWq!4Q**T ȸQ38B\kUY7˗7&؉<He=3*Y{o+1+c!us/l?ϵ4cǻ￿ &;x^&.K,1Gл@&auo2uM4wO;O2W3Av3)#####f!mQr#S_ D$_roGs` 4=9Q|e%d@TOTO!W J9"!  pE50fpjKyƸ9fJwx}M9}ܟpOw`2 %0b,LQ\B1lSE!`MXnЦ6g'épt z l7~~Ww2 nzdh[ 00𢡌7P@~BorEP p*"@9Cz[vk ;2&899ge]=ٙ,2 Vw|1C֏32u4}{'@ h>`T0 z^ ӐKGge7ȵY 5NF,"/! DJ7M[x_!0g ],O~3l\8 c-͹o- .   )X,E7.bsILXXP H[b-[@".?m+8 2x9S9 c d# vI=3\$#####P@A=ٹ; ~Fvdɉ5br񣧯.!B-"b(>+AM파w}P<$y`M!`!P0v.M6k4]thp'{t63SJ@`GHW2:1q1;D Qww;qqrrB `ZiaW"Hk% k*\2+}GO&k} S.a(VQ?E#,|o'|P?],`%LB`LW}CD1:O"/"0X [(ҟ-` k-zFFFFFƕ uh<4E% }`p6Y$1D>$ %Jٱ0)!, - 9HQZ]6 Ļ@ Tl 93:HkKW?8״u(doKFFFFFU@Ud#"@.8z.b]֮ o q%|E^|#EkEc~D)#+&qi<ٌt2dp` hr ߬M 65Z zQ#y@( Zs \WLp?N ׊1[j"ИإxsZ@FFFFFU< 9 DT318Wo7Ei?e▐Ws>'] /P:g(  h@ q*A^Թ>"z&3cc>~~&<5Ofoܿ&\\?ۿ1HOB|0Ƨ%X.a|.;m Ty+x$rcA8j2Kˍ?'7kqzft *D DFm!;2'b|-") z#9q821 omd -!E)JhYCet,B6@+jR1Oz$@Y@;DJ[8lgFFFFF J: B!@՟~q^-m#gogO/O}@~-#)TZR%ܶ87N~&7x>?ۿwl}} @w.:lڒ5&2 Է *4v}S3C5p`εw *yU«zCVD@`FFFF F( ~ /WSZ|Xg?CR]~r@/]nk ` DE ܮ`^`1db?10)iMOsa^j qYy7=^uD`hSzgw.>: c@}jLef?WVbGw}p.~Ŀ%HHi!)SE%j. O)#####Ex:H9) w~Ɠ5d@aY^х+ׅhJ~,H,E($KC smcDB(Bq{C: &@SC-|SAb@Pw8Ŷ; S 8=6 ې810zCK |)!{CeFFFFF{&SB9ϋbT0 㶐o3|T}x o H(!+Ќ9 4IY5ѻfC>BTA-!M/+ EkHSCRwԑ*>Q4mxc'f;Lh#H!5[g1ի䤕ɸEd@ƛD?}ayYK,k|D#2X EH(c,ODc DP Ĕ:b%EW5) X*htƪ]'}]4۲㬆I)] ۼ$_bFFP|MV!ހ]ʟXrA)~{xczAG{g >KDcK/<Ǎ?;Y=~g 9z䀡 P}V$ >222222!H,@-x 7kV_ud@5 'gϟ׋.Gֻ_(DS!2\ ļ[8#Np2c?ɁG b"'l(mJhP):{xle@ iBA_Cb<3UO}zܧ+E18k_ )13@TBh ve;d3HK>eQ~ %d@ ?'hfQx?)XBhUq̈3 F)KFgUkE)˨h+ jh$E3|Cu4?k$t֏0Ƨ$mcDڲɉ@ 222222a6lA x*"|%ƼƮuS?~o q#?֨?-ZC8Sn'w?n/ da0 LXLQB,H5R4y >emArłxD1>Ls`] @s@BOL=^YqьC C5WFu+Gf-!;2n OOӜ? `'d} cY@RDlp> p>#bz>݇;L4fMo\1fx?rdL3G U0b@c`m} t wQ4,TWDG I唭mMkw@9-}co˜x9-9@zW] #####!! ()V(|e /R*皟zoqcxGWOl6ǰ1|)c!¤cFgLE_ B1N:a.Dx"tC); f 4jjS/=GOq/ƫCZqF3UD4|0"}oRNA(_T ?@PQ֐7!?{O_L+8Ǥ lBgd%LKҏKHj c4_$9\ .}t29t!FA_?Oٻh *TßXA*Twedddddd<j*h5&@FFFFC@K %~S=?|Yq7[d@ƭG16B_X[PhV>8'@Zm8޽0x #yso\`rg)#\~vw}zszkco^aPo; hpu. bJh0E{F|Cd~@Hmv:i* $C:@1m:'YH4S4;4~-MOԒ$hh/=rXj"$mV H$2ܹ*B{Dѷَ^76N. 9H?]g2dT,#*jB[v@-u}ݟ"]R9c+?>uPB@hujAFT#] 8Hgd"H$^?H\BЖF}? 'q$@~4HVr8hBD->lߴ0k,hR74/nF5x-WQ9_4Ƙ#_ל5A3099 ۶gy䰾IO3X#ђ 0Á/x X1\H$Ti)zXc_$3~.ZƋ*ϲ 0 25;kѭ@8ͧWo/E'f[cA? BݼeM9F@Bմr ۻWD"H=5/Rb` OA>E-U֊1$@@ۺ/wVg<0ѵ qJHiw?H$<&c\O<֚&&H$Da؁칙?s xs_є8l][SOD|}k ':G~%HI,s M훠'4X`y A:ZkZ|eYg!oYZ}}j@+$D" L=_*@v |3IK{>߈KI3h]_Fo h0 ! x)3F{&@=yYwœy9֑?bAr#+a@Xd7_<3hR1_f` ~I;GTy7qZA"H$/abKp $JH=;^йIYhb{wڝOKr$,=}tef(}yg%Ea"IRl{yF+1)K $ vM9u#h&@&@bŪ,jM (I$[XGn|Fs"lͳѿr͙LLܻwo,?; 0 SzXA/4;M f *dUQ <$M*DU)?H$"H%mA ¶yÿlv=MH ~w_ϡo`e HxҺ%Fc:M$sۃ 0# -UhT a J5Q^5㨂D"H$orQ} >32! gH HΝ?:mEUEAE C%!DVk#^j79sO pҜE ݟ4|m`YN6xko6rZ[u:?f0dyE c{l"y0+8k(H$oZE"E ; }#سe;;)w=-I9^l'h;61Y["KhfRk"p?g=OY0@3 1/QI$ĩ P1bK“ >tGC%sBr$ Q?'̸+Cn!:ie@p2xH$hXc,/ Kj+@$ʺ@&D(8G`KZ?ne/ʽjGE|i7-HĹ_w[zkTKRF% V"\df4`,qHeSU[B<"T % せIg~DD"N1.:ڌMO{hS^hݥkaл2d|sɧw?l 0lX2A$(FժE3#pt; /p L0gg1OuaAM׮Y0ˢX{{I<^c[57 o|_0r@G.h!ԁQ#$o<ǺMbDЪ/\fn#&n,HKHmWjV`dSftV 0HmcNM?q Ļ4jP_$I(k!kqdAnvųv*wNIą kAIRh `q!H Bzۏ,j{Һ ?B=aN?g2ߤ^h< W?H8#c?f jy9k|1韚f- GkM Y]*!ui H$ lT SHI~L, e}vO|g q!ظ}ool o/~˪h\$(  ;r_1_0RSͽny{D6a7"&KxUBw&?H$"RWg>'Q+뾷Ž{?$@b@j@T86[-@9 4H$.84F8iG$Pp`wJ${vH=[{W޽$s@"!7Xm OW~A$v( $h֌%_B3m{2{7$2ZBYA|ȗ/!62Ȃ=H$ IP'LC| KuW:sOH\HnݺUm=C7씴,/JaHVHw2`车N}56ylP&G)ȑĀ/ľ$NΙ;^i07bGW?{;9=X Yͽ /}.ܦN !?{3o0 M 8:*8H$DeJQH lxLW}qG?$@Brmͪ+\. *kkǘ$y9Hsqp7@ dco FX!V%U&DbP%^#^x,#Mm 9U@sG?U[C)$MD"qad!r!LB*jMNB{<}N$ ($ vm ؤ ]O!<%wʸ4/K Ar$.<+*AQPXLZ0#ⷝ nK:i;,VPh8B `vD"qfac`&ixDI%lUVF(Y$@ɭn[^ :%+"RԐBQg lR s5/<73`9௞??'qf\h;i_T3` Y Er$ 5 {DmA#b A ^;df"pF4Y#AL ^P,ȀbTHD"q^:  x G,XYyޟIϒE#9kg& Q8@\!.h43Mԣ:'TK.?94#HH[8}_Vݽos`Yޤ4x]=`ԇF+njf"H$Nt&k(`sO<1>0_򔺜x$@C~ W,1G(*HB2`l}bqMWs$g~5 G5ih&XG sh,Ys,ywt#x10ܼ~v`7k,iWs€[$"w?4TRդ&0`"H Wb lO :|Hߘh=೔uAI;ɽwu{ccte{KR] XA9s:ñ2pl?E,#f:ɺ2hAj@ evX7D"x &1^>mO=2Cw>jIOWOV{B)9HĻ &PT.QY- *o*d+r R82ܛH$i0j-T %e7`4NH$׊\R7+hG* a>;7/ulNˉ7Ir$~_>Z+3#\R48.QXq!pQQeaR]Fh@Usm"8L` Ӛ4 fY%ϼS2$ěF(T"FDov_w0d_oAW%ӰBd¼GggG'͟ӿ9ߑ#.?9]۟~f3ΙwjfX!AeUo`ejԃ o:H$8) P&3F`CgnmG΃ ) ׌ Bd%2ʕSh): Ra&'D"qMT-c PK#TJzD"qBT @xL!CbKs%.>H|WGaϜ$`ut \6IVΆt44??9?r8f#&NZhZ[>ِ22XކkM6Gr@4Z#$:cH$ccu:ԅS_rjWĿJ H|gݻwq:C(`KCruɓurOs?oNgR fQ E5fA yy)ISf5 07ωS\uh:@&@v p(G K\kR8D❇=rܒ ;"R 2ң=lڹ />B#9O+*vi 7f!.W(A<@d)xRbOmGz|[{O f1MHzTD"*z 'Sڗo&dzr)l.>7K H|wt?_4PWYEV"@ొ<4IƤ H$.f Z*xUxcCrx:֩FD"qIgh&G~#^[gvg[HFW{KUv=pQ}@}-H׌\%XiOU(kJLf'TbptU!sXsW8i4p{rE zs 7 wWS!>`U PGZ PjMM4;ƤuyUt @ܔ鑻~ 0j'_z*ٮTPB9G"@A1H6/emm.%2l4rգYeEQ*MwH$/ERu?I>3xa,ݛ[{]|?g x)HV{ 0׃?2 tߊ,y[`&!4ܕH$.f hV_&?Ī' HH.PM  }ͽ|Y$C2.?|7WbvV /CS7 "2U)4;hNm?/s.Pj??}tRj̗xPz[?u3MI?Liaq؛hF@^P,s&FMҿHAx7 9DŽ~!/L GVq?޻?8)) x |tj/-ts?p]Ь $թ@ * xM`ϱ@g4id=7{-‘^ݡןeA͇yܛ=nmsm ؜6R:XC#ƢlJ~iMْD"q F)<`R)˞׿rߚTz,x |zn\?l;حUB_g./z"p >+L) &_t9gM5zDkMA `ֆ:+Ȗב\BX^Gh/6eM8 H$.*j.BC>/?l|3X㋍{8?D-h/ŝ;w.~=dPd  5IK.A$Cz N$3@@&I H\l$)B( >h4NE2$Sʕr5*ox(g ?0z M rDG6ilw$Q= ů[`s?wb̀Dٯyx7$6cQ߽W͞XAGTbUq8,X(4^v"Hu&9Oh[⦀'+OFse?.8[7OH$N(W2[ێ20 } =H4XˎSh^]3;:G70^p{G[lL.~dW"s7Ñim?73O* [\B0mL2p>KD @rrm\сx`C8YaEl{n$@"qJܺ(~tM[FW[a0@ѓvC@OBXLRp0?q ?g{cN ycO_hpw~7o?d ?[ǜ&Ày>PG$9B㮝~ B7?1/o3 :χWL_!x { 5 xN=O\oW~)G_쒺z!' ?i ,2s?wNqYpYՀ9b/⠋jE!e|H$5=$8IUF /! ~=$i֋j?i?qI j[%g%\}v@m ܥt@V$,0j2Pěes޿1-~9! ov%O`zf<4C x9JHۑDԘFC;^| K w,~_oҧ@r$g{;\>vzʀwV;IoɹM=nJ *H N o:Iu'/X7q|Xpw<{_LTeCMk^hC@i!g-0Ǡݪjq`"Hq8dbtЅ ȯ)}-o3>3>HD⍐9@766l{{{%W/5Q7)+x]+ V,¤J0L_oY[_L,l; oL7\8W;]u r Ⰷ8C"^ [>vXr$7 N`@4?/L/(?c7lm>؛г8D(毼}~QeEqUMmp CHZryB(qD"qj`ͨ{4escج+<+ڃ#hG&+<(OYr{T6|2oH$!| zM$'`Rv *C}@x ;?m^z\$"9sʭG 5R{3B}x\c3/puW1Σm?mvc15`s^,DްuڏޜȢۛ{^P:X'Z#f ̄*?" Mjr$Hi* l zH2<D*Y:F_jyR[#;wAS̆KE:k5+-*{nq˥\i`N3q2~~Assأk,z5_^k'X|{{Lr`BTb P {;{/FP,Xhk5BD"]Em #_K g ]_Zc#+IDq/[Xֈ+U}{ltUW`X,C 2գbQS9sD^T4`6b~v|YF/ZpW=w@fۛ᜝2:ouG0̭Jp d 01P@Ux ^iqqD"1fAC1oCCxҎa{OFpą#9 ۟wp{HUrfuN>x-A) K@H@^ƺB@RrsϐH\~pp3NJ сY " ''^44 #D8jC_Mi(iDrs!>$>^π)7B"IwDΝ;YKc[˭ ע=}ޓ+W "ڔ!W3_oQy,u,Y?]srb<0q`eKx1G]/P1L!vS@"/@F@%_IzdB܍C~(%ΖH#ܹs'a%lRL7i|OM I:+$V@X[qspHE66hE>Վ#xU@My]*0 ą\I"PI(A Cء酜N=$o3yO~H" ],xWxF nai^3*&dI K pT`,nQkM}'WVps-_9os^1ux_8']Q_WZ`ԃ^ GMڛN~%i=rS #<؅'ó*Rt nwѥȞ3/sA rQG:L%wZPT,sCZPVB48VA`L$.:\}\rP]| 藄+lj Geޓ>~Yz2JI,xheUw]eaxK>'A\  _sDXS )`_8x^c?*>#uZ@чC*XAmH\d$@s]@0 p O| /] nOMgeϪމDb) x!(-~?n18rT/-7 5HWDX"hr6;8gE$"-!Ն z(Y ,U xY ʧ(`y5Rw Q#ڣ3ό|,f|6}hO~Ĺ 9 {|{ AXhH`h.υhy_sfS|(ѭџ:Gz^9y>zϱo9wj~sX a3Dr- ցQ^ `,kQqqZ@L$$۝q6#B@m?6')猶eՠ5[]7"ܭD[ZD'vʶݺu_zZxU~Os}3ި딖EִC3pͣE9jQ?qJ,?E$mo-)9m:T 8dߺ\`,jTNva^rq,ڃT8[o"x9f8A'0хkgt>2ZP@ ~ $gH$@Rbŝ;w{ujbQҲ >!>j'ǸDznٞ% 4 P_0jBUJ VMJ@!"`؄xh[xvտQϚ>;I$#+s~k)W^YE3k@ &ͮ JEC\#e`VD`/7!'Z'Ck[Ņh\4fPxD4GDࠉh"\N^f? $ws$j p6r=Ā'S>ryQ%''E$9ܮ?b^$ġ딮.kHLìoŒ&"F#? #9G4f ^@GuG[Ac,z>]NEKM4-_I`k  qC }r=ƓF@"qj`l>B ؗG9gL&=vJŽK/𿛄tWJ$d׷=]ݪ¨]-yw=cv95n ހt̮t*62u-΃ݘ1{I('] wNڿ:LN.0g)k̮>#xG(V@,~ЇFZBFq.@HOQ )Iu]9Gz(SU|6 ,j{woGKH$d1h 8  DaY򶀖`tqD"xК@ @ f5Ӎ6 U6O&SC =J.$ѓGh MoP(8 /Tu>TH$ CPwwտ i40߃M6 ]+uPHt tDF@G.ndimoo޿SI KR 9r0oCY^^#<# Z1%o(8%,% sPO!>'sFl7B"'.$鎓H$3:_QRet} e_ @^Bc>&`a, ;Т9Λ.+xBUMXx90Mͨ~PP,j BA&5@VIoͬ?ʩ& M⹄0>Sb{̆yh"666˶HgR@"֣??/V/ji{ R*V(\t {8Kx_}E@~ SN?пc"E)Nށ3uLJ C=[P֮#X `[8%YTh&qD W`n3X(z  =Q,f ՎnGNVǃrG?~J:kKegmWl-^ Mঀo b L!P$wS'GYS}Hkb7py^8.+&?F ,U#8եTꒁU-*8Tt%o$%wa}Q_zLexOU~? ӟVH^;B$7xFeUeZNvV׳Eu)pMBDBX!)h3FA>x?_$&:IhBJ%S`0Sb(Bci#?H?'oՄ!T R##]A{m S Oz/@ Q;CS"ljĻ@JH$o ܎oKU >6MWܯt A\N`dBR7 prf۟]&/֌ֽͿm)tZcAAYVXkZ#‹!Ld5; NqD"S)*,; CE'=s^ }ckO>]K$NH$o~[vzZh%C.qu`躀KFJX,@X]_.v@"8E\OfIвT`f-(%Ae20  OmsIF]g|k@jF G-=#PF=ݬd0~g7SGxIwD"U+롵:J\ˍ9[ *ukV X0H6 gx.BsRN֝,YWqyfVX^P5xчJexPk`C"eg(%+HEܣcsaU\1v+|g{_T@O$$H wi >Z Uʸ CdWK_pI:U@ˠ Td2d0-T 钂x815μ`J#`/vx* a 0eLW㲃>&0MCHWhrv."QH(@!AbW^@x.e,Gx϶.a*HRĩ_v{>X,g5/;xU8B5V-S0iɈ$3u/G 99?I6eqBi6-۟ٶONS -1#,4y *`Se毂 %#OOÕst͉brzؒkKtnxʷen{,*6LH$Nݻ(q>>XaܰDkѫKQF: u U@W"(&qx'w:0 PŦr@ A^ h 2\pԦk,q z-!}_&g=,"ȥ-r^oS,GT,e_٠OLD[DLr=bmo a؃D\uue]/qeZ8 ja`4j})@`[^xGdzTR`#7]s~.9\ĩ;?9,|WE,È}9Fbɪ[Cq%@yI _'Hu\_+s &,Y -!7c!j#yN?_M$@"8֣G>^.a?Uf^|]-|tx5WN:B*bhj/zŀ7AxۤB}iF5#DyB}S{'zY{SeB/h E(Gm^tUQ:|1-M$AeI 6@,[K D,s@5NhU;76.wB|D"q}vVVauŕ9ѯu7\t:U +:dB$"\u!ĉX,`~UH I(IP; , rE,zUwB*mK I&N]% Z`&!a(Y-q(ZnѼ߲o-ZK`3_rZG˞Ҳ?Eg/Bq:?ݿX&H$l;w>zoZZbXUԋhۑzī.\`*e)E樯 G"u1H\8G"'ozV >a4 b layXZUYPUwܠ+nU$\,rPd@ `*mL~w#bXvAdr`}^emX`BNdha ! eDL I!)6‰D[DrΝ a_a]DtBe!_h:`kaºïpZm d0Z,SipCr$Nm.;*E!i==@B=OjmlG= #@bn}xVXv\Qk/)*_'XkkV.h SP#~38Ws,ټg#Z@޼f:?@h@ˁBfV ܇ eD !/c uiC$'@"IDB+7a޿a|o lQlmUu/ykp{o*եK:Z1S]gD^ӉD|#M쟱pR@DTz" gf ^K{Emtzuevivrkp+ ف#&2vL$߇yL//ה3zҨGɱ߼p$d?@kC?kՆOFFǂT@SglЦvC  VFRs ҄Q{+T xI H\pom{܍|Qyտ/͕"kR{TruA*:aW4Xs*eKcliM9;ʑ~6I\FFrjmҞG)lA٨^Qg_>Q?W?~PbBo?|z;otGK!ɣ-eke2@[}#+HG Y Z#H?2Htd#/ȾF5m[ycG@PG 4ƾ GqL(̇Pw9 (D`z-~ŝ>8TDx:HH;`9ryg 9:qYe Z!,׊je@K$:s2&Z&I?RDuC(DD>;`)Ljzz.gKjǝEf/|Jo{>)NcwۙJii=˲jg#[Wa E:ci IJ~8JL<=rU&Nf;* 8A;CoY)*@R; fP\3  #rOF;~࣏6OCM"qID❇O;?}SU*h>PKf|UUHWXJaA+:2:D%2&j/+1$A"1a}L> %P KRdZȯ4 ClBׁ}$2Þ]HvKbG_`ht^eC-|hy(4EJKU3*B*(VqԆ'ZcD LҞ&j( |yv·eX7Nq1;y5/YoM~=?qX? ea<{/BcI耸Ԭ !WJȋYm}|@r$3$@"H4M H?> B}P} }P= ]0|}%яA>q8hWa|P|?;}V5y=ٮ,/ K~ AP,^PԀg@U;LÁCS'8zXBruC/G>Lj~F7ӡqz$hRӈNpS^,2˒j@ xI2E<D$gz5M$Ļw}`Y5KV3䣸ZbV,5sNaĺuQ4&`M:P X1Zf(*OG/8ewz`pQ?wGA*@ % :U=p]Zşо1ɪ ~EwѰRW?׽{wux~qӕz%-eK#)oX^X] ^&Q#?jj:Q P$(P3 u~#9\(pOO0cO;)qDw nZ2]rHN>ڡS/B_l{II$*ҕ5H$NÕN{u9Q\5|5PkXt %vHXmUQ^FQ`jIiZ*9xבjU?Q||~I45$؇p_"KbO>Z{bՕg_eV;]^oKq <~ɿ8 /E~ca<ǂ%uJX8j̀ @p˜/0 Z<rQB49v0"?3! i?LO"I@#T8`'Nmf5)ϟФ"d)X*aI()zz0'5}1vAEG׀a0+jtn _bO^v`^Te4`%;p(FxUBqT&g^ !Fb js: Aj)pxyFn2oMOs͛e۞ݗM9y 7Ii!Ry?j͈á?VOM[ d4ZK)8ٍ 74zoZblIҮ,--- IVI$e H$TVc{j{a+8l2,r X,reXX aE2+V)\|E% R-n` L'f ~N4o4#J8tZDI; Dr}}=H}]@}=]=zl>'/z_T?0ê;En_Q %Xl~R0bk ̀@i%*q& #\MqJ2ix7Q@8ZLEpظ؟/ˍuq:8Y%1άc5-064acaQn#\y_Џќ5g!8Ή1)̎O}_oeI@(pɲΐgE$H$۷rϫ|0í̖XZmEKͫu|̗qkI\2Kh eIKc.z _RSKۗD$?FQocm(|0%UITKA }I]v%C`O=RUAaèhTF++EU[~u z@7⋏ᇟ:UZt[ȫ %,ȸLeezTUc{cWG5ПS D L Mh uTc}BIT;̌s˙cqvjzlC#̟[B0P;<0`O{c}k %ק2#ի}u"qvHD"suխ?{J܋jdWvnmfމe\a#/2(]yĺ"EXD1\ʌC B4ϖƣ$NJ@9J1ML8$Y$$'P ( H!/j.{.v/]c(F*򥼼U:;wd[WEUU?oF7 -7j!AP1RY uRcO9qĦ8'xzXi~Yp\$gy`|? Lqd/qLOrL`a0N)0h^~<\3ߊ6i1!MH@:_E^񼿼>#čOn;NY38 ҃_"HAn߾pvvv lYChwBbX5@k䪄UJue-@hh]тM2 dMhdYn$kpC=4M,p;4s&tݡ9WtU\X[ڮz4jk% @bRiݐP>ž=R]ucc{nXb8hT z#A#@frfpQ _"F2{&6g@}Nhpo>t@uP5`2'ـvG&j~)g5,w|6r{NOq>&Ht?.7ٟٟ8(w:^CFd 6tܥć _m]ã{ZO"]H)D";~(c6+?G!Yy-ֶHMp PT91scG04h UVn? }cws+rO/*2"mp o 4 +dG;f`\Mg?vSqTPD@нq6;Fi@xc^߸u0Veo15XW4T]P!U*#@ts a}!ԥ_ (U"Fe+UEnx壿R=֣GmjcL̺w{62r+L Y_M:BcAN6,CiC`J|4Fd4IdƀO `NJrLsp0z?甁ߌ;x Q 7şdl2LYnu{9=S?)r_}T B @KH#FB<otOiRDl;qSFvvXb!V*TZ\UAkl+$vHt rr9@& #4Ѥ HxWc(6ýu,˴x`?<'/|ytLjMCӬkm^ze-P$Q6+f_@PC="}L^+hW_?#}'J}}{<u~ k4kɺ⚦+ζFP;2?fZm0])9i9& S|`bG9ӕR;I/~N.̮f vzB/!| kIN*%tĻBH$"i̓;w80 :,,GeA.Xё6666`-@--rs9 )(4O2ԏ3X-rهkHٗ>, .- //z(1=BWl[Wu.)ˁ zX~~gvu0mT(!)E@T>AJ* AO $8p`FA c_y<QC8NQÃe.C`Ьσɥ V$ݨ<2RQ0/QxJRA wH$3~yoݺ­7yu)Wh>a[xl9Y7l9ZȲe+BJ4,UG @Ku[|6(I--rrPmI*e2Aǘn6 CP`{acp\DSVo&?1z5,kcB)XK)U~g6  @쇈Bd 0Znl)+cxP7C\;t֣Gq~s矢-UUUeD +V%*Ym2QTX;0ßnvW;3g?7n#=;܍㯍/B,Ib,2BA #)(=D{bxXlp"H$;c[w5b9,`rrnYgT2 *t(D/ ll jr Edۤ6 -Im-J9\R h\&k\uj9AjŪ5j|NuANSއc0fSMFNY|>W6'kQu6Дc- #Bh2$`Q4FF >dAob4ëDZEY8Fc;PN^H= |D /USl2@;Ѝ Pc9 paʮ̚Y7"us{y8tD"%}?")^%ng}qvJM{s~VT|/~o5޿}/3 /˹S0띔7#g .ZdH͔g_Ϳ}FWW}ڱ7O5i6oB37pEs;VgWWr jz6ztOەNj6/эtQ2*PL.!uSDBgg Xcz%P!DED&IY HD1<&Ɋx{`I@I[ tn9O*t[a,@~_~خ:M>bp+Aag2MeL&EקmP#(i$`LrˆC@#*4846UgQ8"UFjQ鴣T?^/߽џddE3'w#59d/_ʯz/x߯y:m5<|o򙦟{&a&D9^1PebNM+㤕յ1 ŸOƸ~=xtOTUtR#&raUAF*T@"NɥS7UPH]ɱu֒juRDuPj:"P o (O~tv$P@)fQi< &$LaZHP0:җ.:cԙ/ /?v=~xU0l&Ad@i~!X$&A(օ,1Yi<:EJhZmR@jRb#UUb@+0iH-LcƂ 8()J'TCG1S5.%XDV6(ԽVv ;+֋iuo4{'4^V!Ɖ,"*J3җhG~~厀:?wv^eO¿6_~G^*Ky \d(@euQ;VZw r'õ ٳ|&g/ryn63*띜"MAgFt EtmG)׉QBMRF:XO: k*:juSNj@5 T!V$j@2$"' I"9_8]pUK?)DLC~>X,BВlB[@i~ZRChRHcH ɑ&e%4P@VL VdǑmy 5׍bIqUtfGX> Խ&F3yW;+U4O &a^ KjP=:ٮ^\x՛}[`ff~[pfޟy gp_׬KjT)1&U)UY@U3UU &GhInJXB“"2y@|0`sH ȉLv$( irX@'N.ȁ{$LI1[$ j)p;/$IL)&c!ƑдE-UFbjsmJRQ]鎇hKx7m+x6Wu.]6g.s'(?.0~Wuץ  qgJJ:vҦQ"R4VJs/PEU)̡RJU*r9KI)Q2S"rFJZd$&2 4YJIP"1ƝRrN@ d b2`?LirF@QR)?& "%D /o*,>@AJrBA0m`.)D$RvUV)T܊Ѧ6[ G!2:;ÉF@:٩PE;3k)Vb}}HoD{- z؋QдB֜FHh $&uvH&J!4;(,a+dtH"U,\03kkkZ[[ j|Vvp-a$@`k>cydEpv16JRͩ3NSX4m1iSĹr9% r"Uj%唨("`T9%'Q\eP&B$RJv@h'J !1d% #8iJPrV@P RI!(Y*ԛR$qO@})"!EMEE3Sb*үRE,+Jw_Eٽ),?"l3]}]_n|\Y]ՋW{WLTe b3#`PWQzhljS9\H:"e&'(SZigP<Оlffǀzbz \~jߴ?^؝Y*%NWWLĿ^8J)%ccr$`iX+1O>L~ݝY\\Affv PW.Җ%qkĥ>} n.廳RͽX\Vޘ3yA3󋪻`ӎ8.=t .;h˭I`4v0d1.506V:R =T3=TY˃?ov~KAϾ:\i fvG+x-!7o?5|Xu$fD"O%ptz,;n8Y$u'Y:CpOdP,yviʿԕ+s 2{^с=/}\Z[;G]*_]=yc/A/on`qG] vSO++/gu={V7qš++Ww/ kkiAٳ^xERN[!}Ow!Rz Sy& #'^*6EJ)S`~7`~ywOp:֞* z־G]yV\y>uIk?ҕI7A=S.]Jp!ÓeҌbyHoŷy2'Q.رikAz6QNcfo]⿸8ml#rҿUt:=o1{.G~[ú{޻zj.kgٯ_<. TA%sfRVT^v9~c09aIDЙnJ !܋& Gj?-թYݹ^]P8=0333o_nxW D]'$o`G춦鎫ٱpx$`Z"2.@,|YkKU-uMy !H@Vqk';Ib2.LgB,7I%mJVY=H3333g$V66#lM2_WѵA၀)SM3HPW࢘N 5333#A~33pbÕ=%K8 $yT'(9 ' "v 2]t׉|=بvuLx  X[[m\ٿOD]R011Ȁ4y: 4;2)c*)T)ʬ%PcI*3P͸!&ٷ3333;2$u٩f;rK Xg uE$ PvT4&QQDj(A`l+Uuu ǾYp~o<3 Ϙ) z$h"q4 AD8KqYozoZILK3>k;Hl듨%V@%J ""*L+;D&H5 PcCqy/{?kFkCk@cCB!&1&l88ʈBp А Yd7U-<~ËWz{1`ffffjث*^FE .ZRg6xb.HL(HLQӜɤPL1U` -q$QnUBWb|+ěQ؅4H ۱i!` 0Uq*7$ |C(gԜ\Խ˗/磻x{̔K/m/m-NϥCΈ8A'jVc|ܒ4920@kBD4tc6)Ww_@O32~s0333cŋ;;.>H&yuA){]v R@Sސ(nN^ݩƋo…ҥK 3333;sN 櫽NMPSl!%=I]N"rs`@;Nl$XЂdR2ت绘}ux}#\0333cj^2^Zs+)U٪b[(Rs;QJUcA'u(JTMa`ЁNd ~υ\ `E`ffff+Drm@[+WT0"9@bIW$P!T@?ĝԥ¸5Z_@~mhffffυզ3fwd!MP[ $4=v$A"%0$3T~GrMyu+^offff| K'ꓻ|UIdRdD@(2.0m͞=I(`JZyI6d$t#*hRՌNΣ==G.^h;!\B1*J)?nv |iD%'Eie "PSmkeBs~j銽\+@KP&Ǯ`ypD(И@>Wuu{ЌΠw˫;W3333{.7W|o<,dNTeHHJY D˻f)8 B}2 hs3,tf3Zh=>Q>F)QBFJ= YBh!R Nz\#P@D )J)c@* ` 0333甸z%-NJROIx^tLL vLORDh$bw$BOKjO4w:}C=ub ,2·w(Im)` 5aJH)J ྈ]HI|H?Ej >bqg?~ `𙙙sOffU>"u'3]9됾 q=J du8*8ȧ`JTBe qN++/]Zl-g akJ3F.̌RJ[RtVuUH):HTśOJ2" !1SRJјu[wGu_ffff[-pwyry/^8A{g9$}/Iz )3SJ)ȏ98J-]JE!y+.~+…ŋnk3333{iǣ\[lAsQ܄pCA@`آ3"0I7so^uQ7]Q_O0333i:5.8T(6!2' ;"'{cBpv#ÒYAc$DBuRS{|,w hio0ZxnLm$Ab(&;fәSD"SH<M.ygvέ˝#t;#^Xw>g39:wRVJz] es̉PPL;~R )Cɨ["?A'@Vqxa- #ffff"(kv4DL 1y\ $x f7;HB@'_=M2օѕh;\0333F%& Q*j8)pMz$OJQHDͬ"U;'<\0333M.hQʨrG|2&NRcB_F!Z:a q$3X F#t;&|^W{~|3_4Qx7oJ<` ԝǧI)LR E"qC[Ykm]ݬ󙇏t)\pe)ffffҸrJc-{lSq'e^S>t { H`>$v) 7OoUu}.#V¹߾^ffffҹt'p9z%3IA}JČH&&6l#CL !ApaO#@wt-I)p?w+ rt+, ôU7)6$= a y'$3A2ޒVϥn.mth8^:$bm K̈v'.HL 0R(U;Sb#1@ $(MLް]tW@;%׶QuzS<Rh, $@3/8#v&(уD!P6{; / eTh]5R"< 8<"?!˧o9h/RnR\^] _P>`ffffXNjO<}q)*9 Bh8b Y 5.رDD: `_JERTSSWGqe#_P.Mll\0|b7Qd%. Ѕ; < @TtTfQƊff^X03333Z__^mgo feW t b8</pp4%2 'xJ.N/PL,/K>,kB3333ᏗG[%e P(,%'S'ټfLT Zt>)׭"r¨vG+\sX_KGÙvObffffk?<3?~58 ]oJTB$t'd:XP>mH>G9 (Jzz Նxװ:<SB%YfEvSJ$ D`N")CRӻG:)z+6֮~5N&533335C ; . H[" 9qu#J 9K V;HԾe|;םեK| fffffk!n^;5_ Q-* _H1ő;z{2 0 $S"%sLxwR857\^GϥG3333rס۹JoKxۀ΃< `qv0% mbG}_@XG-N;|<`ffff/=BMf$5P`B g4`d< S.y@/a/1:ug \pW_ PK-SH:@@Q_Sc'`AAR!pH:JRa 64<sp*t`cc7N4%Y= !Ԁj>kdžt(4"[@B HmOcttWo_ܘ}~xiXOH|S@N50'2$q;)e0%(R66t,UkOKֽSsxb}qo?#fffff߰?;>Q>>p5 rSCAHɘ@`zɊ,%z]rCnvf<|Gz26Q)`iՔ#P @d NL*`cAñD'!%RBp(b_q 5u\oPc3333oJݺ:gmf(4VaUٌ4#* åّLx!P>3FJ20dž}VWW0l5lSP POB")t8a:)˂D#:y;)Gt_߃TBֱ3333od11W햜6榨k!qwmKa,(xnIH$tigpEy9p<^u1/ٷO멽*%c3}*߁/BtGǐFRExߎ'! PX,鴨Wx m9uu43p}V$vdI`)-<#9^oGt5% !̞u@{3]=(9FB`+!J k<pdR 3""Jy0m>< ȹ"VV6wwsi65 7mBzc H|IqJ NSz(qμ1!3333# kk;9m;^ɥ>f?xi!ͧDP`J QJ/b7@Tl慕իWG}/+wŸ4>v*(m(tHHI!rf8a- D^ ^a`i0|wvky`ffffvD^~6|LC}A A`v$> dO"ȓ^T2ps03333;*$֤r-mwRnI&95B#'M@ JQN~;/-m엙 fffffGGӅ|4G)L)b"˜$A`@ HرR"AFWENA3w_㣾֗[/̎RQ3 ND :o `W@$pz v DJ : -KzM̯R[VG}/+w}gv ]*Y# BD\{v^T 51%v5:옸ry5Tw7A\Ss%<+`QE0g LSN` ܨIЗ̎˗8Q638nj7|a[;(@&H#w(^G_bw._^i׊ogfffffЕ v1Tv2*M x[{$Qc̞@ 5y@ .Dmf|sػvtI 3333cjqtǭ(b6SEQcEBZC@j|7XY$ `\J8/szͭ;?֥p1^Vo?ik<Ȋ D b. P[j"vt@Ȃ: f0W#b\H]gfffffI(пmTrJDOYHIҜ@">;R$ P`O,y m=ɃG}/ P03333{T^Ӷ[y#%݊M7p6 1LIKٳ$Pf8`2Stzbziߤψ;̞1g]Tu IHv$dI '$qi[Z۷e9 C'Y@ 1h{}xψ fffffύmo_sYF.M)uTd وe, `GJAug-KhLͱ{Mg`ffffX__`={U/1uJĬ.f (0م"˞HB4Ifk݈B>|y`ffff^Z-?4rLQ89k] @'(B꥜'سq?!f@53f*03333{]Y]pPryآlo0s0}7(la $-v<]\"2LX%إR@bmw|F\03333{hi_+j6BVRAz pSgS" `MP/"tJs3333瓮\XpE.=' ǘ@b&U FL*K80{F8i;$:Atv ̞s\_AL9lr >RJH)=9mm!Ai @U$D!VcE&|F`ffff"8{%[L%C蒩$P@ڷC8H$D2ST D™׎B_".{/z~8ϴMUs3n!dzj;(/qr*@"r9M`ffffX'B̏"wY dJ$U: (b^dpX h"RB"ZԌ u4`ffff"!^ #З0 t&}8@Pt^*.hHbqU~$ Z@m$<4k<`ߐh&!@DO?K{Y <~Źm, T("KHyf/.^@-?nA-UUP#K "GL@N4{A`ffff¢~c4@nNqYsHѢ,H!Ipc#I C2og3333o6hKѠ Ř`Hɘ@I tiWs}$# 8uwrW57yO#A{GRLdo?Dx EG ԼєznTygJI E7fqRHuc^03333{)P?[s@)⚠)|!=c@ItW:&AA@jjؖ2Iw<#03333{iP}G} *#!E(2 j$ P+ DC͍ͣ—;^"\ʆX+p 6]s L8cjR)sKw\.ٞDT%%Xy D,"j&ۯA?Z cGUf4.n>+|i`ffff"8䞪C˜Y Ք-&3+Bb>h#헓40)AAI5ogG^RW&S-bL)|S <$=x@tS: AcJCB* rXۭ\xF`ffff"VV..q߭911m ́+* HL GNxK,<`ffff$4G)2)1ĜD,ӤP K%k)L RO";H(G}/ 033333hm`Qp?'p] > `?`xD(CI"'iP8G}/ W G(bxffFad%IF[ @O|DzhKir D@("@cPC{+?Dm.\q\^qopz/wT@ 5<З0(< ~!!@j$Cˡ~xk^qMZ㒴_7u[-eJ1+qH@ $=ݾDR00/T_Q_fffffsN "q 7\ Ɍ>= ^&$$@Ծ={ i/!6Rq}M^)9;:$(c!9 M3&G7gםlA !'r<>0W.#wWZ[{|7eA6"p5C–h#rKO!c @<.{񕋫ARpq}(?.XrRUh,95HfKLRxL`6ijQ_Kߔfffff?qj u+o mD0i& d@ AT\2_j.__mȸ`utBB̅aŀWM m+. bc'503333eyҿM>}b(I9%%D̄JNt.Ka(H@c}[TCQ\8".2=oR.5zCL"((㗂"$Ph A!`/\8".ٯld.]{P)̬!P@"fRtp؞{atCB| QHdlAգR~n/# fffff+??k% vAdB:$xD pj m[]S;}`oYs☙ٯʕwl~vM7#A>`<= Bz(! Pnh'GI(~#~j//uGש|B--*t+N)ވ|y%F 7tY>tﭯ_5gfffff3>%6As@7Ilx`RĄt"(<@/h'E Q^M`fffff׭wQN:S 57)lx2a `ó4h=F=.⽔]1@33333}w:-7;+a $* KԀ{6Qj|C88p~cW\, ?4[8X gYe!DH &{ PlQ|$a.+;"++cG?{㡪A&5Ahm}Ic@L3L$& @a$1%.{Ixf8huN?&`fffff(4mG=tR!bH"Yk4=[[X"Q-$܁!MAm%5;`%DŽ;[pvL;N>g>yKx h() sBD6 @؄M &?:`GKcfffff-/]0o-f);o|C^E`9%2!1^C$5rC A^x5)> :__}Dq}KiGWuw ⚀@cCHe:RLi:*е {v<!ۡr(;p 33333VlV`_u 1|,i,LC/GoϓEB* v%pQqk4nX%1=3VjU}[k>x[ $iE @KHPfnZ|]ͺʏsK:R5[IH?tBq2R=5S$)!'p`cW)}RgnVfgkywG?cң03333g.ӽ@*)!ԀB:" 89mLg&G*S!c{ i#Q7t 6RAQ}uywƋ;ҥM|u{L3IR3D.a5AҴ@P@྄- n +fnؘ{xeܿ07\x103333#^xhi{Kr h 8bPWYAM y"h }@$(k`nJ0.v{75^?W]cfffffGO\hDTSx~w :p@DE&7"D@x`'_!Ӓf5}`g[d\=o<̎Tv9 v@\tCƘ<`ȷ1@ )|;$$!J) v<tu t]) {xc|yu5;;~j?[J>0+&YMW'hG$c*O1*7kUwKݽ訯޾.ٱfgkP ~xU+0#NOeLNB|y5\x̎(.]CF=4h EŔ:$I=DdSRJ@Pp a N/Tr<on+ pp^$أuQir7qV R<b ɮȜ?zlg<Os"1=!>_Hؤ+kʏEǠ_d03333wwm͗\KARiG$H8 (E-\d-m;ۃSρñ~R"b$` ^"*tuGQ;7χ߻zs=2ӉGzusr>--N՝6-!ג}醿_~R')@ Q6Hނp[]1ݯQRFëk_|03333әڵKA`cS-D$bp hm`Dp@Pa?z%"$I^p[Qc !%>$o Uw -v_ܽ:Z__?LG$׏hό;$GߞU/(^ļWB z":jBN$4YY_įz8< @BQ 0Z#A 䖢lA[_J;Y:nfffff\"˗`t6LTHl*g(Qi J {::I޴` 驀_f֟-nK*U#k o׻_X{['Fl\!N8XzDkƂX4 V)9f~jN"VJ7h%?̟@fÍ8WpƒFDV\>y?KdR_oR4w *yѺ>_Zr; [L;O%)9(D)O{jF{%ًlI;Ӵeޱ?A.sE`E"wQ$};Q6MJiw$ Q!E2 \=B4s4w!͗6j+!VD)4mo]oJp2q/]uQ/B`a`€ %d%Ҹ»{vRW۶E#W"8z#O&XBh]Hm4bzYOV9xD'R5͗?Գ߫Zk8Z;;fTJHJB<mL= tXI3~)a_\|c""{ rޱ}+"C.瞋`TZ(Z_,J J9WQ:S/q.46C8wNUCKO gZE2so[oMle%O]KN J#sx|{bјc 2G4M6A"V{n_4昖`TttMo0Wݾe}|^}vsIENDB`ic12BPNG  IHDR@@iqIDATx{t_u?s~d ?j0&+ҒɚLiV:!&^8IۡG0IJ $@H `lْ%K==O!Sk]~=uG9c=R;ǨuYZuå>ij?uLEo kf.vE"phS^EGS<T4: 뚊0>'RDb"k,J h1AD@3TuF){Q뛎NsAZG U-DjCɁA5,c;Q曯ɮs::)n%UļGϥj#\3hF͵%*Q%wnzUgWNo0"6>C1Xb `\h0q:U9(#!@8lg@?m5mշ1D??>.VJ{""8k0`ޘBE1 șoT1BĨUCg'7v[qzJI静OFp6~/֘10W=1h!}!JiE!c&"rR0+6njG:9c 8lbIrCI4`5J%` Ib B$ l9fe7okKԲ>2&Κ15qcA^kfCR"`U)iWZeqf!#:>c7c$!* on֞/]↻^|Cyo՘˙o`m18+$M餎(XQhF*ZgÔF s{Am'b,!=o/u~rR߼ذn5uM[7fJV&d1Ϲyq3*U% Щ)k?iί=[ 8#dsx_̨C"%izg;*>2Zs-뿒}LҹgM[+ -Vm<斳tI$F$X ?g0(e֙!59O_׍y(!m0xc!޳amЙ M[]O s4>%+ 2I?!'A1|DW*/T UCukP PGvЅhyǜ[מqҢIqCb̖xž g YM$2!D#'^GCbwǴ6. XEL!º%mg)W_.w?6YImڿsW O̜H x@(8S"qK[hwS=uJkp^|#5K`:[Znn=4c1C{i@tt㘽3_wrE|],j.{ em6TgU0Kμx5}' Wu(iV`/'NxUVu9._R坎Kb k>KXnmB<>1F;Y{9,\rmδ0 ϊ՘3} bgtO;MNE(Az%AHuW!Qna5Z[gԄ#]]Y]PT>l鞛z/Dud5At<CA sί?c5~lh௶Wnm%++>wh3ž! `crjYNd+'̧ˬ\RAG}]31>-13KLcH79aiiV[griU \wjmp890 •vvK yy%?1cXlR«;vqxTY I>@clPXiB ̣XV{ǙR J<jA^>Xyębcơx3otww% ik/%=8''>T3R$ )6W8__|tz'xOYsxg!LUhiKYvEGK)K ǘ銱 ;g Sꔡqq߽8{yߡGiIGHs=!{#yx-Ы0dr ]l%Hm!Yq Ϲ˨-]cN1w]_qҙxTإGDPX}ZQRq4 4cc|9,{C?-dеu~V2򽾊"бd >iǵ'1b9ҋ \45IP@QoQ Dh U~iSZH=~hOB=i\v)s}k!ji#gu'^LRYJVP #Oq* zC 0ΫLJ+|Fb(:=R4C~YWz(Kf4cDUmS=:GeUμsZqBj TBxaNi4QxLЂIcPXUb۸B/%H'qohA!m_kH yCxk1}rg=|n<Ŵ6Y ?]릺? 3F1΄K4,&dc!/S?'8±pf^!em| y^!Bm L&UpִEfuyj\>6j1"sTqL0!1xb Đ?!?TeAC :sxJ.YH{ +.7,'zOT؅E}ʐ8uADaUf;`:FACʸӖQ"b]!yLSbŹ, a~"hH 9:cO.#YFՉ@Vڻ̑[.`Bn0%GC6΋E{;F)Cvhzc''䌃RV2:24yF$̡4Z;xW!c-U#*ad bgno~Z\`SBwA[ƺ1PhCm⭨P0];9rzJHZJ_{w/a4#YʼVE_P;r>;#c(H?O;+gtѳ7wg_3MG8p޽=3v"CQh)wtx}v/7pDDDX^z7ϛstr!bPmϳl=޴~"n Zt+>RBCOߋ- b>#>+,<@t.]My:1*{yP^k >G1wKZ~/di$&Dli=/0%B1*i0gjE0.-퉐~'>?nTjW$K L*QZ[sh_vQC6r2\QZ;MNg~Cuʓ%mw|80f4EFb#6Ñ8E|+:cBxtsI;Y|󖯾?H8fDL>;4VI7TW$L~GՄKsO<2ØM[k$wøy #= S@pC_yOL7 lkW{s!|V|@/q߽GeakpN BL74u-woR=0vR̈i5cޓ !sهhB.•w_i>xWg{Sֹr(2 0͞)y]*{ĽBC?3'<1aW/(|к6N`^jؔ6W(E{hQEc81U˝?>oXiݗ[ u#gU:~&oy"G?T^%ֺ) b@CEh;#FF;7JRbvk>w=,Q#q`nj:rg2#mݫ1*53C 0jb]7S6\ ę<ֺ%bo㬙yJm5iV&3K$l}M7BuɌ|Z.Vw<6nV.ݓ$ɕYN;CqХ-tM]H6}&|<']Rv\9eS) ߾YMcb (I҇S||ϱ>ADցiӇz џWR %$I D4Wۧ{uS[]g^k鉑npϚ/bPݫIENDB`ic13vPNG  IHDR\rfvTIDATxw%YY}v:9tݓ3 f /W LOATRwbQ/NzUF &OOprکj=V{OW\U+AmFmFmFmFmFmqfBVm,WɟaPMH1*HOԨADW5JUH޵o1bț|Qġ J@702 t 8 % @YQq` d ":#u392XwvuUA1g(M;uM[ٌp([ af&QX! GGs:᫳ǯ~)>mkm̸p'tzHT|I OG@ }`;CN0~ȏptVs/b3X*2nȩ1ݪfD|J`@*6s>(0M1D=8fn3mx܌nGU+\ \x9߹<p­|OD, ^wVm, sg\عF<؟_'PWim>0osiQMf 5݀\Jʲ}Idί#ԍ&W iRQ.w+_UGE @ {t)3~x)p9KDDoBK٥eY1pp  ]p<8mfZh3&xu#ZR x5S%KOjI@֚M A[<|q}㲿;=X4 =7@x F :kKz|Xzo`4mh7 @3 7#|AU{UZn@#׿A_҅ImYAƗtl%[Ѯ6Aژ Xh\YEs9{3n,X! `!_!p-ZX/1'-L !k*4ƝZѨ61mɟܓb)%8y3|ƈ| .{vG g-صo/T"Xl9)VczoB "W rs9컬 OIz!R0zͫ~˅n~oA'AC,rI"̏fNqhU"N2i[Lfujo?ϢӠ7\>-^w_0ёy?'YĐ^VOoGl.|\ l!.Vx|cq̿T{wKEDDy{ Ei·mfO"a NM74l362:γxpDC͂vbE%X`'_J71[>ۧ`g`4o%YݠKI8Q@h6|]яj3_X/bފ6mNXj@/귚dũAђ Rsq,b1?VɽbvQϬ}/7/6V%4>k4eͅC#Q1uO7s`K4hd 49Q]z:;Ǯi 8nw{bG;o z?&d' 9󣙍oEf)'_+&Z& Nqـnwx Ӟ @mO/( m0v,psD۪# O|v_;m&o!?a YVK7gӰe {Uu ivqU"p @9CLKZoI)i0o oBnZhM43bYG_$a*0?A9Wq!jV#3LnPT? ؓ%H6c%%[1 ;.ó~j>E$"צEcfR+ ٸZ5ТqڐE< * ho!W?Yx| mν7#~I9\iotURDgTŸTƌh䒄HxgTXg~ M5 4  ~x=W`n }3UA/cT7Q8o6 n,'B6eݷ $4'_5dRh'!ʓaYM,E17u}6/ wcW<>uO'2s$D.oV͂8D@MfI&z&|.0&Dj[uf|~}i&YМ'{t[b״gq?Y0D0?'dfA6oJ{0fB +%.FTXEٲat_ ?Y%4HQD"I3uͣ 8+@T26{1'|@[E)ׂ *7wfF |RS~|jl/~߬Ih-?pR~ W=Dh`g`trgb1 UcKV7y+Uy(O Rf ֍$$d?- 3i`3SCo^F|^@/=H96g `>km/)qZ*R~B ;c)?R)U?,*&8U|D&vdX$HqUn6NJlDϘ8QH$4!C++60_?\* ׸*y 7C0VYkKvs/0f?LgK\ 4md?]V1T$kLb߬ j OKz+]F >KJ7l k.$N(~њ!L}vfW[Tv yJ%zk $_c8D5d;O|I]*5$z~6M_GS47Γ =6Lo 𐻨UI0QS =5sU71IsNK"ot}/"#MFDNnR>eFQ뛄+mQ=.,KISzKvZ;O &ߩb>w HS_wI!I"|[g_7ɓ$#V8p ]!뢸r)`ȅ9<\ MY pݲlAɟv4(hCX | )Z{Wpݻс5#8Ε6K A7J/(+M-'?dC،pSR`LsLQ>뺛_+ᙌFMr3o?mloB?kv}5-4,gҥ“Ȅ  $9*p:"eGZˉ|  ã<&d>:-3,[,` 6W-= kP-?=dI]}(y3 jU~.s`Bu%0$!룯㱑:݋:[; ?=Nogsw.o4]o.-ПdN⧑jopfp#M/c\ tz8t3N1Pqb"Ge>8̒JB64e.jYlwҳ CJi{_6.Il O"';9Xߖa!M5RL }{u;>2puWlϽ@u'|34e0+ys{x$ mHY_yrC753Vbb$>Ri- I } Ó USdnIMRKHy&2y6ޜoy7s{3cz#ǪGw· G \G*u)&ƚƚ87S}* ʹ&EhE$%CIX8Ww¹ܚn?R ݯ ">mz:*'дHޓfftmeșH @.)Bd}`@|w0\Q;N7g&":+oJy [pJy:x8* p%R5}촊%2Rs2l3TmaNsfn3.4ڭ}Dm]ܩc2Ȭ4f0Bqr#ۋ3Ƚ-GqԄLIs6p@S]{_tХ6@?RG~ɰm3^6]9XUG(t2^~MKbNBq QRZBCGJFo<03Hrr~;mtjFYDG;u mA ɼ#'^ޜ_†B8꧿MĄe$A󑞧?1 _}']G9?A?Z V6)yyևL4 aڒQ$~q6'ңy|8t{Zn;tpP1p=聝~op[. =e+xUPQ`}9G >oDt4-tswɱg)בUDyBGܹ&|q4sMݩ,$?M;XU MKc| s錁p9}j'(1r)H4()InTʳe:

ȝt6`iiN}"}(h>JeZ%̄Xۿ7K}ۜw"\&@8U:[kkf'1$6 "I柋ôts҉9f8&(u\k?e\.GY$E~Bo}-]#PIUy@</N#pj”E :[SP5)-/98jhU0 ZIFLSw'Qjr`ƿ=ʿpy"JyPνR;V+\RCM~*0Dhy3Є2#~_u 1⃳kd!(=O;cG ]8$D?&# 0'ӏC g&OP/Oa1j?[)b7nG/CG\<}x]tʜ:Tkw:)eʙ5x|#2Dt>@KKHd9 mh^Yrgjt.:#Lʉ07^kPG_ ]G1as|q+ \]Po=6ŗcLNUeXvO|c^g+o"!-3;-o4K?e+5ԛ3M*ykV-b*77Xoh[ VE5|+FN7GR.=Sr9zذi]=xu;.`;Y-<2Ś;lZ"c;?NuPbK(L8$D+"0-Ed]8EW^: :;I9~!;?sa9PM=#2`&e:v\p.ݽgӵmnϥq'_rN8,zOJۖh\Ɠ?h9l†-&pJTd9غ}Ri+ ]c㳅뗧,@ ~~<3/b!0o&oqlu4EsFo k+8o)Pra^ 8r Aps96m L@n9\oڈ:'putv\amuiڬΥ,,ܤx.07vmK:wJ'5 V5d_%U_8z[PQhv/qmrlڶCXcyVz7[.gfi9 r!ڹT:m;4H$4?g2R PdC6WxtƧ2Plz,ʎ3c6 h((lپcçl,D`` [oQ:2ySj1q[fgϔg}?,q 8/L &\ve}D!+Ut1a xLc=i[@S;Jo}+` d"ºulݱ|a;c jZJNgg,CcvO&.\)WR!8Dc:{p0 *vQZ[V9w yx ,v=bypcy-'TV٣l~-0hpQUb)<7~8º!J>_T^U^}O33635|!_ূcȯK%cCA'z}܋Zjeb/, k"HCh[qF k!tQLJɅK9e3Eehst?hb}, Ý9}1fLc/ sADXa۷/t{zvcRǎYk~-b12!,M32TXhr8r i(j~եAΕQd\ Ϧ#2ȽSe8RG\^Q' Z!2ʞ/}Stnbq^Oi栳þ2;jq"nzlF>[P7fVgV]ꗸen򂰄>С;*‹/ 2BpT{V]W-ڣJ DHz?!~Z)UA‹jPTϧ"gEc}rOqF͎ܴX s^gvfvəЦ Z?hde`Hǖ1ˈ`\ :j1C@I)'(ByQ>'~h~hlD;&l Ӆ%CER8cRZǃn..&Awolx96lڀ6?[DV;|IeJۋ8S@[>~3R7H`˄/,Z4 LQ˿ʯ3d^.Ť]cHC i}yxF5|p1RmXԟj=1G1=1٘YSL8p\Wy+^tY ,P00OMbZD4n6Pť 쨟SvU5'Ƨãr8pSWՇ5}7gP-ЦWpr*@d-Kœbb[6˥ϱ#xse i>+Ϲ9۫_N8 {#繷.nlU)!S;˦`S}"4?S)ic JyF!>D5 U|7GNbnظy#n-"0DWw"z#>pq+A>i<ԍ/M+Sd;mf_ p }Jڲ|üx.0';pU 5/L1VeAlj@xnG\Z;23 ĉ'3 <mc~ZJ Z7aAZ8v(;)sUw7jiBs̘H|ωEf"sQCxiЉO&/6m $N@v],ϚIczNELіcM}~Ert\jn N?Џ3㗨 \zQ^r=&O ΃rV4N] fYrj& GxطY_ J -"<(vv(fM >캍*q5}]fLE(9'xU~g?Oa]B^Lq`Z2qrз 3tήNz{@'NDx6Qε/_Sg(rY"玜+M NQ=mÍ<"N4"mhg7[lώ9رL8ўCKQa,w#his O!/>.0 qk +c_UKz7C_F]]9Ńyg9+j%* tdXP>ܔҾ0OM#5i ^&nIDS:rKB MsY.;A0y]rjp'}Ct:+0IPDuotog1x)m}PY_\qܕ2j CDǫ^"Xyȯ%pބXhBɯpl+ITg!,!&JoRydXOaDJ56 Fm$uWi3];O*ƾyRqGLDL|#?k2Yn:sф~a_^O%%2$KqWrq^r^34=xڠ6O4мl.:& L'!Ʒ0>wu*)Oc/ \h>.?Ef `q,0sAB+*۪yaErXA}!>^)ЌBZ$VrY~7Ѱ!\hDbnMSZUիV%>rY:y|2ߋ 3qɛjB&PiGf;$3h5I=&T3> W6Q!KgJ4? !NT}t>!=77kቅ˶#S^|,b-Qc/}?x+ ngFKhn @@-̂ii cPOo&5/Qz[lx6kc!4 U69I3ŽFM iroj!6t+c,@:>0φl3ZnXL ʱ}yrqR}%Gϔh@0K0TL3zQJ0(NeSA}e=BFRuJ*m<)"xB4G$8b uʆGqy)JX[XФ]A.hOWsa~C>74.SK0^BS:Z$jO$Qy!IYVGӝG$RZbk8kCՀV8V˃8 8;0*']fN$A˲L^W#GOZU8XLؖ!`*=pGG@O|Cȍ> pXq\|'_p$W|>};n.fPPQ ~u9CZY;߲Q=< . PDe 1[ " `Ȩ-lE 21q΅wn@7ԂmI*@LxܞSm͊k̈́O7ѳįXFB ~$^RI:7@ƒy"kj9?_O& RÌ~_j|]p&/މ͌sV{ٕOxd"P-׍2ĩI8ESe#G-*LD!fu~N'=oՑSF' :}2cT5&\ۓL,@M U7>UЉ)|/spjOD2q\4e!Jr)\s#? sf\Q۝ϊ3^Ҵiipj~xI_j, )՚k)lLb"T6$ zʖWnJYS@~Ҍ!OEH qeb1s2Vu70F>GGf Y8|ɛ"6%D :n楤7UBNov2Y<] ]—n};߈+},I$.IHSfŚ%McIjIDO㚩d$tF[֛ϴw.AG&*A v WGi=c)@Dӆpp8Q*ӹ,¶4ޭ}GRƂ6UG-a .+so,yK; ̀aIhD4I>b2Q* n'^DV[1,S nf+:ShlBCo O01S6'?$ h1$khy[֑-{[d%O-u&CSFcl:Qd `W6j17 ¢1ޥEL:1P$߁5wƔ4oF(}htxj\pkxaӽCAg *l!lvPFqtP3xtf (D5UZ445nZ@&kJrH:n:$_^zAraYAÙY ܤ&A3S"MMFHIo4nWy*="DGҟpD@6 "FcL&el>e3@U'yOd-F%TGaj50)"%^҂?9W)"&ݦHS%0I4+qSc:R9hv6!F#iP;)mjlHm]v#co{C#LCO.h' q1S ӛp[1cpE l80C: ]lxɕ:qKuE_P=u(ȃ O)Jj_q,/|a'i*&%Ù{V(n\FgK &ꄓJ2}5qv ?0~x0qzLDDaLzREɤt$6$7a\,]NrѴh*[I42hAXQ.+ΣV82<'$'Go[~)Iꙭf'OPYZ#pgJXG:A_F #H6Ac'ĩqqvESFֽ(z7g#YqqEAQM$MQQb18."TTJzըnÒL P$ ƫr_ "Zl3V[k`^ &ȳmC//QcRe6ׇB 9 _|W~ =8"&5Ryª\;@Ou(~yr-7e vɰ w\ ^$ sUbV(4Ԑs$4I>U^rAu(όc(1mA6gǬi A'*CC.J^J:.5$m 5]HVxlRڌP NQg T|' oh1HC4@ϹT.݊}<\!O;ùlpg@`qF 3 [7|g*z,_`kP3;*f4QZlPmm:FƦdE֖ētT3)&ئHflƺ o;~dHI4qWwa4ҨR9u`Cwvfs; $1Ʈ|SRTO>~l?@b.ѓ8b.,0ro驇mGHXEe{%$eE9L 8uۘ[|uŎRVU4F).?\XHD3 KW*6= OwEFs2鲮;}<'Oi'6&3 c!~e#üȹG"ZO~lƜ|7'®;5f=%5 %ࢥ.tٞhPn)IJdKHj)Sb[!Dw=C?aAuFCXR='E(qimݑ{T[fkӻ3GA-5u{/QȮpHS0=DMF԰A&X/vwHń3=+>Fg10Im8ՑCZCa?tCKu\&P~=.-<&2*&dMֵAaShx#Xf XouZ+ [:UX$W=q[1~}=?68K.q\pUs4>Ņ' vlχC z>ti\&_"3)e)q݈kNF%% l{Sp@ֹyT5zY6 PޯI B)rP{͈5$A6_Dxqw o>U})oz-1[0j[2vɰA%e GN<ϣVPT*ԫ5*z m:CP /P()J% B0h8 |?\eå,a!!9ND}4褡49 J 95D7CMٚ\x/BuAU],ڲ, 5{nD0|1X&:"_~X ;^VEwEl;^MR/OY=PCwISY$N#F$2&00L ˳3Vj&1ZLXe"B.P(R蠳r|PhxƇL0Ң*#.T lpIL„csќkYd͠CȚz [o!lY~?@(uk>ɭRDYaM c 宑szvQt!3~8bW3cqSk)ͨW3;5j\K/V^1;3(|^z)JVZQU#slyDSiI(a, #1J]ȟCY:32^K2 lё ΆP=LſGQZ?,0Q9W'lqBJdB#-@0 z"Hm>=B qƚ0&*LAP-`fr2!E-C}VLCO_?]] AD)|V-)KR<(HԼ`Zq<\0o_3@*I:݇7~eTgN7PTk) \e4(_`΃C2ΪqG&s!YQTEE:6_oߗ^y˜װ<ߙsQ5avzG8~ ##xzp\*q=15>ʑ8qƆOPAhs|n k:E8:ǐ '{%?p8:›eI%T'\2,)N͠~Y[m#> _g٦t%mBDx3:v)S ̸T!v7$HLS<;WB lI*3L30Hw_\:%BJ9 p#Q%$*|@#E*n.`V:b#bmu)Xomjc-EÑ&`ُ!YwR/pf"bQ҉.[IeMNm[S6*J6#ȘPטbjb ^gzEc 3Ӕ+e&_nreCZ;]MGb3&L _\c]|L̚u+XX_-ZGZ~惰č_V *m m. 2Yٗ@jhL\qhdDŽ1+AC Ӕ=Xv~ `k`Gyfq 3T˳tu;8HGw=KDO˾740$dp4㹭|~h*.g=f킡Mw_{xEW]h}tM5Uٔ/)ը txAkN:&kϦ k c'3zلO3cء8rip_`QgW@x/}8󩓋v VE20J~Noo)aW@}ȍ +*?j0V>!m(L+ol?EDꔺ9 Ta*;h&\103=ȱLONbwDՙy wT~K%rG/hn}ŋH1f)[a[X4admj73qs)Z)T"KjN:74_Δ"[Jq4hv"qΤ̈m@{Ñ470& !ZWgblǩU31@HPjCpCcԽ@ы|Lb*7ȣK4|˔Ho˼봆(ԧ6' TIV|?Gaf58Ma 4|f o1 $V=7L-UXqQ8?>2XLEl=22W|o{cӖ&5Sn?.aZzB'Oo3ߤ؏nrbMO#AR"6zZ@H}$-m %m-(Ηo2aq'L_HO%=ϨQfJeva33阮Թr~y|gqۋ)^¤ۗbѺ/?!c1oW;0cs2[Q+_Jl6T~KGhuh+(-Z7w3)maOec(O0>2bgcc3|94:uฌxpNIA÷JF?tI9ձ#+}HΨdb c{#<·8#E.\ʔ R3V~i!W$("~@Ǐl ]q =وUVRFIegDs?61gt\dgҹ\KOOcMYLT}w63 *>j!`vmb=E}r3<ڻu?~b ]Q_jF11I L> ZKϠ' Jev |'Ѫ`s'؄Eq3'&ř`25|wʣ_GM*^="wWό38~013 kڹ&mU@%Opk+<65ƅlHq:GPS>}wSxScpuwGx'ȢQ5>j<5?G5kAP%Mϖ t.b'/J_UԧǙ=cLKP8*?|ӷ|m ]7)V~ /ivx%&LNiY r Ta>z uq`F< ˜}}<ëG-*tQ]OP)t +_6;A}zf\gKV/j)΢8./U-z&.ZE XFǐFɓpρ`nzTofAO4=*o`Yz3uGs6rl$\bhG^Z)SVFU2>LÇ%K̉*GU񧖺Uc$"O.kLC 6L>; OC P@F SDٌ&Xdps9ŁLAW{a b `D; i{UZ(|lͦg/WʰI%!;;rZ|q(m`cgQA /j@v~A ~"B.W/XՅ^~fLpعfM)͕h㷲#*l_H;iVfpN2s1fթQj'>He8^#Xb{SMF "}(z 8]]R6i##lX#֌c7ZOJPi<.5XξXgmrvax6FU GS8WQV۰ˉ_D'FZavf_t㐨*X6x AcK"L͂XI[#WOQ65WƯU0*^x8xbuԽ:"kb3yH_ʲT=7"~p팈iF L ~2Gs)߂LJ"e ͐z 2WůUf-!)fuq7*!XM*+q˲Uf|Y8>^**+onz0Ų-^YNXR޷tBzXuY@ܡJ*INBm\|O|`XB D"`V"#v w[sfy/_zkވC+}n6(+u6<zM2;D6T=~xl gш4&ƹ jwi3_ԆQ|+ 듵tW;q>ť[ k|Ɲ_f pb2d&8:ďӐGs<&cps$o\QI1ѽQpactNb bz_(ͥ{ss*w/m``~Xi5(@*mzg'/okH'4~ٱc+}N67P&>__NʮݟC/Dِ͕^v 5j%'7dδ%Lש?ő7hAÇL``?W\ 5nao@+ ̹f m;7zM4Vƶᛔadۖ!YmAs~UcXWzm, uC.XJObϮ7Lȧ?`MEC4%,A 2ޤkNi@dMԁF3G3?;\-?StmgR]9PX=|LѫXpIDK "ͷ&yB=VYOKfE(HfLYEJh5DPk =L`~1H=寿4~th]`?_}~vĎMg56N1.L47+ 1F:'/ɶO`e1 1R̿׊V~Z] S}~`p<}/??VRIk<Ņ2 M<0t'0_\ǟ+&Fף.y]D9#A&I~! ` ?B;fGۚ㿌8oΙ#~7V TMǖ7/dD Z쾹 JjN:|i*;>EYF4݉MF+ "zɇd;Q6G8ߩ<313=IGGzw(a!y<Ҍ"Lmӧfe⬻yݞy*ט|L>|'Z(^n[W9g E ^y-. 90 @d2BӚA|$̑*b ƫ1L=|NP>:7 Z[>OgܹF8ʳ$P\hH䥪z lpԆĢQMAr>8d~ ]3:dTcQ誁ad 1fGPkk _r p~]{nH !П%.)qo]y3ZBMF T*TG}\l|K8|Pu4/گa ] ȯpR;gF@,XP4s@a@/`աjƏFm(y?bM-vK®7!HΨyKkM'_bkKϦO }hL܂ahgGת8\]|gWZ v Gѧ42SzWs&Zu53ph.GЌVCP7y{F^-;`sG!O|^q_f)k <օ:͠vL2;]s4s5FEA*T%!?zZm2P4SݽdYi  vU؞]o7?G{6m7gğßşX.;p:pq:'G+^k L옫]-٠V@_Hv h9]@@?|䛠?qG5{@v]w_pZS+c3cq:G0"i `OpU@B )vvtv!.|)9J2G ?vM}-NNxnxEĩu( \  :bm >~'2?܎]uaGvn_~%5u1<?y^LĪ`|T}0=Lm`VF}5^2qqrЉSD 8́8 8Mt Q-_O=& `?"UTyR)y:1e l6VbW*0F@GC @Sx@E{3cuKQ۵tj{n*/xKxŻ ߨJ}5h35]Y@!E6  A7LI 8n \H[0% #00q# ;_܏µ{>i?dKWn]oZ, mF[#.w$H%VP X|C'H}hu]Wu׾fu{oĀ"o=tl 1U*||+$xۂjWm;E5.¬|Z{Wy qq"iwUnb0 \:{*領8]fm4`7:}۳t@@qf:@5jRyw w۳36\fPr7 |Nܫo{[q)x/Xmw~pT jݦE࿁,ﻫ \с _PO X{GJ;&/T]9fm1C{04p9N^!{WfK6hÞkވ8?㥆Kq:vy%*l3~#w}V=@x:K,6h㌅.8& mFyS;I8cwכ8>: mg.xyI8{V[P>\6-]/9*;wn*i36x|ڷ0x- |Y6-ODR3 ?AX5c> q:փ^mY;߄Q:@ @gv|;(7' 0QnZAmYݻA>V= fmPP\vsZB(#tC0QnSx('E|+6hǮu7~nS,s 09I}n|e\fmxͿG#F q[<~Pxxl``*h36^F\_=gOf+Lx~۫6h}Y +VԡohW| {VgЈ顃ވk36XQTK9gewjuGsղVfm7POSϕ|m LM^Y{[6hVm!%e\oYCC@m>b7߉\ g/UG r5C@sem \l k5 HlI]^Nzg>rϭZm@m"Y㸚D퐀_M-yWmFmFmFmY/rKIENDB`ic14C(PNG  IHDRxIDATxY%i}="#3rʬ}^ƐbK0Y1-B$q00## Uܤ2P-*R]UTgVeUK]l$L kf$Uo7]5ȯnڅ5wUxe}W_Uчs+TQ1*_ַs7n0m muo; A(ROmTJRbCj +VP3""ETJ"X#:u`(֏PyS0NIj[.Lԩ[eW_]a_ *G uUJMEC"( `2@7UMNT*ёf%V h,jF~$jF6(aBoZo~T%8/wĉ'W˗C*Tph*T8 4`Ԯ40xDV Si!-6P!XD"Tê+QADaf^UQ%c0 d{PDQ`^P!adQ+" ]w{&Mz[ vd=E{Be6PQ@X^/ MZiBPV$vcXpN tDX%UDJJSETM6Uf5Z2 JF˧h*SP !SG)9'}}DxzHxzƚMMM W& ondpI0i.ǽ7oד.*Txx >[/09("m,v@:"V--jUFT,AĠj%CNa̮?dnGYT5W!A(*8A\- Ho ]ly[kn-0u۫/_| *T8 VVV jnW B_OzZ7!uQMOZ O:3zZ՟1ˠmxi7U!D cPm]uJW=qR Sx_zsG@D Tu`)51RiD[z4&qz!Pb*{| ϟ_mn99 sròxh{LKh J& UC&#R$ZTeL;' U-A TuUѮl z)zrmdqjN|:PHb* dqߵ^oкuv<2إĻ1Q6ox#wڦt/> [T @#W^y^Q=p' #m_t;{=U;lj`{*wj[@>pUku+=No{!G#r] .<m#iϝ9"O ('1P"*zd;pȘe)m \9 3*: MVrL׊?b'Ok*KQȦZuz#zs^%Uxa CTx XyhQwtZBS"<'bV*':uE3}Hˣ#̗}Bw|{'f:'JaS<*0(ܬڨ p_kً-Eb$?/bPY4Ae\"ET 1fD9¦\}o!(N@6G?doT*p_ҵQkK>U^3*rhk-ϫm#Cwr`Ywv񞃍S^wPC, 7FOw[GM"*T(Cp(淾Oki|}9 i>a<.1'(Dk=8 i#al3$U>@-зEj"G1~U t}Xi*TFpPoNtkEsɳ>gD"WNhPC&'s(x~>֥(ۗ0W1e46CrO )σ}Y3쇷 0* @^O?GqNBOωQQ 9lmgʃHǝ30{cp47c?#D2Y՛^oVݎZ+Fcpb֗.-<%|8yxAE4k@$bl&fn}r soI9t|Iҟ{wfct YLP13&~k/S%Xb* ++ nz}qD+OK]>/ȋ(Oex? ˿ޫbv9j vncPލT#ozTMM(j$4;T @xl|Faz'77^fPTxP[ v>F>ʧD9M w}xY9 y< {P ?ͼuhQw_XUEBw92W3V'R. ,Ys 5AyioKv?>g%bo{;hW`v|u#XT= ^uSEOT0Wn]T& AUV^NԮ *Tsb^=0P#*Q1ُS71+M0؟nN<;SE T8 ew)|#_ "r /m^ߝޜou}CyˎmskdrϨ"2B}*'FP}G<PUyo76vEcSb3/T E>D?{W~$"?ˋ˿k]W‘D<OQDjes ip^ʝJ~gֱýv? s4XlX4!2 (DE~#0 6\PᾢbaoZ?Qy G+`nl# 0ƒ䆪 cqlMn^ GUG+gݰs`,U8)"MEw^%N}3{`quۛS{NK/lvxf(qLqM)RvxfW~C3d5.sbSQ=+ȋykVP:G`?EyQ9UFd9<[{T|ߜJ,t*:z3&=2uO!(2 !؎QMA#c˗CBCB<76Gf;S _E^TLFGT {]{P 6$|c$ɛQ;Z)Pᨠx`7y٩|A~/!\LQq.=4m 0B_Y&x]ƙYg]_1ä7c~_ mW;C0 bN|('Uyޛ{>N_q Bo AX%Q>OkAsoъ(9e؛<_rݏH3)wp` #*||E(~)?޹7,B#WoKOD_9U<-J6mܞGT엹&ѹ;7B=kmķo*|'2~xq 7aʦ#E7Q@G{^Ro}[[ES9#AsA6j_:m)*`c* "xv ?Ji=xUU0P#(ȫɚ=uxE9h}Rw:ÎsMq971BX e}%.X@L)/t(]Șf}|Y/\`IUi *j9c^}2@vUPƒS*+++~Y%|W| ᔵxuѯb ܎ݡg+h/(i>Ͳq0}1I Q^GHD[́T@Jp m?L~䳨>)b:!,'=]Uy&2ScJ9&7QJv̈v_HѹNf!3{cUESG^g$),)nW_;TwT#7W;D:^!\#`˿bfZ`_Gg/(/Jw 8WPxC}+_>_}P>alu.5YW/'D$@Aw?ߝ +//'%>Ou_BxSK}g$y gAg;+ %zx >QaVAp/ϝNr TiQmH{U ⯬nLӝ k藭1LsQ1[G(~%{w?P6̓gm/5 %iwPc1UQzC~tkO?]fU@JpĠ?:cLskj/*B{TCT{U91L΄'%w7̬<o(5uܥ XeU%3)h&zF_־U%0Ay9Cujd/NB}/lB94G^ZXS'_Q K6_1;+/_z|,P~`>|J78hfR~E~qܒꃥY881t]U{w\w_$*@Z?zΫ~o^Dzbfd20x3(WBB=|栔/HKtɎ2AY"?4<Ơ{2 Hv7z^yW9ik?yT+*!cee /w>N¯O 9E]W dGmi2˛l'ֹ{/_>[T> x+|9aT)ZcD Kֱ~{*w9>;n5?;7̼"~x҆6OϞwHy9qRaqJ8Y Ã8+!H%tme; ZH2 һ_}YOG]o~ ڏ{K.̼~݇ KA$0p@haw<$._ `@w}f`AaUwЋ{/iW>nqk4M>R?XáV ExxQk`"*^~xY"&|eٿHW7gܙ;_B?7e}CA"-7 woP)ߣmnui*.hvA]}Эp"y{("sL,Gn/p'T QSy%cj{T *SᔵT1Eo9!8h?߫(a 7gܽ9801)5EXq̿kF;T Dx@?I2  zO>;>pCr7,R\^Βfz淟{Q"F Py:?Oo.ϚL(r{yE1, ]\74JpfT$C5s('m=Kdǎ(]&i_!ϱ%ei@޺Kle-4|A$NEG*查(onʬMBTW'ϊڿ(Sb="}{[ÿ;.U!3vv+w_L2%fmp`:a2CwEYƷ}ي~?]On*[og_\Ǭơp|AU;c9QqISﯾ~ =pa/Q.{F+" pm2+Tp 1~wc#D[<$Sk퇼 >ae;u퓊D9!"r6=J*=Iy';+̻s@q%;f+YƬ}^}ʜيr3T%+sʛ/;;_Q`^bHXN?7߾|WJQiӿt缺/"S8oFB+TPacL(/* ^ ڭK?m>5V8|?ϋ Fh}zh=(J wog粶ۗJ\~#{ #<((lم~E{鸅E2~3;{~;w3m)6̷%> x D")@LA\_^u T&Cw筓GW@azwp0eNuPx_6N2<\\_on|(=Wn"(Sό[?-~{7/,c`VEpg$QIn]7^D8D 2^&"_ b  ߶ٗw'{M[f۟Yo:y4z`P2fZ;noت('ie蜞K0 wʡDc0#Ag%u, (u t_4n5c'\x[ >pc߃VxQ1o~[aS>$F^ѯ Ikm]ۿB A#ƈ1%UE ~6|a@ۋ%_F/IEYUɾTE0^~|0ηfS8\/gjn=r:K_ e஻/]aflwj_:o&o/PMHQh|~箍ISa }Qk%Kx@Vկb703썌e}ƙ_o2K) + +g[m G4-{M/UݷU݀ iS/_F H۫?< Nbfa܎?K:q_˟N᜶v[t#<Gxɫ7o ++Eb xʕג'D+*AQ=8$RɼL3PWMgLE?g\fq݇): )#8zL}2 בsC>=6.9mmI c2 x4O@>o775d?%PQ(J} "x䴈bhus?ZY˗>}^MO~U\4FLсOokN=J\N%u! e3b3>WlN- 9C0f1˴`wL.3;Hij}.\Ꝫz㉊η-?#oF30G]WquWr3(iW\鷷he'&b2X 1C*ɶzU91̮o F샜fL=@G8Fﺽ/N-L/G.̭?;ms-S.iOS-o_i-\}xa PTSP_TګtKT >?xY||QA;{])|s"d[R 1XFc}&mOsL'Z ^3  "亄m[ ?pD8jDI_31!DCu磋eLL"^y?W k+'jYhvz5z+yV80*`PUρe1D/h?/l,\O bs+m?۱a'},0$`(SiO$5';&ztF1ms{~MIL#6`a[3 >cT' Ad@:)MR"\)B"g0x%mhk3P]V`24jQOe`8 _ y{A1(iư|~W5Z%O5_Ƙh7V|w^ߣ~~rڋyي9π2X=Va,{KXRR@t%Gdۣ\4;!Uj"3O86q=we3dNG)s \`söKx=H X4H$af8gEƘy 0o]˗/?h@W(j/v%1bBk(66yT ˋ^?Ě'T}x_n[??D/%es@x;HF2=X,$b˄lIDan׷Hn˗<Heg`oQ=A'="J,cHȇ79,245SS2itG@U΁H' kԳt>g|[ lyJFϴ_Dl|Ru;okT b#i/e/ȓuW?(̌XfKfsXzlJ ْ05xwtg+˶ծ8MTmrr/1C]\ ?|J?ꞑ$&{hf$4Ǯ˷wWXS'H07!= "bkiFX=Mط dҚfLvjv18B%" ,h MBS2`;Po@3uP&~sa)T(Wg9>lr :#8o6Swnepibsߎ^o<5Yi W>khy‡(*XS 0bL(rПWƕ!bJb6Wd(e1TMv$CB&Td@X҉SvY&W5\`Hn$iP}E(@D"[`6CjD<FX;: x$%ro0_7/Zh^1- hyj{]O  H"5+򌱴T@fzw~%Ϳtvy'73?t4Q C Xƪ0] $Qlnݱ۵H I }2:. aQ,0ELD'8I*v֭qGL${{!6ːĹb! 0&Ҕ؝bMI^B׳<vŒ(b́u{j@Ċe/Fp>v#ب?o@>49g 5 s(^A0u#4!{^K *` ++j+s9%XuU@Q gaK$lJĪԹcjIɔ9],"kg9Ll=Ryh#H IwT)|BRu%h0"A;1&&zS0޳``3΁G |@jͿۃ˗/f/˳|Ո|Dt-yū^p!οW/~J x)ta|JSs|^EFL@K%{oB.1wB8e,ofS[5K;ȉqKID N$1IW.a`k: ,0bIt$F:GP5PĽ:@SueI$11@34)wdaHjɵ%ޝQۯ&y6D@!z'.]"k,~FU}kVxފP[@9\l/q~炷Bo?0 ++߱]>!܁p@H'7 #= (vWo#:ڣMc/wҴ)c<3zֽЗ6NkuT1FYT1/ZuOkvƞͿ;:4/;~KH'{ Q!DY65^L#{E[ b+|V~҂$-"OER/h]L gɿL"/`^yVKwSj`M2羞Y)i]᠘w')IlPMLѶeg(;/Hl;뀦hpb{ \.2&YLeR[N @S']&0H-L De`xw77WVVzL++ dIFsV%@VFȈ[Dy2!06 U*nL­K2)Rl2ϼ3;mM&i GEIwRN"yF 'ʄӸozOw{4ɵuq6*x & _S`.:^"\\x}gSO}y ?/§ L?h +zXsa++ܺ|y?R 2 _)clC7soͱIv߫ovCW 0unI۹ߕd|?.(0(0 $25ِ:K Xmbj-)|(zw"8ڣ㷈3~eA,ԽCG|fp40 gUP<=_Ph:E3[@9R,fk0ȇB= _>(h<ykiŰNN8=q齯|w$ {cN<Ө1V+cabKȪY5 nJ52XƉZ% p|0MR]C[6ivͷGab@k jL/DxB;BPRɕl:"N@1s~VEWZ{gewx++귯׆/y%_t#^xb;KSW2/ykLS ?SzP4T{c.pP< op|/ R-=+s?1H|= Y7mipG$J;*T aD@%yyѡ`G'P!'7LȲ(<85X6J{w{@G {Vϋ V7[_Y |Υ\ 51|ZD#$yak:wX=Heya d0WTuYoewY&lo^~Ù_H:ץmKD_BbyJpR&l67 $QKoIyaWPǧe!)Rw}"? 1E` >Z8&u THYeR\lwgNtAة!٫&`R+ wR56o}O6 |]|20r=Ms5d n}Ctj\'$S . 1#o(1u(0>QMz C&L)f@E ϩrwg#gP*Yt`us?HxNFNdV=}2"O(0c?Fg|f\vo73__*-_%&N꿑{0YV?lWg̾ 4`[D47`bU)/ ӶψfR&͊y9.s!Q!p)xwD \B%+ (ř XLj ~9x]"tޫu KW=pA8/@UV^vsgU3)cJ+}?0̲K4-uyR>)'D\31ɘNGPhJ]G16yebW6%iF{Izq}+f͘͡#NlJ-4` HxkQvJ:XN-ea,R(l  ' 2 .t ylX1gQ>7DK$Bҁg-?gƠ\p@ɿ0m's X5isK2/!NLVbsNEO8-[,0",8d|etf#157 CD/3Dγ9tJhcK [C(Q{CUq*pαwħq2 ڼ;0[PhWeu~ ֎Npr~!t'D+Y'r &@3-5bZMD州AF}X0+++~!15eA^T% צ'1unX'1NUgY}}mj$[ؼ4 D8jiAY)ij>Lpu=!)ؑ(wD{ܨOq 1AcDƲmH= 6-q(tIFnlu7xR GoƞA9 h- &'p@1&Mh&?s;WcH}"0Q<";6gn_vƶ_ U*W"K@)&S\)qZ-xPa[X-qCBNg!-H%da\n=5F[AG9[#ǵ1M9F5nW|E =i qsc…S D|A˞Bk;MlcX>)m]qT$5g>)T;G~t~$_6 2LiTc;3L; Y!3&>x&1Fu ]'CPbvZǞA{Wf/ 3O/~%{IDI4fڬҠ/n"WM3 %(y3zFXFhɐGd (K($1}FV/#>q}#fs]F|Rr D0#Xj;qx,<Wog,/W6}˪4Ak; WrI0xCGDdϿUG ]C7Ɛ͡f;|6v7{gwI w.ofw$f7&v%Lr"\b1ƀ d$B]&1dqwlHT`fLRz6A츸\BDZqqUNQ! '(8N#\; {P.A*Ӓ:unMV#\20PI=# a0~.MK^!NՍFwgĭ~ gdkofϏwD|Yg<2mLəv ?h;U$J2"O6! %4T%*LH3XVIDLV#EE[D/O$U(y|͓ԋ+7[\3m֩3W1Yg˟9i#K7G5&ɮ6咿sz[\ۈ8AIxOD$S ̏`3`ʃ>{>́'+v:cƴy_#0U 剥N};ﮯi3sZ u+4#Nɋbg7}(Rx Vk8b,daW7hq4Q] ӤʑVc`ijɘVg:X|6X매.c6.u`+`0^~e#(6dWA+1Gt7/_d^\!7#G/@Q8>8Q<( b88Ixb#ȴ7%c`,Fi>=xu^q+#lj쳈pZ[?BmI[S Wp0 r8IDeoO]Vv/ /F7 &~^2#*6cZa noL ^@ނ5bGn)A>WϒTK8)Y0;5qf%2 ļvM.g޼8:7hsMڬQ'W<<0h &MTBo'~>cGXYY1R]yQ}i^q0VeWqfo[P8`lg LJS\U8UV{w2fBop0edQBf 2\!p&Rch}z_X^}J>+ bb+D3ɿO* nd:}ŠW8<bʄ>ruc^ dpwЏ=t*:@^YlԂmDwhm$tj5ZU)vbAY ' Nwn-%`8|QwГ5\˫r_Iqa&G0Y ҏ=7޻=7c6)kD]p1~Y#^KH8ղjDY@fY>0759V`TvS< s# X-ҠKC 6*&X]wMh=;CoeS]U8LLk5E4KFd0\,kn|GXy6>,yE$HMۧ7m㎿]0[=oq5`, lq67i'̉Nx+T8vU:l^0u~µ̈́KY][(( yecײ[ÔKDt";`D$R{?Nx$nZ9>𤈜D *`"b4ؠ6ɕV +k_u$I(bmy^;QsecRe[rPB {|=W\< @%MEET`CCQXo_r?#yH(lީ%T7 Zl?kPaW<7zOwꀏ\Ϥ$V !w#OYA։uN/ԬH M/vs/iq.\q: YUXJ<A2 ؠ`EW8ސ%Ae%xB֩s:H'?P2eWYT3V%Ɏ=G& W#&#`:kJtckwY]ي ) [Tnn%a`F>z%/TX3; %>zҘ ,/FE!Af`f"YSR+W,-k^E[9.VȈKu[D$\{;@[ m Vt"B>~BL? Vׯ]T 5q/91v2cjsl3%:g϶GmܦɈ0Jp dR]`H8۰m Kq;b%Ex8!u?~MuPN= 4Uo J˩eQ' kW{{C^d'E O6_z/2KLCukD‰lDre8Ӵ,EB+"+HxN(#{]ígu&L#{HX>![koi&6WXɕoKF$⋟{?ϵmq,o~A9OV+ f{>dܲ[}swɾq]m"!ƲF۴`^!<0fhxcyfrȓmr-cD"Bj۱@'T[gmpZ»k[x<:E" >!LW H>PuY?R~f6sV첍OFu\dGF#)ayFUR8+BG۩~D`:C,< C^cnbr \8۰47 rahGBҰ)W{mu1tM0uwa $XTw#e 6A`;ZFRsݪ Ah?]\?խo\yc_r(1Ow915Qݗʼǟ;}:q^fiY؟ AA5lE~r;vd>!O-ZȦYnhDhŎXgIyrQ4S>4b>&J6Y^\]GiFؠgFݭh>wjGj":vzi/1Q=Rᄈ`aaX2I/i?!( c $lPc:]Bx ,Y_|TK',]9tG XZ!Bh`z>r҇uL[, sb1'FXtVFH1 hD:~gT|ﱅjG2!ZDѤѪjh4Vu4ױ^ AO?[vʕadz\yP]'`7΁6ϝδ(u(@:ǹ\*>!w?BߣԭpwBhɀϟ -K=(7B+/@PY(H0u;B -d+"ܨeju Q4M1R9GZfEբlRk y 洃/ 4=BE3y+`ee,,\[/!|\![ؠN7WW8~P@;.-/xD4񿷔;dڀf(<ѱ$NYzyfgt?DiuN >D|tmVb " $r#`%jVVMѤVmJ}V Bsj@]0l_?ڼ~=VNJe;rB՟)PK<{wej̝T10u00lMT<ᏩcZVx҉X1V=_ul_E@Bnh}:ÛU:%";Y4w i A`k=$;_qmfaݠСl# 3i?~%є(0ɉǹFh4 ӫe|=1Q8x~dd,JZ l&7[:MZ6zc FT  cjQQ8urY]Ͽ+7cn!@iUs^a>1@H%hӟ鶻&ܛ(ϙoY-c%Kĺ""q8VHj?Y7<քsmZ>tl$r44Mu*mI i:.fVHfc_.SWhi%E4MZVz> 3EGU@pP_İGʍ!DXml*zN @Lj11RcaqZbris-N馡xtQK781k,DyYu6v;AnB㇍$o!BN: -jک>Xc]+a~h~N\YYy_GfX?y#}3̓K$ _R Aɺ6]R ]ؤƀpTc,gZ6,'f I`{`n8R utcezT=QR7=;~LoeQ! ,zF c}4M mf0 1&gp+W!43&Mj'F_'0 WQYpQDcu^r)fnU8^P2:2pi:n&KtaXn: *zB73I,wEbmX󒇪0dqzx`'!ZH٤j^hSk4#UOy'X"#a\g_3ڹ1 W^1f-LjdfڴG<̕g$i wvSPKQc6#XD~=8N"#, '0SSan yb{'źhݷ99NM"{I( 16b ~4M;= Z, Eua~WUcc:/}M7xx饗lqR}53w NT80i:C|=f ܻfnr*˃89rr k-XYPPp8ĻJ`ņzBvM$"1ׁy Aһ|Nm#c@]x3:+b1*є]t/0;{aנs?ÆYƈqj f! q9ɍvw PY!ðN.$rvMN?fɭR'HXsq0igffIONBZ:c ,Ƙ<[0Mzˆ\X0zs"<1V^֑"lQcIzm_Y@h2-@hFj&'?5l*'szm`a!" wq&z y΅qV0hzNIp1"ؚ/55g?ᣔ(X0& .=ȓF80m?Ꭽw16^>LR CMU qD1?S5Mtfz[~̲[)~ZU傀f=.3 '` Skh4pNk[?A{WU*bH7%wA^j}d!ǂHl4p(H]C#O8p1)t7d)a:v>֧LV2(S0&d!xaHޠiYRclq0`*43T9pJ4w,h^q,N8 Jm?;/|(h Re0SRM '98btPz%JGP ٟӬV#+LH?\أZctNmF`V?j8Qa=ld+DL^2:Gi #q@vjˠ^Q"$<_G?H=_ro!ЇR:% 0'MgP MECG4&˵;YÔͧ59 Sp;O@?NF Lj2+=uox7\lDir>; wN}! ,41(AOt,ow."~%rlK!S*D!=R+ƒI֩*#8e?QgR̃{SO/Vb8U$Y~! jxLblN>Gik, oJ7hbO*9+<t:kG*O>XcVVd kPrG^'o{bS^6t{*|5E|[=9bDr\T3sybqÆdD1⽦xK(?Uc6]wo%äM.oW\~GGD5i? RqW<-r+Ŭ8{%cF/p{l6%m'ɼgģ0dw+x>r[!xsh+vK2BACjb-00&tRX#0e8/;&lJ$~q8\YNvIf&ؔ;& *Ky7s7 YOG{?G׸׀GG0Aޜ@YT`K Kϭ·sGYFyQey/t 8sWaL8< Rj8ܯ'c`IrN625ÂyX;CO0l -d? )CGG#<fIs"yqڐ8Z_;f xvJ'Br_qVS6f&#Cwz;y-zs%#zoG/JEgp$b7n-Ο P cBOL5~J)eQS M<X3cbfm@Qg%ǥԻ< k:6ˋ4\?J~c,!x>;t'57Fʼn#*+$p  Aa)ƒ֒rx}Un:B3,7 Z&eHO6NjʵhVpzP@ke`6HGMJmQBM07Z@Dd8"CRhD(=(LT^7<~yP]Fuoש\ITY4LGUD D[?-(/8if5qտ1ó/( ~ȓ~':O5N^n%KD&Έez\ jܒ67LfUlQ'Ɍa)I 3Hj*{m{^wq'cLT%܁q}qT eR۠86MG74|ld̶Y KKl|^ Qx3⟫iq!OgKXuK,M[?O[op$3g̚=-b"E'Jd͇X:::O -Z:&,R2Yy!m-6mnJM$2< vp{AS"DT:PG^&gNys5彍aM 2G ElLT"AǭI 3' j=I2{G'Y~GZ(newޥ^7o.<߹Λy{]H2W#QlFmcM$@e=;Wv{Kّg9g2g=&^`RUK? H'}*Ou.uN!x)m?'BHIRZ 8izM>6\n[Rb*7㵔skxnbt`ʹ9ocx>rz[)7nǀOc\hgk,M\Ќt<DQ. -Fx[h~0h,..=:d Nsc?i2Hf]7I ڪ,0ʸ Wm+Ӕ?΄$N4? $E 0hfVF֙DjPIpgGIӦnRȫ:{޻%?{?r?=szq$k!Q#}O,x~z?{W~ٍ CBYw=B#-Mo[fD$$a{Rz~HHJKU]sۦE?-{?(߀qE:Z׳1T) éefhP 0 SskxVKxeBwF{@% [tm8h3npb! m:kc Fi(yq_Yԡ&e=oޥ.q7 %oj+Wި2.#$ð~F~o #:[RzKS|yeq%w?Y_qʊq[YRy(HNm/_fr7ǧ`*^JƄRye&:~H]%ȨȌHJLw!l+=xO,iw)E6L 7 <)e2~o `\yp>+6YlYӴGNUD;[_?Mj[SXoߤz&eJ -N :2?M!,.YhSױ63]=fiO\A:بQc…}wͦ~103=dkʒ_tUN.c+؍{ cdc8f>$ِF%`+Dr$>KYLDXbjݏVX\$msn'U.945Gֶ4e8_bFajؖxҭRׄ:B.Kt6319wk.5_WWh40Qy2G j̻Gv EX"_(m"J OU]Д?S&z( >oV>&uM։4cLWS-ͣ E4 0Y5FaޡXt;l/APo6褙KλܑdX(Kd~͢[WO$z! 4̂Al1i0|K_OxH1w`Y"l] MH@0Z[V"Mi!gOx"]ߢmgYLǪY"MQ% "@Iw ʒ05PF`@)䩁l8^9Ox$=r3#oEM ;Q`gks^p8`r? 0#Q!aش5ׂW%ydptcx Bk|2gxHBzؠKNd2q K2_ -i[\LW9{*ۂHck~ا[q BS$V#2)lI}*=zWChLn ҠEl[ F9\L QcT2{^C'I*n$="`\}۝6a-Lc9!.-hWIL6IGG[ c:'[j(XlYz龟#:lZ룺WmW:(E,l*`BA@OFpqD;ݠCLQ ZjvŋY^gd֊=9TfduWEQ-e5m!¶԰7H@lHudCVKD j X[R&U!Yӝϰ"bs=}n+V͊~ܟ0l+3ۦcpsէehQq͝z7R3-pkRn2*QĔEJ,Qe)*Bk*Nz'01V *a"Wwu@kZkIz=C;Au ;Q9,g:0:3:=e: 1_nTOZP*x?O%.=~W&wRdс +r8R \ Tϊ4h9v!*"0t|.OY3,>ge7] 7r[?9U&;Wn޾\-펱</vb4knm,ڣ[{E!d^ IvvwQQ WrE,U_9Җ~wєc& YRnA \QYr=go?Ftȟhl .ԛ`/QTۅbQyOAU3 Xo\ }*2VIklqq q& y:|Aq?*3x, z^]';l2=Z`gp'q|&*1OGOnjNGdevbQ0Dv<?;?d6rwM9O<K(X1CT.`K~αA'^| ݭX8,չ*@5T2nG|>\/N!,d[5JᷴuѺ:|@:kt9߁*b !萱:\E>(sֈ!xEh|0}=)Uv256 N{{5\"$fgw8~rT(\l2e<qrtt< 7?#R!MEN}n3୷myF H4mU U4՚7 x#XQ,@H%[!/K ' Lp6ł/BV"B=` *M|RAҳ-g91BE};::yA:qzzdx4!ϲ2? DDk {bz? u 8?6Jp#HϠ=]k۟MO"X.x) \rnq?nDH`8~!pv`u2 {y32{̤Wp0[0"ENolH}a~;O^<{N)>u@UL`Jz=8׭ŷ}ȫ#WyM[o%\ih_kj 4TfAڬd3 W@g|Jbqb!DzKF\' WB$LH"NĩQc}+ƘP4H}83]\~*C=;C>׽-YɈ)t>i#&XWQUW?۽Ə8~.; Q@dłD /0yfO[)x=Cbu~`_ iY5ƔȶnF'<Gn8A rT=R:Eq✯ـ1^G8?'NN./[ƒQP/N52h&f[&l@oNz* .`30ډԗ3NO'eN~Pѿ(1G|_6#(vj[ _zo{~!y%aqZ<+W#xE6hH|]OqǸcG*ONβ/|zA}0y7Fp,8UXCoc0zAgYHVyl6c|4jov~Ka;"Fe KZ`Zzvۥ?hXcq [cbWKA͹ %28Dd'!`Ug;d4w{~OP/a0fWɬd<)3Ǻ胼?/L_{3K¿7jU ;Mଊ.93hU'~ʭ}Rˠb/j)MY:~v7S5~js5QZ7i 0Xf-Q[\Y,26 ^ N R0@(}]w4ǿ$II4Î \FHIuBE T4U':-nփm[ Vt.h8{/)7G|f>+e{_KSm~vxw*NxsKi4Ў,KU0#Ap^cbzqmwX~WKE-4SL#LvBDdYAQy'>(b82K؟SyMBֻNa0t\p@ITMcXN>H'Z9?1)[l"0@?Sny5!ITxE˔Bl` ABuH<c0 GOPzD某{!L!D sM_̡_ $ȗ:39?ecb1F\"NT1p9Ǵ@X ~.5ⴌl~%d㉸h^_bsxGË#[!JanF[Mk0@%!D4B$1{{p=i.U?k-q/+ ow v1(l @k$"P<_~ElzEnALq=+=ng9,UpUpnj>N,X1TN^[KiG@p,Dc!HH $2:sdiJ$A 1&dIcMO|[I?L!p/L<"z[k?c~qQ8PqLIǜT'hn)~cL?Wm?}/riI]z/K˲:*ObzowB)LML"rB~X4K>- Jaenدc1QQ~ pL\PJ~Tr'OֿKha>7D>2߲(P ,Bl _2qwG= ubcvgGNK??"9_ bsb96;qdJƴ(~ 'OO|(n T 85jp* mS%"RuDs;Wʌ1`GKF8)?WF8$}L^`kdP84?qD[w~wg\{Fl`2Cū̫]UY>2߁Ě_g2ǁ;&;x1Eq[ӯtC۷k}XiYu,K9tg\D/F=@ȒT^t@_MH(xlƁɹn3R`Tɰs&ކ̆J]zdS>u FL&;XWf+,89 qDqB" {p.ĥ᦬fLc(D  fC U45O֗;߽:aU*y RiJϧ'Js;=0E%OQKT21ӣ zaKu Ǯ9)77m51'"'}G̼%WS#Pr6O:I< rP( 1IIѐ"O P+AŔBW(*T՟W^;1~뭷}lݯ75YS3 PV|s,#_W]cMTMm-25n]LAS_){N`qWy "|"7ByC0 8nؔ'|:z40ʈqDaԐb;#bGEF8ki|qKh_'9czy'1Q&C\rKb̜!S?) 1DxS\? kx| gHKuð1o؍^/+N5apxe^A@ە d26 ()\%_ :nF|)93)쌡)jЊ' sWf[.dJ~rW&us"6? $qΑ-rvxq|F`1Q\m+/ [#/d*I_ۭq_WyUZ*kձƼ~+f)F}U^d:P3 ͹c3l`V|εHv(9vĢjXo4349G;s)ocٔ-OXůJ90)8綝Q1'>;5^^!~E.!]!'a׈0LS3= MQTo}Q=DXc"wE4Uň1{^ ˒tO (JSE6݆Uyjp-ȭ.7҇ ݼ(Q8,NmKLn"\:c?s1oDcٌ8.WO7sSV"ٕ=c2z x>}^(EQM>VXSH!fS%D,^o=r&ɿկ>;Xx1?Ux\yKg%/ w3nwy%Cn\khelHek^uYĚLA}:ZhlaKl^q43'Z`sd D=fG1LlLbrI< !OPLƛјW)cUqŽ Pz?uJOrn[NqLe'0?Ky).>9'ܭgAP3< 1Q`l* F Ԛ>aZD X~^_UCU |1'AWĻ.{# +jX Sg}^/PtSܞfvbL*z_n, \bݐJPIy3Ky-0GZb!"Ĝ U_ +` 9TQE{#_vթT ELyy.V˶!8Lv>bUgO^Ocnfwˏ1ꖽkEɚS_wk.|威! {̝VaN4) ZWDt9tAoyfJj79{)gdd!?@uώJt* L-?{gף䈖vJ|*ʹyꟁmu SPzhL_rv%㆙:3xd)j+0?7uռ_O1/`)EBj~QScO7kַ2ul具Q -Z>Z29skv0'.jW ecr"N=2bfrwڢKOE|19 '4_OgkSOuO,:)p85~ɧtD3쟓OK;g=GPD>C4_~[J/{d $9bH9g2} <{oCS^ŢgK 9q;Ϳ~ S֘Vgd Cne ZQ h1one ;[C7jvdR{}ŽA~ _NF4f* U+_Ťkc5S Pz$HqK|Xq2L"t2+!`Umg=i]wnY*ˏvW1b9/xտ(''VxPl!LT)X@` 1OnR*w<]k?Qi)P ƱǢd`!{h_FlPa+BvjYjߧ#^h'xo;T:{ɰQ@wvyV 8)s4H/j&8JY /Bչp}ߋ!)2b?,M]}mK:/7o_W4ZknwtW wz}|-o7oo]zq)<i4 ̊ZnW=}'|1>hŽ|E8 :c+Ymp`CyŞbǮAϱɈ J$!)]訛bvb CSΙ n=Ww-.{@e:`D'hO PQV}7Zd#DuP5 q+{HN( ĕa~#~>9s Gcl~UZ'M.6Uų[X<68p{[ƚ b S$_>9Vbۊ~+^~ |.^.%L%FY3:Wΰv^_k,;%y[%Rs.;N3ܞϭ.bhe}-eB^^~köoGD3/םum29&|54!Р ܔW{( $!J(&Kc~.>s 7팞 &Ňsن:?jSm/͌ HJPsی1qMbbN|\m=>5P ո]> sVb$|^>mZ|caq\ko\x$܃] rM&޿xl ą>iا:E WI7{\K`urm2&3|=/=P >//?MDsF NLd2CR!h5^Mg|S9XO3W\+H,t㚟gjqD>g7?ϸ5R%4Z4dbtuLth뙂sk5LAផP87Sy3|  )pƒ((7̌ďħ\73b LSÖ _j$l-+Wn_mFhHHtLrr4GOzp!խ2w#bQ olxU1G;S 7Ju@_2`KʷEU{bx/~~KQ_M9-DOybSp>/x[\.)7d @!1xnN1NfS 9H. L} UG!±G ٹ0 R@]hg#$MШ5v=kR< q aƪ!oban0q2^)54yeuХPU%“Bq"hF=7CnM?d/{L⦄3#ײI/^6h+bqNJ<3S1x V 2b>9xG|FA󏼆]QW/R ?W<˿U@sӌ3}bqj0!ƫ)9`Ln)>Ǥ#>!fzMGH1 x{u|o`ly?*-D?0% u7@z`뵝]uÔΡޗO V 㼻aK*$~<]6J8N0^// d1`()#nrާ&-L/IF5$[r3{,.)?=sq{24j39!U{Sapn1I~'@;L>%<ž#>fzƈJfLDMnvo7pHv!&c-tR.]|~7ޣ@]|P{~A|P[K Q@4"99d*Ho_NMzF,/nhj]6756S\Rjbxb jF(8p}!} GxvEVn9pjͷ{՚u7Ԙ[.ervѾ}˛|q4׺+x#%)7\2ᘛhuִt+GX>gQs_پbd}P W .Rbrrd./o0 {#~cӏ0#H :& 7q(^| ?*v;ޯ//F }w?KRg΃n AK3@Tz~p?OR fw60?!jJ!oqq";zJ\97\SPo6S([cWfn=N ~S#ÌJSɇ$H)v&y6SD :yÎn`&q#+A0HvQ; 'H殊d_"+ͼ 1^Ǽ%{3~ 97Phl]b3aEd]Uucܒ@;8U1SN7q>$,j75)6ͯ>qMmkub45[nok5 Xݾ9p-)#Kz(.-؈ke͌Ԯ5_-~20_j:&hJk,2|x*f&]Էըxd#$ac.GF`5:>ف(A`$ƓXXʗ'ptlٯ|O|Tf`Ǡ3TcDem`EmGlVNg+ => r'0<|r2*OM\%|;_rs;cqv3~ϩmѠESzZn ( ~qL$hZFbčܜ0?ŔtR@Ss M5R ]׭i[^Ъ2i{^ksj*cmjat~GfܬnbhE9fY S)J;@=-k\M 9>m.em2 n ާCtaigv`_ :{7"1XFP RR8L#^#ٽ qϊҠ2+<+MyOp Eѯ㣽G._?ݙ8Tщgy,_VT z$8R V zŘ!,)3mMxI3e,Ӊawŏbzѐ7crz8Lj/اAVHgZf3J!TԾ[cLXD jQ!6K48Hi_'ɛPdOD(":ſo?sΕ (@D΋?3&QFNĔzSo(55>92ىF1y!I1FT.Sh4hۦ+̷k(1ksE&}}n ˊ3!.w+kyo(JH"Cd,9kaU]?_LFy569cKqSe |^\~.kP7G|F|` Hv臲8Q[>?ˏ]3|6j|2Շ觍QM[ƉswS 3 OQ>`v^>*[*9,'4,9∾`}^yZ8WRb>uԗ x\Wd"e)>0n1sCCf| l-7}_k_/{POb*Z2BD謡7V3ollG 4lwx?ji,-ʀ!9Fa]=R_FÖbLleDl\ee k:5 4SZPw)UlϦ%qeA^!zs=b#$TYˉNwuBΆPk [c+@ןnyAh"aL):p9nD/q}ӻnJUD.q7%WLAJS;Y` j-"b߱˜wsn)JS,$΁zZcߕI*!hԦ{ɶ̅DC<< =$ ཟ6;{_ p@#FVPX<F>_΍)ё*'{[`%,>1ײg -x:xr4-2i[pRRd9Xk ֚p2c#!`O^}^]Ȧ @E [o}9+vWm$0<4.;Fǂ@f #m_ Ma^f5kvQ kFLTI ?b]X66ih]iAT?S6qq#td8tb.j{Ejzg5U vPNe {O9NAIdJ=jhz7}6b2TDX/"8ZS2RU ㆡd-=CCloQ֧8{wGh^+,T An򆪼noѾ6x4T)TVDcWgg!7WLCb# gI4-ꨀ墰 3}x>LQdH DsZiJb5ksXç@y]hi9@$!vTwa#{?ݝ65ئVH+hy}+Z3`XMMHG hh̲U`$dlsYuYj|$lD5v;o[Wyܾ}5>0"cds5 ,6evoeXl_G}77T/OK[IL/K+-^&}}]X42PFB51΁7ᦧ!jb%CU1";EGyvl$u?3GD*~{# (FqJxlgc48fEo2gmΦO1Id@f;$$9&|on6F*(7Nup:6s?NJbp0ɳuNfuj‚fm|;5Q%LmD=$#Q HyL$V~, XioWWUj}B5Ӻ햎bUj,6vn]}ZXF3umlyYp:9gL҂{CIZOFEGz{_{v:S|:^ߢ ݜ"2[甜ⱑ>Q<0bƵ-e.XMF+c^}z0&î%y h:[Vb5Blh9.톭Vh&,[7og]C^ юŲ(V4ߚ ׹^ܼNK;C;wRJ;N@RV zXGW@kmm;ܿ?580$D[pl@ŨxL4pOۿE<cWk/|7Wk]>3e\yࢪ2«"z-;lZaYQ-3<OֻB^;ު Q$( (A\O7Th߽r35(3)jsMTBmJhR]qXڷՈXhL k`GaNj64SZE z Ac L1 72Ҝ4ȥ[QBo:3&k1qCeʨI~}V(YI? #O"nppGa .B 7?\|]A1QLG"1F,螨ܶ޴W:F3''Y0 Ub#yԺѴ~M5򫩈74. au]>klRvR8 fdI()|ɻe:~n^>ʳ2O2]Y3rFiTퟖ)rvOm..BQk`"YrR[`nN6Fd̚%j?$Fi(;5<'&?@?Wٹ0Ɍ,k@0*_!6BE5[ PU)5+Ph;w돮k~!qpA?ƊN6~ugB[Tc0QB dxuvn[o?M2Cl 7)ZfPվe,hGn?{1@b|7٦Eު+cy\::_ eX)2E{^S4g&l]˼ݺK%?4z]]S֘՛޼M()(2p4+8_$ؘ}վoV_M߁c(,ݏ5x5g8_W%,0b26D!o_'!Q\2-sb4Ё~i}{ 7yj UJ_x+\ܹoDX rLj'LI.J ) y b+ !6Q9qnQ@?q0, ')RX|D)܉Hҍ0qBv$${7HvB(^([MJIss@$Q ɋe,x@)Fg =5h)MdKj.M9kU2v_i$hD@{"!7Cƨ+zLG ѪB4VAWj;W _s۹M|:ۭ-_<ܮ 6߲ݰnϐX[O]]7[}X5f2Rq^k;Dw{4Ʉd, k Xʿ#13Jd$DD161QlĽC`>`dykjm^jb+un6MG/R\np.zpcv~sf{`_ g3A7=FmƘd P탽\ᙦ!* `= |_|Ble^ы#v ')YAQf%5rCl5$ c=l{(A'ب:uwHi&~ ㋔bzJ1;ixOȕ6 jv@Ձ&rMp%z}kTu,غ+CSlRV6v4ݬ^_7 6!C)lP6Ɔ/Z=;%OmFrbD1;aؓ(*X f^<\>Nm.O6S w k;׾~7[%JCܳFsFl]T a|L!QlSSKl! vYJQ5QZ#OW{TQ8a/{d\H`*`M>fL'4 0|V N(&'٨ddFkw_"T='Km\;}ܻj\ VTjK5" =$" -r. T~kLAvgf3RkXWڲ_SfxR`Ql)X}L@y5[:. y`y vcs"6=C+&́Q1]N??ܹ_G;4xѵlw*g3|YϧST[|XxBlek7G7FP0XksM/@ =tZp:+Hs+FKgڼ]yV?Ke Ӡ1A0&xq]Ƽ"G*m94vLFD\J%pK)N\u9wu\ѷ~;2;!&bOz1WxKU[mm^,tyc|HykE4׭ڳ/RӇ䧏Q?f 2gw&Μ9ʨw񂞊ȇ U80Ж\[\!=q:+gx6Ad٬⫌ZVCqSxG\R"/r|:QL["Bʡ`d\h:~(V?}4u61tT Η>1hU ZHoa|r\߫5߮'ߡ9Uѫ޾ȟ2*fzźl{_uwu$J$NԸey';Zq֚~~J!dZŖX#rrg[_]ΙP[ A=b"us\ψg 2c")BDȏ( ^vmW̝Fw NN)&'1-A@5 jtFF+WJY*ػ>96`4a)6ZK L8Y.+&JPTe *SH,JĨrl!~pt7 yZ)#Dvoуk"bx𑉢𑪾r+hj6MB6Μ- emlT<=t p-Zk[~׉imuD OjͿ]G-T6SКKW _eF:3s .յ Ef)',]jhb J#xl=edAeIRVxPGaLgԾ6a' P+reJ/rQ5TLPqu >+y#cKgk-bL-F*ςr8Ls[Gb z8v^rʀa*l$8Mu9>SSoqQPňHbJ6w J 5|^}OtԽ L}mgM;0|5;4&Jhi,-ی+OL0'Y#p.#/VvK V|)5uֵBgf $h^x)\_8߾9.׻otWD`Xc#DQFuc#5,hк?T( dZ cRr5s7T"o]1./^'Н^aB S3`liYM|m 9q]h4bAW&q[B!"x!nJ.q@ܹSKt,>PUST.{`jB17 yBO 9+9w+py+EQ}w+^ hg& X16LQDY0>Tj~{pji(4 2Oz#n_;#Č#KJ\Snzm$s">އ_)獫&Ke(2}1{nגjhfl,r j44~dj_.1Uv34$]Y(hYNXݾݴvQ U&rkySj00ڒ.LES(p/c1+<OkFfbM,Q(8k#SjUYկqKx4 $X嘟%zyi )T|*~' 8Fuh4[Ʈg[9X䧏O Lw"F"$^{_'m]I eRL^}<][ސhpM'P+-ximኂ<(<)|Ε6%,ta R4愰P`.4 !IbG'sVN<=}(t:+"LIzMBRd11WL9 H])Fb?ZIq7Rʺ4KkdψD\j~2*ɺBno):4f-%yin!"_ݺtCYJwy|qGװp4Ti2,۵k:}kV|犂".Ici^,~ #*|(n}`LbJgAUL@#kMH8?8>˂0Δz} (F+/a"nelF||KGS}//Y ,8sb96=ZGKy_AEj^lؼO`yui<䧏'%.*k$qїw/{h-\IΝ~~hdaTPsER h#z@9j/?EQ]QUBhs( -Qs2׀ އiL()Y')Y֣{ 8 T>g<.e@+<l_xvMYuΤ(B!1S3dd]rBub|D~bzga[9B6{6d_ S^J+zSDgA=z@չv]67ec]t7ǥPd6"mH-vO楖+', ?j=\T]nUGaaUFssY2$$>I ~qLTVX~+߉y5,O "[Yx~Nیׯ]m,%'fbv9PƷ=?-s"JMȎgP&M?0DU,J_nɾXQ|9eJ@lohuyT@m#{Wm?haOɳ _xdb=7rZxӂB Ϣ'I/!JJ@cuBu!C`^OEȶm/Ob•202{> (y|xӒl۸>R$FiU7P~ɫ~ Y$|gK5._v_sIU(m&^Cͦ<5Ӳ"/ij]#^q~/OSТrF4"Kɲ< s\ۯzy~e1E{W Q^LIF'A Y(z6b ifsת Pu`>:~UW()K6}*lfFfnEI|:NGb>g#dk^;w3*"(V!R;Io ͔f~Oc6_B XL;y f'eprqZ<~,8eJ\6m;ǡJtH>W% Q Ռ(i9yz[CBFyw!);̤>^;\: ~Of#e yFQ+F n3+-_7~L|)cXmh`-zYRoKbmc}GMSo6Kٷ ]G]pnkM[5h%MOg=nxRW> 6"Ig3,ȳ_rj"PF?8,#Θ1IG6+< )13`!dWUV-f<~}7W> 5#P!3}5uR3cفN[Z(CQS'yR-_c"ey毴~oGbgP!b/>eÜ24qh 8:]]y#34WU-Šr T5D8 \pyN(`a ʍIIyzVGҌ`c<Kjz.`j d;&?y@~7=BmQJ^Ly@ qlb=Q@"΋fM͗- c¨7l~MD8n7pc z@uB J~_L ͼõUgri7-MlLRTPlUqˉJ$VMƿE]kg1iBף7Dq .UI8Ab,zO^Z2 UmkكS{IrAkOkvO^^3@;1TԉfGwL19)m " veVK!$7Q~"s7U5qP7 6 Ywu4KaWWx<#2Y+\XW8/ ̫.qQE"z 4BB#Ԕ1xL͐sȩ9 5_6"||Lv|>m-:RQ{UmzZU+txӐ[X+3Z)74Ve诫A5hLD<:x$Q*o1ͯҵ1(CIXGw#ԩ/?6ˉy_9m\%,: z'$rs+r8qxX"N{B/`V:N_~'&L$Tŀ6+f2=Iد c@ATDU7/;u6H}SU4";)}w .- ɾ:~˟+3ѭ|V;:l &ߨZTfSre[e|5)9cCRJbsٌ,MӴ7}1>w,DOxU,Sx6% BfހKb!1R ii>pō23CF#{Ss@ALUqzw-#|-X|]:s`y\6&?}H#a/ B #5$I6RxiB_1W_3mQXlxx5L'Pv3>uyNHSf t4,5-.އll2a:1hԑ}/Oag=3Kf'ٻRe3dGwCYDxD8^(aN43?usU5Vl`h7!~ we#˹Z,4™@5"tpX|{WoVG3tNk'_n](fi: ZJ>[P PL:}\>耽d ;!2A֬#4qϣE5~i>x,}G791eA\oj.&n] Uw郟=OATUՋC$ջ[x'{VOSyz\6UQ/+4QǗ^hOZ|dk8, /+*:тUݘŊ(T?k}2m<]^4||BB2u˃xUq^) +e /po?PU>#J`m)/!׮W]<`^ QQX)ݣ{;T޹Ch<(Fu'A/C@q 4ϖ۾ay|igw%1p3! /B~4+qg&TDkgՎ[!7=&[2 lEp @@GH\Oٖ$SyaM?lM yrgX48d-+H ixPwy=-l-6oͶ^^BsBFʙ,BxYiؾ$\[S'Yt­р[Cn$$ňbN EA}&k%o ĂͿvܗ|:Y^(J~A飏NfP_2]!b:1yӭڇf'o|`L0?Qnx;U\ӓPp8^/Ȳ@ד[eL]gy(ft>;=I5cbֺ&rbQp;st\EF>9%;K#{uŶfA1f̢<Ͼ|F:o;_O?\~w~"S p5O"M?Z1+y7Z~:vѮAs6&һ: v궍Y޵07S7il2a63\Ql) "ӬєǼ`QJ=FcBJH0Vu ]G7y`bv% M}-'lW}6urg=PM )郟1dGq[*>KNIcnF /%wSk7k~ZU؊ψR2 D/!Ȫ[z]z ϳҾ,XtyuNɋ4҂YȜc9ܕl@LZpn>ŐpR.5R/c3aiZΘ)̛%J3P#^EH -_ WoBok4W7Z) Wˠ0x@}1ؤ_e R1//X{U\QPdٔF]Az+n8L#FVlr8&gU#إ_O@.1@sucd4Z_TWAAL00&lQ ݗs p染!H؂pOxGcؑ@t͒:z7;izyA]kd%'ዂbrBz|,~NQWβPT#T~"|廳ǻfOz3ƨW^كG%3*!rC_\h-XĢpLre*IS`6cNw>&NXؒb.ݰo-Yu.QLNFH< )Z W)ppMw6|B5>=?&up.!Æ/MMu]zq{ܶJy6&`Ae,vKXL?l@:)o+y5* ZMX2:"?}Hv1nzϦ _=w+3)'[>!w)ŷod|G QE5xav1BA`J57/cMyNe1cMHļ綾+0uI:07_Om CD+E+R\6%<$?}D~b6B 2Zn'+0Hc6if7@QQrX낓ړms}hUyWf/o/C/|w8!ٿLIPNK&"_g(!7KD0p ˲b,P /g |D)'PBwg v0qcc[;-ڭnhX ^Q\ps 4(fcq@FǸ)E:XSWkO{H C<ŧ@O>)>]8Ȃ T#ͣ$G|2m K_g?]KV:SkϷخ~N7[|{)5sՠUlJ>9!?}Dz|1"UK!2Ϲai/_/@qExWyݽO)xW΅oR3| Gy]1c#3{(`Cl<U!&cG<@3\>>fw@Ls{y͇N hοۏoel_D1%49H+n"7"f[-PNZcm+x_j-ez5k 4eUU6hbY (ܜ(?[lhvEFUrW 6cz}lDq) D[ "YςD׸Pp*G^o~[o^({eACສ~ب9_ <>_-TEWIsʵ%nhueڮv& ^U/ !]`#lU<:ѹ 4=qn7끊s Mw^'F@E.oQmn+3b2]|W3IDހh{Gh:ƗQY ת ѭnuX%=ιXRHŖ V15WV[hE Tf=-'dt݈9!nbFbI08ab6)8GжnE<` j Ec9)ù"Pċ_[l{ jV [| #Ka`񉦻yk`dSmDVfAEhO05r,zs? tn_=?={ξv<~5bx7} _"9Ľ02i ay._B5i~5qң0 $>QdYW%z?(@ab?JUY dtfzߣ(j@1{WL{:n` zD}FF6!D iLz$-^Db8I$I{=8Vl-,TQ}ʑlt h@?}I@7=ݹyu^ [.߀g_˛9FnN|_G)$;LcI!bPJɓk鿶j_w Xc>& "y( ׭0WBxj<6wG65#*pdΏT5}UŖ{Ѕzb6*IK2$L%SLGCbr\J"$ڦ-b}|hǏ]~ _!8߼&~Ym+^-ilUX"o}kKVon]濵μd +r+/=.ONOV`8Tteu5`Cg Q{w<("~lŦG?R~_. y&lffG?D꿢ȁ"#Vv X`D$dcbL`{=@bzOӐ~U/irA6 fL߲[lq0CD>"=*?l%ܹ+~ۏ~x}X/cLX*mͪ}m߀ڄV'qyCΞ0߮,mj{q q6Z[=U }O ~}kq1||T&EQWZC #5b'@w*wd,bD0 K"nـ-4"bj$ A/7J}nWV%#&6d3lh)&'tKg!s(e(?KPH912aQNpQ*/Dx(|ww&+Wa+wOL&|Ah_idgE+*@ƻ΋yK`ڊq@gE 4HTkXG`>~L<إ#_SLN)fI]-8 jkP tq4-n}0WlT@DH(>c,N1PIb-.<gT:W"VXwP m5 mKG+|AH qw7QLFy:g%+0$_y!,:BrQ[9p_1hN/wpVxN^W=&z6&^Uo~=p6ͽ˙7<ι⼎1XKV7M'9.lM(f#7S&x烟G,,i͜Yק;G}Y:|Tc0q109yaekbA*(w\׿4+ ]l'I:O߳/b{seleTuD8VB`ٌb6&f`6ˋ-rԗDP4vj-`A1X 'TCҠ%b-.<OAW? {;\? O;7_I[Duߩ 1\mL@Y3{wؼ^f*+O1# !PCD;$ |Mq)tLR&ȡ;>D#A8A槿6-3KXCgxEBH?-_|ko~0CiT2&9[l@1LD}`XR>ςi 恢4|wE't9 +u!m ZZtBbEj(BU4©1̻: nzHX4`'˲`+__wY6K\mQ,/17ωs0&:hk?e_Qic<W煉h,/҅ɲ>C"ba>;( pY˧tKlPBbux43!. ""D={IdB/aq->)Arӟ?Nlt/RηuC<7 +OE1P11k͆v$0 ڵ`0QHHTU,d3\: Y9r|T\KDDC0hp,Jz6)"/_H2[l\0=Ehoҫ8V8{7~cŻ I߹ Z%ߩ hͨkv>EZ3 + K+lDB>8_saL".R%$Zd:!)=÷ y 4l|L6]"B[\j9]Ox/M%꙰΁2?]Q*~Lj޿$W6ߗ}l`(PC! ΅ޕ\Poe# * R.4%>}>DI[A`- wE~ޕJVx '0"^!A_ql]kZgf;W75eyMk Fw#ʠP8ˇUs8ePmP*`fQ-YG ])+2Y2Q9kcC0 MN"Vb?@䁠߹SΝ6yOx;&"={[&A;S%pVJD*yo˟~.TΏ!9>'1<+||5Y0U=|?;=gVx*(_2O!q[ 2P0q& -t(}o]d Et3BDE*SlOJ^OYZ'6߿zWHmo-8/Uu^S'Qotlg;wo񄏾oW50T/;e T5mfo ߁F6azYo2 v6lQ<6ͻX9Ņ%`-~[@1B"-kQ\pH._=Ҷ [q_)oeUDT_S|ʧX6oI !+Dk^&=z:ǪOOD b3Ca,?b:?︗v+\޽Wܟ˻I6եO|fy`&߶awX͛9TD7n-WkBIDAT~>ƸZ鼎h.3gh { L>~b#EQ:,^[=yB >,\gx5vn}D2[-H(?3]' /e.odf._BxyXXMUinhnWgׅ:yl>ؘ&A@[-X7E%S}cqGޗ&wxa  ao5t9'rXoxPj@J&P{fGNeO[,"x1?Vw= Vxɣ;;{I\nDu EJ]mj]tZ>g_]qt,o_5oz|kVϳbo/G{W>=9|@2[l@?ƘS'VxsN?;W94DO#lŹsIx)fS.ҙ34q-^2z"ÑK~'JVxk?(bkP_c]95zfƽutпigfXvQM;gk.9mPW3uQ'_dro->yl*2Vʟ =z.{|[9❯}G?0pT/"b[l񼠊zYloHRSPFqٴn5lIBe(3}79b+?w~"6bc9TL@m;ڟ9޿ݿFo[ fqk{]~h/~Kծ~l={&|y7R2 |/:-jT{FU_{) [ΝRSq;aо+/y3b-FH0ߡwxUŧ3PO6:gYVc|@~\/- Ûn<|Ǣ! "Fm}J6+޿ߌ_]+ktVFh ޙGӘ]h$TK Z߂8W=ڧP9f.CޓǨwm}xQy+Z(cUߝ?loooM9os 56:`-o1AlD߁ۨbzi~+l2B {~6K~0|sV읾~>g9?!mejovtxk9[UYl_a?y}]+ڢӛJ!ţٰ"b#&~F:z`lRBX;wv̽oQ\^% ]=V+W8W9A51.>62`+ Rr}TEЋ~K%`l~q/=JkW F\(u8/: ].~P ZF|@>먊UC U z|5#;J%R6_ O~$QsL>.gb-B8`GWQhOs[-$T#?y.{lAxg#M<}q (#g!P{7[k߱׽~47V5϶YNJp=ۻຮNIDj$K(ۊ!rJ:/q^|?U^U]VUbWr;~~nNU괝Uؖɲ5K`RDLts ֯tŽ묽&0d(nh_oAq4yJu wn{9O{ڱkVztؾ}"Z) ]g(x6]L г @ kg`R(@>iCouŎO[HӻLW]6NMo߯_u .Ͳ ynvqw\]wb?Y7U7_qykqN{tW]sPy͹fRB>6h݇扃H уl=n |' >,O?kb\<Lŧ~ `߷$@V ښ(.2P. i*.w]{ 3Xje p˕ȷ$GYsWmw^m[N=W9ĺIt\f.db|kf?lOԣf89vk}Y3#,s`j]f4L,wWu%g}Ory- ( l !D4G#5kec©BH<rp%m227t,ד@ļ(hY:9γnqM+@T NMTt3Bi" ;Zn8^!>Axx&/O0|+͵I)7kœ x6g;^zԳxļJe.b`,5r1ܒ:9Ipď =dRO?@ڭ0_/)!!tVk3^of̱ß<Ό,6<ǝ8W1L/R|Eg|<ϹZ5F9|{ Z<pP'p}+>Z_-7X0DH:\d8nZBAڀo vSjf\skyzftj8W0azv3|ӳӋ<&2JО XB!Xc|:]H$Щ~'V#5+4<X?ʷk]F3dZ)&5$U9О#T,Ah,ot6M8!獿kjs O~u=kO_( AvA[]cV6'Ow[1TmHϱΙw2p1{N՜gYbg33'0_ ɧdVFַf VVB!D^.@B VPZFzͷ5o.u3-V0PT[jR!0UPH4b`D(g(P{v̀`:d#<par}k/V1Fr17:y*x#BBe*Fr٢'M^1wxq-)sW/f Jz7!c ܅(`;C 3k1p7px$BMjݤe7`Ңff'>%g~Y]?}s>oy/%Vj#Gyt/ѣH (5Oċy`.h!<nW;kXtؑgX]6JĂ~sF?יg>p3pَoaOߑ<tw3~ϧ/!C=2BPB~^:89!'d6 q ?45vT_\'pcp0`,JAI DekTguF`>ݧkayD.j0`Ph=>GPL@&C^ CXu߃]6DX*>:0Fb@˚;!&@,h 22la{ L;}gsef}O^<}8sYgeOsǹpYD"TzP` V{Z5 '\rj&Wl9vonJ埼5BRܟ lqk4W P!Ңo޹3\ه9ܷqĜo9[T?d+(Ou-䣇ƇadiΩn횚9*@P`L cíݾx` iUB]>@&WKf֙),F;Cϼ̡Y'sя[z0!nN_`~3_,9?*A{֡ByVF1z >+Z>\gȐI(<G/ts ,~k`6R~S% >JTT/f 30ogy/'i'@ H6!#GcP<XY؇@n"^!ROU _cq'֮ )[ޞZ)&{{|| ,:\g"_1=w/Y?ӹ~uΘ1ߴ98s H&vHG5j:3B8qn#.3#^S2>Րva*=Tm]-'yiZQY7P!fBdo<2FPN֪!=| XkJv' Xf |>Բ o4o?C>y CXoKEPRF( lq=KP !"Yjr97{IsU90{홫`^Y<>wgh+6ɪ X}i( 9[倵N>Or0_rMQ'('- fxxew,'=U* [,"M:ZcVf03HvfkY1pCg͑Z?χo?of\L@BRMXc64qp}*P,MKZB|A`xoʍyߒO;oc1kC)"Í$Ty@-2{cha1(1 Xcjա7lj7c^+4/I4 L7bippp{х.٧(\q\b 1w4B-(tΦ2g(7D0s`%}3 [KxgS#I݀+6 5F8Ԩ[Pg K}Zݬ1 C1 "dR֍hsh6ߑ݅[LKJy W.Zٱ$Yv'xp6_Δ~$ ֬#5r4 nɚV@v S٩ZX!!וZ#/*/rG$pw&> -&5Ɔ+XSo[9t u#u=%lȲ `Ӧu]fij3+zN^>:ݗi{^A@RŲuCkoD{xk\Àg΃31lw,w#v^Jf󪷞l 3rQp э4˪pN2l0P2 <\XN; f`b D0fozݔkű7zV~L70F WB #Nvz `g=BBRPPeW0.xwA frsc y1T~KUؕ xk m2N.ҩ𳶵J~N03@!G 2QEAᐔ~_ܿ?jzWbpp0%}뽱7&]/jlN@bY{:cXXJDK:U) Bx~;jm;Mx϶JccՉb6f]+Bs3J_$-=YP6S@'Ep^ ar,k&"=KB>t;j/XF(WbJNTrt Y{mqߕ[+V/m]m[Lå^\hzA@(,BOprFOYa2ӞB ``KquoiDo4> ?uEWt}02~BE WXެ*h:7ڋ Mu6, uǚcS &&cJ{NJ7btjou2p$bPy`ǥAzyt_V/;k> - .y_x6f=Va[^-7 %"e!bgɌ@Kg<ӷH8P@84g}YIz/^&1b|[!e o^Qf h5ay*Pl8 RKO`L*qҟҴ1Y> X*YW۩r7b}RXTǩ5~u眼$!+ɠTO {/ rY;?җk7rI.͂6u.gDi] @ s y:=v徱| @ MH〆 >pp(Aѡk!ߞO܁q;X^Ek`נV밢Y޸5ԝ ӿ03 z μ}԰W2/Ǭ}>闫3ɯ UہAr;Œӆc@uH|J#1w[bpWo{|o5c6X]WaHr#H\.r@[(nOYǗS'-X:5?y&|aׇ7C=Đ5Y ^^ RѮ H&Pj7`yț ",I 29!O˜u}jp2NmG<)kW#},Y!+eο=uc%TvodOi$CJCLZcU\~> <V}erWUVKc)\B+SJ^TYvZ2 :G?iښq0?y]d% ( H 0:0Aڇނ⡨Ć>vchK4WreoFMJE 2@jxHV'+ЄTprr(u2d&ϠmrxjZ`Qqqz @b :zVF*~Gt~34#tvY<3 5N9)ouό  ~w^<p+`8p`Kܼ1T&}1c=mpI.xAp@v1!X1 \tfZ(0qt~r/{99PKD8 J xY:"ODibEz"w<p`ntuyoR(^B~M$7PZ~ {Ht "PQ" "}L,gAy<~}:ߵ5jN:d`Z%M(b 'tLGp(8eylt5zݟak2R7a%[t&{&@Np8jU:"drX'0P*Nv6%=t:SƬѓZhJ=m16.$v⏀PP^-e Vy [] 5Էvf嬔[ La=uHJ D7nA]Yyf3UIϺ suӯ紫f|?Z)OVl *(44DIL@1 P8. #1l6XhvgX~'>Qw2/m{lOU!0Fv.N/pZ1T^dwK4yM,;bazo鯿`R_4Zhz{ o|y9m)h]Iq@6@PcdB~Az@N `;K N~5\0,"uN3:SE@Z<ڣSL & Rj&Cc@i #0YFS 6"nᡡe^{vcIՌvBגq춯^9l:JS!9-k78b\nvMpgܚk [동Uh,/"B ev{%3?=tKn]DBh=B(S(,==Ld@)H s\6pjUx;Eo\@&9&&&: 5 j A C0b<4^[ e[<(T-YpCܓcwx! >q7Wv&nMUY%Cb3C^E'B9 ~ߢi=p "ΝDaF A)PUB`XV*YP j9歔bŐJ$e%Y L $)(Rb$E3$Z TB"EbL)VaE K- ߴp!3ĊP"fu_vl֩P[{ת*r>, >Jɪ Iqo(Xzz;ر <pn @Ÿ7aC?m`YR/RxYUJ%,3Y-]}8nYѝZB y!V!h6[T%כ¦T5nVa>Q,t?RU[..v%CUKbe3)3K ^4Y(=XǞ;εѓ[^"tJ=CvJܕ.sN6QYz/߼?lIƀ͸Ae=.EY"LI<<$iHmUw m_66pι0~`|ӄ 7eY]:% BQwVBVuMx sΝ?/a+h`dU G!dH)o |cQ|"'89Xأ =F#kB*=XIR 0Y"Yk+]&pιs4(/"B BA 1 /MxĐ~皞۶U*[X8J3DP?$~,3ΎdH)d;@"nX[ ]svcp ~YSx&`100E>B~ZB~nciW <^si37FW4{~@!.%@ 1̃j/dK cxRq s-~Toa s@loD#P"~ +}s[Bmc{ˡz&Jx@]A 6@ >=ys-жmRkGh2=JI^0P!ny k#+VYss-!k)Nd3k? >3`Hځ1 A߰FY-o<}s>YZ?A|^8! b?H=Qw5ΆgsnۊAH~@#[陀E ir8. -@m+.uW':_UFz]п 6K-.Ҿ%ᡘϽ;|3眻Gw6{{ 13T7Q 553@`EfW_XU@o/\<s羰} $Ea[ 䙀" d(09? +'w眻n㯿~>, :|!LNMҺTR_j @s۹y9._m*%|$~ <X81s#xPӀ'G]{/usϼ9"O z )^(IB a#[¯ZwyPy8EoW0#2#j$陀#2"o"`*Yx2xKwx s]DʱB I U1f,$Qxdѷ~ ୥nr眻ھ=^jNY5 A2nTA"` (bB {YF]c}wm\j>&sَmR"h!dd N |H3o۷9ȿZjI EE3 !HqJnW]6W&jpι%{Id] 1I !x&`k D #E]\F{۷sKeW> F+{&`a`H)? X VZs2,[bln@+ͼv"2%!ƒ$2Ⴢ"'@}5Xs}9؎ӱP~H|Jԫ0-uVI C9x[HN.)_9UƲ82mǶTI$\`H'^ /y [9L mkU g>*g))Y}^`Cp[itkRb9疑{+[ @#jo}뙀 CFp;L5|+o뮻D&[NH }ZuoJ$d-," )^/6F}lU7ھ}> 9疥|B/Bp APNmE`̮+!c1?&QEP9疱oTy+c1F{`DaQ\@#{E s-cvU&n\kH! vW{SPmWuͥn[>BE"5ݢ##R'(75 b`snXu,5NGMVyb !٭jmޥnb[hYvOX@-U%Y$|8`rVA-9 f)TmqCqRhv`)鯊|wb%sέ`CCCVi^5@>Q#:;@ %$UTvU7oA<pιnhb íģ |Ɩm$0ƘU^f;)^OyRm!<pιU`Ƕm)/N)>kaz&3ҋSK!X?wZ@jA<pιU/>f3|қ&k<X]R^l'-Z/9 ݕYM >F~"7TgŊsέ1 /+!{~.cRуyWQ HR^_&snѿJ'^-AOxLN, $ѪvY<59 啾C ?H&*#Y:"8544d1= F<0P[(KݦsέaCCC-'b _H,LC`2Xpռ߱/Ox2Rw(A8Cqpgsέlwv[Qd7{QXa20Vmhhe.sιH}3]{(Eefo0vnb񅀜sΝ; }BR:a2 !'%%3; = >ӳiRo1ys}O@ =°Հ+0 \,I:wNt>7qQysԓO׺W=߃5Ng!@d [Hdޯ~c=19ˎ=1. xL^4~(Q OYz C#L<p9wH\?R*a&A+YA ˻!Bq/ⷂoqE^uVN~9ܲu77z_T] u9Cm ,%h4 5">"T?~wX}gwhsnEرm[W?; $!BPa j4׏ sιEG_v'?r,&rl+AIE&L:@a8ec/6p9hk5ٵz"=oI!F0\sM}&9Ѿg^z{7𥀝s-&R_YE6 ]IV N/HmyJ=/d<5Cj||9ܢ{JP1 {!}VgYVڝ" LA@ DE:,>i琧s{g3VT39#o 2|Hot9>QvRdL9}ũ{L"P(1=يt_V_y!s  zbѵfXEMTO 2N>;> "B 81`'Cxpt`5[X<sԗܪ\ص` a#UB("HMDQ dZ&( 8ʀfLLz5t󻷍,x9E򞱛ż*ve.FKKTb Ptσ9IܶcGy&27_?_r\ߠ[讻ոUs9s9s9s9s9s9s9ִ눧r>IENDB`pineapple-pictures-0.9.2/assets/icons/app-icon.ico000066400000000000000000006474121475760775000222120ustar00rootroot00000000000000 hf  00 %v@@ (B; (F} n(  wwwLww4wwww7w٤wwqwȉvx)w˥wwwwtqv!wexyx|pgnQlenympwr☁u4|tݱvuwb{٪vvJOh@Hf?HfAIf?Hf@Hf @Hfwmxk}xINi>Fd@Hf?Gf@Hf@Hf@Hf`@Hfww2{䰘gi|JRn@HfAIhYe}\\o?Hf@Hf@Hf@Hf~xvyip`g[b|kx|KPi?Hf@Hf@Hft z|rmb`p>Ge@Hfv@HftzȰҤgfl۫[ߧ\۞X}Y^t@Hf=Ed>Fdsyͤp:˧^ťhmrԝS{qFMjQZvhq{v{xH*,mz^NXu@HfCLjWfuq}wv*{ݮ£|ޫF38HǢuutxgqWoW~Kvww]|£zģyz[ cvuwPzȩ|楊wvvtsvw[xxwuv4uu( @ xwwwcwMw wxwwwwwwwwwwwwwwwउw www wwwwww̤wwwwwzwwwww礉wKwwxywfwwwwww_wwwwww0wEwLwCw-wwysvSv뛃vvwwwrwwvww wFwwҤxxxxx릊w̖uPRitWWjSTiPSiXXjlenrqrq qqwww5wxz|~~~wZYjAIf?Gf?Gf?Gf?Gf?Gf?Hf@Hf@Hf@Hf@Iewww^w⦋z~~ORj>Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwwwgx{RUl?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfw@Hg@HfwwwLx맍|{xpo}QUm?Gf@Hf@Hf?Gf>Ge>Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf @Hfwww˦{}y[`xRYuJRoAIg?Gf@Hf@Hf?GeKQkdbs`_qGMh?Gf@Hf@Hf@Hf@Hf@Hf@HfV@HfwwwyyvvYa{IQmAIf?Ge@Hf@Hf?GeBIgRcy}KPi?Gf@Hf@Hf@Hf@Hf@Hf{@Hf@HfwwwЧ|~fmioflX_yJRnEMjGOlQXsepyyuxAIf@Hf@Hf@Hf@Hf@Hf@Hf@HfwwKxntoupvrxsyqwouqwx}qUWl?Gf@Hf@Hf@Hf@Hfh@Hf@Hgwww~ytzw}x~z{|~FQqBIfmjvqks>Gf@Hf@Hf@Hf@Hf7@HfwvwzȜ`~wYayy@Hf@Hf@Hf@Hf@Hf @Hfwvw{äGŝ_şcKdzήLLXv{AHf@Hf@Hf@Hf>@Hf@Hfwww{äH=Šau:;@DIL۟\}IRo`hHQn@He@Hfd@If@HfwwzM<6̦Zy;JQADHҜ\}JRo?GePYuhrej~RZuU_{wwwuyڦ]<6.ڬGԫU4F]۠Lp~NXv?Gf@Hf@HfV_{s~vr~*~fsww@x~ȥ{@5.(+/KaӝROYw@Hf@Hf@Hf@Hf@HfQZulxtQygrwww§{֧a5.*-15W_BDZOZx?Ge?Ge>Gf?Gf?GeFXRjfozwwwexةY/(,157;@G̤tkJcbaqmfoc`mMc[`-_wwwzΨi=/038@ަS˥xxyya`^^www4wۦ{ȧvШgҨeϧmƥ}zwɥu"R _&^^wwwIwߦz~ywѤw6wwwxw>wȥy||xww.wwwwwwwॊy{|~~}|zxwؤwtwwuwww%wlwwѤx㤊x礉wᤉwΤwwcwwwwwwww(w.w'wwwt?(0` $wwww(w wvwwwtwؤw⤉ww6wwwwwuwwwwwӤw(wwxw`wwwwwww|wtwwwMw褉wwwwwwwxswwwGf@Hf@Hf@Hf@Hf@Hf@Hf@Hf(@Hfww@wzz}tzu{v|w|x}x~yz{|}~}GRr>Fdʠ[l:9ˣ[{<994ЧT=58;>BDGIL̙`PZw?Ge?GeIRomxcm^_qRQdRTiww[w{˥zD>94.تIçq92Hҙ֥[@DFOmWb@Hf@Hf@Hf?GeQZvr~ztNkwp|ww4wyN>950*5>013әߺEIfw]hBJg@Hf@Hf@Hf@Hf@HfS\xq}vtr~Mkvlwwwwʥx}Ӧi=950+)+/13٤FޡJr^iBKh@Hf@Hf@Hf@Hf@Hf@Hf@HfNXtkvvsiulxxvww{L850+),/13Vn@D٠RvqBJg@Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GdHQocnvs~]jww:wy~ɦz?40+),/146=B>BDFʗYWf@Ii@He?Hf?Gf?Gf?Gf@Hf@GdETzRuOsOqwwwx{ͧq;.+),/1479_wwwwz˨pժ\۪QݪOܩSר^Φpå|xwउw9_ _D^ ^www+wͤxz|xw줉wWwwwww3wͤwz}~{xw꤉w`wwvww*wwy{~|yww٤wPwwuwwww꤉xy{}~|zxwww.wwwww;wwwxy{|||||{zyxww¤w[w wxwww9wwʤwwwxxxwwwwؤwwPwvxwwww3wYwzwwwwwew@www??|?????(@ @wwwxwwxw3wwwwLwwwwwGwޤwwwwwwwwww7w٤wwwwwwwwuwzww)wʤwwwwwwwwդwwwwwwwwwwwwww契w3wwwwwwwwwwwwww⤉w$www wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwkwwwwwwwwwww̤w*wtwvwXwwwwwwwwwwwڤw9wwwwwEw㤉wwwwwwwwww椉wJxvvww5wפwwwwwwwwww契w]{wzwwww7wUwowwww|whwMw.wwvvx&wȢwvvvwwwwwwwqvv~www*wjwwפwwwwwwwwww뤉wͤwwYxxVWj%vkonfn^\kUVjSTiWWj`]knfnsquwwwwxww wGww変wwwxxyyyyyxxxwww~tWWjAHfBIf?Gf>Gf?Gf?Gf?Gf>Gf?GfAIfNQhc_lVVj=)):cwww>wwwwxy{||}}~~}}|{zx|opORiAIf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?Gf?Gf@Hf@Hfy@Hf@Hf@Ievwwww뤉wxy{|~}leoBJf?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf&@Hf?Hfv|w6wwwy{}ebp@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf+@HfAIhwvwMwܤwxz}gdr?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfwywVw椉wx{~miu@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfxvwLw椉wy|snyAHf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfM@HfBHevww5wڤwy|olzBIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf @Hfwwwwx|oo`d{Y`yX_yT[vHOl?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf>@Hfwvwwx{dh}X`zX`zZa{X_yQXsEMj@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?Ge>Ge@Hf@Hf>Gf?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Heww;w餉wz~hj}OVrQYtSZuQXtLTpFMjAIf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GeAIfVYnvq{}z}mhtLPi?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwwwwy|ej[b|LTpAIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeFQs`u]\n?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfwwBwx{ekahciahSZuCKi?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeBIgR_ks~[[m?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf"@Hfwwwwy}kpdkflfmgmgn_fNUqBJh?Ge?Gf@Hf@Hf@Hf?Ge?GeBJhNUqbjvzwt~LPi?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf&@Hfww%wउwzxygniojpjpkqlrmslrbiT\vJRnEMjDLiEMjJRnU\wekqwy~{yvwnu@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf @Hfswwawx|kqlrmsmtntououpvqwrxrxpvlrkqmsrxv|w}y~{OSj?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwwwwy~y{oupvqwqwrxsysytzuzu{v|w}x}y~yzz{hWbmfntozohr?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfwwwϤwzrxsytzuzu{v|w|w}x~y~yz{{|}}~}HTt>Fd>Ff>FeJPj~{CJg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfu@Hf?Heww.w뤊x{|y}w}x}y~yzz{||}~~yAJh?Gf>Gf?Gf@HffdtOSj?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf5@HfwwJwx|ޤRvz||}~~aZ`IMei^`xg^]n>Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwwbwx}ƥGܢL~ҫiƫKҗOĎSݛQ^jeq>Gf@Hf@Hf@Hf@Hf@Hf@Hf@HfJ@HfEFbwwrwy}ʦ{FBաQգQ9ެZ̭JJLNPYnhr>Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwwzwy}̦wEC>СUơc9<Ge@Hf@Hf@Hf@Hf@Hf@Hf&@Hfwwxwy}̦xEC?:΢Vt::<>??CFHJLNPW~GOmGOmqxV]v?Ge@Hf@Hf@Hf@Hf@HfF@Hf?Iewwmwy}ɦ}FC?;7ФT=7:<>@BDFHJLNOϚbOYv?Ge@HfYc~o{R[w@Hf?Gf@Hf@HfQ=I^@HewwYwx}ĥJB?;83ԧO?588:=@BDFHJLNėeYc@Hf@Hf@HfDLjhssXa}VWkWViFŝ|>Geww@wx|SB?;84/۪E=35;ZbF?BDFHIPp~alBKh@Hf@Hf@Hf?GeKTpozu}䃂2irww#w⤉w{צeA?;840+:yϪ`5149ҕݶMADEJș^wgrFNk@Gf@Hf@Hf@Hf@Hf@GfPYuq|vtr~cmxT]zww wwz~ɦ~E?;840-(+/,/22Xł?FØ^}|ujuHQn?Ge@Hf@Hf@Hf@Hf@Hf@Hf@HfPYvo{wvtr~qmyp{wwwwy}ݦW>;840-))+.021`Ɍ?FsuvkvJSo?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfLUrjuvvtnz)p|wwHwx{ʦ{B;840-)*,.023?[@DJxgrHQn?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeFNk^hr}r}Ecpwwwʤwz~קa:840-)*,.0245GȁˌY?BDFLs_AIf@Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GeAJjETyXa|0iswwwxwx|ިQ640-)*,.0246779<@BDFGҝ\_uBNq@Ge@Hf@Hf?Hf@Hf@Hf@Hf@Hf@Hf@GeBNpSv\t\]ww%wۤwz~æK30-)*,.02468:<>@BDFG΢ooU}DRw?GdAIfKOiFLgDJgFLgCJf?GdCPtU|`^P_wvw|wx{¦ݪO0,)*,.02468:<>@BCHեiw_YH_bbt}yzu|txnrK`X``]+]wwwʤwy}ԩa5(),.02468:<>?AQ̥x__m|xwz```_\\xwwQwwz}ŧجS4+,.13579;?MҦkfr}ywwԦt&U ``_eZwwwwxz~§ϩj٫SF?>@FިQ֧b˦x}yww契wTwd^ ^_^,^wwwwx{~}zwwwywwANdANdANdANdvwwwwxz}|ywwww wxww!wwxz|~|ywwww wvwwwwwy{}}zxww契wxw www wuw褉wxy{}~}{ywwwӤwQwwvvwwܤwwwwwwwwwwwwwwwwwwwwwww wwww/wΤwwwwwwwwwwwwwwwwwwwwwwvvww!wwwwwwwwwwwwwwwwwwwwwwwwxswwwwwwwwwwwwwwwwwwwwwwwwwȤw)xsvwwwwwwwwwwwwwwwwwwwwwwwwդw6wxww wwwwwwwwwwwwwwwwwwwwwwwᤉwGuxuvw www$w'w*w(w%w!wwvstvvwrwwwwwwwwwwwwwwwwwwwwww줉wYetz{w w"wCwfwwwwͤwڤw䤉w餉w줉w뤉w礉wउwӤwƤwwwwwRw1vvsywvw_wwwwwvvvwwwwwwwwwwwwwwwlwwwwwwKwwwޤwwwwwwwwwwwwwwwwwwww餉w̤wwiw2w oy{4bwMv嗀uxrznpnfne`l^[kZYk[Zk`]licmrio~ppysuvwwwwwwwvvxyxwWwwؤwwwwwwwwwwwwwwwwwwwwwwwwwwww꤉wwzw5x vBKh4Bd][kMmen][kMPhDKg@Hf?Gf>Gf?Gf?Gf?Gf?Gf>Gf?GfAIfEKgNQh][ktjozsvwwww wwww8wwӤwwwwwwwwwwwwxxxxxxxxxxwwwwwwwwwwwwꦊwu]GMgR@HfBIf@Hf?Gf?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?Gf?Gf?HfFLgZYj{opuwuvw wGww꤉wwwwwwwwxxxyyyzzzzzzzzzyyyxxxwwwwwwvtq[ZkBIf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GfAIfCJg?Gfo@Hf@Hh@HexwwAwwwwwwwwwxyyzz{{||||}}}}}||||{{{zyyxxw{sa^lDKg?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfRAGe@GfGUUxzw,wwwwwwwwxyyz{{||}}~~~~~~~~~}}}||{{yynqKOh?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf AIc@Hhwxwmwۤwwwwwwxyz{||}~~~~zicnBJg?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAAFc@Hevsw1wwwwwwwxyz{|}~|_]m@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf^>Gf?Hfxxw`wܤwwwwwxyz{|}~}XXl?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfn@Gf@GfOywwwwwwwxyz{|~VXl?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfnAJfAIfbuw wwwwwwxz{|}VXm?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf]EBcAGewww-wwwwwxyz|}~Z[n?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAAHe@Hfwvw4wʤwwwwxy{|~_^p?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hewww3wͤwwwwxz{}~dbs?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAIe@Heuxw,wȤwwwwxz|}hgu@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfH@Hf?Igxww wwwwwyz|}nkx@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwwwwwwwyz|}olyAHf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfU?GfDJdvvwwwwwxz|}{tsnokl~jk~klkl~\^sAIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAGf AGft{w[wwwwxz|}rqae{X_xU\wU\wU\wU]xV]xV^xSZuEMk?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf>@Hfvww.wפwwwxz{}ts^czV]xU\wV]xW^xW^yX_yX_yY`zY`zRYtELj@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAJ[@Flww wwwwxy{}mnY`yV]xW^yX_yX_zY`zY`zZ`zZa{Za{W^yLTpBJh@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfwywewwwwy{}~srZazX_yY`zY`zZa{Za{[a{[b|\b|[b|X_yPWsEMj@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?Gf>Ge>Ge>Ge>Ge?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf;@Hfww'w֤wwwxz|~]bzW_yY`zZa{[b|[b|\b|[b|[b|X_yS[vLTpELj@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?Gf?GeELhSVm__qgesecs[\oLQjAIf?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfk?HfCEdtswwwwxz|}utZa{KRoFMjIPmKRoLTpLTpLSoJQnFNkCKiAIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@He@GeNRkpmywzYZmAIf?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfCEgAGfww;w餉wwwy{}kn\c}]d~Y`zGNk?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeCNn^lyqwINh?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?If ?Ifwxwwwwxz|~gk^e~_f_f`g[b|JRn@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Ge@IgM]eu}{NRj?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAHfAHfuww=w줉wwwy{}gl_fagagahbhbi_fPWsBJg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeFPp\tnsrs|MQi?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf$@Hfvvwwwwxz|~knahbicicicjdjdjdkdjX_yFNk@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GfBJhQYtjvutrrsyyFLh?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf-@Hfww.w㤉wwwy{}qtbidjdkdkekelelflflgmgmbhQYtCKi?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GfAIgNUqahq}yxxvutsstltAHf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf1@Hfxuwzwwwxz|~}|dkelflfmfmgmgmgnhnhnhoioipio`fOVrCKh?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeBJgMTq`fntryy|zzxwvvtxZZm?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf/@HfwwwǤwwwy{}gmgmgnhnhnhoioioipjpjpjqkqkqkrlrkqbhRZuFNkAIf?Ge?Ge@Hf@Hf@Hf@Hf@Hf@Hf?Ge?Ge@HfFMjRYtciousysyx~}|zyxxwu|zELg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf)@HfwwGwwwxz|~oshoioipjpjpjqkqkqkrlrlrlrmsmsmsntntountio^e~SZuKSoFMkCKhBJhBJhCKhFMjKRoS[u_fkqsxuztzuzv}|{zyxveao?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfxswwwwx{}ipkqkqkqlrlrlrmsmsmsntntntouououpvpvpvqwqwrxqwoukrhoflfmiolsqvtzv{v{v{v|v|w|~~}|{zx{{FLh@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?If?Ifwwwˤwwwy{~ntlrmsmsmsntntntouououpvpvpvqwqwqwrwrxrxsxsysytytzuzu{v{v|v|v|v|w|w}w}w}x~x}|~}{`^n?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?If@Hfww=wwwxz|~msntouououpvpvpvqwqwqwrwrxrxsxsysytytztzuzu{u{v{v|v|w|w}w}x}x}x~y~y~yzz{p^uotz_{wxBIf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeAHfwwwswwwx{}rwpvpvpvqwqwqwrxrxrxsysysytztztzu{u{u{v{v|v|w|w}w}x}x~x~y~yyzzz{{{|nFQq?Ge@Ge@HfBIfCJgKPjifvPSj?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfW@Hfwwwwwwy{}pwrxrxrxsysysytztzuzu{u{u{v|v|v|w}w}w}x}x~x~y~yyzzz{{{|||}}}P^?Gd@Hf@Hf@Hf@Hf@Hf?Gf>GeTWnjeq?Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf*@HfwwwФwwwy|~{~sytztztzu{u{u{v{v|v|w|w}w}x}x~x~y~yyzzz{{{|||}}}~~~sBKj@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf>GecbsxxBIf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@If @Ifww1w꤉wwxz|u{v{v|v|w|w}w}x}x~x~y~yyzzz{{{|||}}}~~~f{?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfCKg}KPi?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hfr@HfwwPwwwx{}ץdjy}w}x~x~y~yyzzz{{{|||}}}~~~hx?Ge@Hf@Hf@Hf@Hf@Hf?Gf>Gf>Fe?Gf>Fegdt[[m>Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf.@Hfwwswwwx{}SIzyzz{{{|||}}}~~~mDJd?Hf@Hf@Hf>GfAIfSRcgalnkywr|x~lfq>Gf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@He@He~wwwwwy{}ŦJDנP{|}}}~~~ѧrߝKk\EKe@HfFKee[azZ͒Tϟp|qu@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfH@Hfwwwwwwy|~˦zFEC˜Y}ԥXµ̩|IJߞMT~WUٚRQQܢezyAIf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Ig @Igvv wwwwy|~ѦoDECAbǟ`:EŴ˫IIKLLMOPQQ^{DKg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfE@HfAGfvvwǤwwxz|~֦fDEDAAlt=;;C̲ϫzHHJKLMNOPQQZ¥|GMh@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Ge@GewwwѤwwxz|~٦`CEDB?BtD:<<=?ҰvתjFGIJKLMNOPQRWĥ|GLh@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf(@Hfwwwդwwxz|~ۦ]DEDB@=D{դP8:<<>>?٭f·ίQDGHIJKLMNOPQRUƥqqPXs~{CJg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfZ@Hf@Hfwww٤wwxz|~ۦ\DEDB@>;ߦDȢa89:<<>>??DFBDFGHIJKLMNOPQRUƥy|HQnAIgdn{qv@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@If@Ifwww֤wwxz|~ۦ]DEDB@><9ަEq98::<<>>?AABCEEGHIJKLMNOPQRUƥ}R[x@Hf?GeQZvsY[p?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfwwwҤwwxz|~٦_CEDB@><:8ݧE>78::<<>>?AACCEEGHIJKLMNOPQRVť|]gAIg@Hf@HfCKhepvcnFNl?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf%@Hg>F`wwwɤwwxz|~צeDEDB@><:95ݨDߨC588::<<>>?AACCEEGHIJKLMNOPQQYzgrEMk@Hf@Hf@Hf?GeNXtr~vgrIQn?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@He/@Hfww wwwwy|~ҦmDEDB@><:974ߩAۨI4678::<<>>?AACCEEGHIJKLMNOPPTtzo{LUr?Ge@Hf@Hf@Hf@HfAIg_ivwkvLUq@Hf@Hf@Hf@Hf@Hf@Hf@Hf*AHh?Hdvvwwwwy|~̦xEEDB@><:9752=}بM35678::<<>>?AACCEEGHIJKLMNOOܝVzwsT^y@Hf@Hf@Hf@Hf@Hf@Hf@GfHPmlwwwnzQZv@Hf?GfDKgEKg>Gf@Hg@Hfsywwwwy{}ƦIEDB@><:975308vרN245678::<<>>?AACCEEGHIJKLMNNЙ[uu]gAIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeR[wsvwr}Wa}TVkqpt*twwzwwwy{}QDDB@><:97531/3æk٩K1345678889:=??AACCEEGHIJKLLNeuvepDLj@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfAIg\fuvvt|}|ҥuwwwXwwwx{}ڥ_DDB@><:97531/-.˨^ߪB02345679UzȄkG=?AACCEEGHIJKK۝St{uwkvHQn?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfCLicnvvvvwqzY`kgqww7wwwxz|ϦsEDB@><:97531/.+*ԫOʩg7/123456?Гd>AACCEEGHIIL•bvvwo{MVr?Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GfGOlhrvvvvtq|it(.>YVc|wwwפwwwz|~ĦLCB@><:97531/.,*'ޭ?Ǫnë{Ϭd?./0123457ѓZ?ACCEEFGIΚXzzuvvq}R[w@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeHQnitwvvvvso{sgrT\wwwwwwwy{~ۦ^BB@><:97531/.,*(()+*,./012344Vӡ@ACCDDIʙZw~uvvvsU_z@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeIQnhsvvvvvuso{vju(\hcnvxw~wwwx{}̦yEB@><:97531/.,*()*+,-./012342{JACCHc|tuvvvtXb}AIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeGPmepvvvvvvutr}kwQE]pXnwwHwwwxz|~ߦTA@><:97531/.,*()*+,-./012343˄N@CCHwsuvvvvtYc~AIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeEMj_jtvvvvvvunys`lwwwԤwwwy|~ϦtB@><:97531/.,*()*+,-./012343mEACCDݡL{uvvvsYc~AJg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfBJhW`|p|wvvvvq}ephswwwwwwy{}ާT?><:97531/.,*()*+,-./012345DĀ>ACCEE۟N~uvr}V_{AIg@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@HfMVrgsvvvq}gskwwwVwwwxz|~˧zC><:97531/.,*()*+,-./0123455d֥F@ACCEEFٞPlxQZv@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?GeDMjZdo{r~issT[ywwwԤwwwy{}קb=<:97531/.,*()*+,-./01234566YإƁE?AACCEEGGڞPpd@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf?Gd@HfPYuymyjvvswwwwxz|O;:97531/.,*()*+,-./012345677:EIB<>?AACCEEGHHۛK~j]AIf@Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GeAKkI_H]T=Cbww?@AACCEEGHIHəaZqBNr@Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GeCPtSw^aaww wwwwxz|Ψs?87531/.,*()*+,-./012345678::<<>>?AACCEEGHIHԡbmUET{@Ge@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GeETzW`_[ \xwwOwwwxy{}Ѩk<6531/.,*()*+,-./012345678::<<>>?AACCEEGHIHҡgn_YGY@Ge@Hf@Hf@Hf@Hf@Hf?Gf?Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@Hf@GeFV~X``^OhXww wwwwxz|~Ҩj:431/.,*()*+,-./012345678::<<>?@AACCEEGGHޤ[q_`[J`@Hf@He@Hf@HfAIfNRjJOiCJg@Hf?Hf?Hf@HfDJgEKg@Hf@Hf@Hf@GeGZZ```]x`TvwwMwwwwy{}Ϩn<21/.,*()*+,-./012345678::<<>?@AACCEEFGۥ_¦^``]NkBLm@Gd?GeXYm}zxst{pr{oqqqwrtrMQh?GdAJjKd[````[O^ww wwwwxz|~ʨwB0/.,*()*+,-./012345678::<<>?@AACCEEI֥h_```_V~H]LTr|}{yxww~suMdU{^````_Z&[xww9w変wwwy{|~ħ۪Q1-,*()*+,-./012345678::<<>?@AACCDPΦwd`````_}{yxwww{_``````_V Vwwwwwwwy{}Щk<+)()*+,-./012345678::<<>>?AAAG٦aĦq_```a~|zxwwwwѧs#Y_`````^lZwwwwwwxz{}ç֫[5((*+,-./012345678::<<>>??DܦYʦ|_`_c~|{ywwwww\w`_`````^E_ZxwwDw褉wwwxz|~Ĩԫ];,*+-./012345678::;<<>Fڦ[ʦ{i^h~}{ywwwwww w^_^_``_]^utwxwwwwxz|~̩p٫R<1-./0134567789=EާTҧlŦp}{yxwwwwȤw!w^] _o_^ub]wwwwwwwyz|~ȨzѩhثVޫKD?=<>AFߩMۨWԨf̧wĦ}{yxwwww䤉wCwwYWZ2[\ww!wäwwwwy{|~§çç§}{zxwwwwwfrvvww5wդwwwwy{|~~}{zxwwwwwwwwxwGwउwwwwyz|}~}{yxwwwwww wx|wOw㤉wwwwyz|}~~|{yxwwwwwwwvswQw⤉wwwwxz{}~~}|zyxwwwwwwvulwJwڤwwwwxy{|}~~}{zywwwwwwvwwwqw;wˤwwwwxyz{}~~}|{yxwwwwwww wwvw(wwwwwwxy{|}~~}|{zyxwwwww⤉wbwwxwww契wwwwxxz{|}~~}|{zyxwwwwwwĤw?zxwwwRwѤwwwwwxyz{|}}~~}|{zyxwwwwwwwvzltwDw%wwwwwwwxyyz{|}}~~~}||{zyxwwwwwwwˤwUwwwwwOwwwwwwwxxyzz{||}}~~~~~~}}}|{{zyyxwwwwwww椉wwrxwwwwkwΤwwwwwwwxxyzz{{|||}}}}}}}}}|||{{zzyyxwwwwwwww줉ww6xxw}wwpwˤwwwwwwwwxxxyyyzzzzzzzzzzzzyyyxxwwwwwwwww褉ww?wwusww_wwwwwwwwwwwwxxxxxxxxxxxxxwwwwwwwwwwwwԤww3vws|qv w;wwƤwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwޤww\wvvurww???PNG  IHDR t%IDATxud[qw/nZҖww(D&%@p Adfvv;k^9y9u_J;N;N;N;N;N;N;N;N;N;N;N;AN;k~ mc|QN]J9~2mT^i9 JuzְU?ˀlP䘲E`-Bv}+ZkV)+ܖ3oY,w]q]X$ ovڧv7 ںdjۂnhU 5._ٺ ,tZΕ;-y}˗ﴸƽ/ c+W]NN=eemNBs`^|.+g|0^N֞96jd̞re,g+X̵mhZ}*G7nYպmҺsewі M!-~d.0zИ~0ffg[6TѦHV(Etj̥M]kO|̾MfJWCEQJ?ջć֬,fW'J,&naLT'dc'#9O;aMP˫^wϳ>_z6}uivj?ǿ*)7Lm4ii۲rPe~QT4g-wJp Yah!{xzݍ3.i1s^2ͩԞ?Dumc6(/R;R*k.xϗL{ƖU7a!SLᤝ!W16@>r :7GT{-S)oR;:E*괵5h[<;^[#Z{d/sW-C5Gg-5qƞ喋_d;]hqO_dh=~_BZyg[ɾ6zW X u5/x;S)5%g9iQ]<"9D{|Z\OώgNoթxN'Wjnv[8n kImԟaukmV]AKz{~έen4-/i<}y;ѮwO.^ߚn-*GsÊ:8%m6R5>PJ*5!s)׈Z([?*aK۪òZJ?ۮNZb浱-Plf6w~,Vm䠚ߴ{+o飪Yn}jqmOVUx |1S/hgVw(w ŸBVu%W?mMGn̳uFrmYs+Rn{󗺗 iEˏv)hW8̋w_SP:\ӽqXe{qs^X0 T玀j4U$EE 7ސm~̷8fk6f=AڊhoYV1u6^յrN=]jGU_jS2N>|_VTP_sj{dڌRG9Kq&`Tm f yAfN}}r kڑ"gYU.sΟ*43fѪPZmQ^ܰ\+M\sNjEcמ'><ƿ둵xv}"22v`yLUXz,r:Rˌ/5}[mZ[שS0u''$uÖ\’Ջ<``ܠ s,] TLZ%żVDEGq搳QM mVT{άY֩ tƉqZm췪UER3Wb+>BhY4Lߠ3o"|ߚF[r+({EĻ}xD(_RΪEL4tj\b:*B fkhMXwˀg+o^rI3/v?7#i+_LͲzcyI^?V|Uqjq][E,{X*:M^NsV@g[85KXfYhV$WiG.l鄵0Ѡcf/6ۘUpѠUXnK)YɵP}V@QgMM(h'#},jRQx$YV~1)?}b4RV0^1HQ,71 { PsPHTjΜY''n%}l퇃o<Wg]{ǽ_Lv?rAcJ]][ke14/y`O,V}e6}u5ߓ?ީF,ccC4d ȕɑ8\PC4ӊ8*VBEs f3,ylPUk3yZ@kMT/jQp 9)kk&:Vdwn ?Ak0Q/MQ?z뫦FM:b#VEr"nd [J fJ"^D}KJ=yLK|uq-O~[m-:cll;'iEECNm2iuuD4dkk#gX Qtcmob]]$ߞ^kUA(gK3=S;ck}&4er(`LE܍zS(ǚe6.V9-e`W=OYS03:`(eKmR.{x܄&2l!_rVkOyb&fQ;ZJNAhts>z8`mkͻu ;q-}ji=\}'|m 1NX5o[jw6+ms>>*V1râbO;Ztx?vgus,irE~_`Úd@n1WN$&&qr:Vk d]fAaFno+ނtsY[W%;ca tDU1ٓ,o!4YFG6UQ43ǨZA搓-grMlyмS=@XT-sfէ^2#Tԕ_&sT*3)1X[N t4_Σl]Հ<tO)qq9&җ_{˳U~XSL,'RN1|SXCܲ>uЍK-0"*o߮g *lM>~E~j+[㒜MGdwnw6?N@lJFY閶V3kdmxZ<~uoz3-nְmk'7`V{̩eA|߳6h%*@yRU -0IP{(JYV/րrI~-3GUCj@HnKUc,yύ+rAS2TQ-SN1؃8\Ah'+vi$܅_S~Oy<`$ḿ\_n\y/`b}ok9 l ]dvv0눶Z{ە~t7v/⿾|G;-%_=^N9*[W[ly,_sԩP_-ݶ?qRβ:uMfWCJ&t,d\JdL&2!`21#ҕtG`PedBfL&Y(7dJ>dlb/2/J6ļHa&ӚdZ>vY˵%KeԬpnVͲdb:e Y%5Y!By>#KFe-B,eiVvβĦq{̓Yc3Hz؊,ElIΨ?zh*rNXGDuz5M_-Gx!ϞAmnПQ-R3hev:<+mCME6&$}һFg\SXۘܓtVι<;ۈwMs*Æ&`e[Zd3vϥCU,hii=P upo3Xݚ(9Mw̱ruZK4m).5@d;kU[n@j:VW4hV{{'i4P.|-hjrɨ1X=}YEmeF`)?6üNaf[{F|YΤplrm9rSv2xYi)x'1~/S6*[x:Mˈ2 /yֳU_=P: :bNeicY~Q~|~ ݂tWviNѶe룕s(?G4zA}lo6[ 6N<[c;|`S='whBmF&C#!6W`f{4i5mrd0!ӼCtDž6)rTO',Wv&蓞Z9ZBrߛjhc;-F[%b`ŬEgz|{༿NM`m Q(}kPƹ57f^5H0w0qiD|198Lnuj8.ꈫˇA݆rC$\pGo <^pSt'-Ùn0pu1Eaa]Y wx=|nOa}[ [}X17,QFkk=4E_jlĝg2Qe}kTq]ع,r_u#o4 ? ]{N#di֟5gN~Zֽ=ck4m}xD[@VmXܒ9@6H 9H/Y;]M|H#8H7X_tO71ޝ6![,ǡs4clSq f̝lt1GݎelK3=?:W%qLP\u''8w­]3EdyLyhTmxm d|vu ך.cr1&}4BL#=d ec#A:{/)Ɇsd@Y[Tf/F{Υuf(=eS=qW^tÿ,Qo&vX| 23W5>nRy|Zzrg{Uˬu?^8jjhv8}\Y2.TӗMqP>X¶#TnwkK-5g/,lirW~}A 63n'\DpUߓkaV lH[5>&߫uc^&;o|a\jwȽs^)9aTn9Ǩϓ[bfoP"k'E,Zj+1R5w/j͏SUsjCW.gtZrO qq';^ԫ{m/^<`mhJ?㮽p㙶さ ۶k#Ys}k҆2076G<*ti6%MW3g6Ji(y9&O4Ng(ɳip%Y(2د ?l6!E'FmMHu"#Vϳar&>˭"n]w`Z9|ploLdL9ؑaZ\G>ϫXKog66yUE`[P;+sԩ J2Sk[.QU3Urf? o[eNSU~l9 Yj1g]'r:ii-a2WbjB7'1@ӡĝ3T`oc]x|k, epfeyr_g8:锇FUwy$OzXR94wQ0}{Փp>8cƓ׌6Ssy7 kz@Ҙ 6lm "Y/@g=!d+g8(}@v V~h{j9GbstH2V9?Ew\5Zm H3+ǡuG 4-r`̟=\;(8UR^͎U{m5rdn+ad ޠ4{E3.fIEQtdZ)YO7arQѺm}PQEe0-1ܗdnճZLAww`GAd<)('L5C3 h}nq`2>͈?n 0 )OB,?]m? ğmVZW_j_9m.}xi;Оw/y$eJE0T,2W;eqmQdme8_jn5SI~cȐ L'qv6Bӎ#9>C:7zv&y#3s3y%O Y-i2씹N\EJ44g0%fEn;n$M %/eKI&e%ۓ)2o5yR $7I[Vt8 M!Kdͫi'8#΢,qtVGd\{d,Y. KdL%KeLY.oEl#ݫsUX2,ݳ 2 f!~,eIuȲbkRm^Y&"WȲ.MG1H,h +$y,]A8v//qt4jX0g(Ag$zUroFE4$W![Ja5o MO4<:tfo;'Z&\_S镧 "3N:ٌ"]V>&fȲ'яt[G:'Hr %ˤK-גHgC&s'JVkn%5gӒ/ICs?Y1s9,jX>&fVƑ5HHO y,=3=2) CvuSNsN!wSItr +r)A:#=ғNDK\N^n'fSbp1N%;g@Z.=eW&bHd| djlEvHjX6Ts3d|x({[dQwv'?O3PoҪ_nĬK3y7|E:J|ii&MIRMh5 {mh}K_L9tO0-5Po5 ڗv@V9|Uafᤧҝla;-}^q#S9,I75>L9lk[G)CjPK5ܚ;b}颪PݍwUzk2G眞LWZ܉-}𶦜5wK?\O٧W0 V(PWnsUWymf߲aRG#o<}ן-pkr!G|;S;giW9vˋ0kt8kxvlS>ԧnbݽW; _Ղ ņv^嗌 ]4WB!H1ڤ[ wczk$.wdH.я'1*OLnSC8- -lƼa0YvťdP֕t{S}M\i3u.&'LEyt<{}Kcp^&<_g姎v!q2?jyձ<̯G ~y0\ت r!(*=P`yңZ-RQ)7FrR*7f ltْh0ovg:nKj~O=({ ƳU *PjͤZM2ڬO4)uW)~{}Z3mOЮ9s8 :dՂm;HWE.a]{fjb__&iN?ܙ^Ū%vO5fX A%r5ldbe+% t[ 'SNA_Lxd!3`2ֹ!5D2W+ٶL>[@;Xmcy0rSs ݙ81Nfb 'MrE~t<l nl+ ,P/;zܭs6 s+"ۙ s҃b&`{*,\ھ]·̦PUؐMSYʝtԣwe0<)>Th)m #Dn2lӟrv9k0lSS,k2lR.CHw[),hp3rn+jE=>4=%yJ-RuM`ʱ>)0ZQ0Cۻ`YI2oz,{`2(߭xzg?ܭ Q/ASˬ\QQk"[~CʊeN㏽E/ܹrG/+'UM_?r\h ccx~i>0aEh5Ղ%ZLˀ4 !\[3PfhimҐ{ry%E^d~KZUW`o#krwNU~{luarq^29|j%>UW-܃&yZvr0 (<+lc܅YU)g۫{ 7&ʵXe$6Iy<;bS-=Xts^Щ\5rh18}1n,OfJ50}js4aE_.7a9mz) B~CxGKrK郦YbZ:Kot-7G'^v//ywWtP*s;ܙeÙz? &6ƥhpwo;'hO;iѳ0EZ9!\;& iԵ f5Қ[ӟfew&g8y3I%=n$##HIʍx,=ryiu>'cr;i#ܔs>{Ѱ\E:S;4fz Kg󨬞DVIWW|ߒUr_!d#2,5r?N'i";g"ge%l!hv:;JG,Y'ĶDT^s1M2Od|wN"Y88̓l.i%;/IYEdcp&93,/ɇ'b;.d|?]Ȏ٣6}t!?}[[ y,|N~71sT,Kt*'K4d\&ݝ03ȼ=' }ǓY$!;[L|m\6aQ>ǝNJS>"sqdZ=2'IgtΕ% p>n$<3:}H!|^LV#Iy &M+א^5i7ei Sy'wpy.Y=s#N !/ 4\C:)an&ܜK}k#2&e0ִ.34#h[yY8oquz)gvnOr\<2uQuy~c+W_fꟑ~@hZ$RZ2<2vIk9CH;f;Usf4eۉ ͏/|dlE\/y%p;(Cs55F ͝5,L?rwNo]݅MI`g~GKpFBxnlD^Os94ec`)–;Hʶ+raN-晬INUH]c&:hu@/z hN6q\-ظZ)ˢ1d'PfSI( }Թ+>ʹTPWI?tWy ʋ.]JX1r J1\ 8}t3?۸ۖkzgN5L׳8*'-wS6vv_yf܆.#r-=e>[z{(;aS#J_\]Al@y\V$Ԛ@uPn @n#YŜ29G5a FFl 5Wv!PGʫr y fК˯P*=Z'?* ՝nX~gް[e3>o3po޽g?/ ȱ_]A bKlk~RD|Rw*ִfM'o "V3!}՚yWǑip2!~B&iՉ ܑa@7~1gd-s"_H:!|LZ}3B_9/G}/mȅtzmW[`=.F % o[ĽTߘm[jXCki%>pdz+d;k$}\N*d y4[&u70+y&?$8Қl>i3NvZwjNҢ.҅lcOG9Cf!f`KZR @Z_!*醉}9 o<cƔady0(~Ɨ0u+`{MɑbT tT.DW2Q~ki_ --R-3옣J_4'arTnŃ9v{~W)fr##ܑj绡1ZCs 6#(Ck?_ Rv+{5/y_V괪`1c\QwnvgI'_lmw̺/<G{ w䄜?CTuei,pd DizGܑs2%EkFgTN#KGes7Y4]s*]y7욭;)d|1dl Tz!+9.'=2%WlOgY03S5W~ѺQ#1u~9ܙ/rleL?%=oӋ|FNo;G:WuLڍOLv'L0._mA.3a-]~ɤ+;*Ww)7W8"5HBi{bY}1ԽcZۼy~~ͥoei{Fr\[N[mcW<}Yy::d@^1y d,ҟ\;_5zDjb5ӟ|tu7МfHcE}?fk JH5pRzyԙ?3&}gs vEǤ[:Zs|b izy zr@[ 9 :5~j1Lv5̖ɶX2w`-҆(6ƠKr'Ж8<ZRߜeJ[Vmܝ)[MWqò̼m3X<&[nfr݇U47;VL֚hI6*n]CsTX~C>@Azg0ʈևiz|r v,:]͖Q9pt9ul4ԯiFyYWa^Fv-RM߸d eP,:{r;XCn ͽr)n&1MlYN?N˔]M>5h5 GWM9c(lz(Sؠ܎/XWĄZ;(Z2˖lA|c9vҜ>J?W#P~&PP^_h6v1썷K>d[UXρfST OWḾS(}g4sZYrԕ?xwOşgak̍y^q_ؽ~ >5-@mf~մ Ƹ34.nE5#3 1nчJnc*=+a4?y13o؅4V}As/RKoI!3-s gdZt݌r%f|?<-ȸ&|ufd'5+[`Ixvƹ7vB2!|#w KdN+1ʦsk􆽘vnY3ʖu2ڥ`Ȇ7Bl)S J}AP+ZL8[5X L*Y]Kiv +m>:ܗ[It\ s2zƔ}kOBtur+xLy5TC썙nHd\nlro= ̴'bj(bze 2/\rH n]U~RJ7>79Ɍr5*>O_F1'{јZzkg9KeZQ9sG{gxJ!Q9RPcmU샷-5GjlX+d;?9쎈({ UOm򽲕N#[gpݸ_rB.̀/\r¥_?\{oɇל˙ˑu#޹Ӂ^{wN[sRKlntZrν,6騍_|iWNX2!w^grEG󛜹)MT_.ư<^MKJN !mI\k>4gy]! d+wfCL>.#S2_%OAOo~n%tSzꏎ/K|MUB:wY;r69Ϙb@dƨ\}XţFȅdN^Vdj^6 m:듽Hw'Oo2#H2M<%6UVCNK3ZYi}hm*Ҷ#2b'*۱d,_R#}r'VuB5xTȀjF{kc@~R ̋pEjd-4ֲ߽6,_PGkt,mQYg԰'qLHC_6omJӖk{G},н\:\?=I}1TF{[Bs]N\>?sHK.4j)h$u9:zZΓX̜2CySr[(8N7_.'*gUwg8poҌs~X2reg#(perxhz\շKe>9l6X˂K{U^|<$ZO%}QH+7Pܖi5]^]s56Δ-d'ʅewʚ1 3}Y}^J<=;7m]>g7uw]ѱ>'.~3_Gx\Iz6\Y?p!\q'6Uv7fm3z%mZ]2wMijOvS+ch0\߸SۈiOr`^pi+i0ִw%5v~~e駙aJ3m4i}U $ϧo p iIqSFd^K>UUL_r݃ݛmV̀H^ܝȽ)I K71]nƬ| tб|\c=a:dPie6{m7ب2:?|'t~}S%',3>LLyKrP_}s9Vsa`snxܭV턩ɕ94c2(CRڽ쁁c?jy&_k2nT>GڦZ5Y c_tx8Kgmzu;UV>d~׭\y7){S2*w٭M纫qryᥥ&ElAmN[wʄq'ZR~WQM1-ZbwۃtϠ%{__2VWmCfjTV}^ ɧLJ|g0ySc5#23W%{o՟|!weHOr5N?韛H}}tN\Y`Gh&4g0ݍ'|325?#Xuu_Ce]2+GL&CST̛V gNbzC6ćj>Zrr9LxI_8aSr9"4kfy<_˿AiVb)|DYέ)4?}͸:Ity!w`6 2+M7Yzt薹ȯ4Զ&ָߧWfKfcM=צ\;reW.@KXfSi-1΁)Mz(e?,k,KҜH-Ƭ V6wٿچ?Pj^X/ǎ|኷?7__^0K<}׮G&?k#iMeP_ ?S$ԩ E('tn,ǻ9s9۾Ϝ O٪W-~|iWj炞8Jm拶&c՝SjۿjWWzK1CS {,tu#JsS myE5>7u򺛜Edqs5Z8wT|AGʀwsB ՛ԥwC  1 $= %rGI>6k?Cɰ7,]Os/LÙڷi>z =ڬ,:-L.,4No9Qy9O)KyOr!RPseX";P׭A6*a˅7Prt]O4cC=E2PB~Y.C7M.)WOgrePr=1(4\.l]5>.7$ esܓZ&MKo/70ʫ9X3\ug" uwRA8##;/ɩކd#g]pSNf>dXn rWzV͹r>sFd8Z?83 'Zbts y4s"25=JITUpҟtIL:y:ϒFT12=OF 'K1-!wi|r{^C}Jd͕W݅;ܰbu[ ,+/t^YO;nYrSwOE}vʕdcʱ:73rw^./p V(W,ڕ5>fk܅PN:z8ϒ57)=2tLWCIܜI pǹ|[I1 CIr j9H`!7'`A URGi***eľyWRN]=9l7/|]G3c'u3hS<ʇ{X>W|/-P^iͲo>9&w2[iμQ[fjg]~?k`c~^?SleOmb+|9^TUԩoHOoɶ"CҏtM/Ȑܑf?:̪j}t HH(J L ! tw13LϜ9wk\T>ófk7gp\n'@bd AZyd:ȩ"$$N=TKA*x%3( '}鷱.Ey!m g7ltI8 '%Bꀸј( MV2U.J"YG] rYI qK rY QR:JICSɧ\OGGv_ֱ[>s旓.ZoW|m+ݱ1BLINTkK7e {d}qN z0v8!!pGEp_ \4@]tVE Gm҉RksDH`+( fRC 3¢kRxp iu.TkDk1]\,_^ K~jN@mɛ[j95VRafe!$ċ4J{ L}Z5)j7f@o]SQMzf!/sO57M] < ][KȳW Wu\g]O%q!L]b:g~&{6{CHu3u>Zaヤ7/?Vx+0#6}GפRp8cBJ3A" g \% dS䔬z*iN2=Y.-@=LF\&B:d1@X 3 D*-sAb$FlH*D"\FY++@:K4- |RY ''+d;Kl2$ٹJ@bY\eDrfJnAƀxK"_<AKK`ng"?{A)ɡ_2$Lzj< uZ+wFqſ Xf )q7q]q1u!`:t }Pt^Y0IW `(e,%A.kAzKF 2ƿ_]*YKXr.kXH6"=H|'s7,K@N@l,2d Ud z6&erWECR 3} 3OK^e q*wAܩt86ꂉxU/Z!6~S8p  f̪ X qL=W|CU=rDZ+!Nn-R&l@onOte -j 2@ΓR@1K_PuM$_ ]MCa_W@A'I;e0֖p;ӣ%(EfHUI;Fp6HO HdtP@Z(+=B8t@IwLz*@߬60MQ%;KkuoV7 DͪRGKG/L5<1ɡnk@WTV*6'?y|_ [ ^̮>G%d,% &q:HD\pٸŇ\"%7 $Y'$" ror2,] oHz6 ` IDd$JL$ht)@se' ^$IV~AG{WLnQ;}d3Pw~@ Qu'8 EZ*;Mu}^5xiwUOM (..-}t#MjwT񎔂K6`-M7Qs"U5jTPKdB$:@ nБ7$5Q>)@ Gj<9nѹTIxr:SCm?'V{-&6浔PYLE '?Q˥w>87g=yT=aJLG9l:c\ۛ{sar?Fӑ~ 겵\%{.8(E/>N~ W+ Bzn2M30H 3l0)MADrL rN|JAR$R$+WN+D LY#\>n|#AH6 $ AD4`7`q9νH$! u{8e9]A"%BQ8}nLF"Y2URr=c4YP. kj j!ā4⼺64BCʱtk R*$QgU!$PL;Q7.*)q`.{@ >?JE[hH` @W[J;KW=1_\}q%o@m ji u,qAWւiyN}ȧ0wR xIE8Щ@4L%d?Nl%NW" dK@VYO\:e4Vlgy&&k1 rFb.'d:`-N?]?%(TJܞtw/Ye fZj?"AZEjJޒQ`j|v=_ :/-@ 8 ռaHȺQ.xR+y NMj; nK>q;3FIc#@jj)[6p4,@eI*1hVHjRK/PETg]}&Y51p|r탆gUL,=ƙ̡|zGiS6gugΛt@M08(] ͛`إµ&Oe'<{Vk5{8Ho9/DK%'&[c U5Ta҉g 5 fhE;&N7(JQ l sjj4M4yeD#WBCzS<4u խXlbE7w.Z}=Pz.~i`ynui,Ȕ{K=z)Шߐ01rd Nz,1oe7Y9Ty& %˙ e٭ wqpNB\n9jEhl4__a5LFۿH0NJ;<&z3]W׳N)]sU2(m txO6Zӟd7q{SPm/G߹Mb0n!H2uc HvMq,PpCT#!5{̓.W\Rr7#Vz (b i"[*ZFW*hi1T=UATzXy X? }_R>@*W Rv=L[tz9UU)W1poV=#x|4,plljSv!jtro9$;M/,^9s7~K4]MK-g+Tj5~[~N<|yl}*Xnl忋4GyBWg{Qms[(i'Aȗ J|(¥6sbwzYBd)Hl` @ "$DqTVe+@gf>KK%8ODfgy``I|%d+Q,c)ŲD'ty&d-[e!Nfer]l3@|,s@*rlӹÕYr$`otkSkPU9ueϔOdlb&O|muϪncfu$]2?d=k7 >n T4xOL o m'S4=<(_>/+C^_=)jG)AH|۞źܭqa+w\p:$ lOc6-^-$YF٨/@H{}vJk_L9>-o(2.t۠&j,{#V1'HAG{.KwnTjG ӟ<zʹUMOW_^x`"$bFӋ =V h=<@ sTfyb<$x'7A|r!bI|edĝKd1\ e8W ś [,3@L.[Sh~Gf`%evY 5 CR"ks D: K<qm< 2M‰L,1k!Q8zklep^ >NfX,@rz>YZz@~665=2|9|~md;j-5\U y`C=_q'< ˵2z:U-mUN7/vu|maU*K&od84B [`{h6dN23PxKdB 3dJ庽Ėz5f +~dRtNs;;@7SnI/Hvq$]}/~ )+T}#D{`j+ r:|?sj8xę= &_NJuH )Y!:+&ě,yJVDI2 ޲hxy!@%- Ń X)@`dHD"r[X$u9)y8$2iZ$K% wDz Y.K$& B-@.K Lj) V"W@&YLpBpY4.vA;>1J}'y_c=jssaYy& =8d ˨YAt[NLz2 u`t&ȑiHvHlñw%n7ARS ҁ@iB~7 XC% P>ewT?tfBl)%oՁ /,A^ *Amv L%خ}4/Q:AF^SD_GS+AɽǓl4+Y2[.=Wx??cRɧV@7Pж-W) %HE9 #1-*@t@i 3- dŇJ1W'&fD%s3hxp8*^I,!AM_ 6rW<ę/$r 7%- Oi2 @Arb,d8ngZ9(@I ڻ^w|$K¥7@2Ģ@ ת+ g:[y 2`jXϩ!pgA@u $/ %d!qWz0rS 8u{nBkHi@,J9dhT>&a^O nH Z <-}Ej '@=zbFZ&m;T kqԼ?S0`~ٝ} LZkYA`CʀVMkK,Z F\ߖIG)Vځ|N*@PD,{AIW\Dd.$d rF hf3C e* T/i f'A.H+A,, ^x|4bHig?p:dC,>Y8Sb-pY/ˁxY#Qk)IvíRo*\,+ > IWAuk^]l8M])رL_?Rsʪ15A͓;þϮUxwM0;QMQ g'C-62sǚXq=&_wKhhh⦺k"[9Yw/~Ӎ nWnh<ʵFI#!wWޞ.VYcrK>dF$pJm NFcG] X B$k2Nr5@.+i r &7(Me N[W Z2$kxOeqrd=7 Bdl`* r_JwLD`,.K^o/,Be>79M7"ڴ2FeϐGvǚB "^T3ݾ7ҷWh >ʏ #ټ? k7e)z~odxHik@7 [zu4]՚%\9N)O5%擺-~I7A^v\j\q" m=;웒;J*KIFrN.LK P4M=A`eASW"fj\dFy$Bf!H#< IdF,b eAxRh,Jiv9seb@La1H: \4rA>rJ,; zQD*H Af",L1 d4,q '&SeHLs(*og!Twׯr.\q {9 q\m(hzR7.ߍ!x|}  x(KN|@-V O>iiPsg~osk@[Au;nL|KdH:i70$q/+87>Xոu%eͅgQ@)a%#2C/0`pDQ &R(Nm{尌)(12_N$8dAY-@ğ$1  N;g#$/A6/ 8H/9fyHleWA |r` idDRq08Xd2@lݦlkLvQk y7o+Ύ~<J.1l ,f?\ø- (%50QxasUN{qީ~PVq(^0lqشOO>k9D%b -PòIDAT0/S.Y@gzZ֠eOL:,(@-,P%6qT| KK!@ K$ANH@z ߉b 2sdxZdDJ<ӥōTG<:`<HT4p[e|(e "Y4Օʹӏ++8<^]px9B FBU!c.ĸڸǹ"8#_ڀq[`-vֱc\laкj%$HU4z4^ ''%!flqMàhHhG g|H^_V[I:9Cj_|BׄdOA "* \!jzL@'X dt>\GA4A O2Hm 'SdXL}Tg5AЗF 3DY)}@*#@Vʀ$I,;r 1DJ{o$VV$EIs< !d7r;ܾj:hk uk~I%;p@!<уLs{U9 OjZ sm2cI\Ͻ>'֛,XTqx|*c J[m8]r[ :I{b@I psz!WxDī0ǽ]|OXV,8hHsR^>W ,+~@<1@ޚ[`)9`k0L|I^=>Жz߰F4ywzٝy=`y[(eK&vd|%S@r CTeJZ '\հрabe,GF>4 2SRd8r:6|9@=B@rJy @y /KA8DP X!!.\h= ~$oZ6-:ӄzIƷE0O*q&cTRY0n1\[$a'ѣH1DɌpTēHPF"0Y"G,,Ks@lJi&R d4cjЀ%@6Tg4F})#He#)G0့̑OAFF$K<%@js N,A4 R]DK M 2$]0 2(C}X]  hӦ~گY\q* @PSNէ@~=hQ  {ukG-Qʥbb\X )[зNgtsiqrE۔v=CAs7Rܤh- L@Wh홽ML(@ǀNCEuzƩj$΀ߛ>!8ȞO{ as-6DE<=lz7/ϟ㹤ԟ_FHy푺֒zƒJOLG~Ldǎ-`&/AzB&rXb X#WK1,xMHO/]ky\+ 5% c.Abn 9|`! lK lf L-zJ ި/JsESxx.T#aR5`+ FfZW Y.uiEmpKxӭd9g;w?1ֲMG+  (]/?s]n@ڛMcSKhBj;,湪Ub2(,'^؀I9 YTā t_XX<4)j Lyb GyNԦ0pQd1S`Y/8_4Hei?6PlXʘAJACeC2 # YLJjYW^%ķ:A*PPg3׼dC&yl-Fm0ݐܠ:9Ϊ)-ND0n~9[`K[}S@a\]2]IsCύ{gߧJP%L-lI~ |fzOӓ23F%jeZ #f5n hK_t;dG) wnxG$2a~I׼TTy!)Et-6p?e5 V1@Zcuz6 z]PEBmֱÇ.!g#7z2L @DT" DxO0 $ԒA%Y@Oȇ^*qbf%+MCVXXŗ4fp_2[2&(.Tf@e,=_(DRAOppyiL1jaKwH%Dk߭St8%'_R@4PC]c$|>'IЇ Lg0 ",60_Ԑɀ3 u5Ae9u@TJ|e:B6Fr13 (z_0Z I=B ͘+-AzP $JDIu pgw Ra5t*u_|M 7NobYq^ LΏ n!{~5X;I,0S$뺑FJLWBB*9X.eZYeYeiJ/'ڪ:H$߾+$DH9J[B)JSZO5K m#`D#irHm2@G da p.xӘI#` 4%Aԑ}Q*5&r\'LuouŘe<~66aWJ%*WM'w3]ypP*;BH -, np8=95cjSd(`0AP dAnto&g'qT ,U^" @HLAHG75D lXIx/.Pm4<u2|ibkY0>_v}e++êoA#i4Wz 1c2Y 'P! 44ă-J>f #D3hD~ L =p%mԓ K HDM}Hs8Y? w@Jh@nU:Tѳ`M _Q!%CF 9wDR/Ho먤jB@!~\P+RVKQus)Bq~)]ﻏ̺,U)f$Efep;8U"o._0 J᠚ <XPMu Anr:|x-hHS>Og xY Ki&w<H#tsxsg6[S#ֺx^2V@@>+Myu5ٮ+T9m,en_.N-'h ~&Eq;5Ȗ;Gs{dza[kCl=7 1b5)|ƁL!4w΂vZ;i>zӈ@PF C4JR r&Y!M^ wӊBE 棝~n4in73 нӜg=|zҼH݆wf`pSe+'?wB#8%]) .|"i 82@ctQ1ԥ>@ \QH.V*ʒ0pDp0N !e 8UI# d%%Dx HcLKKDZ2 w 3e6I/`\6XR`g5Uw`n 0|_}7P;l@Ӗ~# g"7( mFÍk/CcMq E/cIt@6Z 1~pmq1["XGJsRM9U( :1BbGhXu,4<!I_hÓF^jkN&p6r5E}y)~`Oudf/sKhfW[\4 i017>v ~߼g|ʏ@*w::tR'\uk|MM[?qmޅw_ rʪ*5.AtÌ(a"2@`聭(@YBgH0@'|Ua*r#A2RN"AO]X!3U(XICe"ziԔ> I8   >be,-@nџU|J: lr ({( GM'B\9q?!x#!:33%??= giG&xv*5clXt?m5$UNn[ AWXFQxq|[1 x:0%1tN?pthXORy Z)GIHzZnTV0NӆpJOIMw?*FŪ 3!b◔@uUn}, ˧OffOGw63?)\8srp>+hΦe9Ƽ*Cq߮!t% ?`-vV&&8jɔ3ܒ ƴ/zsշ?{\Rv@ϟKxٕ,_"Ѳ΂vW' !4mu) Ѝ,@fG 6d;>@6B )% $ :S 5)dKYVRX(+"И<-I9%ԥ@2$ )j1.IO=EI d)Jy7RKcQn^S럊sIXޠm!=o~C˚~>tmM>i^6sӡ{9*'?7o|US-$5 7Ο/QXTwHb\51J)ں=fFCRRǫ˰>)/MM. ?yUq7`# T}E rjs3y_8T _sHIG}A.Ɵ) DRƁ!빜Wn߹S_e|#w-kO Ԛ^A`o,lX,g 5Pz9;'|r(}#&my9Uw>rH}N-quǹ=Xޔ44Ξ f5$sٕ?-0Vߕ8r\|GL.c+>D\hL &34.]d XB T @CL%3{|((#-Dr<pHLU| OԖ9$-LR'9Y+ gE^@O Ix柈 ^˞VݾhZդqKOgDNPKp"EkP_+# <9ԚnY"бC[.\Ks"A#΄"*v# < 6 RH6 5@#\z4 >/X RTyd/8@= #\N4$$9%5rБW@n0HR!B_Mu 瑫_ .aV@ Gp eVw>> jVT6ZJ_W_phBc5r^;b4S"l J8!䨤 N'.e; RFOeeaL'?Ȟ^TÊWH7ķ]&slqA`.`JT&3F`X(n쭵pzSlؾvp kYHuiHb'ĿQ$, ^}e>'.Xe O g{'Oٙ<Ai—R"A1<'x~|z+s!kjckH'$`%y> 0[LY6qqq%pU 7p0[[痬6Z%H]ZgiM/Je~Ņ=H>hmohkaݎ=%TOln;Ky@, c`e(UK`31Plu8 3/`"iJCҁCeEyJSebCR(|yFS lО/*BC ,pUx( $1A@4]b`[EY}(P\ 8M; Pomڼ+M `LJq_Qu;,uFA(˸Ғz/B(_pgzC&7!cۧ{W 0Lxl%Qmq䁔b:)=6 7̃"g@XIka1|.!nOU1{mZ!y"̠KaNbU@wuq˞ ̤ DU`GPS˲{ ^qu&潃oߗw&1Xs,Bst37I`- Or=q Pmu(@A ׉HvfS 5Y'ө 704N> \2OlT&3AVb` 4“ȗtg{hڗ@%hUe?R9Ƀ!ǀ4c+@(2d,X.Cc)"cPA2 -`&Vl@ؤ%67BsL2 0HW*;?ft( ! -@&{qNe}]Nv<30*leMug>4̙zIđ#IʇMPO|HVG*]m3XUMVm@QxG} 50HW頒詪j Uj =Q5|(іx; ,qnd@NvPto0\hCyuU ҆\`t:UA׏U+k)!#T q_mY:- wܖ +sրu#ӰMZ&9(K8Ad]}}rz'r\^UR' C6 I ޅ|@ ~ȳSyZ:g!mn<[d_lS!:a<;s/+ckl8%8[d G+DžʕB*z-fn+'~Ԣ&xF  G:Pִi:RAc>Pj*pD (X@mt"JG86qб pBPUC!H; &5!/D!j/RA#դ{d, T0ydQ;BO̷VD5:4;eeࣶ &<-Ur U K% SV@&@LAT@S2 3`THU: ވ:T LPu`֫/@g,6Es#c.dPڥ0D(i u+ϥ)5l@0q\VӔwgAjplPt >O rLU )9!Nye46vl}lVBJ)o̒_l(c! \ U ,rIR9 L@UjS m0H).t T"4{k%R#'?WGtRŇPF(F7JԠUaʐ\/5)8pCStd.%3Pڔ,x}Ų!FsuIC^&ȃ;rђJ`0؁ ԕw.h dDEg3$q{`M/S^(N? ACSEw4u"(u}Po׊v$}hUn*ȯnHPhNcV1I]Tu@TTuEuBjLPI*1zT rWgT$ʤ6x򁪩0!*3'Tj}* T-g~-?Pϭ @e#HfǛ^`"xjv 2Y68Lkk+=ezCrA%|Y{N@<9m|{#)(s[szewH)Ϊ#ckts.0c 򡌖y`Rk*Ri0C|(M*S%7" pG.9'cST@Ҁ> X ГJ]APЎt XAC| ̀Oz1xČ0C|bzl%6zWz稫I+ `V<K|&Is2kPM46UuTI& PU =@S' ZU>ʥF1JT:hPwzeUQP@UZPzrxuSUv+Ϋj h*/8Y`eXnnQ镯V*5*P>yD2ALmht {pK@*}];%CP@Htp(,*2̇S0ܲ $wؽ `2ǿ;h)ySJ^â[a tÃFC}泄3MwM7DZ>)ӗt@c62J2r9:bEowH!M =pL%"> ޕIV8R)HOO%+SY*\*<Nqc@Ko<@" \"Q] h@BуMWRn* 64)J/H1|SIaE( MpK_u-O;@Ūj V@=jG/PM> ʫo x[uTFN^Zo LeR;A5S-j*зUsz:SnPoj+ƪ:5TP9/uq˭J.%),5.4&PD߄'}O~.<8]>zC9Xc^usS {&3nec&1Obn&o ʡ")nʣ,ZÓ}z'@ZOk?g9di6~Pn2 C685A;"2J)NFf8vQ hCf2UmQ??@ozG,PiT Osk*huSᰏUo!c@ F}5/524b4=-K%N.`}iОs;%pK7]u5w9^9S} }I 3-?/e(>䃀 g9КꨒZyKy~5a |岱Z~2zWas /$^:,Bh <)C) O6(gaPE> .F7T /GDwCбe?_lRH:@ކ+ Y޳<lV TuUR= `u^U@SPyVQu)M0Mm3fj@=WTUk@e] TJSfj?qjƫg2Un**T:P*\Uwc`ʣ1LQ@eSٕInAZPfvz ^g`lj2? LyH8I:.c!^Íp#3# 4TT[ i=kAhͰR| 5SQ{vLIiEh`52nr۝|$c/'IGy\oiRSO4?m?2|*;$KsP-|xZ~f:cTJV['_/CArT_̤_` tVHi pjKRqG*!?l&M\gטYvnGuy/&Ҏ\Fi|! @S{=xjVN PA}A^So~ir^L JUT:Qo*TUUDUTuV=o! UԛDmf0*jUajR*Me||Q QQPWT5T->U@UPT)P%azuʩoA= *zj jC&sgm<(==.(~E4`K1~L4W)8HƩE*&]Spg2!CTUNDM"g dZt&oG?;*Λ9TQ@AQQ9bYۜ1v2ts99S?;ӷ{>:kVշ 1{_WzGMǻչ-:9xы^J.cECM֍/T>䋏iz19D+m+0QVPj4w 4X6s!n-GV wώ͞w#=g ,wyH\+FSٲ4 *\Q]U6M)8bَTbTڊۆ!lj/UA\fQMZGte*P\R n%SvW iu\iKqn5^?QY([&~Z(+Z/j}=Yqɘ/m.[qOaJn Q SL̻&*jcwKAӈUmchTq -b}y>@T*ؘ;;@[QlUTeF܄bmHL4ZNgsQRxaqdމ (.IL *}?nʕx癪{Gb b\? $&x 'Sbf+CÎ)oTk6ނ!V6]<%_f1Ɲnv/T7hJdmsBnI#| :vi_Ĝ~8k4}cegy S55qe{W\G M_k6vS?|wO+,g,w @6z*E^ܻ|w}nhTcFA\S4{ֳX{ٴX,<Vޱ{)j$.5X~SwQ.UikҨ zXL_;P_IZ{6AoMC5kT ݈iB(q>Yw_Jj$[@Sj{׸ؗ_㬆As%oTG\\JsvDQ"Ig#:C$g3=ms|-+r|aFF^v"pa>󠼏]bsr|I~֑X'o$vFނ_i6d#&-S\+#O:GcF>;ّ2Kg߹nJ10 sMmn%4C>S٫ʍ޼w=^-~Sy~Rj6/k't\&f7Enhg=kPxןّ~?pכnmz~::Ukm4tgC{RB!Ɵ|{mc8= n [4뷸82zA۸T+ QmU>v+SBCh{V_4_K0TnVN +]15h2ZkUChJJJ~oR"yα-ܝӿn/&26t|2WQ '4;dcUkȚ8?.}qA9ץ|Uy;9,?J&ω1vY3/sH^C̙/Pr|ùd쐽p[8y=NˡYo |vJY_-옏@?ϻpmgG9Y:.s19:dOdKGg<[q<7t=P}p `39M{h$vsѨ&ۗtΐJg=]7\5'Ao#Zt]EZj:j,k{CU44uKWmTjٺ[UnY?iM.Bo":.-Z훽(.P\q0T✊*~O_t;K-+W|z֥.ct]؉l?h=?Kg%ɉ(r\7u0n(bvܟ%_~}Uy9'&W`}Uc^zДL G9Q0E|^V^\ȏBoW[2r#lEQ;(;m(sߍhkEz{諮^}җݳM/ؔϜ_aNmZ8Xoӈ5paJy;Z{Lb"j08HY?"1BvΨ;h{Qy71U6+o#T{phkdފ*!;b q}%qAޏAkS5cjWngzF=oMm⢺'f1>D˫s0ߵ/[f[:G o.|\;* 6)&w;g9lZ.!뜘wkgU>Fr9/;~_8j)rNyv#;.xI~sbC֮}zWWRQc| b`^?,?YA'rE暄*U G7;UKb. +=m]*~_9lkrGٴqPޙkUeć>bI.{ih ;?LΕVl@~Y2xe,YaUO_Q,?=o'W:9_ԦMV>KJ08k1ODRtD5~2kGh_Yܣ(n3SC>`M_+渼 ǗO>]3z]DGNTcQA SM–j>*).{@q"hY@w=c3>(GϸXˉvƖR6[#F DD!NťzjOlmdދTA* %6Dq (6T%qHN 88OKg||Sp.|;DZP+UGÈu)lg{Xm'8.A\?6i_ͧM8܈nSM*w~|}GR~ՃiJC}So?oC~=ܘ{T̨ڭӾK꠪,~fݡ %?z:9k[\f%*?jݳ`s -`.a% u2|#m/Zcu7 l zf ۛհy;7/SP^ٜqkdJ|[*e^pBS/~ p1N}+;S 1Cs#':U9  :ݝ&ٝmI#A|8%OϏmXr#]G$Χ6r#_'_7 Y87.? y +oc׬;c]s|e4?ɮm1ِG}){3o&O|V%GgN'8vv)-de~≖XHˇ<Ц'Ƥ[QwqGjmr\܆B귛]H!ͷh=Ȃ=JzU[5E ʆ\}Rw6pM-a[ mq='C)cXcY;BwYNOߟ7*qrU]jPn9?kbTPX[iyg݄B~sfy?w W`V rf\\)`GNլe-tS.!4wԢA7T^#66*A6*/T64\˄83czF̻h/YÉ=6N .'{/V.ZX+v&9s#=|y|cF`t 5ov"~f.{ >7lڥga}(4Ǝ>FlM4/uɽ!VX~Y}[ _tc4n g|G?So<#q5WzoVgy!kRU45Q1Fivcnۦ˪K/_]}^|[B.qolOWR?F}G_JJlQ@"x-o^l뺿A1)mXڳhꏪghy)m@-O6o۾i[ٹP˽Q벫m^>,̡bH-".عszy?Rv:7vwP1;Poݻ;߅슸<ϳr6ƞ57Xur+xsYDogwRQ>ӫ˦DQ||e&ڲט砖XV?Q -!S)W G\xr!1->uɚ{~toUqE2ٱxJ1?:Dpdsc 6 f}j6]N~>fcBu#l$[[e8ľ*qb/GV7g68訓ohbYkt ` jM#ÛdKWy,U\z>--F:Ex.eQ?,͔Z\M+Px4S)Szˬ2i@?9׮9<`ɕ=Oku"KkN }hwZ7bpF[7KN)4\."Zإ%-i0g4vLGi~`eͭYwj ڂ)\O8YpȊE}y I̠5~F|h::>iO7ql_ޏ/_'4 w'V^]m-CX#oc_e)(n*v_+gd<>quq/&Yr!.Ug,ρ֊itSY~¼ᯌKE>RNϱ41calCc"1+!Z8#6SfmuԒ|#7S -QX?PFلq5E6t'º2ufoTzӂn~ކa-DX cR3y;jtp3l5=Zw ~-ȧ4ct+֊sATcyVV1Zk][+1Cm.+7x[_ȇOX@ƆxD܄պL3NmӍۢj­\;o"c n'}< ɹ!=v4ȷ>jGV\-++/ wx~k' 6QmY"8+ ч׭*M+va!NGAmɲ,꿮3(*jL7[i!m.xкsㅊ[qKʳbɲpE,K؛7GU1qg\Wq+qc<O{hPT^|,ͅz=q~{V}}︍]q˻|,@ݏӟ.Q.u||r쳲 .7βk/K.p|<ݚP.σQ*S-j1'Hr^˅d|(oƙM>3KD1ro6f93p팳ȩٌʙ^[Y9?'?sA)94/R'ΏF.͗U6ɕT3dL5A ]8+·m@6ݞHt9eUs7qn/pF)uW!Avʼ2gpN~,mTnBwN֓)o#G(Yr^~k;yǽL]UXxȽ P];THv^FՁqO7||ɬmݶ}>bƪ翋i9=/ݝwܧ/Cq\=[JlIւ;?Q73u͛c}J`9O0%OƿC qPIEoG џܣlTlTg"rE.g6c"r!vBxIuѤ2 w_bƷIhR?yS<G|JBGjѠ{_7&\aM1ZF0њJDe;Tc񚊸ϕW?/? dž3&~Yt-yI=+Xue`cIGl4R"y`J_lceG>W B Tz+MnFU0qu>Qy5c< \^;;]Fvے;`Jc1Ab]Lqơ: }_brTL w݉V5'XL!@ &NЛhoL LXS %8c_&q<1Duid=yiuL]b?ݱvZ5yޯcKbXHGbRb~~Ol^OVZ!JAXc]m`)9_ kAa8l9Ƽ^E%nP_9$*v.ْt` k(W5Vle R__x)~G Gհ-|c[,~ZKChr+c]LəZlfym?zf!"7.#;M1<km2}7fߚ=;wr]3uUm#\.ܦHbӦשj㩦m#,UUmzbTU~~,oD(ȗX0$'(x? ronU1ܾ}+}osT^E^G#܎ }UVN˜ @GUb s4;'xI pw z+6͢s~O?F\R rW'fN{KƧ?EqӜborH> MBGKqS‰atM/Mo<[ssyD֡c;`F}#|/=f؂|?& 1?\B|mȵrlkYG'2)"<[N#{g܀\%W\%ʧSmk;0r^^Gd|%_r) "'9թ)9<\ycHyrìjfP|+7u}U>yKLnO3d:!WqlBmrŷgE y -ha=pces[S*{xk ;MU3a5-N5|};E#l]yBN"w-^b\琇gŻ!/嚻!)(rPȅ[nţI/^I+4,[i䝵4u:ڙM]\͵w<o b=RM[۝Ӵ2M}pChVw}*>yy<܏e6RoU=VzD7qLu( hcePܵqhSƿM7#JjUSiq<-N.-l?].+`Rع(S?4o}YTZ ˥O<,krؿ  0%aDPr_lU`J! 8Voqb9E^@EE.s'-*iK(\K;(XcQ"mTj 8zqm߬o4=/iIsQ<og! 0&sΙ 9$Ɂ`{:osˇKsϐsrV_9AYkr|6gMQ>CS0f993;gw6yU^O6' g:8#G(m~_򆼑\'_Y5dsG8'ծ8=qbޛ|Ȧl"ȥNq*;kk/ 8%˛Ⱥ-)fΈxCëWao"W_]6(,-;j·NT sj=.{lV9 u (SGke[abəy:qՋCՌ@bU.~<؉V\y}eKmn7(}\Њ-o1 Ee"6Ք_Q߿{R8ppĠ fRqI^B]5=ذ3y~ix!+\F#./F5Rusq^kM]A*X}R~^B*W*GDydko5-s/,jw8!ߧBܺnŏV?T%VU]=klSqDq ǝME5_weؚxb|ê+FP&m!,lOJ>]ƝEy9#^g1O, BSb&R%U)QZX{8|bC[[rFi,Kg% ;Օ:Gbxܟ1LU]Frjޣb{l"chaFmM6pBc3F5@ >ZmkO1Fp̆lMvV^ۇH˿+d6e#KaChF&uq@KlmFZzh1d1`htp.I[ekUcsmp,vg~5pGSGz,?,A-V7r"M s=i02s.kQt簏{s1ϥYC 5WGb^msw qfn;ѳC+ro 7tȩCo_5ambނ(wU3]uWO:f>48Y8:ŗ#k{b^4<=iڴfhV8<:RhaHU7)T/(Z]lG݈J[u#"zbI tt̲ Kց ySQ 4O3ÜrmJ)sHӟ7\43J-#L+εVxNC4|AĒ-`fҽ 6/?F'XKQ ܯ"qָYTij~jKʜyy^-c^&2Jdz"gKQs!c1)-ƣ tϫР1y&rR`?ҬqlaTCR\bSI~yqW~ Gɂ=u"5<_D/įs>)k1&;x5haLl%/NiqfZ:v;Qig08܆~p#=|FkzĎ =R3OuۈU\ӑV;Zy -;P'iNhdc$+45nL -#*lOqo¸?oGXWs`8-u7|RJb| PJTqXn5ѢLSxJK͈4]q. ֵձ<|$'/=|CAo,^ ñ [<7a<_{,/%wkv!&/.U*k=4G<4ML5 ?68I|y-G-r=MFDY4Q3mno\ƵY2d:_o}*Q/ODZoJJstm~17,o;ىa%' ߥ桳ryMUKh]zvUΧžk_m&8΍'h4ޫA#93μJ5 GʼMO{N Y (hV~7Z B?`JbGGQ_bX{R%M׏Xrڹ+~`XXVU>R99>WucV~Sh yx倊)kx̌ce%"ץ׺jm+6_Ƕ[-wX} օX1*gD 3^&V7+b` q91o5q-B' ~w juA1$^&V򻸀>nDSg0܊q q}+1؆`M\7Ī z}bTgf4Ab^M+QK\\9vUjew5MbJtbj܎V_Xx6gKQ9/ۃFe<8KE8ݛ_Kt"xqNA8ߗmMUY>FN'5>#qw0K h0q4VN61h{ P -r9H_4՘m8 kzER3ʿ -C53zCwh@k9XCײIwX 3}ǩVF7 RKܸH$Vq3ں^2w[l[6\K1ZJb\K'zd |9Y#/60#D?,`s|K[գ/o߀(o;癧Ewx=+:V?Jm0#:s;=[B՚ѕT0/U[kUNX֪Ă}+ ΨW=B/,L>sywn*y0Frx>jw򋜖ǓS9/(ޛ+kyNj75 {u'qn<,$~ ,g]j]蜿hlr{˻s8 `br:V w#E{>eU_uc#"At!*{;!4$bonpRz*e+?µi<71X\gx~&rTV5+O[H"wɏ{)Llxa! NS=Vit<߃VMu)>+/AV2>7C-6G 1$qi ]hco=ckoK ׎ݾRkC>`SlՉqBnP#(69C8G6PbHl9ha}{Qi&k)=D>(qxI4eWF.2{VTӎq,f6@E>X [SaS[ש?j511IQNl|L¾ֳV˩b0=lǑ{[`,rOφ bq0Ӵ]_M5dn~k勴zLM{C.+}pg~^!7B)"—7Wj7b|=<.BU|$'P]rx1We{477)Uv! *ɉ?kXYI{~8{<]=^ށ8ii}t!-@C56G\lHLt#nk_͜}gNWؿyTVuL$ 3 +obLՉ]7+ϯށ+wL{mwɐ8ʋPp{֠G| 5ڢޕ;{ظQTEΊs}v4mPwq`\z>X19mY+]cF;}}ww'~doĔ<'r_x^G42'e3%\LR>,Augo0$OɫbGXDlBbv򞘏1ooj$zFɑ2PQ=>D.☢>mɗA?sC}%1ӘFna {TIj^.wX4*.ɑ +09׽|0[|M2yUXWi6q_lߪ!9xLȼTs|ĭo#‡9i{z7{O9l yTJ*c8:k3rcl0mdlRF51se$:l 3l5`5cG41/ts}a2gmc10ߡk,݈\]J628X8E}'b6s͎a}_P`#x^Gk!W̘&s F%4aG+kE;A6:n;C( ~NmUh{ȶhn6ͼXח꾟IץU+ Cay-yytQ vjOx. +GA%;`-6U,ss'{#d%19D\cc|$;GUKOq˸d*74_8O4.p4cd*] G8<~1b:4<ʡmu+-8)|{7<51\eMFUN1*Jܟ;{{L6bk& '.hv:_n+W[',_W+af~S^?7cv$"~27ǬsWw(J=p(d7-̧[ g-1!TMڸa|^-ҵ%}q5bV>b)6k܌|\jqi|z\M6 >ϓܝq+ykԢʖLYX,27 EmNWX6U3.9ᙆ`Ӊqv13>Ȍ}iY#0ԓvEza .˅ mL1Wt0fC Y5ɖLśZ{Q6ۘi V&Smcgf,b=fTe&f4M*6ozo^wDsD-kVi{IPWk̯)k4eMaH{iy#.b58f{ܔpyp.&A~?8m֮}x_}7_; tlN^2\(WQݹN6x_v:]dܲ8{՘=C|Y֐ɉ*[*+ 3EO婘8ոB<<>At3cXɈ=(8Rz 5Mc-Q~ĞyP>Iqk*U*qKArR)LO:r VN6\*[x!CY) 4x ;U:AmOX(1}Ci-ğ]NqZ%s~Hcw`1q/g*GVF"fx|輏c,{ 5Zc?B-c{lwjt8(B3tL(H5aCm`mJ.|XUۀ|Z_gŌ ]V&cwl}ۣgޫ=*q&Dһ7̗ahj*w泪77R"/۫JN(NMCgy Qc.e-nr׉qnNNlۜFƽK(씗5\/_⸜G3%ijǍDkWĐ/QZҟ!<FCWn1>ޡ0,=ch Ϝuu3>1tsO 0į* S7X3=lg[7+ZJ^O4aEkqXAXFISt't]Qc%}7WJ[:i1Y8k7ǯB;-DO]M" ? b83q[QmR`B}Pk{MıqzlhJ,ODW q<[Qo vI!sʪ֛VAKWhbhY]Zz4{݌+]vVMha'~Xk>XjEmіgǙ{|=kP)v[V?Χx8.:d?s.qjRӹ F),xx],`W' <<:g[X[`\U;gă9έ8*ܕ⺮~y19y b:ܵߣ ^}o!ccOMś]~B3z]6wgSqnSZ%C]j(L.ޖOoB|frrݳ#~~_0ڿp gܖ=?!Dluph^NTeiٱ'ϟ r ˫/>Y*WW+ +hV MSh*}q$11f;ķq9c Ilks61N CĬ”xU 1)ų6/"]UZI0JbRĖZNU\Dt^+ 9IEbLlbB<7_1XZ?]RKqG;x UXeX,cLA*uXV+jlh:&:*EX]k0 YM&i(T-F*Fc6+*TÔ2ZuI`tlqz9{rG)ꠝF` }Jax-RqzP#,;h`( B8Z-quBkQGcVFFc+~*lNdQe%3)F/M18LdRr8cv6R*{j(*h@m[ʬbsT+ .词Jԛ$i%+u}i{mi1gә NvM~HܣuCޟۙR#35s1L_3<ΣӘhT1"yQLr\@ڇ>ӈ s!o$ݛ8 sO^o/.{w +7=Z%V^qr͒=Rqy-~# NQ7"O:y'7ٙ|( ŧrVcdޜ3$;P\m93Ȼ'78چ#݋فs"I/<4E;&b~f.޷{syw?ONXc.;Rʬ]8W>NZ5U J\x,GaX 6Gl#cil7ŗDTN&X@aXōQ$&N GXD̍kbnM?NE\bňx0/*{׉-x&1;˘Du<|gRش01f"s;S?代>8hUcJ8ٶ`SV)W.823ʂ?MN"bM2GSJMLWfkE-q$2ֳ!d'mG*L@5v6";N('>z#jF8Θnm*L`:DŪ. M/Y[*ccJU!([j-3s*DzkE`sXJ܊]Iլdڏԡ^;mMT֌*Y^!6=4))E([@ PLGc mXUrb * q]ڵU zmZI1/#pPd;o!;j+TO#r.r"dC{_AnEɟH1jF<>Og%rh%3E,i-=p0=0ߛgz0"Xv&t:f#7eC]gGb/HNٝ򩜕S?w-yCI9k&ySwsb1vۧiNӛE 7^)^ɹ_U$9љ80p?l\繦a9ٓ'T CE~m,\s|F;Ug5HCqzSyW}ԉ,2f磔?`o}L^?WWV~WۉΫz}XPא̧(>Q|*!ͥهt'\Lor7-{wNx{~oK0eO,;szEb8߁Tм;3720imҴQڭl{oz?Yضtr!ѻ.z|sm-OU!"ƕĨxmDx:" =ou⎸”zbBd|@tsMO|QX;@̍H"V(lZnR*zg˅U7:f/nJ["b((ǽ&~@tM]A4k>n&FbBl/m\[>&;}xFZMZ t_YS)E{ *_bi8%GGm4)G͌#lvbgѠ tP.zR4T)LjTo'iG좽XZs(S b1m:^w 1ڔw֋LB!fh[*V%.TmzC3{ҾLlVٶkg`A@1gŜ0b$&9 92'@2#f̡9{{}9ukﱪ5m c9|3F$rNX:>҈έ$l ,'HZG'⚸Ud-tXVYSW4*d94;Щz:c GG}]l@P4iQNb X%Pt^QR}\ՖgeήބmvþJVcr< `JĜ=qUsY\E 1DZ'?9Us}*]s'Qtubx.1)f[!*@\@̋#wZLoY\Kl;0ގYFOR)2f cˈX'^% GE{ϝ{[ciᅬhꃎxC[Z5f#cW4X`M'#bdcH]r֋1Žv!6 Ӣ޴1RFl)KPj8qcse5I&Th2nt4 |E|蓖aO (L-PZAuރ6֫@zj?OwSKn 2$ks0`si)+b'kL&C(>ò@>O]nA&\E@ݱs~ޛj_;˱ E 3UXU߾unyi=ktðRΒuT$9;MJ [Yf,gk2=⻸.\lFCHxĠl6c\qHtsLj6|k[|GU5 @e`iakwim4kAG;Ώf6CMlhnɖ+Gi` ʅFԶZZޱ u *k 魕 ڤBL`w5]Ti/,96.۪"פ(Pf&DTa=lGCybml*hA¶U%֍Z ׀V2^Qe+1`BB])`hD_}D]lFeƢ- [Mj[oGCSt8Ѭi`~[2p->]z6ԑcp+ʲ{^()@ +;yN͞Nȓ}302*Y{JyL]LbydY}g*ksY4~waygPe]EzRxd-jz>.({m#k+mN;iA<%wSeV=Ѯ-evp6{|To\ .]1ſ6?@Nʵ/ٔ'7)#嶹%lb!ۑo垹+٘/fh097?曙ȟr_C^bOFKXƧo>]vz[^ JN#[;F 8+eǷ^0mApt4_5Mo-x˵Y;m_P6{1ЬU"'^ǵN#-\Bt /&_(Eb*̨xZJ+D;b\J ~9<:3B&0{^bݨuQ[ x2&kQBl]Hw}ī^Ntq;cLj5n'VU s(lQh+*Σ9'܍ڟ~{b'ťV6[H-s -ŖU<1XъeFWҖq8ֶ?%j],8Q/Pc:kѷSWTUmu"m}㒸67Vf֨5zۙ823c}UX2g4@\hݱvVXRJ,.UZ8 j %qOq@#uW2,C\/nĕh, j3PeX5m3q5P#Tf*V=4.zYXJ;G@EU(kyr:Òu}|lSrt~gM]r#{emLt#9>70Jpn\B\h|9 ,CPGA"ax5/v-ނgr 7Hb֢ƺXXhhK#zz͚PH£VYsLDت.v*+L>-B> ŞG|u+I܅ g9z>4&[効2CsvnK(3YȺ\;Ȟ9`׌Y5?'a=f~Q[8ZKE^ PLΏqgl ]_<ӎ|_;Ҟ7ϯT~v>@e./Fd;U-u4万X>6WBqīOգAa;7tLq1]L2b`K+g7'/GX?y 1E%*3 Zb($66ɵDEtYqO|BF5αqL,UֈB6Mf$-tn%z)1!Յnsir6<;aqWR[_U_lZ X1Bm>D bu܂ BYk%ʑĎC+TҚ`oG;nvCEG}wieԪ'Nb<'c-s_0YCVѹ!,oМZ=0˰btt˥؂8x0vsËy;'+1& t_xGG2I.;G[%Gٔ5.웷(1/o\Wܘ|6, ''s~nF8{9⓹(&vePANms\)ۓk3%ٟ|7˽3C<(˱CV ='.|8y3?->T  xl_; /yuL|XuŻXv~:~5^ mI ǂJ 81#6rQb Q 1+G1(G1"1:8X?F[Žh"> 6i2~6eKOclcOqoCb:ݢ8̎1.QGyvG|[GX:7h aq 7͹u(jNfsVa 49,ž5][JU c4ɮڭǻٿfAE82Ȝ$rѫucH6DOu%kZ9=z 5"~ Ũ6͎wl Nk<^Ħqh>HilXJsjSfmc(9͟+N`^tٳ5rjG\9B6**7/  OgZ}poC,u!t]}Iy=p<6X2v&9 ;羹|yvұq9SGV@oqLqVnB0q|VD-⨚%8޺9dF56ʭr\Yn#+ٖ,Ź'Yٟr%W'tu lE[Hm&kֱ_ɾWo;0ϏBAE+kY@ ?7Ͳ+SDYng?gIglPĸXՖ޸M?}hк@ M7ݸ)n%ƺn$n=Y)l+ڱ{1:[OĎ&hE|Q,"%F1߹13uX7+?ZhUQbl tP#ZKlnsbZiPVX'Chc{hul?*zqLQ^qBvKPWZۺX r/~lL3Z߷ SS0 n'2ݬf(60:^& U91[(΁VC۷~WqNJQF{8`Wtlь:}5ae'.TewNq9|O':t/jHM.xI^doü)"x-9׋хW)0ëhc\- G-1í#]nqh^%/]> t]&Yyv8â\Ѭ#7j 673K՗,jOi>T,ȝȥrv"庹V.\?'WȵrYR+w$Wr'l-s?s~H5s$!_ s܅sJ"_G%58r=ǹm͕̝iRqdc7Cg|6o0xHnPeJ/}p+ځ?C\DMεl[lg䶣^ڠE?s6%)(U%nFĂX=&*,]r#I,*FF 'CL 1X.6r?Q_[dܨeʠX5Čƹsa m0=\Bţ:Kq'lts?.鸖hUn%ڻ7^$ps&d/Ǽ]M>ԸR޸,ƢI`\a-tXI8˪5c7kXB&*Z{`Mڡ5`t'N݀FRXêՆBM\nq8YJW,ѬՖV.jR:ZPjE(L?TUq ֳ- sZyXDIq z =pav!ge)>[ (>F)~|e+nIM5VPl.S\x7Gg Aׅ R2K)lg ƗRXdn^JV.[9/ /šq96/KGj j1q+Nr#֎?}-~qXJ7x_r@>>bկ{|;nS֋8jCyAt &z(W7ylnג]rX} syyb/e=q7r%zkeW5|FܐM%Ί5Ias'1#d!Wy9|NnEηov z'kVy( r (k^=?{ϜACV97T;~?1~э(Z֗k>Ӽ<қyx+A;iS]^0JqkвU4o|/VxGjҤ C 5hSNX=&w|Dagi/?^ $B\b)eDG13'2=^KTMGYL%1FŽ1Xb([Ģ1h%18>ybƅv1) ֊N.QF븓OdbX-ŒMPsޙF}O[|S G|*$l=艈2~f^8ƶJ՝a?4Dg"D-%w[Np#lEt,P2J{ eÈ3[KZ}lk81X )H^[[ 7c+}7aD]hhZhXap 4_y4~R34j/ņ?t;u3#7Y`WVhy߽3Ɏ97%ܚRAv%9|:H.+Ad}n>WXs B~a&sDDNinLmOW:y;>y͏~h{㷒 rηc5m[!;i_pK7@׾D5Sn|OC󉌱12~vHG{Q6Jab3otx+!1#{JD|~B'Vp2}`)6 wҾ &y!;$ y8z)dk1ځqu)~{dy6d]nho,g*z]~ t q-_Fgh]d+op[E~jemL35}M@TyDy,7㸎/(V 1"zF4kQw+у%gV-O槰zdZk  ~*Ew,RqXbw`+5ZkVB UC,V˴nHPk9:r+BǣDbe0%gZqV%Bi҉83ΰ4wz#֍7 qQ-&-MZlWRغhb3cmt9pFFۉE* D'}%>In! r(x4Exoxo":Y<;0i%,UwS섯"#&tjڂ8uF1C\uzG)ԫĒV ԡlbSP,GhPM:WmZ[@ìvq^ElEJK8J-[*qcpGP_[{ib'…,lC_.oܠ@Wb4_aF7b+trMn{Y<>DLͣ)x?ƜxhmC|oNQ!bV6Dcm#&^s.QxMl::|"㧸h91>11XlR#~'-Z4h<6UUz,W/ s:5xs987^+|Mm+ۍza ;^M7vX%QrܳbTyZ;J_*)ܷepE8Ÿ|QzIb\iu͝ɟ998ɅOD.4'q˚#ȶٞ:-,ZriJ>YXii{1FK[dl) 7d8C86΍ɥrgm]%JH~͹?1dm.4\&ȶzeCVR|#tYk܉|xM^͢Ϳ.`B|(Q׾ Bm2O{X|[N[4_;?- /a\ko6Na\;u~߹!7X6%֌M܍kݺKђIo,%=ZÍ$A?0Kd5s(ZBxt7ںOⱘFahl1:q^ V5*Щ6zUx):C >=`|laǟ-@O違t XW^Gk B omr38 =,%+!ŖW:=_?QmKP[VqvӴMydEufM 0o;4.*]sOǩF[ O휜GK(9U7HDž]^mnSJ)݀X3)+]u~eRrųȥ8Wˑǥqqo3 ?!%9J5wg|-/fEU67KQ&_u%ŨOWw.Y `[_g<,er'rlc~'K[kd#Ț0"Z%AE9"$w=67™?̵9N%?$7Ϯ93wu mɣX@ssjeCwyn<5o|=6zJJ/=m\[ia>O9ILn_rwV/Sy@$ǗqA4EUL&CFMxM1hcqQNbau'Qc QOC̎b?ËoaprAnjyb#~\D9q/x!)/% G!e-ۑW|қ4ޮP M6d Y0b{Q˅9,r+K&!s>Y}6Ad#Hc!mslCͺm%~6\<嵔TF~I7B]vg/ծSٓ~]x0ԟr1?:J'C;O^m|X5M\DMn~^{VMjc^Ņ䟲s>a. F؏\-wȑdm2s䊶˃%!- @N6jIvɃȮٽ%!dly~U.ad<~dֱgs`&Z)dcKm9yW?٫hzwe ax(J5c4~0& nydw'"5\glv= -Է,qU'BL'D︌oG5u5W(),jsT{oZM<c<\w-^)ĊN\K!:$C*e\DtFCloQݺwsb\\bn}~8մQ~-/P^v>Qxh}ttQsb4cThUbn|&Ǐn!*e'MEC";c<9ƚVnG6xmL)]I̋oCw\oq1?FloPB6jP@GXZzBTKeLpWcmĩqQ@ Mwv};R{͎K [j!#,4I>>Jg>u^s'q!i-O100WZl~TRq3: ,^a 9ad,h8Y[R%d9l܊[8,Aن,f4xy2~a}j~xJ0l_$/%(y};A_+ ?/m>_;GB9c^̽^(iҽc_@ MZ } AwnI!pbwKu,Odrw>b^Du>} T{i,;caNs=q}atSl}rW3QJT? U  w"Ί35K5RnmXϛ4 _]ZZH|Wo?FrXZvXi?r6C M⭨{Y^6E'| ,rbMCv7y`'4>"_Ϣi({ǐ6A䪚=GFɦ,cvЍɰLUXy#j[JΕ2c{]|>̿^ܜڛ~^CZE߯h* +.98%ޖ;Z?=͸+((^SPg\=ԺZw<['݋/Uxq>JѐǸdd]dr[re#Ȼ|/>6/>JskS|Z~[}4VKsaW; uʯĿlq=9~e]Qq?a_./&UQt(!j$ øhxhAӨR:u&1(vQnTL"ʣ*&sHqq"QߙL?Ɠnv84b~̌㈦N1QobrE,tG&fD%U1!xwX c1x,=tqK|x>f xs!uiYAlk`2cKg3k XҎţ 7RRezioNUQ3{ʇi;6Hc1ޱ\QrŹ@ec{S\ b/Gٔ^!W΃FV;0Gb)uD6epܛ\+:Ԣؗmr<0mdd܊\:8<\|q ߱~3 m^K eβVo+8hQ-Ze,WO}j톟>;.}.x ^/ܹ盰q$֞|=ǴNA6sWh{xX?DuL4E^De|`*]ǝDm1DxT˨;IQ㕸(1&%QR%ںLc}!ĭ か28&q]BMKL0ǝq'O|mJ</ژ(1q &&cxU`o%;IWςXj>qW^l 8qpGIsK6_r 7\u)*|Vvlz^Z4Do) *AZ翪 -|¬Ah;KE3VGeowVme|1GwCndM!fYrd;pch6dPoarAf6F^yId!W8w 7޻Gdo'Xo%tXg][V?>uiwN?_vRU5Sv;~ԻDzNTFf}VG൩E> \txH:q'a}<}Dy|x# D1VxĂӈcB\JtJΦ]x*ƭuw(Tq;QLuIlt #c|Q1"ڻx6!QSLuK")Sc|L$JMk Lu¢^}5XwXuj`Q?6onGL'iqrXb mh#rYfa%j0_g󑜌\n<rgIy JSUհբ:dք _odvi]9Tܦ}a>We+L¨5qSwP6岊ⷶ y:ٜ?.&9k.4\74 07).nګqԎY4%Ns;kOޤEs^ٔq\Ez5A Z%h77RA6cjo9;!gA_zNe {~nqxJhF|-;wS,H|O1n[)Gt܄{bR1c4qF&sGL ^/ȧ7OّGϼ,9a~_'7ԙE6Ag'QK[ *,YGcKBɊ+)9pQ/^-4R&*Il~9|/7)z.78bOi|vSOkںirpqqq>o*Cۛ/ 7yWbS ֱ5ڷEuK%ټ" ?)Yrgɟ({jv TkPmhwF}J%V|f`ٛJCEY3Ln;:wj^{CꗩыLu?=rja%-A-~܀udWE?dU8)վoxg>C[Am{+v9dofi 47So"Ӹhc1+6hc$ccҿN"ŃcA#/b"?Ə1OC6z?&[zm60X3H|@qM$DŽ 8*%ZId\Oq&aTL-z3bWuoq3ecc6׉̃h`9XXU1n;5PqI\Ca/K6NN*}m$p6(o>QFg9vmg qFF3 Q-4m\CӏM7Sw)_o8'lܚm|['ְQR}+Y`-3_&RQپ~fVdJ:_Z-cϮz/x`si>n:^r4~xи}V~(lrmu@ѿ3◄mz]W:l^<7ztγqXƚ}}<]5 }`c?7o?873>˩{gP4'$F}DGϣ$1Cw*zQl!To[ڶ#qsy*g*CP,FbPDaQɞ%QqKiSqj͕KynMiܹKY4nUu/>U)nu#cQ#BA tcrF?{Q7asnt4%6FpkN)>J6!O;/Ķqk|⤸ Z~E|-ɇ{'čͷ.GNg_; *g̸x%oVxhsm8-VjShn-㥸".'GoJ~hௌCm<@t)q+!G<ﮘD.$ގ7^(ĽD{:(8x22=01nxnyUz(s1x4&ؐh[7J:O317q0ts )&cJL&6CcjKtbXxFc1*nMFx:Fĵ.7 ?6Nxp-3+]wNYR|æ1ԮXXey+Éǡq86Wj,'CFXf6AS\g*muڠ+.w0Qx3F k|WM^SY׎͓QWXf%JUEs@яǰ$h񈮖FcK~#RUN>ROi43(zn'^[|StơM*'B,5&ǶĘk?1X1hvQDsSG|n%1I<ZtcJ|c'5mbr܌Cq1x,Tx;cbX11M087΍1ۡ(c?=qQ6&j4vc2['ٌx< x01ą9K$F_c [F}߳%|wgR_6W&)v)LV+\:V v5LX=VGq‚F (OZ *)'.jU+E(=vi8_[T2R7%]ߧ{6|?:Zoiw{xAq-J6}aL?s{ck? ./t 4_0vB|iO}8QkOҥVՒG |jR70ٻ]l' r^^OM.!wAyyA%r+drpIs/ "kBu{ɟr~In[{ rrn9/\GHrSh46wLFy($Z9fܝ,n~Gvϟs(͹xr>Jvߍ$:|;Ke닫%([ݫ }?Z{(=>`_S*=7~ K,+'j3;Kٹ_IǶd gqLޛₜp~nۓ]]B9r 3SBpvbW؊ϓgHHf̜9{]F3 h2o (BwQ8/{q߅1Yf(lg'Yw>' 1mI{aO;D ^ OdZ,Q#l( ; 6:|JZ:FEe  䣱lR /#2yƑ8dL e$s,oe @>`$nA2Hɼ \c ʄq4NO)2Q@C\a A@fH C3pOJ4"!HKs©\%tVHsN(MZ2cd ?AQ)ݨ}bkt3퀣ݍ]!eԡX#7 4jlO3P 8?p ((sL^!hMn3ۖw}qи $+X~O#G_" ]ó LzǺ\@T/wqGg31dBI 4ֱAim 5A[G{c{@Kh}^z&G;4h0 &}M6@֠i:ZY;Ok$=A+jF&Q@[͢-AS2c@=@ :ZZ dmD4h4[8&qP3i1:4RS4[%h#K[eEUmz[oisЂZɠkuf=4;zch>}}lΆxBGS d.Wڡ}s-G@6e'@B*$@hG@P,2GleNk.~ FfomO70I`5 xw[޷ACo9޻KxY~4X,[ J_gN1Ƥuh?5?^չD.eA&;=huzHz V =$uHNHw+ZOz祳> et>N P D! hH1,fN$P@?IY \U4* D(i$뺗RT2l.4RMzU6@$sI=H3jL%Fopz6N#O]Lf`[6ЗZZHZHZk}*Ys~(]RXVߛc^1pQМ-oi '~ DpQ_a'?["c;Dq 85)@V`/h11ЌZK@Pb4i3 yhb ͞#Y8ia8巇%lClۀB2[vcj@TSt0C<23!wl%H˃~@zq %iiX2|Nۤ3:[ 4־+G#?~rZY=?Ӵ'.^,Yw?*GIy%qpG(@jM9H鮝x+0]-=u)PB3 8#@? ld3@JY.dP`}$U Igs2J_&xm7Ixjߒ~ yh@>:Vh#R.N=OHS Yh- $y8Nn֢]{ ݴ@XF6cfi)Q?5@iJ5f55)= L#I?IDAT<tfZ@ n *EH4H4p*X]㥑iUs[BYbKHy 8?SSݲ@&!kW /'b'@DMmznOЏ "7M0|c\G*3< ޽b$TxZ]óL{Ee+}ej"p8@{h4@'0`ˈ].7%*҅ t). Q@Jt%}|tKɨnr`4@|,tbPj\8pQ HMY&Rd//0E.]($_tMTJ6YBz~G34Lρ @N@)IiyhpC')$@u.]A%H  zMj @3@hBAߦ4m aqxHSm?K=|Cd;/ut9‡B2k-F2bXCˏf=x`G@>@YL+Uu~-,}W6RRz],2 VzIWbT}MQ(3D8ܴ"y8XRN;8',$IO$HЧFm`ni *: P}W ;Jը x @0ۨpu+@Mi_c:P d DSPp  ;5YDV' eFs޼$dS}oe{dT ʼ n|)w8ͯ=vcY)СcA\ ]¶eJ'JV+=!Vl2SdA?-o[̑cyE!.ig%ú#Lk~w)p 2>tඌхcwrhXWq[j!3Q; Tն MT7.": 2 ȣ;1 +=tI|  QKVS#V'<$Jwu< \vRGzqәT&pM{HPDKI'-$jk}`?;1tfM_2QZYC? Ir^J3- CU 쀿6!@mjKksДZ"D)@.I[`= (I$P|Gjy8xe2^@#|@jc[@<`3ϛ#2 Pj_.! ⹒on|EH*|oɍZ2Q6N IOŒF B&n\ZŽ7Bs>e˴c%Q/ HO vgSr87ݠs`ڊ@)C)l>wdG~݀((CGz%ȠSMD@qJST'H.X! 5ѩ@2Mv)-RZ@Fm]d@FY^)L] Y;H(m7PYt>8IH1-lҶdIgOk& TN 0 ПJ?RhI/yAz^PO4%HwAgdcPNb1x 8x*up_cnV4|.ЛMۍ|++e@K 1{:` 2D-uV W?؟N_Y.5#tE 2+8P}Gs%Zҍpn!p :f@[h}mԣ$(H\c*:וP@i D'|[:W*p"  PFA:Q_]&ݨԉL@dAC/dB3G}(C;* dTWB]gݷO@M*$t4<P$@7@=B9>MY@!@_Ĩ6A>֍R'IYji^נ:`Ȭ9xʃ؀WP`rc@aPt0G֓ӷA2׈rB%wj ۱RB (cd@s54`}qeI!|f{ͿgYJ6o{կ\b:ߎ wV@n^8{RHom)u_Y`<^bÏ`{09 9́S̠JF4 y,AӖQ@7!Ӂ p2G68&h #6rH }@P@ G|K2YADy%'ܣ@B)ԕQΒQ8Ƌ@;"pY s@>4$ c9(GLbH ΑH]v 6oH= | ̗Z4 'qydΑ4q(Y32xY\X;+$~']((%G@Z,ߘ$W=ޣ^=0;u=w6ĉ\4n>ZCovhW.<])I?:}2ĭ]x?.1vѪJ/j釀f.yTT枎E MK*J_t2R]x[' AW}]&jk ܥ2҃jcmBiæ̀RT 2Hagu a@"Y hr|CK4c@ mTnq(ʛ}$]+H%U*Vk=KuCd!'V!Bu yq l>pM *v?DN9Nńa*7w}p;k<|)ǐi(ܝv2emQf0'1Z=Ql#?CF͞Q޾;Fڊ/~֡~2a7<#Ǿ\vܸM3sj~9u ƟB[;s*};~jzq+@ՉpK`dzDЫ\$ϡ_#ћ&|WSf Jc@m`o5)apݹ(3%ǿ}Ӏ/:ߟiȣH,d{]ctzl9c>iK'#\pJk+`GF@}2IK+<@dx[6_]9X @VnoX?l yHJ a,mٰy6oh  ґ@Zi A*Nf\2ju*y Dhp,}JnX  0҅f@V8 )@QD$*Kw`?tHNkNN iܗI>ZJ=@ "0pH&0 Ih5t"זD5YECy_(mU\3q=*ePQFU?1@irQHjn;bhL7M}=_8AV'1Ȉl=+<>91X=Ȓ%ׯ2`v1K8j;ᇛ\^af!OJP>h,r<. b> l A.>fJihKw*̀K}L.>@jW i$SO~`ڴ3P'(Rct2KE-` &M:2 )4fU@ , t>#=`&N3];CS_'vB@=7RK ;2 ;`9ԡ"5|H9ВRkk/s_(>%x8k_G^Lg>oÅFn/FyLtߎ|/ЭWw_X /.9L_p2nm_g(wl~_R+WZB xH;'P~xu0pRcH]o6n<@6k4u Қv¤:8Cu4\s /rza(U:mޣG Vu3CAx, EAMmyU^pݤIq o }jL\g'Ja'; %3hxf_׼wHW{ ! uS3ߟt?|evΛ.5un$IÜ`CM+3F Ԗt@ݼWQ W4KHz,m'Q 'p"nGMŮgwͤ6|LZvѻ?=mPgt"bkЄp$=^EsrU'Cp&R7g dN*A!r@!*})U^.:!R^@AS@sjS P8IyM5'%s`1j7Ba*L+зt"p6<{ҙ€҅p<9$ȓф@o''5@IPY($HC^22S,W9g9e6}@Nb) GAQݼ !& Ib|[28f. ʎ !'RpXGh3la|ofO'd 4nKGw<5rPUPϬ 1c}uЧ$U< yly:84YRxI_|+:l:g uba, K xW7A[9H RҘ43& +:ѕ6 ZJ[`n )KK`:9h 2 $ Y(6@;`-6i 2̤=0Oc5DKEi^4d^*@ d55]CFC% Q% 8 5߃p }a+v8b^3q3 xD߉R9=`'sK|@@q2b !}i+Ӂ'>v{3̿s:Ӓ JgDAVI_Z/,yKjPhRiZ<<-~h.= r4Ku h L"mAJtt9 igtg6ȋ7Sf, ߄2  2'Ai$K< iGC","lPkpet_Ԟ>T GKaׯ~r[.ѷXi(8O!ǘ}MiNs (J9=<+OJ'{D: p`G&BAUN] J!4 !Nn ~'m+mFm;&xƝSp TIz"Sd dq$yTҐ2rOWn`ƖgvN-g4ZY\;l3u+ZGGP;+! /80g\s ?@aLiPf'AЃ@=OaeTֲ:&+PQhFc8iX#@ l2lW<2 0dIl) o2M^ yG( Cq׽k!s(jB>o{0(7Wv!dזzM.A < MVOQd1E+pꂄXz%AZ0@/'@7ON) 26&hƐdL/ d_gA,<|]m( )TzH 0^/`1zDPWoNiͿHoW;MadVX.x苃?/2ݥ;d$N)׀>9؁ *pd}ӌ:Y'ʫ@% |4N$ĭX q BK*9ÝvlŋZDezP&ݽ-²[ndV1"l॓@'+XR[L|>YVnohj/:JR pPFX;M5Oriҕ "= yAV]UeOxz !7b~A3 'DC 76O0˴@`0 RdL~/fc";@ZOH ;hxfm6hj2GfV5.klnX t )h,a/ɠ}u$) VFcMl&5 >-$e|/33^}]Hp{…ݠ.`?S,F0ςOM͞,E "u;ek[EwCvgզ_u]V3+&28* M3GЈzuVAHF |0Hrd񸲠+4|z!d#@Vlh(A撑s69t xe, Q)2AN`yR/\$,,0OFÓdra<~ЌJY"ӈ(Ksh )ns3 !\Pa:nv|?w`=? =9;w5:1^>ZE\K Ez^ x /A0K]:H&PPɳ!%k'Aҫ[O/cB@y P?q{,_;^ `<6b ;2mpuRhqX;su}V7|ӴˮLeo]R>[~+sS𝯤uV`#_e 'U/KcRg:!+dh7$:P꾥6^^s,]ۓ^I4Ȼ 0<"@&%y_(\2!j1RHa*^18poR,4'Iv.x (5ͮa ÷?D*+?[~/'c?\l6oҋ$<.6;=ʣXL@m79 Axt^ UNez$^Bx[}Cg;0~B'eAwK ۿE;92`#@DRfc+Ps2Hy2RygC՗ Sn;y[Lܾ$5r+>M3OШg7-Z.,U ;^R$;_:߹p 渀ER(I2 0>@.B,ba2%9 (((xifV+K&Ӂ@ 209i 8Be oL2A8d^Vph=Ml@GcInq6̂B#] Ils_qkqЖI!@(I7x:XvrH.-OMygKy  _-K8tW0 'N@I& p8hmFxxO3C-Ņ ើg;pGlްQ?=5R@Ji[\)nV<;b}IN"!ŷo5dGPn("M<w'P*l|82H.cP흃>7?X~᯾|eeH|#8 q@>R)kxAmg %a }F8qK''~mw!`#d8ABP$)ye>(Hޣ.`H`5}]̠?oM_n͔n>؎t+9 s sfC< m@A fp3#"a@~#3ySJגڂ;~+OO 7$}V>~a ,)pC侽ZĘQ{2Klf;,#mWY@SN]`M;6(,X~S#n,,HUVvZx[hJHd,<["dV2~}k%+j^!=օn=V٬ ـפ)mޅ_s0S&!,(k޷"ImIj׿?b.F@6W`Uc=+{_Ùףg&{5 ^ bԒ^IwdGz{_Q i; 9b5?&@!$D29]H-trl~3W3쎼rWY5\&;+F^u 0i,YF6nk:Y6WО%<&jqx _ IpƯZ{ӥ6<Ǐѵ{9z 04y̅?~.xC spٌXϿ;gj bjOyJ~FIUM8Բ .5Nܣ?j6ԢWٷ=~QZJGN1S^`*Hg "Rό\(5юn(Jwx[ lM3A 9f'`oeDVu٦={{!c&Nm٘5)?hQS=ΓIFp]w۟H'ojTWt(0^JW_k8ZM/ԭZ"U+ \=sv|r̯h3,xnWػ%e\3 Þ|0λK= LNu 1H e2/i=N۾l萗<0}`ߔ.>>.a?"P@yIq_R #lpVH赡dRuH-li|diVlL%˟B'TVo[!qo# -X:7Bl~M NT^Y.ő͟`eњoM$hL!+!ܻd P+ rNHFq\7꥟5'Ǧ#;#]0>5-(kddcڤx3ncIKo1 ;CM^a" E"xH!}js,H5WV(nRUC+\šu1BtbI`z.E/ ^s7Â/e]2L74p<{Y lDu{w{gcg`6rNKj gdԴȲKf/"hm?3fUuP90R4)"'T'23G/,~y< O_GF"Ko;x;ؿ,B_tkt-Y2FDQ]hxf4ٰɌ8sꪉ#Mmn_h$K[ГLT06'񯂷Ik1x&aCx%)KrӼ{jRNwNz 8mij\_ZIM\@T cd5PHJ- rR*!Łl{ lZے@Ua @ :N X ~.v'>nZGtMI%iiG. =~ӣw>-dgK33l`l{W5t )q]>|VS:zPe-le(D[#đbrr|'vBZ1o:T|'$>B&o<0.!p#!rwcYϮ'yPI|F2QGL{]w}\R\;uϟI1#\myd?V#;Y˾JGIG_iVm>qL#7'Z[kml-));ATNXˀvI7g.h fcw=$@g1{!us\{ߵ0[t d_5`oHnss@#i{Wl=@^bx6 dYfn"٪oOH]^r/q ~.kxP6;hܞ6 dk< {v f"S2i\dbXn=Ǫ=Liΐ?rp30Ip%GGF&ԗ$x.BL Rd+IhR40J튵h/.$I9w(bpd!dv?7NcK_!rq$!gk )g:G{Mq? /<*1d)3ӏ,٣pZa_L_9ۥ-0^BG ,8m8HO܆ _HGdγH*ǀdpۀXnJ{7p D~"H*A<HJ5rC,&u1yI;[rZK.F7>0mшDzOV`cr8vr=s6=‡>b /It$rR^4O!y\:! !Y6\`ܣ6d;gqگcF…m0jV;j):P5b7%) AosSaJC`oØw̳ނ8r ޕsMa3f&ux}DrTcaJGxIi:̴WcEtw硬u4( E& z7QS,T;{C&Aw =[yEƹS˺$S~#m{bHwm:G3KJiw6_ݴ7 qҌ|)ߓUM?K~r(^nk{ˆ! (.UZCq}2]_9^;yqh.:+X,3lٌw-my>o4Nvp(^҅ufU|I]b>ɇfp9KzCǧh sbw+!}X b#/쿼$IM~# 6|0$Q3:Zo8sIٖ],ArA6md;ҭگ| q&8bR>a&/wd=gaܱwK`:bX~%Yqڞ}ÝU+knEbv)bkDIhOrg..8FŨw[ [ ),ON~}AY bJ֍;# rVmSa0J w,*l%RK_;AÕ-^aV:!H|xG! %; às-ڙAyYcS+vnQ*%kLБd&Q/a#Nl$gIz.W4tHc4Lι(ļбX,ƣ"VMjdIr#ɢ>Ɩ7 {ҷXa 7^|%kKr@wK]A”[AVX,橬D1hI Oenb%q-Tꑕlu'Ks(&$AsmƄeu!gX,7.UF~D13uEiX,%M;|JtGyvl6E>Epq+5Q#IdAuNiBTPrGz-m[̬qT{~+]AbX# Gu Qc4vc:;~SaǃVlج߄dȵ`^ i#{xެm uPX,?A\[]loMf[RCNIz5G7ڻAj 3Wm;D`\酆.X='3s9~ Rܮqz'ވ M{\',W_'% *_VynbD<{6zDW߰'X,?Up'ӕOhl7ͱ:&ʨI巵4xaYIF>7cb:_ϞX,su۪A{N-C Oy7yPnIm* *N ZpfL.;VDcn]'髣=rbEL ;IЖt֎c ?NՎq xQv)^ۧޜu|}M02̚{uX,_nf Qy>S4m%8)H$~o*> #r!:ϖdٞ)gL9+X,# Gk[/<텠~e&gwƋ7UeQQaOZKY bEM:XnRVNxy3{iNXGzkMQl7!LB%:55֣7˦up?uHX,_TFyb)._'=7=Ϲ Lc(5ݟZ #_rET H/bX&|, ES l%Kj+/s.gZG$f=R2d #Rx!:;bXfe>7z5oiu9>z#V6pt?#xwZG[[atc<~1@UB/bXU>*uk^xlq1nn.DxH82RPyC `CxX`dnWXQ#bXyGv^G;/skO:鼾PpZZi1 !Ƒ[ ܃ u?X,?EKEϻ]..7ǮpqܤA9Bn`4`B;BB<b:򣅹]/`ϩUCȋܘ%v2(n:?!ܡb.l(Ɣ9G,:byĨ]o8CQ^(H]m!q|#p;!3p*(G?>gzWzjŏ#f=9:X,˿vbT,{DyCKԦ(FNwq) (Ov?} uqTV`X,Ӵ+vXC烩|)Gs*~Xؽ6 vtg$ͧ\9r1˲ bX,Uʣhk(r.I.oalA W]zJO e͒Kx'+[1:WK`9k^bX'7]]{׬awH\t C"^$7(lQ ?P ̖1Re֋]l n>rK:iZ,3L2\ܙ1|Z#oߦ8_SlZ?@&)$#Qva?|qsD$szv!b,cRsY!k9cϻUIbX,_iTGu)!4w-yq=& 8W K]+m|swg :Ou[ruF|)_ߟ`X,LJ^HyVʺ iOB4s}$~ FEp9KzRl?k &jLHij&6׈5^s@'p6SS/bX,+ge>Op4bg&I쒁|hz\FLQ8vfC5@ {3̩!lz?q2mnVM;9B7JWg%b|i1WdJY@[UmHTźEQ>WF, 9%k>L59NլL!vY~)Yew;z- |<65baf/)z@m}r|ca$. |_Н0ueMeblc)mJ;643i,bX,bX,bX,bX`c)ȼIENDB`pineapple-pictures-0.9.2/assets/icons/app-icon.svg000066400000000000000000001307471475760775000222350ustar00rootroot00000000000000 image/svg+xml pineapple-pictures-0.9.2/assets/icons/go-next.svg000066400000000000000000000020541475760775000220750ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/go-previous.svg000066400000000000000000000020561475760775000227750ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/object-rotate-right.svg000066400000000000000000000023311475760775000243670ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/view-background-checkerboard.svg000066400000000000000000000033551475760775000262220ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/view-fullscreen.svg000066400000000000000000000031051475760775000236240ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/window-close.svg000066400000000000000000000044411475760775000231300ustar00rootroot00000000000000 image/svg+xml pineapple-pictures-0.9.2/assets/icons/zoom-in.svg000066400000000000000000000021601475760775000221020ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/zoom-original.svg000066400000000000000000000027531475760775000233100ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/icons/zoom-out.svg000066400000000000000000000022021475760775000223000ustar00rootroot00000000000000 pineapple-pictures-0.9.2/assets/pineapple-pictures.rc000066400000000000000000000010051475760775000230120ustar00rootroot00000000000000IDI_ICON1 ICON DISCARDABLE "icons/app-icon.ico" 1 VERSIONINFO BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" BEGIN VALUE "FileDescription", "Pineapple Pictures - Image Viewer" VALUE "LegalCopyright", "MIT/Expat License - Copyright (C) 2024 Gary Wang" VALUE "ProductName", "Pineapple Pictures" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END pineapple-pictures-0.9.2/assets/plain/000077500000000000000000000000001475760775000177625ustar00rootroot00000000000000pineapple-pictures-0.9.2/assets/plain/translators.html000066400000000000000000000015771475760775000232360ustar00rootroot00000000000000

pineapple-pictures-0.9.2/assets/resources.qrc000066400000000000000000000010641475760775000214010ustar00rootroot00000000000000 icons/zoom-in.svg icons/zoom-out.svg icons/view-fullscreen.svg icons/zoom-original.svg icons/object-rotate-right.svg icons/view-background-checkerboard.svg icons/app-icon.svg icons/window-close.svg icons/go-next.svg icons/go-previous.svg plain/translators.html pineapple-pictures-0.9.2/dist/000077500000000000000000000000001475760775000163205ustar00rootroot00000000000000pineapple-pictures-0.9.2/dist/MacOSXBundleInfo.plist.in000066400000000000000000000074251475760775000230520ustar00rootroot00000000000000 CFBundleDevelopmentRegion English CFBundleExecutable ${MACOSX_BUNDLE_EXECUTABLE_NAME} CFBundleGetInfoString ${MACOSX_BUNDLE_INFO_STRING} CFBundleIconFile ${MACOSX_BUNDLE_ICON_FILE} CFBundleIdentifier ${MACOSX_BUNDLE_GUI_IDENTIFIER} CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString ${MACOSX_BUNDLE_LONG_VERSION_STRING} CFBundleName ${MACOSX_BUNDLE_BUNDLE_NAME} CFBundlePackageType APPL CFBundleShortVersionString ${MACOSX_BUNDLE_SHORT_VERSION_STRING} CFBundleSignature ???? CFBundleVersion ${MACOSX_BUNDLE_BUNDLE_VERSION} CSResourcesFileMapped NSHumanReadableCopyright ${MACOSX_BUNDLE_COPYRIGHT} CFBundleDocumentTypes CFBundleTypeName JPEG Image CFBundleTypeExtensions jpg jpeg jfif CFBundleTypeMIMETypes image/jpeg CFBundleTypeRole Viewer CFBundleTypeName PNG Image CFBundleTypeExtensions png CFBundleTypeMIMETypes image/png CFBundleTypeRole Viewer CFBundleTypeName WebP Image CFBundleTypeExtensions webp CFBundleTypeMIMETypes image/webp CFBundleTypeRole Viewer CFBundleTypeName GIF Image CFBundleTypeExtensions gif CFBundleTypeMIMETypes image/gif CFBundleTypeRole Viewer CFBundleTypeName SVG Image CFBundleTypeExtensions svg CFBundleTypeMIMETypes image/svg+xml CFBundleTypeRole Viewer pineapple-pictures-0.9.2/dist/appstream/000077500000000000000000000000001475760775000203145ustar00rootroot00000000000000pineapple-pictures-0.9.2/dist/appstream/net.blumia.pineapple-pictures.metainfo.xml000066400000000000000000000311331475760775000305060ustar00rootroot00000000000000 net.blumia.pineapple-pictures Pineapple Pictures Pineapple Pictures Pineapple Pictures Pineapple Afbeeldingen Pineapple Pictures அன்னாசி படங்கள் Pineapple Pictures 菠萝看图 Image Viewer Visor de imágenes 画像ビューアー Afbeeldingsweergave Просмотр изображений பட பார்வையாளர் Переглядач зображень 图像查看器 CC0-1.0 MIT

Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support.

Pineapple Pictures es un visor de imágenes ligero y fácil de usar que viene con una práctica miniatura de navegación al hacer zoom, y no contiene ningún soporte de gestión de imágenes.

Pineapple Picturesは、ズームイン時に便利なナビゲーションサムネイルを備えた軽量で使いやすい画像ビューアです。画像管理のサポートは含まれていません。

Pineapple Afbeeldingen is een licht en eenvoudig te gebruiken afbeeldingsweergaveprogramma met miniatuurnavigatie na inzoomen. Het programma heeft echter geen fotobeheermogelijkheid.

Pineapple Pictures - это легкий и простой в использовании просмотрщик изображений, оснащенный удобной навигацией по миниатюрам при увеличении масштаба и не содержащий никакой поддержки управления изображениями.

அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை.

Pineapple Pictures – це легкий і простий у використанні переглядач зображень, який постачається зі зручною навігаційною мініатюрою при збільшенні масштабу і не містить жодної підтримки керування зображеннями.

菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能,且不包含任何图片管理功能。

Gary (BLumia) Wang et al. Gary (BLumia) Wang など Gary (BLumia) Wang e.a. Gary (BLumia) Wang et al. Gary (BLumia) Wang. Gary (BLumia) Wang 等人 net.blumia.pineapple-pictures.desktop https://github.com/BLumia/pineapple-pictures https://github.com/BLumia/pineapple-pictures/issues https://hosted.weblate.org/projects/pineapple-pictures/ ppic Main window when an image file is loaded Ventana principal cuando se carga un archivo de imagen 画像ファイル読み込み時のメインウィンドウ Hoofdvenster na het laden van een afbeelding Основное окно после загрузки файла изображения ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம் Головне вікно після завантаження файлу зображення 加载图片后的主窗口 https://pineapple-pictures.sourceforge.io/ppic-gui-static.png Zooming in a raster image Ampliar una imagen rasterizada ラスター画像の拡大 Inzoomen op een roosterafbeelding Масштабирование растрового изображения ராச்டர் படத்தில் பெரிதாக்குதல் Масштабування растрового зображення 放大浏览位图 https://pineapple-pictures.sourceforge.io/ppic-zoom-raster.png Zooming in a vector image Ampliar una imagen vectorial ベクター画像の拡大 Inzoomen op een vectorafbeelding Масштабирование векторного изображения ஒரு திசையன் படத்தில் பெரிதாக்குதல் Масштабування векторного зображення 放大浏览矢量图 https://pineapple-pictures.sourceforge.io/ppic-zoom-svg.png

This release fixes the following bug:

  • Refer to the right exiv2 CMake module so it can be found on Linux

This release includes the following changes:

  • Convert DEP5 to REUSE.toml for better REUSE compliance
  • Update translations

With contributions from:

Pino Toscano, TamilNeram

This release adds the following features:

  • Option to double-click to fullscreen
  • Build-time option to embed translation resources

This release fixes the following bugs:

  • Fix window size not adjusted when open file on macOS
  • Should center window according to available screen geometry

This release includes the following changes:

  • Change close window bahavior on macOS
  • Update translations

With contributions from:

albanobattistella, Sabri Ünal

This release adds the following features:

  • Support custom shortcuts for existing actions
  • Actions for frame-by-frame animated image playback support

This release includes the following changes:

  • Initial macOS bundle support
  • bump minimum required CMake version to 3.16
  • Update translations

With contributions from:

albanobattistella, VenusGirl, gallegonovato, Sabri Ünal

This release fixes the following bug:

  • Cannot load translations caused by a change in 0.8.2

This release adds the following feature:

  • New option to allow use light-color checkerboard by default

With contributions from:

albanobattistella, mmahhi, gallegonovato

This release adds the following feature:

  • New command line option to list all supported formats

With contributions from:

albanobattistella, mmahhi, ovl-1, gallegonovato, Oğuz Ersen

This release adds the following feature:

  • Support move image file to trash

With contributions from:

albanobattistella, mmahhi, gallegonovato, Oğuz Ersen

This release adds the following feature:

  • Add some icons for corresponding menu actions

With contributions from:

Reza Almanda, mmahhi, Oğuz Ersen, volkov, Сергій

This release adds the following feature:

  • Add "Keep transformation" to menu

With contributions from:

mmahhi, VenusGirl, albanobattistella, gallegonovato, Heimen Stoffels

This release adds the following feature:

  • Add an option in setting dialog to tweak the High-DPI scaling rounding policy (might only works in Qt 6 build)

This release fixes the following bugs:

  • Remove image size limit for Qt 6 build
  • Fix application icon install location under Linux

With contributions from:

Heimen Stoffels, Andrey, Dan, gallegonovato, albanobattistella, Sabri Ünal

This release adds the following features:

  • TIF and TIFF format files in the same folder will now be automatedly added to the gallery
  • Built-in window resizing now also supports Linux desktop. (macOS might also works as well)

This release fixes the following bugs:

  • Settings dialog will automatedly use a suitable size instead of a hard-coded one
  • Fix default configuration file location under Linux. (was `~/.config/config.ini`, now it's `~/.config/Pineapple Pictures/config.ini`)

With contributions from:

yyc12345

pineapple-pictures-0.9.2/dist/appstream/po/000077500000000000000000000000001475760775000207325ustar00rootroot00000000000000pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.es.po000066400000000000000000000037001475760775000313470ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2024-04-19 17:07+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5-dev\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "Pineapple Pictures" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "Visor de imágenes" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " "image management support." msgstr "" "Pineapple Pictures es un visor de imágenes ligero y fácil de usar que viene " "con una práctica miniatura de navegación al hacer zoom, y no contiene ningún " "soporte de gestión de imágenes." #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "Ventana principal cuando se carga un archivo de imagen" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "Ampliar una imagen rasterizada" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "Ampliar una imagen vectorial" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "Gary (BLumia) Wang et al." pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ja.po000066400000000000000000000037111475760775000313340ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2023-11-14 17:05+0000\n" "Last-Translator: mmahhi \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.2-dev\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "Pineapple Pictures" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "画像ビューアー" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " "image management support." msgstr "" "Pineapple Picturesは、ズームイン時に便利なナビゲーションサムネイルを備えた軽" "量で使いやすい画像ビューアです。画像管理のサポートは含まれていません。" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "画像ファイル読み込み時のメインウィンドウ" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "ラスター画像の拡大" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "ベクター画像の拡大" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "Gary (BLumia) Wang など" pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nl.po000066400000000000000000000036701475760775000313570ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2023-08-23 06:41+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.0-dev\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "Pineapple Afbeeldingen" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "Afbeeldingsweergave" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " "image management support." msgstr "" "Pineapple Afbeeldingen is een licht en eenvoudig te gebruiken " "afbeeldingsweergaveprogramma met miniatuurnavigatie na inzoomen. Het " "programma heeft echter geen fotobeheermogelijkheid." #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "Hoofdvenster na het laden van een afbeelding" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "Inzoomen op een roosterafbeelding" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "Inzoomen op een vectorafbeelding" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "Gary (BLumia) Wang e.a." pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pot000066400000000000000000000026621475760775000311330ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." msgstr "" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "" pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ru.po000066400000000000000000000045131475760775000313710ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2023-08-23 06:41+0000\n" "Last-Translator: Andrey \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 5.0-dev\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "Pineapple Pictures" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "Просмотр изображений" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " "image management support." msgstr "" "Pineapple Pictures - это легкий и простой в использовании просмотрщик " "изображений, оснащенный удобной навигацией по миниатюрам при увеличении " "масштаба и не содержащий никакой поддержки управления изображениями." #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "Основное окно после загрузки файла изображения" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "Масштабирование растрового изображения" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "Масштабирование векторного изображения" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "Gary (BLumia) Wang et al." pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po000066400000000000000000000052111475760775000313430ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2025-01-28 09:01+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.10-dev\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "அன்னாசி படங்கள்" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "பட பார்வையாளர்" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." msgstr "" "அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது " "பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட " "மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை." #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம்" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "ராச்டர் படத்தில் பெரிதாக்குதல்" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "ஒரு திசையன் படத்தில் பெரிதாக்குதல்" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "கேரி (ப்ளூமியா) வாங் மற்றும் பலர்." pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.uk.po000066400000000000000000000045161475760775000313650ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2024-01-01 16:10+0000\n" "Last-Translator: Сергій \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 5.4-dev\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "Pineapple Pictures" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "Переглядач зображень" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " "image management support." msgstr "" "Pineapple Pictures – це легкий і простий у використанні переглядач " "зображень, який постачається зі зручною навігаційною мініатюрою при " "збільшенні масштабу і не містить жодної підтримки керування зображеннями." #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "Головне вікно після завантаження файлу зображення" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "Масштабування растрового зображення" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "Масштабування векторного зображення" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "Gary (BLumia) Wang." pineapple-pictures-0.9.2/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.zh_CN.po000066400000000000000000000032271475760775000317450ustar00rootroot00000000000000msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" "PO-Revision-Date: 2023-08-22 18:22+0800\n" "Last-Translator: \n" "Language-Team: \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.2\n" #. (itstool) path: component/name #: net.blumia.pineapple-pictures.metainfo.xml:7 msgid "Pineapple Pictures" msgstr "菠萝看图" #. (itstool) path: component/summary #: net.blumia.pineapple-pictures.metainfo.xml:9 msgid "Image Viewer" msgstr "图像查看器" #. (itstool) path: description/p #: net.blumia.pineapple-pictures.metainfo.xml:12 msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " "image management support." msgstr "" "菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能," "且不包含任何图片管理功能。" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:17 msgid "Main window when an image file is loaded" msgstr "加载图片后的主窗口" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:22 msgid "Zooming in a raster image" msgstr "放大浏览位图" #. (itstool) path: screenshot/caption #: net.blumia.pineapple-pictures.metainfo.xml:27 msgid "Zooming in a vector image" msgstr "放大浏览矢量图" #. (itstool) path: component/developer_name #: net.blumia.pineapple-pictures.metainfo.xml:34 msgid "Gary (BLumia) Wang et al." msgstr "Gary (BLumia) Wang 等人" pineapple-pictures-0.9.2/dist/net.blumia.pineapple-pictures.desktop000066400000000000000000000013401475760775000255570ustar00rootroot00000000000000[Desktop Entry] Categories=Graphics; Comment=Pineapple Pictures is a lightweight image viewer Comment[zh_CN]=菠萝看图是一个轻量级的图像查看器 Exec=ppic %F GenericName=Image Viewer GenericName[zh_CN]=图像查看器 Icon=net.blumia.pineapple-pictures Keywords=Picture;Image;Viewer;Jpg;Jpeg;Png; MimeType=image/bmp;image/bmp24;image/jpg;image/jpe;image/jpeg;image/jpeg24;image/jng;image/pcd;image/pcx;image/png;image/tif;image/tiff;image/tiff24;image/dds;image/gif;image/sgi;image/j2k;image/jp2;image/pct;image/wdp;image/arw;image/icb;image/dng;image/vda;image/vst;image/svg;image/ptif;image/mef;image/xbm;image/svg+xml; Name=Pineapple Pictures Name[zh_CN]=菠萝看图 StartupNotify=false Type=Application Terminal=false pineapple-pictures-0.9.2/pineapple-pictures.pro000066400000000000000000000063401475760775000217130ustar00rootroot00000000000000# SPDX-FileCopyrightText: 2024 Gary Wang # # SPDX-License-Identifier: MIT QT += core widgets gui svg greaterThan(QT_MAJOR_VERSION, 5): QT += svgwidgets TARGET = ppic TEMPLATE = app DEFINES += PPIC_VERSION_STRING=\\\"x.y.z\\\" # The following define makes your compiler emit warnings if you use # any feature of Qt which has been marked as deprecated (the exact warnings # depend on your compiler). Please consult the documentation of the # deprecated API in order to know how to port your code away from it. DEFINES += QT_DEPRECATED_WARNINGS # You can also make your code fail to compile if you use deprecated APIs. # In order to do so, uncomment the following line. # You can also select to disable deprecated APIs only up to a certain version of Qt. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 CONFIG += c++17 lrelease embed_translations SOURCES += \ app/aboutdialog.cpp \ app/main.cpp \ app/framelesswindow.cpp \ app/mainwindow.cpp \ app/graphicsview.cpp \ app/bottombuttongroup.cpp \ app/graphicsscene.cpp \ app/navigatorview.cpp \ app/opacityhelper.cpp \ app/toolbutton.cpp \ app/settings.cpp \ app/settingsdialog.cpp \ app/metadatamodel.cpp \ app/metadatadialog.cpp \ app/exiv2wrapper.cpp \ app/actionmanager.cpp \ app/playlistmanager.cpp \ app/shortcutedit.cpp \ app/fileopeneventhandler.cpp HEADERS += \ app/aboutdialog.h \ app/framelesswindow.h \ app/mainwindow.h \ app/graphicsview.h \ app/bottombuttongroup.h \ app/graphicsscene.h \ app/navigatorview.h \ app/opacityhelper.h \ app/toolbutton.h \ app/settings.h \ app/settingsdialog.h \ app/metadatamodel.h \ app/metadatadialog.h \ app/exiv2wrapper.h \ app/actionmanager.h \ app/playlistmanager.h \ app/shortcutedit.h \ app/fileopeneventhandler.h TRANSLATIONS = \ app/translations/PineapplePictures.ts \ app/translations/PineapplePictures_zh_CN.ts \ app/translations/PineapplePictures_de.ts \ app/translations/PineapplePictures_es.ts \ app/translations/PineapplePictures_fr.ts \ app/translations/PineapplePictures_nb_NO.ts \ app/translations/PineapplePictures_nl.ts \ app/translations/PineapplePictures_ru.ts \ app/translations/PineapplePictures_si.ts \ app/translations/PineapplePictures_id.ts # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target RESOURCES += \ assets/resources.qrc # Generate from svg: # magick convert -density 512x512 -background none app-icon.svg -define icon:auto-resize app-icon.ico RC_ICONS = assets/icons/app-icon.ico # Windows only, for rc file (we're not going to use the .rc file in this repo) QMAKE_TARGET_PRODUCT = Pineapple Pictures QMAKE_TARGET_DESCRIPTION = Pineapple Pictures - Image Viewer QMAKE_TARGET_COPYRIGHT = MIT/Expat License - Copyright (C) 2024 Gary Wang # MSVC only, since QMake doesn't have a CMAKE_CXX_STANDARD_LIBRARIES or cpp_winlibs similar thing win32-msvc* { LIBS += -luser32 }