pax_global_header00006660000000000000000000000064147206712420014517gustar00rootroot0000000000000052 comment=fe06f90124a6e39e0448b3eac2fa7a64ece5aebf lxqt-wayland-session-0.1.1/000077500000000000000000000000001472067124200156245ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/.github/000077500000000000000000000000001472067124200171645ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/.github/ISSUE_TEMPLATE/000077500000000000000000000000001472067124200213475ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/.github/ISSUE_TEMPLATE/bug-report.md000066400000000000000000000041161472067124200237610ustar00rootroot00000000000000--- name: Bug report about: " Create a report to help us improve LXQt Wayland Session" title: '' labels: '' assignees: '' --- ##### Expected Behavior ##### Current Behavior ##### Possible Solution ##### Steps to Reproduce (for bugs) 1. 2. 3. 4. ##### Context Custom issue template Describe this issue template's purpose here. ##### System Information * Compositor used: * Distribution & LXQt Version: * Qt Version (see `lxqt-about`): lxqt-wayland-session-0.1.1/.github/ISSUE_TEMPLATE/feature_request.md000066400000000000000000000011231472067124200250710ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. lxqt-wayland-session-0.1.1/.gitignore000066400000000000000000000000061472067124200176100ustar00rootroot00000000000000build lxqt-wayland-session-0.1.1/CHANGELOG000066400000000000000000000007731472067124200170450ustar00rootroot00000000000000lxqt-wayland-session-0.1.1 / 2024-11-24 ======================================= * Fixed the issue which happened when full paths were used instead of the compositor's executable name. * Updated lxqt-hyprland.conf for Hyprland v.0.45. * Added `xdg-activation` to Wayfire's config. lxqt-wayland-session-0.1.0 / 2024-11-05 ======================================= * First release. For choosing a Wayland LXQt session in LXQt Session Settings. Supports Labwc, KWin, Wayfire, Hyprland, Sway, River and Niri. lxqt-wayland-session-0.1.1/CMakeLists.txt000066400000000000000000000042041472067124200203640ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.18.0 FATAL_ERROR) # CMP0000: Call the cmake_minimum_required() command at the beginning of the top-level # CMakeLists.txt file even before calling the project() command. # The cmake_minimum_required(VERSION) command implicitly invokes the cmake_policy(VERSION) # command to specify that the current project code is written for the given range of CMake # versions. project(lxqt-wayland-session) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") include(GNUInstallDirs) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_POSITION_INDEPENDENT_CODE ON) # Minimum Versions set(LXQT_MINIMUM_VERSION "2.1.0") find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED) find_package(PkgConfig REQUIRED) # Please don't move, must be after lxqt find_package(XdgUserDirs REQUIRED) set(LXQT_WAYLAND_SESSION_MAJOR_VERSION 0) set(LXQT_WAYLAND_SESSION_MINOR_VERSION 1) set(LXQT_WAYLAND_SESSION_PATCH_VERSION 1) set(LXQT_WAYLAND_SESSION_VERSION ${LXQT_WAYLAND_SESSION_MAJOR_VERSION}.${LXQT_WAYLAND_SESSION_MINOR_VERSION}.${LXQT_WAYLAND_SESSION_PATCH_VERSION}) include(LXQtPreventInSourceBuilds) include(LXQtCompilerSettings NO_POLICY_SCOPE) # Translations ********************************** include(LXQtTranslate) # merged from lxqt-common include(LXQtConfigVars) # startlxqtwayland script set(PREDEF_XDG_DATA_DIRS "$XDG_DATA_HOME") if(NOT("${LXQT_DATA_DIR}" MATCHES "^/usr(/local)?/share$")) set(PREDEF_XDG_DATA_DIRS "${PREDEF_XDG_DATA_DIRS}:${LXQT_DATA_DIR}") endif() set(PREDEF_XDG_DATA_DIRS "${PREDEF_XDG_DATA_DIRS}:/usr/local/share:/usr/share") set(PREDEF_XDG_CONFIG_DIRS "/etc:${LXQT_ETC_XDG_DIR}:/usr/share") configure_file(startlxqtwayland.in startlxqtwayland @ONLY) install(PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/startlxqtwayland" DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT Runtime ) #install(FILES /// evt. TODO manpage # startlxqt.1 # DESTINATION "${CMAKE_INSTALL_MANDIR}/man1" # COMPONENT Runtime #) add_subdirectory(configurations) add_subdirectory(wallpaper) add_subdirectory(labwc-themes) # *.desktop file for display managers add_subdirectory(waylandsession) lxqt-wayland-session-0.1.1/COPYING000066400000000000000000001035521472067124200166650ustar00rootroot00000000000000GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. “This License” refers to version 3 of the GNU General Public License. “Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. “The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. A “covered work” means either the unmodified Program or a work based on the Program. To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. “Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. “Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . lxqt-wayland-session-0.1.1/COPYING.LESSER000066400000000000000000000576361472067124200176740ustar00rootroot00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS lxqt-wayland-session-0.1.1/LICENSE000066400000000000000000000037221472067124200166350ustar00rootroot00000000000000LICENSE 1. GNU Lesser General Public License v2.1 Most of the code in this repository is licensed under the GNU Lesser General Public License v2.1. You can find the full text of the license in the COPYING.LESSER file. 2. Some configuration files in /configurations directory are licensed under the MIT License. See the LICENSE.MIT file for details. 3. Some configuration files in /configurations directory are licensed under the BSD 3-Clause License. See the LICENSE.BSD file for details. 4. Some configuration files in /configurations directory and files in /labwc-themes directory are licensed under the GNU General Public License v3.0. See the COPYING file for details. 5. Configuration files in /configurations/labwc directory are licensed under GNU General Public License v2.0. See the LICENSE.GPLv2 file for details. 6. Artwork in /wallpaper directory is licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). Files for Each License: COPYING.LESSER: Full text of the LGPL v2.1. COPYING: Full text of the GPL v3.0. LICENSE.MIT: Full text of the MIT License. LICENSE.GPLv2: Full text of GNU General Public License v2.0. LICENSE.BSD: Full text of the BSD 3-Clause License. License Attribution * GNU Lesser General Public License v2.1: Applies to the majority of the source code, except for the components specifically mentioned below, where the licenses below apply to the respective files only. * MIT License: Applies to lxqt-sway.conf and lxqt-wayfire.conf files in /configurations directory. * GNU General Public License v2.0: Applies to files in /configurations/labwc directory. * GNU General Public License v3.0: Applies to lxqt-river.conf and lxqt-niri.kdl file located in /configurations directory and themes in /labwc-themes directory. * BSD 3-Clause License: Applies to lxqt-hyprland.conf located in /configurations directory * Artwork in /wallpaper directory is licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). lxqt-wayland-session-0.1.1/LICENSE.BSD000066400000000000000000000027611472067124200172460ustar00rootroot00000000000000BSD 3-Clause License Copyright (c) 2022-2024, vaxerski All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. lxqt-wayland-session-0.1.1/LICENSE.GPLv2000066400000000000000000000432541472067124200175320ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. lxqt-wayland-session-0.1.1/LICENSE.MIT000066400000000000000000000020451472067124200172620ustar00rootroot00000000000000Copyright (c) 2016-2017 Drew DeVault 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. lxqt-wayland-session-0.1.1/README.md000066400000000000000000000034471472067124200171130ustar00rootroot00000000000000# lxqt-wayland-session Files needed for the LXQt Wayland Session: Wayland session start script, its desktop entry for display managers and default configurations for actually supported compositors which are: * Stacking WMs * Labwc (version 0.7.2 and higher) * Wayfire * kwin_wayland * Tiling Wms * Hyprland * Niri * river * Sway At startup a basic configuration file for those compositors will be copied to `$XDG_CONFIG_HOME/lxqt/wayland` directory if not existing already, except for labwc and `kwin_wayland` where their default configuration location is used. If no compositor is already set in `lxqt-config-session` Labwc will be started opening "Session Settings". Please refer to each compositors documentation for tweaking. ### Other compositors Any compositor which supports at least `wlr-layer-shell-unstable-v1` and (for taskbar)`wlr-foreign-toplevel-management-unstable-v1` protocols should work. A line `lxqt-session && ` is needed in the autostart configuration of the compositor. ### Compiling source code Runtime dependencies are [qtxdg-tools](https://github.com/lxqt/qtxdg-tools), [lxqt-session](https://github.com/lxqt/lxqt-session) and layer-shell-qt. Additional build dependencies are [lxqt-build-tools](https://github.com/lxqt/lxqt-build-tools), CMake and optionally Git to pull latest VCS checkouts. Code configuration is handled by CMake. CMake variable `CMAKE_INSTALL_PREFIX` has to be set to `/usr` on most operating systems. To build run `make`, to install `make install` which accepts variable `DESTDIR` as usual. ### License This project is licensed under the GNU Lesser General Public License v2.1. However, some files (e.g., files in the `/configurations` directory) are licensed under different licenses. See LICENSE for details. lxqt-wayland-session-0.1.1/configurations/000077500000000000000000000000001472067124200206565ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/configurations/CMakeLists.txt000066400000000000000000000007371472067124200234250ustar00rootroot00000000000000# install default config files to /usr/share/lxqt/wayland install(FILES lxqt-hyprland.conf lxqt-wayfire.ini lxqt-sway.config lxqt-river-init lxqt-niri.kdl DESTINATION "${CMAKE_INSTALL_DATADIR}/lxqt/wayland" COMPONENT Runtime ) install(FILES lxqt-labwc.png DESTINATION "${LXQT_SHARE_DIR}/graphics" COMPONENT Runtime ) install(DIRECTORY labwc firstrun DESTINATION "${CMAKE_INSTALL_DATADIR}/lxqt/wayland" COMPONENT Runtime ) lxqt-wayland-session-0.1.1/configurations/firstrun/000077500000000000000000000000001472067124200225325ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/configurations/firstrun/autostart000066400000000000000000000004151472067124200245030ustar00rootroot00000000000000lxqt-notificationd >/dev/null 2>&1 & notify-send -a "Welcome to LXQt - Wayland Session" -i dialog-information -t 30000 "No compositor is selected, please choose one in Wayland Settings." "The session will be restarted after closing the window." >/dev/null 2>&1 & lxqt-wayland-session-0.1.1/configurations/labwc/000077500000000000000000000000001472067124200217465ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/configurations/labwc/README000066400000000000000000000002471472067124200226310ustar00rootroot00000000000000Config layout for ~/.config/labwc/ - autostart - environment - menu.xml - rc.xml - themerc-override See `man labwc-config and `man labwc-theme` for further details. lxqt-wayland-session-0.1.1/configurations/labwc/autostart000066400000000000000000000025101472067124200237150ustar00rootroot00000000000000# Example autostart file for a labwc LXQt session # Applications started here won't be closed by `lxqt-leave --logout` and settings can be lost # Preferred place for starting wayland-only applications # Set background color or image (below the desktop): swaybg -i /usr/share/lxqt/wallpapers/origami-dark-labwc.png >/dev/null 2>&1 & # Faster startup for GTK apps: dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY > /dev/null 2>&1 & # Configure output directives such as mode, position, scale and transform. # Use wlr-randr to get your output names # Example ~/.config/kanshi/config below: # profile { # output HDMI-A-1 position 1366,0 # output eDP-1 position 0,0 # } # kanshi >/dev/null 2>&1 & # wdisplays can be used as well on the fly # # Note that in the context of idle system power management, it is *NOT* a good # idea to turn off displays by 'disabling outputs' for example by # `wlr-randr --output --off` because this re-arranges views # (since a837fef). Instead use a wlr-output-power-management client such as # https://git.sr.ht/~leon_plickat/wlopm # # Suspending can be configured in LXQt power management settings # Screen locking can be configured in Session Settings # Turn off display(s) after 5 minutes: swayidle -w timeout 300 "wlopm --off \*" resume "wlopm --on \*" > /dev/null 2>&1 & lxqt-wayland-session-0.1.1/configurations/labwc/environment000066400000000000000000000015261472067124200242410ustar00rootroot00000000000000# LXQt labwc environment file # This allows xdg-desktop-portal-wlr to function (e.g. for screen-recording) # XDG_CURRENT_DESKTOP is set to LXQt:labwc:wlroots at startup. # XDG_CURRENT_DESKTOP=wlroots # Disable hardware cursors. Most users wouldn't want to do this, but if you # are experiencing issues with disappearing cursors, this might fix it. # Autodetected at startup on virtualized hardware which use systemd #WLR_NO_HARDWARE_CURSORS=1 # For Java applications such as JetBrains/Intellij Idea, set this variable # to avoid menus with incorrect offset and blank windows # See https://github.com/swaywm/sway/issues/595 _JAVA_AWT_WM_NONREPARENTING=1 # Cursor theme and size are imported from LXQt at login. Configure under LXQt in "Appearance → Cursor". # Keyboard layout and toggle options are imported only once from LXQt, edit here to change lxqt-wayland-session-0.1.1/configurations/labwc/menu.xml000066400000000000000000000011131472067124200234300ustar00rootroot00000000000000 lxqt-wayland-session-0.1.1/configurations/labwc/rc.xml000066400000000000000000000551771472067124200231130ustar00rootroot00000000000000 server 0 no no no no center Vent 10 yes sans 13 normal bold sans 13 normal bold sans 12 normal normal sans 13 normal normal 20 20 20 150 Never yes no yes no 1 yes always 1000 Default on global 25 600 lxqt-leave 500 1 yes 1.0 250 400 400 2.0 0.2 true lxqt-wayland-session-0.1.1/configurations/labwc/themerc000066400000000000000000000030771472067124200233270ustar00rootroot00000000000000# This file contains all themerc options with default values # # System-wide and local themes can be overridden by creating a copy of this # file and renaming it to $HOME/.config/labwc/themerc-override. Be careful # though - if you only want to override a small number of specific options, # make sure all other lines are commented out or deleted. # general border.width: 1 padding.height: 3 # window border window.active.border.color: #dddad6 window.inactive.border.color: #f6f5f4 # window titlebar background window.active.title.bg.color: #dddad6 window.inactive.title.bg.color: #f6f5f4 # window titlebar text window.active.label.text.color: #000000 window.inactive.label.text.color: #000000 window.label.text.justify: center # window buttons window.active.button.unpressed.image.color: #000000 window.inactive.button.unpressed.image.color: #000000 # Note that "menu", "iconify", "max", "close" buttons colors can be defined # individually by inserting the type after the button node, for example: # # window.active.button.iconify.unpressed.image.color: #333333 # menu menu.overlap.x: 0 menu.overlap.y: 0 menu.width.min: 20 menu.width.max: 200 menu.items.bg.color: #fcfbfa menu.items.text.color: #000000 menu.items.active.bg.color: #dddad6 menu.items.active.text.color: #000000 menu.items.padding.x: 7 menu.items.padding.y: 4 menu.separator.width: 1 menu.separator.padding.width: 6 menu.separator.padding.height: 3 menu.separator.color: #888888 # on screen display (window-cycle dialog) osd.bg.color: #dddda6 osd.border.color: #000000 osd.border.width: 1 osd.label.text.color: #000000 lxqt-wayland-session-0.1.1/configurations/labwc/themerc-override000066400000000000000000000005441472067124200251400ustar00rootroot00000000000000#themerc-override. Content in this file overrides or adds settings to all themes. # Shadows (needs activation in rc.xml) window.active.shadow.size: 70 window.inactive.shadow.size: 60 window.active.shadow.color: #00000080 window.inactive.shadow.color: #00000080 # Overlay color when window touches screen borders snapping.overlay.edge.bg.color: #9ba3a150 lxqt-wayland-session-0.1.1/configurations/lxqt-hyprland.conf000066400000000000000000000227311472067124200243410ustar00rootroot00000000000000# This is the example Hyprland config file with some additions for LXQt. # A newer version may be available in /usr/share/hyprland/hyprland.conf. # Refer to the wiki for more information. # https://wiki.hyprland.org/Configuring/Configuring-Hyprland/ # Please note not all available settings / options are set here. # For a full list, see the wiki # You can split this configuration into multiple files # Create your files separately and then link them to this file like this: # source = ~/.config/hypr/myColors.conf ################ ### MONITORS ### ################ # See https://wiki.hyprland.org/Configuring/Monitors/ monitor=,preferred,auto,1 ################### ### MY PROGRAMS ### ################### # See https://wiki.hyprland.org/Configuring/Keywords/ # Set programs that you use $terminal = qterminal $fileManager = pcmanfm-qt $menu = lxqt-runner ############ ### LXQt ### ############ env = QT_QPA_PLATFORMTHEME,lxqt env = QT_PLATFORM_PLUGIN,lxqt env = XDG_MENU_PREFIX,lxqt- # start and exit LXQt session: exec-once=swaybg -i /usr/share/lxqt/wallpapers/origami-dark.png exec-once=lxqt-session && hyprctl dispatch exit # If not using lxqt-session uncomment components to autostart #exec-once=lxqt-notificationd #exec-once=sleep 2 && lxqt-powermanagement #exec-once=lxqt-policykit #exec-once=pcmanfm-qt --desktop bind = Alt, F2, exec, $menu bind = Alt, SPACE, exec, $menu bind = , F12, exec, qterminal -d bind = , XF86PowerOff, exec, lxqt-leave bind = SUPER, L, exec, lxqt-leave --lockscreen # Open fancy menu with meta key bindr = SUPER, Super_L, exec, qdbus org.kde.StatusNotifierWatcher /global_key_shortcuts/panel/fancymenu/show_hide org.lxqt.global_key_shortcuts.client.activated # Floating windows: windowrule = float,^(?!lxqt-archiver)(lxqt-.*|pavu.*|.*copyq|sddm-conf|qarma|.*portal-lxqt)$ windowrule = float,title:^(Preferen.*)$ windowrulev2 = dimaround,floating:1 # No animations for lxqt-runner layerrule = noanim, launcher layerrule = dimaround, ^(launcher|dialog)$ # Brightness bind=,XF86MonBrightnessUp,exec, lxqt-config-brightness -i bind=,XF86MonBrightnessDown,exec, lxqt-config-brightness -d ############################# ### ENVIRONMENT VARIABLES ### ############################# # See https://wiki.hyprland.org/Configuring/Environment-variables/ # Env vars can also be set in LXQt Session Settings → Advanced env = XCURSOR_SIZE,24 env = HYPRCURSOR_SIZE,24 ##################### ### LOOK AND FEEL ### ##################### # Refer to https://wiki.hyprland.org/Configuring/Variables/ # https://wiki.hyprland.org/Configuring/Variables/#general general { gaps_in = 5 gaps_out = 20 border_size = 2 # https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg col.inactive_border = rgba(595959aa) # Set to true enable resizing windows by clicking and dragging on borders and gaps resize_on_border = false # Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on allow_tearing = false layout = master } # https://wiki.hyprland.org/Configuring/Variables/#decoration decoration { rounding = 10 # Change transparency of focused and unfocused windows active_opacity = 1.0 inactive_opacity = 1.0 #https://wiki.hyprland.org/Configuring/Variables/#shadow shadow { enabled = true range = 15 render_power = 2 color = rgba(1a1a1a60) offset = 2, 3 } # https://wiki.hyprland.org/Configuring/Variables/#blur blur { enabled = true size = 3 passes = 1 vibrancy = 0.1696 } } # https://wiki.hyprland.org/Configuring/Variables/#animations animations { enabled = yes, please :) # Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more bezier = easeOutQuint,0.23,1,0.32,1 bezier = easeInOutCubic,0.65,0.05,0.36,1 bezier = linear,0,0,1,1 bezier = almostLinear,0.5,0.5,0.75,1.0 bezier = quick,0.15,0,0.1,1 animation = global, 1, 10, default animation = border, 1, 5.39, easeOutQuint animation = windows, 1, 4.79, easeOutQuint animation = windowsIn, 1, 4.1, easeOutQuint, popin 87% animation = windowsOut, 1, 1.49, linear, popin 87% animation = fadeIn, 1, 1.73, almostLinear animation = fadeOut, 1, 1.46, almostLinear animation = fade, 1, 3.03, quick animation = layers, 1, 3.81, easeOutQuint animation = layersIn, 1, 4, easeOutQuint, fade animation = layersOut, 1, 1.5, linear, fade animation = fadeLayersIn, 1, 1.79, almostLinear animation = fadeLayersOut, 1, 1.39, almostLinear animation = workspaces, 1, 1.94, almostLinear, fade animation = workspacesIn, 1, 1.21, almostLinear, fade animation = workspacesOut, 1, 1.94, almostLinear, fade } # Ref https://wiki.hyprland.org/Configuring/Workspace-Rules/ # "Smart gaps" / "No gaps when only" # uncomment all if you wish to use that. # workspace = w[t1], gapsout:0, gapsin:0 # workspace = w[tg1], gapsout:0, gapsin:0 # workspace = f[1], gapsout:0, gapsin:0 # windowrulev2 = bordersize 0, floating:0, onworkspace:w[t1] # windowrulev2 = rounding 0, floating:0, onworkspace:w[t1] # windowrulev2 = bordersize 0, floating:0, onworkspace:w[tg1] # windowrulev2 = rounding 0, floating:0, onworkspace:w[tg1] # windowrulev2 = bordersize 0, floating:0, onworkspace:f[1] # windowrulev2 = rounding 0, floating:0, onworkspace:f[1] # See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more dwindle { pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below preserve_split = true # You probably want this } # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more master { mfact = +0.67 new_on_top = true new_status = master } # https://wiki.hyprland.org/Configuring/Variables/#misc misc { force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :( } ############# ### INPUT ### ############# # https://wiki.hyprland.org/Configuring/Variables/#input input { kb_layout = us kb_variant = kb_model = kb_options = kb_rules = follow_mouse = 1 sensitivity = 0 # -1.0 - 1.0, 0 means no modification. touchpad { natural_scroll = false } } # https://wiki.hyprland.org/Configuring/Variables/#gestures gestures { workspace_swipe = false } # Example per-device config # See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more device { name = epic-mouse-v1 sensitivity = -0.5 } #################### ### KEYBINDINGSS ### #################### # See https://wiki.hyprland.org/Configuring/Keywords/ # See https://github.com/lxqt/lxqt/wiki/Wayland#global-shortcuts $mainMod = SUPER # Sets "Windows" key as main modifier # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more bind = $mainMod, Q, exec, $terminal bind = $mainMod, C, killactive, bind = $mainMod, M, exit, bind = $mainMod, E, exec, $fileManager bind = $mainMod, V, togglefloating, bind = $mainMod, R, exec, $menu bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, J, togglesplit, # dwindle # Move focus with mainMod + arrow keys bind = $mainMod, left, movefocus, l bind = $mainMod, right, movefocus, r bind = $mainMod, up, movefocus, u bind = $mainMod, down, movefocus, d # Switch workspaces with mainMod + [0-9] bind = $mainMod, 1, workspace, 1 bind = $mainMod, 2, workspace, 2 bind = $mainMod, 3, workspace, 3 bind = $mainMod, 4, workspace, 4 bind = $mainMod, 5, workspace, 5 bind = $mainMod, 6, workspace, 6 bind = $mainMod, 7, workspace, 7 bind = $mainMod, 8, workspace, 8 bind = $mainMod, 9, workspace, 9 bind = $mainMod, 0, workspace, 10 # Move active window to a workspace with mainMod + SHIFT + [0-9] bind = $mainMod SHIFT, 1, movetoworkspace, 1 bind = $mainMod SHIFT, 2, movetoworkspace, 2 bind = $mainMod SHIFT, 3, movetoworkspace, 3 bind = $mainMod SHIFT, 4, movetoworkspace, 4 bind = $mainMod SHIFT, 5, movetoworkspace, 5 bind = $mainMod SHIFT, 6, movetoworkspace, 6 bind = $mainMod SHIFT, 7, movetoworkspace, 7 bind = $mainMod SHIFT, 8, movetoworkspace, 8 bind = $mainMod SHIFT, 9, movetoworkspace, 9 bind = $mainMod SHIFT, 0, movetoworkspace, 10 # Example special workspace (scratchpad) bind = $mainMod, S, togglespecialworkspace, magic bind = $mainMod SHIFT, S, movetoworkspace, special:magic # Scroll through existing workspaces with mainMod + scroll bind = $mainMod, mouse_down, workspace, e+1 bind = $mainMod, mouse_up, workspace, e-1 # Move/resize windows with mainMod + LMB/RMB and dragging bindm = $mainMod, mouse:272, movewindow bindm = $mainMod, mouse:273, resizewindow # Use TAB in master layout bind = Ctrl, Tab, layoutmsg, swapwithmaster bind = Alt, Tab, layoutmsg, swapnext ############################## ### WINDOWS AND WORKSPACES ### ############################## # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more # See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules # Example windowrule v1 # windowrule = float, ^(kitty)$ # Example windowrule v2 # windowrulev2 = float,class:^(kitty)$,title:^(kitty)$ # Ignore maximize requests from apps. You'll probably like this. windowrulev2 = suppressevent maximize, class:.* # Fix some dragging issues with XWayland windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 misc { disable_hyprland_logo = true focus_on_activate = true disable_xdg_env_checks = true } lxqt-wayland-session-0.1.1/configurations/lxqt-labwc.png000066400000000000000000000556101472067124200234510ustar00rootroot00000000000000PNG  IHDR6eXIfII* (1 2i 2 2GIMP 2.10.342023:07:30 19:24:31vjNiCCPICC profilex}=H@_[" dNAEkP! :\MGbYWWAquqRtZxp܏wwT#eq!]b}L}N_.ʳ9z@caolZ:}0+J 9A$~~6ҩy0PhcYP#Q?yZ= C9me4" B*J(BV)ڏ{H.\%0r,ݚI7):_lcmv<WZ_ZZ.[\OdH3, t5q pp({]{Αr˛ʣ xiTXtXML:com.adobe.xmp L1bKGD pHYsgRtIMEׄ! IDATxy\UsګȈADžq}gQqE "DBB :/U]{NHz~|N:B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B% Y~a^{ѸPB"[+B!A.,B!@w+ B!BBK(K-B!@AkP@xPD B-B*!@!P@!,Ih’n,B &GrA ڂOtn#@xB  B BBYhhڄ,B B ,.4K 5teZ B( ZB!Bh Y0 F(dV0NhBBhZ*B(BBjK@(!F9bBѠEC!d4kDx:"FoJIR\k@MCў\,,ozL!%(MdY<5W.˥pW-Z5BE\M( ,y K(Fc zRMXB!ubi-@_S a3Bp0MwЅEo oK|Mh !98lۦB9:|G?zy) nۊD̙g)[[[ ?L&]<( x,,B!@.BjZ B( B( BsD'<!@!P@!P@!P@! !,,R0Z P<B!B!B!B!B!B!B!B!Ba.!B!B!B!Bj 66C$BȜ@BBBme iKRD)" iX1DhBѲb 4wWC+мb B#AohZz +C( dIp,ׯcbm@cia. Y% $d"J0a@K!<fI ԋZ !zN^s'KVR@JHH.Bte/8UfB!tI4wBZWV BW"xi a! 6Um Q@HU` :DC**Q}e) Yެ_#>a挗aϪ,P" BY㶐|<;ǗE.r9+.HZ@2lH~wݞ7dsRI6E#$g^⾛~}'=?XɜJ/a5QL~@ݼJakEbz]c PP[ө>'%֤KH]&?+%oC~$,׿Aׄ4 `: a~{'?w>ޙ}5sI o l*V:$75v81yߥ"y/q+H9[+/}fX\҃/m3LZ+v}O[JD!X ϕ{= |8+ $Hܱm:Z9:]wo7,$o+̖tZ^hj j' yDHۯ $Sz-)brRce'ǡBm-V*OYi:o}?έ!y羭%Vh1c"tXf3^_YYXH0Ě|3԰h@@3L؎->b+;Ed=mgƿԬgji%D:&źZĚܔfHH H2C)..N ` gXXx׼=V˽_Ö䘸r^+n5N1+𤏂g׈nH@/GzGB,hIԪ 4 6aYxJ7- Ѭ3?Źӵt]fd{?L D mVcK@3$`%6L x)&jPLM1LԤܿ#|qq4 VsMO ?\wϯMYu+fQg7=ӣWZѡ8!;k =pwVB7, AU0OC6zpK0 4 ٮ< 8ux [|5A t.jSZx{D}jgMհhm x6; S?!D]?/)"5# 牛h)qESG$,lstݽ۸xwK#/ ŌǛ(,ac8 O幀kNI|iIhl9 ?u1 ! d >߽ yLXGKsF Iǯ֯xmvy=s飛4}[nsa1c W.vA ,?b=ŵiJ@eɧ~&R[wgk:,Ks&Z#EiӾqmo (Ў]ͭ]r .xai7-Ζ1{ CDcC @*5WʧjiJygYd6@EC~Y`pt\}BF@Մ("' K 8QE }K ӡIz1+~Ϻ8>y{%vMm_:e5CQ5_ݞ}vF"D! 3ʕu4QBS5!2,@4\Rs24CudN7oս~Wлr9 KS4Kd/ڶ>j|u ^L[^GHfЭS3 M_pztR;H(dbVeb{~dr2}oY%Ni0"?833"XH9YE} USv_uա SaqN .Z@@i,uiXwkm 25.~ӫZ\5ΗR~ٱ#ݵ!iq*!{C] 7)] ͢cb ǚCIjG@ns!!EIKULDMC;ͯ v4x$uF.:=H,,?HXi0#T]y%/fٵ`ZjmhāGL'/ Dž}k @*mQb1<o?r.ǻsb}kKLXG|xq=?Vc`!b-@j f@Yd>rv\\8x'|87{Jm,o7䝯k^s3BA=P.! Ӣ~ &D67;!TǚD@6SpX9K)[qzõvuJ*!O{BxIU'Gzn4u.Y$(ŏRw/9ǁ!`jLYPaH]',2vd]O:3M!"W߻&/C5pk̾G37׶dĂXR̲ۙ=nMɩq 8DK7i: VQa d-|߶%aM! V\U /n-Ճ ʀ&'E{=JͣzC+ &3b ]--1l/ ]\o~%5+Thfԭt?YzvŠa=Mِ(z6ܵ@W!J9U鳪 ʖLDZ Z8λ#yZG?CJ\T0DaL?Х<\n)?{/5<91TJJ_=] gBLJ+BZ`~Rí^rS=bcQmTRD^bQ EyM_Ryޮ[y+zfYff|@iyT7.USE)h  ' [{!!Ɛ`FYA*iHxiC"b;MyγᎶЯ~/?Z/mz N=9f_C;tߪē>0fQ)sТy'u2:uR+/Frߍ] XCK# /)j!G^r&V+O?q併 7xY+RKF&#l|2:%S@ziR^tD0hyYdR}ټ):2,0 SN006_yn=8\엖ZK/}ԒBvwq+ f#a6@ڲ{(຾=Y*c)A2@~ t*GFpR\ 9Zr?`^[c,EVh׎o5"Z뽭_xsF ]mQ# ![@wPk"Tâ `f7iPtMAdS/If&-}%XXC{`@uw]K/4NY5Z[N{Aɯm6c2513<ה%qA9E=ɧ!'~ 5r?2@M0L lHm= Na\gaϓ_4&shZGֿOOeJ-;Q,`AĹ!\CXl:," C( 4wGK @(4wv}ɃBgbŞ%0 Z¿tNI{FR"1a 0_Cb@bo!!U@0C:W|zk@$i=Bcc߹;oﯮ9 3z9wfE,x1d" jJX,Yh*oQ19^ 'sR'jJu&/m=cʵ! ADnϔrrSlqB;8 Mhi<4_y۟H)M!Of={c=H׆pKtM}fXfKX1Lr_U~Te}7lO0;N3>"7j5`fR1o.ޱ>KWⵔW$PȨXr5!F6hjB1j&6แijEfWF474aǬp1'Q;]oQ#nF|Z([ F P&R5A./5ǡ~@G^q-{VcLpf}; C؞7MB&TEzbȹ>6)0D84}ϗH'Mz˪*whX\CYpxs(9%b>c- Y~([&RVy*Ќr<]C[A+zviՒ1 srKKc+(Wn 7wXDYP~{&`*/IɈn>=-%M-7:SR/o% kQhiP@{9|p.!v`Kqr_hyM LG82Z{[XT3=s}H?`wBjO(6^iLv(TcDÚrAhо 3 a^ܴ@d8)"drKMFr)JBY"&LOt+P"i!@37f;(7 3*LKK4$ IDATP@zXڬCȑ%l=̓oTY?5!Bc@́&PiQ}㓀S&w^: W`|JyUT8מ*, Ŕt^axTlyH !Ïо3Vk(dʩdbU,`P"kWQD( íw{- UްK-V {<}"# JWXܒRAtC-W$֢ڧR?@,Ac&Ydr^[s-@ׅs@)уEĚAZ" @BY&ݣdqzE ,!Bf;JKo~3(J6C*˰/ <}p8,")73/7<:3Zx ɢa*L/$b>mJH- pԖڐv2ݱ_D*tCRcozx( BrG&'֝,.΁e95p &D(tچĚx( sfn_E)A!'} uЗޗJ[*# 0Le, yB@7UMH8ln!3<ԔףTW{㮭.t^@OpB(<ӷt0B"a k9샸t1椗_ByFpӏZ@dܽC0@G3?e iUfZ9] w|F 2_8¸xgf hHZXBۼݺ% Ȝ7I+>@k0VC9uWp+VkΗ]I]Iш`^ǐ w-_~vYHC/  ط}⋲p}֋iv懰0ycWQlϙܞd˿?sexAhB+G%D>qmP@Cr#;[-m:R׸COR9k˼ \y`aB@VS?VY Klb[uks5n]#ԗ5W]޽qUhN17tS?#5 -EgxHz?w%SmCν<>ݩS\==xwp ~0߰ ;rņx:! ԑj[tav_ew_Cf5$"1 T5^"R?!CGl/ EH#v {]}u7J8DFU3Ū c4vU \}G)hB5ޕդ4u\6@7jԢ${ |^=7o'/:|l6wgkvq M6WH"Z2K.4$6 L< pB$ @) wvndP:Յo)dr'N3Ÿ1)'?%2ړI/" @HC=hNGyaQ@ﺲ8:01yg\rn Gz(zw>%;?ErG ."}߃\%w>xs3qv=dK}V<ncvF#їnoyj݀ !"M TCJ!@2} OXcGW4ݔW71`CƙhB`Ԟ¾要䧮QK@(ZLgaU/qv](7Q$us K,essn2UƑF%M靟z۸*5BSX{Dc;D(^nn"4PtliB>]X@*h |hnԠis*X7w |vnĭ<)5D h_ ګ sb@fH@f&"gQ@sso~gxy|+¡ҒHy8w/|v٨1ACDhP.,m.wJ =L  -:Vt_-n&_{B}њǤS[Ǯx䕭HJݍ8n,NʅKaQ.&Q@%;v;Mv>1g2WugĕƝٙ;pQGa `T}D`ܺ}T|(kjLrdvitө6p}*NN|GGޘ޵[EEArGlq2>R my6)5%\Ak_4ca-K;D-l1{'w+6{"?"+!ѱc5^Se^-C|½Q@!&zg';hu $F~}f8U*aQ<$ =wTl+7BL7z]aomKh>,-_ّ]Wg:@J8T ,^sPȨq|)|n +}ݑQO]}' / Gs?/`+wNHnTSu" ]TAa0d6zgzqzG$$ Vm׋)7)7Nm{ !g}+oBq`t&05Sc$ 9Kh>-G'UM ⴖ&&Eė{#}G_;uBۺmbE_:WCF -7ODn ̾cԿOZ8nv5%"%ˆOz6ew}bc=ܵ:}=}@Srai6Z<80SP@Ȭퟬ?Ox7?gZ'%51%U|H|'sw]|pꈞS%z![z xKy`"f^>NR<( dNl٣}`4NEDۏR.O-!s3?Wc DZUͭZ8%Q9^-QX^e? _LL۳y;KŒxɉwt-mb,ܗޱ!d/g~QOtIPѺ,T|غBLVQzTz<5{OEJ c|h+;ؖ=`6r|]o̫"[MhPuX]"bAqIQ@<?1mo? MxE߇8(LGN?Yɑ}ےtE [ΕC•^qKfO᧣,?pMq'ĚڻA$zT`Y j$p*cbrt09﹂4ѹǝ}1vhT[ ]c>?= xyxodjwھwf !8d>#(w>qWA-=@S[yXTVZz.P@ov?o% 7-ڇ:_|_S|o&TtOivihFCl i냚NYqD ]֕jPT y'[+,_B>X=Hqy딞H='+N=^WAծd1cy& L! .E m%о\f]i%q59C= +/KցRt&Z@s'm^>W3C3R*192yBby͝Σu@b-_,8S<\hY}hjHx̀:D{|O/5߫If\#C&!GCSE7 mR-]J@e Fu y9êVDJj͞w{}c@C?Z ̉5ϔhF WAH#m!ţN.))@& FC6%[)BȜXL)@*p q3iXa~ 2=X?0֯cbA( 3}c@0+Ȼ!;*QD,j?!ʴ]W#}aP@9&Ī%:!;YT@\-n* z=aWVyUTchiu !GMSwBw#҇vH*+ T\P/MY<<(f m%"Q BHۺmM ! SYV@}.ܨU5 r3xRg镶$86PSc#=ͿA( <--=}h]oQ5f`۰TtUG\ rjTu 2KxF$R0s\J텦6BSAD/DhjhhUR;k6GZQ@f]519d^!Znt]qm'a^~yMD jM@e|fpM?^H_Y)Mwh0rrHKB!5 U?`a!P'߰*x _OBBq1M鯙%5c]?*mUr>{/f%5.v^*5wtr[_I6D$2覺SeNE9SH, eaC>W?Q y(1Œ`" O v|k[.K\GU2ԨrSMa 9|#ŃP@< \<'x+AS I"2 <3JƴPo3E;VyX'uU30q 턜l8;g{I1 q07"$<$nCE;3Ecf/)?%;RבO@yv 2TRvmbP@?:MYV*EA{gM!G{+pmJUC@jT2@6ɖ$BjR9pi" D.)ˣr)%U`` wP@!P1$-TU)rWMWrA( ,kKcfM!A>]r~K]=Wp. 8%eq 嚎,d~ "=F Co(> ![4PNw)JOUq ,d%KA( ,Kv#:)xLCkGKW1i+וOAf&UߪA, yHϰJqs)ݫj8 Y.@ ~! ox !J<|O A MB; wC B!dy!B|)P%eEd@fgR^*B25FR<tTnK_\R3cfo0̰ZBr8vTYOM Fʹ3 *sS.3S,e!si 3'ܐP@9;ɼyy3Oѵ3[WFv"VsZ8i-/i2sZ_uT~oxW1Nݶҍҳԁ<BYN (LM)nV M?d4me0F7Ҍ#kCf5D )R1!RUq͜8sA2I2c+kyX NIeP aw!bXi?uSE{Ea4IV2"5{!^xafF`9Dn nTd-'HC B"۷n gx(߽p`}o8U .46_\è+ѫ|w=kwFmb3sÕI6p\)yUR>  :K|?YZ6T4Bd0@ /U̥򪥦Q8c,@HŮwsO  7х84<$3I4>cmdh3*Ra{=In 2_BT*dx|@ WZ:fqߕIzGm_+.H^~sSom/M-M?v c Y剝(2c]*`_j5-yT @, &]@Iu ɱo f`/oLZ޼0aZAԫMzT @W^Rv/T) @WѴ="i5SY̺ R4Q3/m& "9ӏSt}p ֡iIX uBwxJ2t%Nl@=Tfyj_^@Сv6x)m+BCky4Y|=gYl as?r&NI 6K4 أi*y.>AW 扔%ZtkKfkXЈLZͤ"yMcMIǗ,h7NJHT~~&㧬 =r|Xd6z .@jgSa%K!=ut%šdɽWt j;04#n@6!-0֡8&6쵩@V3D3u~4,;JH = yUY|-@TV}$KHW>=;!JۺI΀?Y!R; ]Y:xV k)‰j˩|8oh5wMUJef7|s5͂2ҥM";#ñzU!_dSy] @YD@?WE|QOGȹ IENDB`lxqt-wayland-session-0.1.1/configurations/lxqt-niri.kdl000066400000000000000000000502201472067124200233000ustar00rootroot00000000000000// Default niri config (v0.1.9) with some additions and modifications // for LXQt. You may find a more recent version in // /usr/share/doc/niri/default-config.kdl. // This config is in the KDL format: https://kdl.dev // "/-" comments out the following node. // Check the wiki for a full description of the configuration: // https://github.com/YaLTeR/niri/wiki/Configuration:-Overview // Input device configuration. // Find the full list of options on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Input input { keyboard { xkb { // You can set rules, model, layout, variant and options. // For more information, see xkeyboard-config(7). // For example: layout "us" // options "grp:win_space_toggle,compose:ralt,ctrl:nocaps" } } // Next sections include libinput settings. // Omitting settings disables them, or leaves them at their default values. touchpad { // off tap dwt dwtp natural-scroll accel-speed 0.6 // accel-profile "flat" // scroll-method "two-finger" // disabled-on-external-mouse } mouse { // off // natural-scroll // accel-speed 0.2 // accel-profile "flat" // scroll-method "no-scroll" } // Uncomment this to make the mouse warp to the center of newly focused windows. // warp-mouse-to-focus // Focus windows and outputs automatically when moving the mouse into them. // Setting max-scroll-amount="0%" makes it work only on windows already fully on screen. // focus-follows-mouse max-scroll-amount="0%" } // You can configure outputs by their name, which you can find // by running `niri msg outputs` while inside a niri instance. // The built-in laptop monitor is usually called "eDP-1". // Find more information on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Outputs // Remember to uncomment the node by removing "/-"! /-output "eDP-1" { // Uncomment this line to disable this output. // off // Resolution and, optionally, refresh rate of the output. // The format is "x" or "x@". // If the refresh rate is omitted, niri will pick the highest refresh rate // for the resolution. // If the mode is omitted altogether or is invalid, niri will pick one automatically. // Run `niri msg outputs` while inside a niri instance to list all outputs and their modes. mode "1920x1080@120.030" // You can use integer or fractional scale, for example use 1.5 for 150% scale. scale 2 // Transform allows to rotate the output counter-clockwise, valid values are: // normal, 90, 180, 270, flipped, flipped-90, flipped-180 and flipped-270. transform "normal" // Position of the output in the global coordinate space. // This affects directional monitor actions like "focus-monitor-left", and cursor movement. // The cursor can only move between directly adjacent outputs. // Output scale and rotation has to be taken into account for positioning: // outputs are sized in logical, or scaled, pixels. // For example, a 3840×2160 output with scale 2.0 will have a logical size of 1920×1080, // so to put another output directly adjacent to it on the right, set its x to 1920. // If the position is unset or results in an overlap, the output is instead placed // automatically. position x=1280 y=0 } // Settings that influence how windows are positioned and sized. // Find more information on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Layout layout { // Set gaps around windows in logical pixels. gaps 16 // When to center a column when changing focus, options are: // - "never", default behavior, focusing an off-screen column will keep at the left // or right edge of the screen. // - "always", the focused column will always be centered. // - "on-overflow", focusing a column will center it if it doesn't fit // together with the previously focused column. center-focused-column "never" // You can customize the widths that "switch-preset-column-width" (Mod+R) toggles between. preset-column-widths { // Proportion sets the width as a fraction of the output width, taking gaps into account. // For example, you can perfectly fit four windows sized "proportion 0.25" on an output. // The default preset widths are 1/3, 1/2 and 2/3 of the output. proportion 0.33333 proportion 0.5 proportion 0.66667 // Fixed sets the width in logical pixels exactly. // fixed 1920 } // You can also customize the heights that "switch-preset-window-height" (Mod+Shift+R) toggles between. // preset-window-heights { } // You can change the default width of the new windows. default-column-width { proportion 0.5; } // If you leave the brackets empty, the windows themselves will decide their initial width. // default-column-width {} // By default focus ring and border are rendered as a solid background rectangle // behind windows. That is, they will show up through semitransparent windows. // This is because windows using client-side decorations can have an arbitrary shape. // // If you don't like that, you should uncomment `prefer-no-csd` below. // Niri will draw focus ring and border *around* windows that agree to omit their // client-side decorations. // // Alternatively, you can override it with a window rule called // `draw-border-with-background`. // You can change how the focus ring looks. focus-ring { // Uncomment this line to disable the focus ring. // off // How many logical pixels the ring extends out from the windows. width 4 // Colors can be set in a variety of ways: // - CSS named colors: "red" // - RGB hex: "#rgb", "#rgba", "#rrggbb", "#rrggbbaa" // - CSS-like notation: "rgb(255, 127, 0)", rgba(), hsl() and a few others. // Color of the ring on the active monitor. active-color "#7fc8ff" // Color of the ring on inactive monitors. inactive-color "#505050" // You can also use gradients. They take precedence over solid colors. // Gradients are rendered the same as CSS linear-gradient(angle, from, to). // The angle is the same as in linear-gradient, and is optional, // defaulting to 180 (top-to-bottom gradient). // You can use any CSS linear-gradient tool on the web to set these up. // Changing the color space is also supported, check the wiki for more info. // // active-gradient from="#80c8ff" to="#bbddff" angle=45 // You can also color the gradient relative to the entire view // of the workspace, rather than relative to just the window itself. // To do that, set relative-to="workspace-view". // // inactive-gradient from="#505050" to="#808080" angle=45 relative-to="workspace-view" } // You can also add a border. It's similar to the focus ring, but always visible. border { // The settings are the same as for the focus ring. // If you enable the border, you probably want to disable the focus ring. off width 4 active-color "#ffc87f" inactive-color "#505050" // active-gradient from="#ffbb66" to="#ffc880" angle=45 relative-to="workspace-view" // inactive-gradient from="#505050" to="#808080" angle=45 relative-to="workspace-view" } // Struts shrink the area occupied by windows, similarly to layer-shell panels. // You can think of them as a kind of outer gaps. They are set in logical pixels. // Left and right struts will cause the next window to the side to always be visible. // Top and bottom struts will simply add outer gaps in addition to the area occupied by // layer-shell panels and regular gaps. struts { // left 64 // right 64 // top 64 // bottom 64 } } // Add lines like this to spawn processes at startup. // Note that running niri as a session supports xdg-desktop-autostart, // which may be more convenient to use. // See the binds section below for more spawn examples. // spawn-at-startup "alacritty" "-e" "fish" spawn-at-startup "sh" "-c" "lxqt-session && niri msg action quit -s" // Uncomment this line to ask the clients to omit their client-side decorations if possible. // If the client will specifically ask for CSD, the request will be honored. // Additionally, clients will be informed that they are tiled, removing some rounded corners. // prefer-no-csd // You can change the path where screenshots are saved. // A ~ at the front will be expanded to the home directory. // The path is formatted with strftime(3) to give you the screenshot date and time. screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png" // You can also set this to null to disable saving screenshots to disk. // screenshot-path null // Animation settings. // The wiki explains how to configure individual animations: // https://github.com/YaLTeR/niri/wiki/Configuration:-Animations animations { // Uncomment to turn off all animations. // off // Slow down all animations by this factor. Values below 1 speed them up instead. // slowdown 3.0 } // Window rules let you adjust behavior for individual windows. // Find more information on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Window-Rules // Work around WezTerm's initial configure bug // by setting an empty default-column-width. window-rule { // This regular expression is intentionally made as specific as possible, // since this is the default config, and we want no false positives. // You can get away with just app-id="wezterm" if you want. match app-id=r#"^org\.wezfurlong\.wezterm$"# default-column-width {} } // Example: block out two password managers from screen capture. // (This example rule is commented out with a "/-" in front.) /-window-rule { match app-id=r#"^org\.keepassxc\.KeePassXC$"# match app-id=r#"^org\.gnome\.World\.Secrets$"# block-out-from "screen-capture" // Use this instead if you want them visible on third-party screenshot tools. // block-out-from "screencast" } binds { // Keys consist of modifiers separated by + signs, followed by an XKB key name // in the end. To find an XKB name for a particular key, you may use a program // like wev. // // "Mod" is a special modifier equal to Super when running on a TTY, and to Alt // when running as a winit window. // // Most actions that you can bind here can also be invoked programmatically with // `niri msg action do-something`. // Mod-Shift-/, which is usually the same as Mod-?, // shows a list of important hotkeys. Mod+Shift+A { show-hotkey-overlay; } // Suggested binds for running programs: terminal, app launcher, screen locker. Mod+T { spawn "qterminal"; } F12 { spawn "qterminal" "-d"; } Alt+Space { spawn "lxqt-runner"; } Mod+P { spawn "pcmanfm-qt"; } Super+Alt+L { spawn "lxqt-leave"; } Super+Shift+Escape { spawn "lxqt-leave" "--lockscreen"; } // You can also use a shell. Do this if you need pipes, multiple commands, etc. // Note: the entire command goes as a single argument in the end. // Mod+T { spawn "bash" "-c" "notify-send hello && exec alacritty"; } // Example volume keys mappings for PipeWire & WirePlumber. // The allow-when-locked=true property makes them work even when the session is locked. XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"; } XF86AudioLowerVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1-"; } XF86AudioMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle"; } XF86AudioMicMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"; } //Brightness XF86MonBrightnessUp { spawn "lxqt-config-brightness" "-i"; } XF86MonBrightnessDown { spawn "lxqt-config-brightness" "-d"; } Mod+Q { close-window; } Mod+Left { focus-column-left; } Mod+Down { focus-window-down; } Mod+Up { focus-window-up; } Mod+Right { focus-column-right; } Mod+H { focus-column-left; } Mod+J { focus-window-down; } Mod+K { focus-window-up; } Mod+L { focus-column-right; } Mod+Ctrl+Left { move-column-left; } Mod+Ctrl+Down { move-window-down; } Mod+Ctrl+Up { move-window-up; } Mod+Ctrl+Right { move-column-right; } Mod+Ctrl+H { move-column-left; } Mod+Ctrl+J { move-window-down; } Mod+Ctrl+K { move-window-up; } Mod+Ctrl+L { move-column-right; } // Alternative commands that move across workspaces when reaching // the first or last window in a column. // Mod+J { focus-window-or-workspace-down; } // Mod+K { focus-window-or-workspace-up; } // Mod+Ctrl+J { move-window-down-or-to-workspace-down; } // Mod+Ctrl+K { move-window-up-or-to-workspace-up; } Mod+Home { focus-column-first; } Mod+End { focus-column-last; } Mod+Ctrl+Home { move-column-to-first; } Mod+Ctrl+End { move-column-to-last; } Mod+Shift+Left { focus-monitor-left; } Mod+Shift+Down { focus-monitor-down; } Mod+Shift+Up { focus-monitor-up; } Mod+Shift+Right { focus-monitor-right; } Mod+Shift+H { focus-monitor-left; } Mod+Shift+J { focus-monitor-down; } Mod+Shift+K { focus-monitor-up; } Mod+Shift+L { focus-monitor-right; } Mod+Shift+Ctrl+Left { move-column-to-monitor-left; } Mod+Shift+Ctrl+Down { move-column-to-monitor-down; } Mod+Shift+Ctrl+Up { move-column-to-monitor-up; } Mod+Shift+Ctrl+Right { move-column-to-monitor-right; } Mod+Shift+Ctrl+H { move-column-to-monitor-left; } Mod+Shift+Ctrl+J { move-column-to-monitor-down; } Mod+Shift+Ctrl+K { move-column-to-monitor-up; } Mod+Shift+Ctrl+L { move-column-to-monitor-right; } // Alternatively, there are commands to move just a single window: // Mod+Shift+Ctrl+Left { move-window-to-monitor-left; } // ... // And you can also move a whole workspace to another monitor: // Mod+Shift+Ctrl+Left { move-workspace-to-monitor-left; } // ... Mod+Page_Down { focus-workspace-down; } Mod+Page_Up { focus-workspace-up; } Mod+U { focus-workspace-down; } Mod+I { focus-workspace-up; } Mod+Ctrl+Page_Down { move-column-to-workspace-down; } Mod+Ctrl+Page_Up { move-column-to-workspace-up; } Mod+Ctrl+U { move-column-to-workspace-down; } Mod+Ctrl+I { move-column-to-workspace-up; } // Alternatively, there are commands to move just a single window: // Mod+Ctrl+Page_Down { move-window-to-workspace-down; } // ... Mod+Shift+Page_Down { move-workspace-down; } Mod+Shift+Page_Up { move-workspace-up; } Mod+Shift+U { move-workspace-down; } Mod+Shift+I { move-workspace-up; } // You can bind mouse wheel scroll ticks using the following syntax. // These binds will change direction based on the natural-scroll setting. // // To avoid scrolling through workspaces really fast, you can use // the cooldown-ms property. The bind will be rate-limited to this value. // You can set a cooldown on any bind, but it's most useful for the wheel. Mod+WheelScrollDown cooldown-ms=150 { focus-workspace-down; } Mod+WheelScrollUp cooldown-ms=150 { focus-workspace-up; } Mod+Ctrl+WheelScrollDown cooldown-ms=150 { move-column-to-workspace-down; } Mod+Ctrl+WheelScrollUp cooldown-ms=150 { move-column-to-workspace-up; } Mod+WheelScrollRight { focus-column-right; } Mod+WheelScrollLeft { focus-column-left; } Mod+Ctrl+WheelScrollRight { move-column-right; } Mod+Ctrl+WheelScrollLeft { move-column-left; } // Usually scrolling up and down with Shift in applications results in // horizontal scrolling; these binds replicate that. Mod+Shift+WheelScrollDown { focus-column-right; } Mod+Shift+WheelScrollUp { focus-column-left; } Mod+Ctrl+Shift+WheelScrollDown { move-column-right; } Mod+Ctrl+Shift+WheelScrollUp { move-column-left; } // Similarly, you can bind touchpad scroll "ticks". // Touchpad scrolling is continuous, so for these binds it is split into // discrete intervals. // These binds are also affected by touchpad's natural-scroll, so these // example binds are "inverted", since we have natural-scroll enabled for // touchpads by default. // Mod+TouchpadScrollDown { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.02+"; } // Mod+TouchpadScrollUp { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.02-"; } // You can refer to workspaces by index. However, keep in mind that // niri is a dynamic workspace system, so these commands are kind of // "best effort". Trying to refer to a workspace index bigger than // the current workspace count will instead refer to the bottommost // (empty) workspace. // // For example, with 2 workspaces + 1 empty, indices 3, 4, 5 and so on // will all refer to the 3rd workspace. Mod+1 { focus-workspace 1; } Mod+2 { focus-workspace 2; } Mod+3 { focus-workspace 3; } Mod+4 { focus-workspace 4; } Mod+5 { focus-workspace 5; } Mod+6 { focus-workspace 6; } Mod+7 { focus-workspace 7; } Mod+8 { focus-workspace 8; } Mod+9 { focus-workspace 9; } Mod+Ctrl+1 { move-column-to-workspace 1; } Mod+Ctrl+2 { move-column-to-workspace 2; } Mod+Ctrl+3 { move-column-to-workspace 3; } Mod+Ctrl+4 { move-column-to-workspace 4; } Mod+Ctrl+5 { move-column-to-workspace 5; } Mod+Ctrl+6 { move-column-to-workspace 6; } Mod+Ctrl+7 { move-column-to-workspace 7; } Mod+Ctrl+8 { move-column-to-workspace 8; } Mod+Ctrl+9 { move-column-to-workspace 9; } // Alternatively, there are commands to move just a single window: // Mod+Ctrl+1 { move-window-to-workspace 1; } // Switches focus between the current and the previous workspace. // Mod+Tab { focus-workspace-previous; } Mod+Comma { consume-window-into-column; } Mod+Period { expel-window-from-column; } // There are also commands that consume or expel a single window to the side. Mod+BracketLeft { consume-or-expel-window-left; } Mod+BracketRight { consume-or-expel-window-right; } Mod+R { switch-preset-column-width; } Mod+Shift+R { switch-preset-window-height; } Mod+Ctrl+R { reset-window-height; } Mod+F { maximize-column; } Mod+Shift+F { fullscreen-window; } Mod+C { center-column; } // Finer width adjustments. // This command can also: // * set width in pixels: "1000" // * adjust width in pixels: "-5" or "+5" // * set width as a percentage of screen width: "25%" // * adjust width as a percentage of screen width: "-10%" or "+10%" // Pixel sizes use logical, or scaled, pixels. I.e. on an output with scale 2.0, // set-column-width "100" will make the column occupy 200 physical screen pixels. Mod+Minus { set-column-width "-10%"; } Mod+Equal { set-column-width "+10%"; } // Finer height adjustments when in column with other windows. Mod+Shift+Minus { set-window-height "-10%"; } Mod+Shift+Equal { set-window-height "+10%"; } // Actions to switch layouts. // Note: if you uncomment these, make sure you do NOT have // a matching layout switch hotkey configured in xkb options above. // Having both at once on the same hotkey will break the switching, // since it will switch twice upon pressing the hotkey (once by xkb, once by niri). // Mod+Space { switch-layout "next"; } // Mod+Shift+Space { switch-layout "prev"; } Print { screenshot; } Ctrl+Print { screenshot-screen; } Alt+Print { screenshot-window; } // The quit action will show a confirmation dialog to avoid accidental exits. Mod+Shift+E { quit; } // Powers off the monitors. To turn them back on, do any input like // moving the mouse or pressing any other key. Mod+Shift+P { power-off-monitors; } } lxqt-wayland-session-0.1.1/configurations/lxqt-river-init000066400000000000000000000153501472067124200236630ustar00rootroot00000000000000#!/bin/sh # This is the example configuration file for river with some additions for LXQt. # There may be a newer file in /usr/share/river/example/init. # # See the river(1), riverctl(1), and rivertile(1) man pages for complete # documentation. # Note: the "Super" modifier is also known as Logo, GUI, Windows, Mod4, etc. # Super+Shift+Return to start an instance of QTerminal riverctl spawn "lxqt-session && riverctl exit" # Input riverctl keyboard-layout us # LXQt keybinds riverctl map normal Super+Shift Return spawn qterminal riverctl map normal Super F12 spawn "qterminal -d" riverctl map normal Alt Space spawn lxqt-runner riverctl map normal Super+Shift Escape spawn "lxqt-leave --lockscreen" # Super+Q to close the focused view riverctl map normal Super Q close # Super+Shift+E to exit river riverctl map normal Super+Shift E exit # Super+J and Super+K to focus the next/previous view in the layout stack riverctl map normal Super J focus-view next riverctl map normal Super K focus-view previous # Super+Shift+J and Super+Shift+K to swap the focused view with the next/previous # view in the layout stack riverctl map normal Super+Shift J swap next riverctl map normal Super+Shift K swap previous # Super+Period and Super+Comma to focus the next/previous output riverctl map normal Super Period focus-output next riverctl map normal Super Comma focus-output previous # Super+Shift+{Period,Comma} to send the focused view to the next/previous output riverctl map normal Super+Shift Period send-to-output next riverctl map normal Super+Shift Comma send-to-output previous # Super+Return to bump the focused view to the top of the layout stack riverctl map normal Super Return zoom # Super+H and Super+L to decrease/increase the main ratio of rivertile(1) riverctl map normal Super H send-layout-cmd rivertile "main-ratio -0.05" riverctl map normal Super L send-layout-cmd rivertile "main-ratio +0.05" # Super+Shift+H and Super+Shift+L to increment/decrement the main count of rivertile(1) riverctl map normal Super+Shift H send-layout-cmd rivertile "main-count +1" riverctl map normal Super+Shift L send-layout-cmd rivertile "main-count -1" # Super+Alt+{H,J,K,L} to move views riverctl map normal Super+Alt H move left 100 riverctl map normal Super+Alt J move down 100 riverctl map normal Super+Alt K move up 100 riverctl map normal Super+Alt L move right 100 # Super+Alt+Control+{H,J,K,L} to snap views to screen edges riverctl map normal Super+Alt+Control H snap left riverctl map normal Super+Alt+Control J snap down riverctl map normal Super+Alt+Control K snap up riverctl map normal Super+Alt+Control L snap right # Super+Alt+Shift+{H,J,K,L} to resize views riverctl map normal Super+Alt+Shift H resize horizontal -100 riverctl map normal Super+Alt+Shift J resize vertical 100 riverctl map normal Super+Alt+Shift K resize vertical -100 riverctl map normal Super+Alt+Shift L resize horizontal 100 # Super + Left Mouse Button to move views riverctl map-pointer normal Super BTN_LEFT move-view # Super + Right Mouse Button to resize views riverctl map-pointer normal Super BTN_RIGHT resize-view # Super + Middle Mouse Button to toggle float riverctl map-pointer normal Super BTN_MIDDLE toggle-float for i in $(seq 1 9) do tags=$((1 << ($i - 1))) # Super+[1-9] to focus tag [0-8] riverctl map normal Super $i set-focused-tags $tags # Super+Shift+[1-9] to tag focused view with tag [0-8] riverctl map normal Super+Shift $i set-view-tags $tags # Super+Control+[1-9] to toggle focus of tag [0-8] riverctl map normal Super+Control $i toggle-focused-tags $tags # Super+Shift+Control+[1-9] to toggle tag [0-8] of focused view riverctl map normal Super+Shift+Control $i toggle-view-tags $tags done # Super+0 to focus all tags # Super+Shift+0 to tag focused view with all tags all_tags=$(((1 << 32) - 1)) riverctl map normal Super 0 set-focused-tags $all_tags riverctl map normal Super+Shift 0 set-view-tags $all_tags # Super+Space to toggle float riverctl map normal Super Space toggle-float # Super+F to toggle fullscreen riverctl map normal Super F toggle-fullscreen # Super+{Up,Right,Down,Left} to change layout orientation riverctl map normal Super Up send-layout-cmd rivertile "main-location top" riverctl map normal Super Right send-layout-cmd rivertile "main-location right" riverctl map normal Super Down send-layout-cmd rivertile "main-location bottom" riverctl map normal Super Left send-layout-cmd rivertile "main-location left" # Declare a passthrough mode. This mode has only a single mapping to return to # normal mode. This makes it useful for testing a nested wayland compositor riverctl declare-mode passthrough # Super+F11 to enter passthrough mode riverctl map normal Super F11 enter-mode passthrough # Super+F11 to return to normal mode riverctl map passthrough Super F11 enter-mode normal # Powerbutton for mode in normal do riverctl map $mode None XF86PowerOff spawn lxqt-leave done # Various media key mapping examples for both normal and locked mode which do # not have a modifier for mode in normal locked do # Eject the optical drive (well if you still have one that is) riverctl map $mode None XF86Eject spawn 'eject -T' # Control pulse audio volume with pamixer (https://github.com/cdemoulins/pamixer) riverctl map $mode None XF86AudioRaiseVolume spawn 'pamixer -i 5' riverctl map $mode None XF86AudioLowerVolume spawn 'pamixer -d 5' riverctl map $mode None XF86AudioMute spawn 'pamixer --toggle-mute' # Control MPRIS aware media players with playerctl (https://github.com/altdesktop/playerctl) riverctl map $mode None XF86AudioMedia spawn 'playerctl play-pause' riverctl map $mode None XF86AudioPlay spawn 'playerctl play-pause' riverctl map $mode None XF86AudioPrev spawn 'playerctl previous' riverctl map $mode None XF86AudioNext spawn 'playerctl next' # Control screen backlight brightness with brightnessctl (https://github.com/Hummer12007/brightnessctl) riverctl map $mode None XF86MonBrightnessUp spawn 'lxqt-config-brightness -i' riverctl map $mode None XF86MonBrightnessDown spawn 'lxqt-config-brightness -d' done # Set background and border color riverctl background-color 0x002b36 riverctl border-color-focused 0x4ec2e8 riverctl border-color-unfocused 0x586e75 # Set keyboard repeat rate riverctl set-repeat 50 300 # Make all views with an app-id that starts with "lxqt" and any title start floating. riverctl rule-add -app-id 'lxqt*' -title '*' float # Make all views with app-id "bar" and any title use client-side decorations riverctl rule-add -app-id "bar" csd # Set the default layout generator to be rivertile and start it. # River will send the process group of the init executable SIGTERM on exit. riverctl default-layout rivertile rivertile -view-padding 6 -outer-padding 6 & lxqt-wayland-session-0.1.1/configurations/lxqt-sway.config000066400000000000000000000173431472067124200240260ustar00rootroot00000000000000# Default config for sway with additions for LXQt. There may be a newer default file in /etc/sway/config. # # Location is ~/.config/lxqt/wayland/lxqt-sway.config # # Read `man 5 sway` for a complete reference. ### Variables # # Logo key. Use Mod1 for Alt. set $mod Mod4 # Home row direction keys, like vim set $left h set $down j set $up k set $right l # Your preferred terminal emulator set $term qterminal ### Output configuration # # Example configuration: # # output HDMI-A-1 resolution 1920x1080 position 1920,0 # # You can get the names of your outputs by running: swaymsg -t get_outputs ### Idle configuration # # Example configuration: # # exec swayidle -w \ # timeout 300 'swaylock -f -c 000000' \ # timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ # before-sleep 'swaylock -f -c 000000' # # This will lock your screen after 300 seconds of inactivity, then turn off # your displays after another 300 seconds, and turn your screens back on when # resumed. It will also lock your screen before your computer goes to sleep. ### Input configuration # # Example configuration: # # input "2:14:SynPS/2_Synaptics_TouchPad" { # dwt enabled # tap enabled # natural_scroll enabled # middle_emulation enabled # } input "type:keyboard" { xkb_layout us xkb_options grp:alt_shift_toggle,grp_led:scroll } # # You can get the names of your inputs by running: swaymsg -t get_inputs # Read `man 5 sway-input` for more information about this section. ### Key bindings # # Basics: # # Start a terminal bindsym $mod+Return exec $term # Kill focused window bindsym $mod+Shift+q kill # Reload the configuration file bindsym $mod+Shift+r reload # LXQt Settings exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY exec lxqt-session && sway exit for_window [app_id="^lxqt-.*$"] floating enable for_window [app_id="cmst"] floating enable for_window [app_id="kvantummanager"] floating enable focus_on_window_activation focus bindsym alt+space exec lxqt-runner bindsym alt+F2 exec lxqt-runner bindsym $mod+p exec pcmanfm-qt bindsym F12 exec qterminal -d bindsym XF86PowerOff exec lxqt-leave bindsym $mod+Shift+escape exec lxqt-leave --lockscreen # For advanced shortcut handling please consult https://github.com/lxqt/lxqt/wiki/Wayland#global-shortcuts # Full Screenshot bindsym Shift+Print exec grim /tmp/screen_full_$(date +'%a_%T_.png') && notify-send -a grim -i image -t 2000 "Full screenshot saved" # Select area: bindsym Ctrl+Print exec grim -g "$(slurp)" /tmp/screen_area_$(date +'%a_%T_.png') && notify-send -a grim -i image -t 2000 "Selection screenshot saved" # Drag floating windows by holding down $mod and left mouse button. # Resize them with right mouse button + $mod. # Despite the name, also works for non-floating windows. # Change normal to inverse to use left mouse button for resizing and right # mouse button for dragging. floating_modifier $mod normal # Reload the configuration file bindsym $mod+Shift+c reload # Exit sway (logs you out of your Wayland session) bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' # # Moving around: # # Move your focus around bindsym $mod+$left focus left bindsym $mod+$down focus down bindsym $mod+$up focus up bindsym $mod+$right focus right # Or use $mod+[up|down|left|right] bindsym $mod+Left focus left bindsym $mod+Down focus down bindsym $mod+Up focus up bindsym $mod+Right focus right # Move the focused window with the same, but add Shift bindsym $mod+Shift+$left move left bindsym $mod+Shift+$down move down bindsym $mod+Shift+$up move up bindsym $mod+Shift+$right move right # Ditto, with arrow keys bindsym $mod+Shift+Left move left bindsym $mod+Shift+Down move down bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right # # Workspaces: # # Switch to workspace bindsym $mod+1 workspace number 1 bindsym $mod+2 workspace number 2 bindsym $mod+3 workspace number 3 bindsym $mod+4 workspace number 4 bindsym $mod+5 workspace number 5 bindsym $mod+6 workspace number 6 bindsym $mod+7 workspace number 7 bindsym $mod+8 workspace number 8 bindsym $mod+9 workspace number 9 bindsym $mod+0 workspace number 10 # Move focused container to workspace bindsym $mod+Shift+1 move container to workspace number 1 bindsym $mod+Shift+2 move container to workspace number 2 bindsym $mod+Shift+3 move container to workspace number 3 bindsym $mod+Shift+4 move container to workspace number 4 bindsym $mod+Shift+5 move container to workspace number 5 bindsym $mod+Shift+6 move container to workspace number 6 bindsym $mod+Shift+7 move container to workspace number 7 bindsym $mod+Shift+8 move container to workspace number 8 bindsym $mod+Shift+9 move container to workspace number 9 bindsym $mod+Shift+0 move container to workspace number 10 # Note: workspaces can have any name you want, not just numbers. # We just use 1-10 as the default. # # Layout stuff: # # You can "split" the current object of your focus with # $mod+b or $mod+v, for horizontal and vertical splits # respectively. bindsym $mod+b splith bindsym $mod+v splitv # Switch the current container between different layout styles bindsym $mod+s layout stacking bindsym $mod+w layout tabbed bindsym $mod+e layout toggle split # Make the current focus fullscreen bindsym $mod+f fullscreen # Toggle the current focus between tiling and floating mode bindsym $mod+Shift+space floating toggle # Swap focus between the tiling area and the floating area bindsym $mod+space focus mode_toggle # Move focus to the parent container bindsym $mod+a focus parent # # Scratchpad: # # Sway has a "scratchpad", which is a bag of holding for windows. # You can send windows there and get them back later. # Move the currently focused window to the scratchpad bindsym $mod+Shift+minus move scratchpad # Show the next scratchpad window or hide the focused scratchpad window. # If there are multiple scratchpad windows, this command cycles through them. bindsym $mod+minus scratchpad show # # Resizing containers: # mode "resize" { # left will shrink the containers width # right will grow the containers width # up will shrink the containers height # down will grow the containers height bindsym $left resize shrink width 10px bindsym $down resize grow height 10px bindsym $up resize shrink height 10px bindsym $right resize grow width 10px # Ditto, with arrow keys bindsym Left resize shrink width 10px bindsym Down resize grow height 10px bindsym Up resize shrink height 10px bindsym Right resize grow width 10px # Return to default mode bindsym Return mode "default" bindsym Escape mode "default" } bindsym $mod+r mode "resize" # Multimedia bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5% bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5% bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle bindsym XF86MonBrightnessDown exec lxqt-config-brightness -d bindsym XF86MonBrightnessUp exec lxqt-config-brightness -i bindsym XF86AudioPlay exec playerctl play-pause bindsym XF86AudioNext exec playerctl next bindsym XF86AudioPrev exec playerctl previous include /etc/sway/config.d/* lxqt-wayland-session-0.1.1/configurations/lxqt-wayfire.ini000066400000000000000000000233771472067124200240270ustar00rootroot00000000000000# Default config file for LXQt Wayfire # # Location is ~/.config/wayfire-lxqt.ini # Take the tutorial to get started. # https://github.com/WayfireWM/wayfire/wiki/Tutorial # # Read the Configuration document for a complete reference. # https://github.com/WayfireWM/wayfire/wiki/Configuration # Input configuration ────────────────────────────────────────────────────────── # Example configuration: #(imported from LXQt at start at the bottom) [input] xkb_layout = xkb_variant = xkb_options = cursor_size = 24 cursor_theme = default # # See Input options for a complete reference. # https://github.com/WayfireWM/wayfire/wiki/Configuration#input # Output configuration ───────────────────────────────────────────────────────── # Example configuration: # # [output:eDP-1] # mode = 1920x1080@60000 # position = 0,0 # transform = normal # scale = 1.000000 # # You can get the names of your outputs with wlr-randr. # https://github.com/emersion/wlr-randr # # See also kanshi for configuring your outputs automatically. # https://wayland.emersion.fr/kanshi/ # # See Output options for a complete reference. # https://github.com/WayfireWM/wayfire/wiki/Configuration#output # Core options ───────────────────────────────────────────────────────────────── [core] # List of plugins to be enabled. # See the Configuration document for a complete list. plugins = \ alpha \ animate \ autostart \ command \ cube \ decoration \ expo \ fast-switcher \ fisheye \ foreign-toplevel \ grid \ gtk-shell \ idle \ invert \ move \ oswitch \ place \ resize \ session-lock \ shortcuts-inhibit \ switcher \ vswitch \ wayfire-shell \ window-rules \ wm-actions \ wobbly \ wrot \ xdg-activation \ zoom # Note: [blur] is not enabled by default, because it can be resource-intensive. # Feel free to add it to the list if you want it. # You can find its documentation here: # https://github.com/WayfireWM/wayfire/wiki/Configuration#blur # Close focused window. close_top_view = KEY_Q | KEY_F4 # Workspaces arranged into a grid: 3 × 3. vwidth = 3 vheight = 3 # Prefer client-side decoration or server-side decoration preferred_decoration_mode = server # Mouse bindings ─────────────────────────────────────────────────────────────── # Drag windows by holding down Super and left mouse button. [move] activate = BTN_LEFT # Resize them with right mouse button + Super. [resize] activate = BTN_RIGHT # Zoom in the desktop by scrolling + Super. [zoom] modifier = # Change opacity by scrolling with Super + Alt. [alpha] modifier = # Rotate windows with the mouse. [wrot] activate = BTN_RIGHT # Fisheye effect. [fisheye] toggle = KEY_F # Startup commands ───────────────────────────────────────────────────────────── [autostart] # Automatically start background and panel. # Set to false if you want to override the default clients. autostart_wf_shell = false splash = swaybg -i /usr/share/lxqt/wallpapers/origami-dark.png session = lxqt-session && killall wayfire # Output configuration # https://wayland.emersion.fr/kanshi/ # outputs = kanshi # Screen color temperature # https://sr.ht/~kennylevinsen/wlsunset/ gamma = wlsunset # Idle configuration # https://github.com/swaywm/swayidle # https://github.com/swaywm/swaylock # idle = swayidle before-sleep swaylock # XDG desktop portal # Needed by some GTK applications #portal = /usr/libexec/xdg-desktop-portal # Example configuration: # # [idle] # toggle = KEY_Z # screensaver_timeout = 300 # dpms_timeout = 600 # # Disables the compositor going idle with Super + z. # This will lock your screen after 300 seconds of inactivity, then turn off # your displays after another 300 seconds. # Applications ───────────────────────────────────────────────────────────────── [command] # Start a terminal binding_terminal = KEY_ENTER command_terminal = qterminal binding_launcher = KEY_SPACE command_launcher = lxqt-runner binding_terminaldropdown = KEY_F12 command_terminaldropdown = qterminal -d binding_leave = KEY_POWER command_leave = lxqt-leave # For advanced shortcut handling please consult # https://github.com/lxqt/lxqt/wiki/Wayland#global-shortcuts binding_featherpad = KEY_F command_featherpad = featherpad binding_filemanager = KEY_P command_filemanager = pcmanfm-qt # Screen locker binding_lock = KEY_ESC command_lock = lxqt-leave --lockscreen # Logout binding_logout = KEY_ESC command_logout = lxqt-leave --logout # Open Fancy Applications Menu binding_menu = KEY_F1 command_menu = qdbus org.kde.StatusNotifierWatcher /global_key_shortcuts/panel/fancymenu/show_hide org.lxqt.global_key_shortcuts.client.activated # Screenshots # https://wayland.emersion.fr/grim/ # https://wayland.emersion.fr/slurp/ binding_screenshot = KEY_PRINT command_screenshot = grim $(date '+%F_%T').webp binding_screenshot_interactive = KEY_PRINT command_screenshot_interactive = slurp | grim -g - $(date '+%F_%T').webp # Volume controls # https://alsa-project.org repeatable_binding_volume_up = KEY_VOLUMEUP command_volume_up = amixer set Master 5%+ repeatable_binding_volume_down = KEY_VOLUMEDOWN command_volume_down = amixer set Master 5%- binding_mute = KEY_MUTE command_mute = amixer set Master toggle # Screen brightness # https://haikarainen.github.io/light/ repeatable_binding_light_up = KEY_BRIGHTNESSUP repeatable_binding_light_down = KEY_BRIGHTNESSDOWN command_light_down = lxqt-config-brightness -d command_light_up = lxqt-config-brightness -i # Windows ────────────────────────────────────────────────────────────────────── # Actions related to window management functionalities. # # Example configuration: # # [wm-actions] # toggle_fullscreen = KEY_F # toggle_always_on_top = KEY_X # toggle_sticky = KEY_X # Position the windows in certain regions of the output. [grid] # # ⇱ ↑ ⇲ │ 7 8 9 # ← f → │ 4 5 6 # ⇱ ↓ ⇲ d │ 1 2 3 0 # ‾ ‾ slot_bl = KEY_KP1 slot_b = KEY_KP2 slot_br = KEY_KP3 slot_l = KEY_LEFT | KEY_KP4 slot_c = KEY_UP | KEY_KP5 slot_r = KEY_RIGHT | KEY_KP6 slot_tl = KEY_KP7 slot_t = KEY_KP8 slot_tr = KEY_KP9 # Restore default. restore = KEY_DOWN | KEY_KP0 # Change active window with an animation. [switcher] next_view = KEY_TAB prev_view = KEY_TAB # Simple active window switcher. [fast-switcher] activate = KEY_ESC # Workspaces ─────────────────────────────────────────────────────────────────── # Switch to workspace. [vswitch] binding_left = KEY_LEFT binding_down = KEY_DOWN binding_up = KEY_UP binding_right = KEY_RIGHT # Move the focused window with the same key-bindings, but add Shift. with_win_left = KEY_LEFT with_win_down = KEY_DOWN with_win_up = KEY_UP with_win_right = KEY_RIGHT # Show the current workspace row as a cube. [cube] activate = BTN_LEFT # Switch to the next or previous workspace. #rotate_left = KEY_H #rotate_right = KEY_L # Show an overview of all workspaces. [expo] toggle = KEY_E # Select a workspace. # Workspaces are arranged into a grid of 3 × 3. # The numbering is left to right, line by line. # # ⇱ k ⇲ # h ⏎ l # ⇱ j ⇲ # ‾ ‾ # See core.vwidth and core.vheight for configuring the grid. select_workspace_1 = KEY_1 select_workspace_2 = KEY_2 select_workspace_3 = KEY_3 select_workspace_4 = KEY_4 select_workspace_5 = KEY_5 select_workspace_6 = KEY_6 select_workspace_7 = KEY_7 select_workspace_8 = KEY_8 select_workspace_9 = KEY_9 # Outputs ────────────────────────────────────────────────────────────────────── # Change focused output. [oswitch] # Switch to the next output. next_output = KEY_O # Same with the window. next_output_with_win = KEY_O # Invert the colors of the whole output. [invert] toggle = KEY_I # Send toggle menu event. [wayfire-shell] toggle_menu = # Rules ──────────────────────────────────────────────────────────────────────── # Example configuration: # # [window-rules] # maximize_alacritty = on created if app_id is "Alacritty" then maximize # # You can get the properties of your applications with the following command: # $ WAYLAND_DEBUG=1 alacritty 2>&1 | kak # # See Window rules for a complete reference. # https://github.com/WayfireWM/wayfire/wiki/Configuration#window-rules lxqt-wayland-session-0.1.1/labwc-themes/000077500000000000000000000000001472067124200201775ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/labwc-themes/CMakeLists.txt000066400000000000000000000002121472067124200227320ustar00rootroot00000000000000# install labwc themes install(DIRECTORY Vent Vent-dark DESTINATION "${CMAKE_INSTALL_DATADIR}/themes" COMPONENT Runtime ) lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/000077500000000000000000000000001472067124200220325ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/000077500000000000000000000000001472067124200236445ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/close.xbm000066400000000000000000000005571472067124200254700ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xc0,0x0f,0xfc,0xe0,0x1f,0xfc, 0xf0,0x3f,0xfc,0xf8,0x7f,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xf8,0x7f,0xfc,0xf0,0x3f,0xfc,0xe0,0x1f,0xfc,0xc0,0x0f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/desk.xbm000066400000000000000000000005571472067124200253110ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/desk_toggled.xbm000066400000000000000000000005541472067124200270130ustar00rootroot00000000000000#define desk_width 18 #define desk_height 18 static unsigned char desk_bits[] = { 0xc0,0x00,0xfc,0xe0,0x01,0xfc,0xf0,0x03,0xfc,0xf8,0x07,0xfc, 0xfc,0x0f,0xfc,0xfe,0x1f,0xfc,0xff,0x1f,0xfc,0xfe,0x03,0xfc, 0xfc,0x07,0xfc,0x78,0x0f,0xfc,0x70,0x0e,0xfc,0x60,0x1c,0xfc, 0x00,0x38,0xfc,0x00,0x70,0xfc,0x00,0xe0,0xfc,0x00,0xc0,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/iconify.xbm000066400000000000000000000005571472067124200260230ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xc0,0x0f,0xfc,0xe0,0x1f,0xfc, 0xf0,0x3f,0xfc,0xf8,0x7f,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xf8,0x7f,0xfc,0xf0,0x3f,0xfc,0xe0,0x1f,0xfc,0xc0,0x0f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/max.xbm000066400000000000000000000005571472067124200251500ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xc0,0x0f,0xfc,0xe0,0x1f,0xfc, 0xf0,0x3f,0xfc,0xf8,0x7f,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xf8,0x7f,0xfc,0xf0,0x3f,0xfc,0xe0,0x1f,0xfc,0xc0,0x0f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/max_toggled.xbm000066400000000000000000000005571472067124200266550ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc, 0x1c,0xe0,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc, 0x1c,0xe0,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/max_toggled_hover.xbm000066400000000000000000000005571472067124200300600ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/menu.xbm000066400000000000000000000005571472067124200253270ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0xfc,0xff,0xfd,0x00,0x00,0xfc,0x00,0x00,0xfc, 0xfc,0xff,0xfd,0xfc,0xff,0xfd,0xfc,0xff,0xfd,0x00,0x00,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/shade.xbm000066400000000000000000000005571472067124200254470ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0x00,0x00,0xfc,0x00,0x02,0xfc,0x00,0x07,0xfc, 0x80,0x0f,0xfc,0xc0,0x1f,0xfc,0xe0,0x3f,0xfc,0xf0,0x7f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/shade_toggled.xbm000066400000000000000000000005571472067124200271540ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0x00,0x00,0xfc,0xf0,0x7f,0xfc,0xe0,0x3f,0xfc, 0xc0,0x1f,0xfc,0x80,0x0f,0xfc,0x00,0x07,0xfc,0x00,0x02,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent-dark/openbox-3/themerc000066400000000000000000000040041472067124200252140ustar00rootroot00000000000000### WINDOW border.width: 1 window.button.width: 32 window.button.height: 34 window.titlebar.padding.width: 5 window.titlebar.padding.height: 0 window.button.spacing: 5 window.active.border.color: #1ee7ea window.inactive.border.color: #d0d0d0 window.active.indicator.toggled-keybind.color: #cb2727 window.active.label.text.color: #f0f0f0 window.inactive.label.text.color: #f0f0f0 window.active.title.bg.color: #525352 window.active.label.bg.color: #404140 window.inactive.title.bg.color: #404140 window.inactive.label.text.color: #b0b3b5 window.label.text.justify: center ### MENU menu.width.min: 20 menu.width.max: 250 menu.items.bg.color: #45474c menu.items.text.color: #e2e2e2 menu.items.active.bg.color: #dddad6 menu.items.active.text.color:#14292f menu.overlap.x: 0 menu.overlap.y: 0 menu.items.padding.x: 7 menu.items.padding.y: 4 menu.separator.width: 2 menu.separator.padding.width: 6 menu.separator.padding.height: 3 menu.separator.color: #dcebec ### OSD osd.bg.color: #45474c osd.border.color: #3294a8 osd.border.width: 3 osd.label.text.color: #e2e2e2 osd.window-switcher.width: 800 osd.window-switcher.padding: 10 osd.window-switcher.item.padding.x: 5 osd.window-switcher.item.padding.y: 5 osd.window-switcher.item.active.border.width: 2 osd.workspace-switcher.boxes.width: 40 osd.workspace-switcher.boxes.height: 30 ## BUTTONS window.active.button.iconify.unpressed.image.color: #f59335 window.active.button.max.unpressed.image.color: #a1d569 window.active.button.close.unpressed.image.color: #ef6b7b window.active.button.menu.unpressed.image.color: #4ec2e8 window.active.button.desk.unpressed.image.color: #9799f7 window.active.button.shade.unpressed.image.color: #a6a228 window.inactive.button.iconify.unpressed.image.color: #939597 window.inactive.button.max.unpressed.image.color:#939597 window.inactive.button.close.unpressed.image.color: #939597 window.inactive.button.menu.unpressed.image.color: #939597 window.inactive.button.desk.unpressed.image.color: #939597 window.inactive.button.shade.unpressed.image.color: #939597 lxqt-wayland-session-0.1.1/labwc-themes/Vent/000077500000000000000000000000001472067124200211135ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/000077500000000000000000000000001472067124200227255ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/close.xbm000066400000000000000000000005571472067124200245510ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xc0,0x0f,0xfc,0xe0,0x1f,0xfc, 0xf0,0x3f,0xfc,0xf8,0x7f,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xf8,0x7f,0xfc,0xf0,0x3f,0xfc,0xe0,0x1f,0xfc,0xc0,0x0f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/desk.xbm000066400000000000000000000005571472067124200243720ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/desk_toggled.xbm000066400000000000000000000005541472067124200260740ustar00rootroot00000000000000#define desk_width 18 #define desk_height 18 static unsigned char desk_bits[] = { 0xc0,0x00,0xfc,0xe0,0x01,0xfc,0xf0,0x03,0xfc,0xf8,0x07,0xfc, 0xfc,0x0f,0xfc,0xfe,0x1f,0xfc,0xff,0x1f,0xfc,0xfe,0x03,0xfc, 0xfc,0x07,0xfc,0x78,0x0f,0xfc,0x70,0x0e,0xfc,0x60,0x1c,0xfc, 0x00,0x38,0xfc,0x00,0x70,0xfc,0x00,0xe0,0xfc,0x00,0xc0,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/iconify.xbm000066400000000000000000000005571472067124200251040ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xc0,0x0f,0xfc,0xe0,0x1f,0xfc, 0xf0,0x3f,0xfc,0xf8,0x7f,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xf8,0x7f,0xfc,0xf0,0x3f,0xfc,0xe0,0x1f,0xfc,0xc0,0x0f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/max.xbm000066400000000000000000000005571472067124200242310ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xc0,0x0f,0xfc,0xe0,0x1f,0xfc, 0xf0,0x3f,0xfc,0xf8,0x7f,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xf8,0x7f,0xfc,0xf0,0x3f,0xfc,0xe0,0x1f,0xfc,0xc0,0x0f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/max_toggled.xbm000066400000000000000000000005571472067124200257360ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc, 0x1c,0xe0,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc,0x1c,0xe0,0xfc, 0x1c,0xe0,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/max_toggled_hover.xbm000066400000000000000000000005571472067124200271410ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc,0xfc,0xff,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/menu.xbm000066400000000000000000000005571472067124200244100ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0xfc,0xff,0xfd,0x00,0x00,0xfc,0x00,0x00,0xfc, 0xfc,0xff,0xfd,0xfc,0xff,0xfd,0xfc,0xff,0xfd,0x00,0x00,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/shade.xbm000066400000000000000000000005571472067124200245300ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0x00,0x00,0xfc,0x00,0x02,0xfc,0x00,0x07,0xfc, 0x80,0x0f,0xfc,0xc0,0x1f,0xfc,0xe0,0x3f,0xfc,0xf0,0x7f,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/shade_toggled.xbm000066400000000000000000000005571472067124200262350ustar00rootroot00000000000000#define close_width 18 #define close_height 18 static unsigned char close_bits[] = { 0x00,0x00,0xfc,0x00,0x00,0xfc,0xfc,0xff,0xfd,0xfc,0xff,0xfd, 0xfc,0xff,0xfd,0x00,0x00,0xfc,0xf0,0x7f,0xfc,0xe0,0x3f,0xfc, 0xc0,0x1f,0xfc,0x80,0x0f,0xfc,0x00,0x07,0xfc,0x00,0x02,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0xfc, 0x00,0x00,0xfc,0x00,0x00,0xfc}; lxqt-wayland-session-0.1.1/labwc-themes/Vent/openbox-3/themerc000066400000000000000000000040041472067124200242750ustar00rootroot00000000000000### WINDOW border.width: 2 window.button.width: 32 window.button.height: 34 window.titlebar.padding.width: 5 window.titlebar.padding.height: 0 window.button.spacing: 5 window.active.border.color: #33679a window.inactive.border.color: #000000 window.active.indicator.toggled-keybind.color: #b62b19 window.active.label.text.color: #484848 window.inactive.label.text.color: #777777 window.active.title.bg.color: #ffffff window.active.label.bg.color: #ffffff window.inactive.title.bg.color: #e1e4e7 window.inactive.label.text.color: #b0b3b5 window.label.text.justify: center ### MENU menu.items.padding.x: 7 menu.items.padding.y: 4 menu.overlap.x: 0 menu.overlap.y: 0 menu.width.min: 100 menu.width.max: 250 menu.separator.width: 2 menu.separator.padding.width: 10 menu.separator.padding.height: 2 menu.separator.color: #78a2fc menu.items.text.color: #5a5a5a menu.items.active.text.color: #000000 menu.items.bg.color: #ffffff menu.items.active.bg.color: #aac9fc ### OSD osd.bg.color: #ffffff osd.border.color: #3294a8 osd.border.width: 3 osd.label.text.color: #5a5a5a osd.window-switcher.width: 800 osd.window-switcher.padding: 10 osd.window-switcher.item.padding.x: 5 osd.window-switcher.item.padding.y: 5 osd.window-switcher.item.active.border.width: 2 osd.workspace-switcher.boxes.width: 40 osd.workspace-switcher.boxes.height: 30 ## BUTTONS window.active.button.iconify.unpressed.image.color: #f59335 window.active.button.max.unpressed.image.color: #a1d569 window.active.button.close.unpressed.image.color: #ef6b7b window.active.button.menu.unpressed.image.color: #4ec2e8 window.active.button.desk.unpressed.image.color: #4655b9 window.active.button.shade.unpressed.image.color: #948b11 window.inactive.button.iconify.unpressed.image.color: #939597 window.inactive.button.max.unpressed.image.color:#939597 window.inactive.button.close.unpressed.image.color: #939597 window.inactive.button.menu.unpressed.image.color: #939597 window.inactive.button.desk.unpressed.image.color: #939597 window.inactive.button.shade.unpressed.image.color: #939597 lxqt-wayland-session-0.1.1/startlxqtwayland.in000066400000000000000000000155521472067124200216120ustar00rootroot00000000000000#!/bin/sh ## LXQt common settings contains() { local str="$1" substr="$2" [ "$str" = "$substr" -o -z "${str##$substr:*}" -o -z "${str##*:$substr:*}" -o -z "${str%%*:$substr}" ] } if [ -z "$XDG_DATA_HOME" ]; then export XDG_DATA_HOME="$HOME/.local/share" fi if [ -z "$XDG_CONFIG_HOME" ]; then export XDG_CONFIG_HOME="$HOME/.config" fi if [ -z "$XDG_DATA_DIRS" ]; then XDG_DATA_DIRS="$XDG_DATA_HOME:/usr/local/share:/usr/share" else if ! contains "$XDG_DATA_DIRS" "/usr/share"; then XDG_DATA_DIRS="$XDG_DATA_DIRS:/usr/share" fi fi export XDG_DATA_DIRS if [ -z "$XDG_CONFIG_DIRS" ]; then export XDG_CONFIG_DIRS="/etc:/etc/xdg:/usr/share" else if ! contains "$XDG_CONFIG_DIRS" '/etc/xdg'; then XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS:/etc/xdg" fi fi if [ -z "$XDG_CACHE_HOME" ]; then export XDG_CACHE_HOME="$HOME/.cache" fi # Ensure the existence of the 'Desktop' folder if [ -e "$XDG_CONFIG_HOME/user-dirs.dirs" ]; then . "$XDG_CONFIG_HOME/user-dirs.dirs" else XDG_DESKTOP_DIR="$HOME/Desktop" fi mkdir -p "$XDG_DESKTOP_DIR" # Launch DBus if needed if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then if [ -z "$XDG_RUNTIME_DIR" ] || ! [ -S "$XDG_RUNTIME_DIR/bus" ] || ! [ -O "$XDG_RUNTIME_DIR/bus" ]; then eval "$(dbus-launch --sh-syntax --exit-with-session)" || echo "startlxqt: error executing dbus-launch" >&2 fi fi # Qt4 platform plugin export QT_PLATFORM_PLUGIN="lxqt" # Qt5/6 export QT_QPA_PLATFORMTHEME="lxqt" export QT_EXCLUDE_GENERIC_BEARER=1 export QT_AUTO_SCREEN_SCALE_FACTOR=0 # Qt6 export QT_ACCESSIBILITY=1 # use lxqt-applications.menu for main app menu export XDG_MENU_PREFIX="lxqt-" if [ ! -d "$XDG_CONFIG_HOME/lxqt/wayland" ]; then mkdir -p $XDG_CONFIG_HOME/lxqt/wayland/ fi if grep -q "compositor" "$XDG_CONFIG_HOME/lxqt/session.conf"; then COMPOSITOR=`cat "$XDG_CONFIG_HOME"/lxqt/session.conf|grep compositor |awk -F'=' '{sub(".*/", "", $2); print $2}'` fi export XDG_CURRENT_DESKTOP="LXQt:$COMPOSITOR:wlroots" export MOZ_ENABLE_WAYLAND=1 share_dir="$(dirname $(dirname "$0"))"/share valid_layouts=$(grep -A98 '! layout' /usr/share/X11/xkb/rules/base.lst | awk '{print $1}' | grep -v '!') trylayout=$(echo $LANG | cut -c 1,2) if [ -z "$COMPOSITOR" ]; then echo "No compositor configured yet in Session Settings, trying labwc..." COMPOSITOR=labwc export XDG_CURRENT_DESKTOP="LXQt:wlroots" # enable cursor on VM (systemd only) if type systemd-detect-virt > /dev/null 2>&1 && systemd-detect-virt --quiet; then export WLR_NO_HARDWARE_CURSORS=1 echo "Running on virtualized hardware" fi exec $COMPOSITOR -C "$share_dir"/lxqt/wayland/firstrun -S lxqt-config-session elif [ "$COMPOSITOR" = "labwc" ]; then # Copy default configuration if not existing and set keyboard layout if different from us if [ ! -d "$XDG_CONFIG_HOME/labwc" ]; then cp -av "$share_dir"/lxqt/wayland/labwc "$XDG_CONFIG_HOME"/ # use default location here if echo "$valid_layouts" | grep -q "$trylayout"; then echo "XKB_DEFAULT_LAYOUT=$trylayout" >> $XDG_CONFIG_HOME/labwc/environment fi fi # enable cursor on VM (systemd only) if type systemd-detect-virt > /dev/null 2>&1 && systemd-detect-virt --quiet; then export WLR_NO_HARDWARE_CURSORS=1 echo "Running on virtualized hardware" fi exec $COMPOSITOR -C $XDG_CONFIG_HOME/labwc -S lxqt-session elif [ "$COMPOSITOR" = "niri" ]; then if [ ! -f "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-niri.kdl" ]; then cp -v "$share_dir"/lxqt/wayland/lxqt-niri.kdl "$XDG_CONFIG_HOME"/lxqt/wayland/ if echo "$valid_layouts" | grep -q "$trylayout"; then layout="layout \"$trylayout\"" sed -i "s/layout \"us\"/$layout/" "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-niri.kdl" fi fi exec $COMPOSITOR -c $XDG_CONFIG_HOME/lxqt/wayland/lxqt-niri.kdl elif [ "$COMPOSITOR" = "kwin_wayland" ]; then # Style KDE's QML apps like systemsettings export QT_QUICK_CONTROLS_STYLE=org.kde.desktop export XDG_CURRENT_DESKTOP="LXQt:$COMPOSITOR" if echo "$valid_layouts" | grep -q "$trylayout"; then kxkbrc=$XDG_CONFIG_HOME/kxkbrc layout="LayoutList=$trylayout" if [ -f $XDG_CONFIG_HOME/kxkbrc ]; then if ! grep -q "LayoutList" "$kxkbrc"; then echo $layout >> $XDG_CONFIG_HOME/kxkbrc fi else echo "[Layout]" > $XDG_CONFIG_HOME/kxkbrc echo $layout >> $XDG_CONFIG_HOME/kxkbrc fi fi # WARNING: Option '--no-kactivities' can result in crashes with animations and corner actions. exec ${COMPOSITOR}_wrapper --exit-with-session lxqt-session --xwayland elif [ "$COMPOSITOR" = "wayfire" ]; then if [ ! -f "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-wayfire.ini" ]; then cp "$share_dir"/lxqt/wayland/lxqt-wayfire.ini "$XDG_CONFIG_HOME"/lxqt/wayland/ if echo "$valid_layouts" | grep -q "$trylayout"; then layout="xkb_layout = $trylayout" sed -i '/xkb_layout/d' $XDG_CONFIG_HOME/lxqt/wayland/lxqt-wayfire.ini sed -i "/\[input\]/a $layout" $XDG_CONFIG_HOME/lxqt/wayland/lxqt-wayfire.ini fi fi exec $COMPOSITOR -c $XDG_CONFIG_HOME/lxqt/wayland/lxqt-wayfire.ini elif [ "$COMPOSITOR" = "sway" ]; then if [ ! -f "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-sway.config" ]; then cp "$share_dir"/lxqt/wayland/lxqt-sway.config "$XDG_CONFIG_HOME"/lxqt/wayland/ if echo "$valid_layouts" | grep -q "$trylayout"; then layout="xkb_layout $trylayout" sed -i '/xkb_layout/d' $XDG_CONFIG_HOME/lxqt/wayland/lxqt-sway.config sed -i "/input \"type\:keyboard\"/a $layout" $XDG_CONFIG_HOME/lxqt/wayland/lxqt-sway.config fi fi exec $COMPOSITOR -c $XDG_CONFIG_HOME/lxqt/wayland/lxqt-sway.config elif [ "$COMPOSITOR" = "Hyprland" ]; then if [ ! -f "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-hyprland.conf" ]; then cp "$share_dir"/lxqt/wayland/lxqt-hyprland.conf "$XDG_CONFIG_HOME"/lxqt/wayland/ if echo "$valid_layouts" | grep -q "$trylayout"; then layout="kb_layout = $trylayout" sed -i "s/kb_layout = us/$layout/" "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-hyprland.conf" fi fi exec $COMPOSITOR -c $XDG_CONFIG_HOME/lxqt/wayland/lxqt-hyprland.conf elif [ "$COMPOSITOR" = "river" ]; then if [ ! -f "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-river-init" ]; then cp "$share_dir"/lxqt/wayland/lxqt-river-init "$XDG_CONFIG_HOME"/lxqt/wayland/ chmod a+x "$XDG_CONFIG_HOME"/lxqt/wayland/lxqt-river-init if echo "$valid_layouts" | grep -q "$trylayout"; then layout="riverctl keyboard-layout $trylayout" sed -i "s/riverctl keyboard-layout us/$layout/" "$XDG_CONFIG_HOME/lxqt/wayland/lxqt-river-init" fi fi exec $COMPOSITOR -c $XDG_CONFIG_HOME/lxqt/wayland/lxqt-river-init # unknown compositor else echo "Trying to start $COMPOSITOR..." exec $COMPOSITOR fi lxqt-wayland-session-0.1.1/wallpaper/000077500000000000000000000000001472067124200176135ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/wallpaper/CMakeLists.txt000066400000000000000000000001601472067124200223500ustar00rootroot00000000000000install(FILES origami-dark-labwc.png DESTINATION "${LXQT_SHARE_DIR}/wallpapers" COMPONENT Runtime ) lxqt-wayland-session-0.1.1/wallpaper/origami-dark-labwc.png000066400000000000000000010622271472067124200237670ustar00rootroot00000000000000PNG  IHDR8CiCCPGIMP built-in sRGB(}=H@_[ED2T'=*BZu0 4$).kŪ "%/)=ziVG tL%b&*v",cN_.ʳ9z՜ŀHcioOo}bex̤ ?r]s tjX  m1+$qDtfi*y^yww{oiDrFf _ pHYs B(xHiTXtXML:com.adobe.xmpUTF-8XML:com.adobe.xmpHW[o0~߯r|sU M0 xul\H5_た_N^ HJWzZrat4Z=9h<|{}#AVLOQ$4@P$> )hd"3.G'pSG{^~6=!!!!!!!hyc6iڞ IDATxKFtD*$#w(%:guCGc @D7b 51)Rql׻5L]`N- 47G7uwQ{OiuO=0|-``q@`Gc 7t% cglbo E„|q>+r[Gl> D0 0l /ZbC8),Ӄ4d$>`tBj7#,[SR~ ` `C ~e[1Tl&طM/z%*LT }lt`U00l/\b38KclSѡ+>]ynjJ@)|+uZ< :>8puMA@pqd,# cHbX5%+q\C*SC@@@%ƱC:zBAQWͱlr{9G1 *)``- `1 ~h R0$b_:@@"@PbSZVk:)Ȏ H@P"& ]Y,fpuGjժϱN@@pgC҃fATMg;Y 9d  V<@D@a챀Cq}`+QGW^Lk &}𦫅 a`;`_ |ק'o[1A VtUXSm'w$9 rxIo !} 2 {1f0 whXqqI#&b[ ācq)DC`0 ÀG2o'.03`0@`=:&,!&svXZc`{1j%pu.85T9vP9b,`"` 0 7.v{1D ׄU`ZB? z05:vkC83 &"@@_0cS\j9G]:x|\cxA Yi*h_[~"qp@S﭂7<9:$읣J~~H3$g, \IͦV"1qbpRsv`6 ` ҷ?;#H W$.QL5f/Z%Nmxi f" 8_0 ~Ea^CӀcTW&2\.%]q_9U_;f8V\*AY 0`{ Al }#bٸ}䝨- t迮z ;}&~ -!*pZe#9  f)k~R\ۀ[BI2jhːX " `6@X^ۈUہͺx1E< ?;7 ;`.N&!_p>ni2":q%f9X Z;kHE?9k heӢS,růrbD@)w'VUM|GN70`@חxic]mb8U7# 12os[ot,^~OؐuE{Wz^^, D0`5  Gǒ$N{W0>Aߧg"ԴjIM% =#ZEL _-,$`p[5d0D0`  CFFG:Ʃ XQe;Q:lo`t_El8i?1xʮS/]apcꅣ ƪ`0i58}~Nҧ!D(̻17G- YP'[6[<=2,D0 "@ }ox_;({!zoЫ5&UϱEo>wɻLo ʍ bxJx.!O/ @" /Wj0n! |zþ=QYwGW!zt,&?Ԑ7]ʞO]h%!Bl;`@ a~=FBee֢W~-j2uJSc F cLXfXE\~ɟ '^~RS,d0D0@H6a$s5´'=zlVN$*NqV!6vVN.W eJx!l_{9=:N2X 0`H_Y]޾ʺ=5qW}iK *L"=۹Vt 1l*#_bފ:_^  &"`@w ~-]_;J9v2TX)f^MԢU+Zak,ǮhHϯh-@O(b)<*BxRj`^0D0@;ڗϸA /E!{l/y# h~19{IY;;ΓŰEm׳pUAec{>0`@ ~ |& RTPmҰ X{*ii4av #@y3c4$n!ne^nᎊ3`]p-`%s 3/P.(|W 8'hՍ EؙctEr8@.%sc:~/tŠtc=faU0~`0 _ җ7SFnwP- |=;y?ϝ% 8\WAT /tW  GEbh h2gU?;%E*R6^YlcWL iP4hUѵ&8C` 6\& !P&!{LBx B  P x@X]i'doS5l\a7^ `7mk'T=U;X\ֺ5w%%Bx Mª` p< ~LhVՉUDoǚ SA3);CHxFmE2W $ ZIXF]ց췃U\ /)`CiVA`500/[|{Jw ۩Vo #xoiC2M?ttG婺]ac O`J񂸖J֮A4NQKᎵ£`U0 D00 /a;Nv+Kx;*==VN-{J^^9>z_ܸj ='I_sbUCqX9H ԫ! 8i90 <Pj2HV5a8@&ycll?_*?gٶ|<n'xSK,Ð:a1~D4V X ( ( `oHđqJm⪭fG`Dr*9hr6 ApIU0dpx* "  @YUA1Wm@80cվ{Wm5s}I{z4d?JYۈpU,k{>A1nVx,40/(_CwX%h[ f1z{?gZCnOdYۅڕq./tph!|q o:XhN0'c6Sr_jpkp2rtCS˯ Vg`S O }.Gohעqw?N>6tﭳEp=ǥWS֚.Ɯ(]i±8ƒ !:bg`Vl/PL?V1vPIvwC.mf[yAƸev^ݼY2_ABsp¡pZ%,3<. *"`50{ F@XN( |;a|ѣeR?g y1 nr":1=OWub{I|P1La?V,H!'``< 0 N@'7 5/pejhSY;ԭ>H -ĔN!>a9z2QFy𡫆φ)iz4vx\4djd ?d* 0  ~?@Z1L |7+޽$/|GiB>4+"giYzW]$ ÆᝥBf 6oU z@(;`*qKMQܝ{u2SjxN EL~AWPSv{Iwou%HZRQVl!XjWkKohê` X ߝׁ!{\vKviłJrw.9C^tľ]DS:hǏwsQ:<]*aS-SN.ph:/Cdq7X2X^=)X @c%a`w^I dzWNK zUG+ML3XDe{oqX}$GՓqyG!qiuU%! D00`wG }CȮ@3zNt "0j$ ='_;U^CvRr?z8!rۣ!e4 [7n:d0~/ax=j`Ɂݍo@W&؀58mU!zofIF ƛ--]Ű4Ġ)$w[8VK&?"aUp0;_H_)J__(g+R~[:ԠO^H7?8K_17'%ba D=&&M2NaVે\47)zN/1|*X"x'9`" ~w7L l ʃ%-畽C4/9乩4 W$9Tզp~uX[*]=ö~}̨2*2F <6:pwG|s[W<D0`IH0 }s +_w]6r_ʨl}|oBL͌3J{ȔɭQİj+]u´6([ !<`FRaɔ|G:`*[)j` @p ~w`W eF kyOaMIfF*cbMs3_0xAHz|r1ҍX Ha,ح2͆ϼfBx9 283j`U0 @萾i20p;ZvE3Eqefkt$efHq'9M&дMkdyEFig̕lئc8K%9_v 2gy&% y] 7"XgrلpS`#k+*lB V0`2_H_zyp{·9I%W$Η?iU}'xfV{ϿM8VꆌL*$䰛6mN?ʢ"\5C :xj,X\*Z U@>kh(~W*{ 4dV^Oa!p50r*JR03 #(0(->mEJ:<å[gja}ү~1xD!Ob!~9I=d}nVUp7):zs2LpGD/*"GB0@oȐ VN.|!{ T oϜb#rG3qa?P-nb:Fd>߾~דd@Z_=qZb"IaYpuupl:[F򝩃" +-j@]0֛R-??:-zô5!nIϯ h~Ɣ$C`9U6"UC8A畟2<-mFZt:BV{_2oQ*ƚmVj䪼'ep n fC/# -פ,ʯmyb.e}#ф\2xUW"x^Hh@wV ~ݣ Bl5Sj 7]AJw=pfYmDIt0a_, g.f728V@hKormm۠z4a.`H+ .C]8L0B ~geu;eT&uXii=(G|<ƎyueJ89{3O;&>>>2Ēg(Ƌѹ@QEkDaJbY5qՂrE!&3[4kڨLO^;>..$rK<ц=Й2lXk"J _ר:U@m%m [vsQ/ KjUeuUo)W[`p۸yjϱkuNKZ9Ԯ"/Z2B2YX8cP)?78?QXVĵ V ۋ I50Im^>3oILH4jSgclJD[V;< LU4iV$'` }Q |˯h?ZV<̼So5 Yo$i>6t0\pw)_;ǡ^e^ m2BΙԡR[S (CO C.N=O ; _HWО רeo={rO-ygd+ͼٹ#6FgQƲ,TNb8ja&²u)g͠riS_# l<@0 3, 'KUxK q:osyWLMB4:xW%MZKL11Z%%I_Y6UuGF[ LL &JBqֻf|Y"rN G^-,sf3rLs n\zjb㎃H` ;߭WBZB&)"Ȓ1*@>,~ g(NEg UutDJoka޼Lr/e[ d#2V+qл`&hdbÎ "0o| ~M.~!}[k _Z~uX&ZN2|z92 ;L#v5h+mVG؆Z'ک$,r/e[L X%-f;~5MWhfPy]bbcK ƀ`W @FfEk_); $7=·^wf;bOC(m.Vng}K 'zI߮?Ёk ,=NQZ1|N!KKZ(fGVQ{V`sKeS:cTp<fF9,I Ea6IslFBeYx® xh.1.`7 @F$b=@햍J uv.>=0@-K❬4ŴҒ7ʽ nNo H2Wȵ3FdG!WZ&nrv^|f2-E쉪 M 5&@0 ߈@DkGlapL+}8o|{/L/KޅEo~TO1򃷑۩9z9kmHjuœˍVg;-r>K⏌k j, tyy6W eyvx}WCF;V7MuW/}|1j,"դgDpL @-į:]!1/o~ /VcLFsgu8:5smP\?fzC+}wKA}̝V<4\U .ˋ4\/jipM?^e .諃C`Q?T.2׌Հlztp兂`/įax%m̿Bŭl{KYֿ Bᥰϵ4cp9Yߙx[d뷀u"X!t0X HEۅ{mqy+U)ź^V^᧖Mr۫QUFSp^i\h?~6e5K2׸CV ˥pvpysbՄ0}^P}@g#n/G `VBq1 7 jv6fX67e:;O^䩲 &t_v+ԇ3G{yIpI2l#Xu'egKַOO/Z1B8>-ip7.}mmF٪`6THa/}Բ>3 w4HB~վIQ{Iw|ו>)(ߖKYP9*}d/sQLܼZ cJ"uM$f_d s9vCt֝P2cj'i$*=DaR7a5 d<fsTB8o7 lWre𾫂'F) A/` 4@F(mB6@vO_vo6ʱ—YQ-D*{ _mwy am&Q%|cKk<kr#I[126OCGRg2MYr5Pz1&n:3"Le` [\,"@B?jԱAd @i+5%H_zYRǐ C^br{}i$k2✛3` YS>iqnWܥ[Zx nkv[5LbZc)lJ™* a~|=0B-)']dӪjY|Dpz/`)GQ  ; yeѫ}] r饷=/>~bj}{)$0_F׈0(\6!2zWZk?X}%2~\DE!䰅cjztL]tO!OQQFn´D˧߮#jꖼY!ǜ3I"x " B; Y]c?{_H[+N—گTF+u̐Skgd^ q-FIgZt>WcЮ>ݧ\챏JQUqƂqw,Sj~ѥ0pL~2Փi2xU"Xe~"v4G2r w `Q@#ACHA;FAq=!9aJmwg%!>I[GK MC؞F{[]Vfag=cEq8jzXNVfvFJ/!I3?@N%\B_` #_QW`^LܬO#Zc@H@p@qv/3z^^LgOE$}doqRxfh_`C6Y\p']oC)hƍb7Wm9C]h2?J@\7r6$#y{ΝzuyxB8N%`Q> IDAT 6 $ߗ{" JDw> ~~ 1b%|_GyK"Js[W{G juHW_ s^[{Dr=upEa`2I%gF!}93jߤ*(Fb!|=unNXlhCl"XG<Uca8&!~s?+'zI7~8%}[ @?TT7/|IXjN5f\6ɋ0zȅQ2BkH㯾D$ $Kr-g8)2vɊ"po|{}lnutcE3DH`0`,!~~6UO$%urCF^~A}ȿm> 5pd,w :!DBTB#N?v7r{5X~mz=JmKk(/aq\ #sK ᱫ3yBx >+K~Yw R  c]W@J F __܏1//l@ij3[fGڴhl܈GS<}Սou*ߥo_VQFktMZzhQ~D{ny)UΕBz 3lA SV [JR [F:B_?yTt\\"/x"XFg~J\ V F  ~}!}[:ݤn|MFabÁ1Α-\tlZ5;蝶 {] ̃05V;F[CϹ1nUFnT./a&_ Tֿ`bd8Ka}+oA!B ۟`lrU}D0=C> ;թ}A@!@DwQ',4HtуCvC.JnbY[Ť|{ jfl5*'zS3ʼnTkJ4s9~v~a טЦfi<8l,GBA$ϤO#NUVń@6qÝK3NY LhiBJ(w!X,|:%Rr:D[l*x2{Zdl?lb`N $00oO($!~ 1@ftUE*o.te܄/dq&ǩQbW"0kCϦT{tv A7i  fZL'yMWBm`}{4, ̈́p6X[aJ7VjPjӻ|1&λ)V͇n dq7q. !&=]įo;)Iz7*_3{a_PKEFJ?H'x4vXɚI=Z*+p ;}~ AHp/6w4ָR" DeuXIUyGPAIbo~c#r1~s9bs^,9M%epC珹("{k¦"^+kj~@o A7 { &_4_uLn iKsѥR6b Ǜdž^G^]M}QMMBy׎~%4gkMfkBnc5AC0Zב;#6XJu.UhwMpZip~T ¯5^z\iXӶȔrtqV{U<b5p#1D0Ђ~@w ~{lLGr+S,LҷĂ&DŽp7 !u2|Dv 1*RX|㷠:Yuo7F_5Be}u*&$ Qea%_o(`&b2~i{oh;)z&$`=bU_wambO[= y2X˖ۮ\ƒůgQwq,_%^Y,2T^Ր)7ҙ>R.+ҙi b:yq.`qH^'MEX $0͞W/XSZ[[O3G^Gٛۺ1p;z{uHk&Wם}gh65j˥YZl0Ҝz7vՏvQYi)`Kae,^UVvA'ካ)2ؠ.o|>s]/xD4Mx&1-F"X$")xrII+KN@R@S =-mǤgK3_H_j4>}s|_[JL4'{B]N?N_Z*7vكw{^"ilᐌ?bSSw51XjO)U(Y ۭR3%5[.C㧒uyE~߮C21ܘ o ըu{DL+ph1V @ ~M6uxF[@b4b ҆moxHud.U0qYɋ<*kIbմyGO1t WN-ϭv]S3UYc7v㗓JŰp|)rе@/!̏鱤cM"CY#`T 2Z[٩">: WdE}X`a+Ep2#wȟ1 H@ @ 'pco~ů=;UǪU _nk"1do1!C{_U<$_xHJ]Qn#kƮ+7}.熼;HT I7\)J)[k[sJq 6I-VfBXyļBOdy0sNPzN_837{]>DSvV!Q"8-Ao AX$H* =M:fwhwuK*+ʓnXq=e5JS"%'wOlȵ!?wR(~IǏyůS>pL!Ŵ$sV\ kLv" #$q{, Z)pG2 28D:~ k*"8 m~&BzɏcA+ +4pb =-į_3MYkf)~!}o=,(ޘ<^/db"o.Pܕ+M;0SՃL,k. P?")gd0~]:_{vA\"F6.~"ٵRC 8@^&'Qů?~W%|ŹeoήcA~tKGUSt]R찍TWI L ޝL@^V)504vrxv1k&1T" a!vJGҟ-K?{2cUy+*X;f"̼fSsdJP@H`@)!&g!~~`ڞs4җTVrjǩtDZQj$J$) ~|9gwCzK'sB |ZbEϭ/ЂEq+;grb~0o5jP!:8ݿm?c:x<٪ ?aNr6醮"XXƦȮ* 5V (@tn&:4C2K,~'?y*KYcKn-|syQHa3B]򓩶`Uƴ0)$>67l_䙤^u&,G$4q ~`Q\f"momp֗.V 򒢕-k]x.\ZO9.!`i^N_{|[ 4bUK^Z!?֥$rpicSZ" Z@20u]KED3%#}f=F*TW缁޾JdB j@sU`&JV$&R>t!}EI—)vcU/MI'1zΊ_5:^ Tɒ۞ݐM;V0+cWfynem[LE؎(zJ!YbGIa/_yga8 !\}I&vO[]?O_0ȦokIЖt-MCg;d yn*3]J>ʕg`O<Q(oeVJ 5k9R!\,{fjH V [8w%j ?oO28m屯I[|U0]K^"QכEp2y,~~C[ڵE">z_ 0k /\ 6FzJ*.>g \=!E(AQK <H}f ~U:Z ~M7MbG+4z9$|bޔֽFEʪ \,9ϔ^!~nNIWb9#A8!bT8>9\|):,O{QChUӎZEIVKtl3@ ӿD'ݣTp3T!igu nml 5VdyWvIY_s/vW5bkD;*qmFk0#́b L4A"Y6 ]1)B?+ׁҗu4jRVǖ  Őqo_o}|i?3 )xȟx;Y;󀨥eðH_+ =r>#", vR6{7-5>Ch2=k-O]>2רk; }G\fϼy5/ru$1I,"pM]>D I a'ҝV^ I)G z :iU6=pAD%]Gl,epy5 z4z$_M| Dp>"]Hb "I۷9H!@@Z/ /ůX*;R AMI!}?9-E ;&xF}FR3=P .ոUM|P߻z%85MiUPd<.IDCR,<7>ez~i:; b^*YKa!]u]WVzv¬*!o'*ɸ\DŤXN|Ui!N_8,s@S$p%QC+% mg."x} 7׊hI WЖҷ&'fY%27͞/pKH7eeOߓZ5:ܒVX֜ Xfzz.ηҼVde3S>)=Fë-\C)A9g*ᩅ IDAT0oI'?2EѽVE"8W9B%؛+Ep=@>kaj`x} 7 nL6 - ~io$~NfԌ}I_qU>?[I[?$|E9N^D$z_ *gʧ\tWi|Roee%Pe0iRX7, u,)n!](}Es-XB9l5ˣ]}o?.#^ۧgª{wBZ_ɨ2XV/ї\ >RJ+]#}. Tx"">k0;@ @ZP0C[T>kaMRNW`qVgBxq7ސIގAm2WèkYEޯ n}RYBW Uʷ.0LIT"02`5 fUim1lA.~f oc>/G>6:/1Lp~^3|`_\_D'Vg`Y"lmBP[ ŞR>zU`Ŗ]c @@jVrrCޞE)ǎWp$}#?ڹe-o6A< yDZaUGuwhV0ݠaw:s:V>lm 0C GQ$q#%N_6/;J$ pc;eo!\b+QD[Խ[qtD%?gYLmz~os/ G^֮(+x- W˺W1摿4`ܔ޺վ],5s%>9z2Vwwߑ׆FGj?gb({zm y-ĺp^kE [[f%qc8^NK٤ /95Ҝd!,79 W +7^[er<\}/ѕ?Z`ӾV[ܬJ] tA UYPFvDUaj` Z7mnW$7SpK@66;j_Hg0f^Ko;Sɛ&H=>ǯOdI_r~1ϚвK%&epĒw!#.2ܶ!]•ߍ-`&TbB4U&c~].qj.kY]+7!!Yi ziԿ9or-ŽR'M2UJgU׋Uޙ^"XXl;UF0V @b@jLW5!~} }=/9.S%}+Hݖ2QD*@M^BM}r/ݍqg͠![+e_/ і 3,ʖ[p;>4c=[ƹ}[I)E-y D W s`/(}ޏ8Cwףo2X2{Ӵ><ߌbVDpJXܬy??kEA툂Hh =(l%~i5&~j3yc] FzWzU;|W8IqH<ŪMT0ANݚƒ97k=d3+~)g*ed"FٷJzV6;p>-\8f8}tGQ̵BWzCf\O G0$:Mijʢ5>`W~*.]ULgAD0Cl+qr";u9\!J"Я\w)z>p.9L H_f|a^TСR$\@O 䯔(Ei=@U`*~*n7XSǓ]o1owt ><61U'L WI,Iқ-ouaXۚ\nVo50"kJ_e-h}?K98ZlA:o1W>OKpzAs;6-sWZx' 3jW3 m a&9)~ٲ\;D'V烥 5JJed/+Q{M &\7뙼HͻzL}L? wplp?6__'ɉO 'PДXLg uWp75d8f$p| 'Wf-/~ weJl!bI_zZQHքAg&I2?t&ܥw_\$n}.w y@sJ wgˬDx8A 50:+3NR8k_&Q죣A}e[gq7'$Gw2Xi6K- Z_*93Eͷ%{~EP,2-Y]f* IYaF^_ e\ߢFaH_EʖMN'|omLZ^>CI &WWt\$q*nʀM㏑TB6%n2G{G?[ j$Q\;ԕBwGbX'ej agh!GdUhid܅v .JlԆmW#)۰$]@$V`k9Uc|Apn\ Z]] bpkvaJ 8.+a-+jH/-z3zyf:Y;ے{ %Y$hB Fۚ|'?Z+>%wڑn8M&DSilo/YH6YPgۡ3)*5}7 >S2}3mw&H- >=Z_:%^7n)s&t锖 rw5d0oEsŗyUv.'?Z;οw]&bRl.1ɓ_ۮ%$*@88\xկ{C] ؀-~2[(=+166άNApse͹iud6(2C~KL 2#=#2WF r7HGu3*@+J0\Vʮʾ쮫Z"`Ǖ]p5J$#<. Vw/\I'yh}׮-e},Z,u7v|;K.3Dpi4:QǦޫ ή(ь *)#BL _. ]+g7!~iըX2ڻ=~򔾴hlo>%j]Ӌwfߚ|-05mij+&?] hJ3 Ð[cq:`<$(UzVu28m)Lvpj󒮗,Q+)wGh`aJt#CΒ5.Uާͬgg}y7'=#hf~<[C0!V꾉P.Vū^M% CɃJ`vVpP @Ii f+eՠ)ߗ(j%:8x[>P'ՄSZ^,{_[u}RhH=rUordö\zo}Bf0qmuMD \ÐNM3:gpz+¹r"!\|/|2pQðBD;*]ζlP:.uTTa.IZ{L+iҖT_Ij`Z" ^߬f @r(͕Js*b6YJ,i zyDegS Aou\M٠T $$lsbZP[ ח2tdK̭Y]Ni~.5\O]*k)UzL)8\07:2\rUs2>kZ?"HEc;#yA LK,.;~'hⷼte"&qК`F]g,J}5xަ}9֘LQLUy|>[$ dy}T@xG\kYr(WPaaX=&- $~(}E)̤T^Zwjp%9,XF kĢ~X _܇j8?Ip/qH+Am$  +l zcr%KC>j!cջ"3ʑlpDu{~) 1/\%-fWLfD8m2:c#+ >uh c/z_E_[R(h91^{]FdnlH)}S 7gzw{?ڹMc2dx4W8jM:c50Hq@_3PJJMǮ{1\1PL:N3ۑBe&,yI~vݘ7=кBYo[sQ eUmDcwI򷜡8jVa ҼU乬̝'0>7jydA_ T {qU2 iC}%@'ٷrdj !gZ-V+7 0M_ :!lO~)-'Qӄ޽diS*@|~n-fyMB}FT2I-S5mHFY ,`HY` 9l Oa8;M%" O"~2!mQPCJ–[HOi>"XnQǰ;"/\&L"`UarcEN7{vE:f4Jb)&]z^i9'=/oY4Pe1\ꟾ+Ig[ Wv5 UY|7oBݴ2[+ryFJv)Y32okaW?z菉*eP$^)y壅!E s F^H@ ӭۓd WnU)XQ"K`6 3jWng=" ކHE)k<&+0Du0U5oWsD=)I{DƬ{UUr"YůuwZ7KΓ8<O52VkSHO { !ܒf:\_Bg{ot&eaVM" '7)B<7"K+l}~U>bYf87e7S IDAT[<ޠeU]XgjjQ`h74i @@֥R&yS)*6AT'ohENjl؍s3G:ݞ6H9 QH?3ț__]#7XuD-/ ֓Pw;|)M CN]_ɞu֨MfdS^nasE}"}^9W:vzu0Tzv^= j粫c5fUFߩ>J.&Bu_a tvx{AF$V}}uP}N0quy' <_*~VFԞWbl[,Q2h/~(~M.g *}_{ef o3o0.GLZVPUy5d2JW՘,~:ǭ˻fq0tfEc,+p'|> B^tŰ} t6I\" & Ӊ~+SZ4Y_@1xTyAv^~2`-&35 LOI$ $?+eUXj- ? NQ2jA%;-c $ WI&JdunEk.˸[ԙS2M:^,qkA.tmeMo걁u,}UIu s_@ajG1y%;c ut5jP ~\5+jz֫2ߐoU[ZyUdz-mQ6gTH`s /// 4f*(VbO&Y*RrhgT6s}*_jݼⱷɵtu{(Tv2KЈpoa,~'Ybk| r@ g%3 iZstyxQWV $y?s,q_k Zrn3ؐ-ћ iJ! p}}MI8hi&p'$@RSϭ5"1qTw@}f:ko2Vj,VfFx&ۉ}mx99)޾wm\1}alюv.3j{d̘[yQZZk>4c#MI;3iS f'[[D pJGelk$pƷE>x?9,&rRm￞V%!.:ڙ cR+-hWbYTЊB@I>v-}&N-YoۋwcC.o&Y[ 6f l#TݺS \ nOj$?=`)_VljW-膔W.eKKo g`Vo%h_#c'w":FsܲsHQr9X a!}Sv4}HriUb=)%\P٧_A Uŵ֒qif \Vos0L=| Zͬ)&0fQˋFeNRuGpo 8 }WD_1~KZga͎ 8%C!oPz.X'jV9um< IOep;g .}BVHX7q8 X6 e_D:Z@!.Fm"^x{7b`;Ro yPG&Ȱypfrle% p'Oh+7Im<ѨGew@ߙ/VW2eWqnya~cͪE-DCShoebʪ14(a !'p5l_+ȒwSV(F[u8 >{Ö-縛ܧ|EbnȜ8>^৒-s_<%-=u\3*Q?<"S+kKo֬VZߞY%Tjs]"T!i~v> ե;gD{geieDB^V3Tq{HҐÜ_b@0RJyζG}Hяo^ hYAoަB~IMNAC= !.d:@6U/ka?ƛf_7ca? ~MjA !g{i/7|Y5D0wØZgA9ԯs:a}j.S[Ե37NPZ,+Ѩԋ^^a8$`{!*j0Mz-T_]E/8 7CRǜg1v2.4w&b=mb%5ь5ѬN{>@~EђzfJ/7ScJi:1Ek20j~ J! S: ;< w2B7vЯ$dAW X3^<-\s߯ ܦK__rm4;ϷAҏ_}]#cHsRSg};V<~ƅ$mFjbl'f+-05/w/aNWR\nh:7*:N[F ˴aڙstQٖ3@8ō })O)kOfBv!DW&.?gg !? 8%n,@ k8%}\ZiŶl&_glu_e}h \zQ}Nx!ճAOF+Uϒ?ZyST:3RmD+Jcq ~Pp'!1O_7!|?|/IԽ#nS:X M{HuǬؓ0؊!9/3`LxxDYU1!0P_CۓW!B1S@}C7Ɇl 5Kw3~W;vlT(65K'}zyfqZ=;}G.i7&,\hԇıɸlDxlDN'~'[żWr={+a~\;V$ q~fGa-ԓ[-w[OG!lK6h93ib@lxp4˓ xC8X<e_MV680ݻYhwϏ~rw}a "z1}. }\?!/|ʗb!|#wFRH~HzfWbym=)+EomH{6b'Y׹dBt0%z^@ȽQqg[ePvd]^ VRqI_6z>$,jٜ}+Bd-`/B u@P_{{^ gkA ogɓz֌ki$sI-ٗ~D:;WI:gQ*(qyw@) q'gQsj X[=?3'{&~ qJͣ8Fd"9e,P~˖F66ʆ`"xPq?a5Po<,]u$Pa1P7\v{{eZװ{2>sPu<#{G:SkFwQ+1_6.u@hr re ~P1A;$_k46y")`gi2fѓGJ|Pv >.6܊6bԩ fAÂcװ1H:rg% KZxZ %':fU_arA'k&o,xi[̓8fv "->#Yl,Ɇl ʆX6g0&RN ^F={AՆJ'(*_]ӾG۪gUxpqn$;FBŁ& JT89꼗n^tZ1'(saK 6ɐf)qˠ.XZh͆uKQ)+gٖF#7=:P3 îI-݊RCO@)IL9s<]"0X:\̃`MaC @VkdV1o֋(2i'v%:;& |(%J=W½b JE1qY\ &)!pJ_g!  %1hZg],K}975kw(n+Ul.?oX3/ EiTE:۵`%qZ1پ=M8]Yn&kW.[l:(7cP?mR_Q$H}؛aFx3 `PQl~.viUNunÛ˶Cmea0wfW:+zqSV')O~)*Pږ@pf8upwKWW1^+m쀶Q}:̍.Pvl{zv;3 ˜LlLKo׊ J=UhÍ1_K2m],su4KX+`rXm EyTFUEN;eU:M3 O!ux)ątJ<`z'klbhH{[-RmLoc9 )Cb/ap +=?tUu'- aRi 3'N\0YkPM>&+}$ok9P3>xt&!ב kO $ ; _/l)eXpVO@߲7jDѽ5΀ay1vY2kSY눌3@Ԛ2Aȗ .R UMWv._5e轴P6Uu([fT/ 5BL֧2+ \V悖V lN5t9PdmewJ+~$5]mxjmy(>'>)jJM SsQ zx? ~ 8 {L8 %C2g3o~mIY'J~٧}R~y<aaU&1rx8|u'26i{߉ȼ|\.i%!OYh劧l8j_ $2A-e dgw x/X4GW Ij˳}ՓxM˽)dˆџ몆nv[ĜmN@޲.6 %bUmulz(D ,|A?ΣkS19ڬtYN+>F49QՍΌBTD{l IDAT hFӿpazca~DtVc,j> ~bn+w\k+< MwErFS袯jM->k>wMi "D)z%ܶITeqZ.Soˇ0G [dRʯݔ%Ӟr'Edsv~!/i*c+XLܩK]-}`$/,h2KQkޏ>lrb;9au{0\Fy8~ȕkɆ `R6d_=; ߔ.8n?Y?F~W&bwV*]Y3,膫_? }3Ϳ 0; [d|ǗC`=cjjShEkO/٠|lSbs^(U__x8qz2&M*I)IaH7OzqdX9'aώ~1h {4gZV >oqGu5k.V<Z'FizqNw::s){y_ŧ>OfsP9C 5`Id? l V/}$697'8l O}[tV,H#Jx<2R GmM,A>S33}F\I ffE%HyDjU=rnIZ7dn+Ɛs[ ]MsTeq[IPRO}bƗ=b[DdGeBܴ5|!t?>&$>&t蘮24#Vu _<7A>?} 4z"Sӈk)l Pus2{*w/C 6" 1)9=71.=9~eu,KHLQӾA0ԠÄSi4cu8EmqTytm~-_N)Ցon =4~Ka Rz@f90EYSȆ·aT? Ƌ/#*wB l;ᯝziheae; A>[ή2!R[<׬}沷#cprfv6hy2'^:R/mN#Ss{ لGi=fY4ܘukV!b5cd/gb!]Nz~wH}`\BアRM#wfџV8lMTzGZ9T#d}*wr>H,YrP&JE<ɉrŭmsÙc(=ZE:s}(dΩ'_ mXt!<p>3lU6Ni_V@1pŸR7T姞@u[d0@9y"utJfO ʣӥOW솞et.MNW :n=VF4W-§jq Y>ۦѣwꘓ )>a6ePTBΡ\+ aCnaD5`p:.@I{VSN+vpU;;`uǛC"n,B.FHp\28>{RvuVx#٥r2Z@KF'4Mu?Σ$ =ïfɸ}e˜5_j{s8%w+ _/' ^}CXI9Og/ |-ӿ *t%L6TW=U з:@jL;n{ =k*m*~Ź7b=>  3Ot-On{c`_Cۺʜzz8$<p'X2sf!*= u@XRtE[pZ[wiy[J`sEptt& p?auoڠ+W^\*tUydcKkzgkl?>b_ m7Zushk/2/XLx_N6mgߔFp,h{=o )l8.; }!Ak8BVe2_rq^p=/tyKM21Ui@kXnS Ў߰4E8S*-t=98}F^<0@ u4%2"t;6בܟR@^_z0Jq{; T6\ * x9#:,CLZ5Sb:JѿPnl;l8D8Iw C̛)5:/-J>z]Wh].#0oBq8e.D\n@$X6⩸h ʒOh57nʳ!0#~!_oKɆ O_^.kG/t{{ -?9eDnQF&^d틛-h8?LӧfJu&ȉH}z6GKG.&(}z].(dh1P&Gbb̑_Y\^}+ >.080U<qJ}{ʷ np)1:H TנǭWRl YoLo$6" X _Kɑ/l+3jm*x -[h`Y5ls@̒63Ek{˹qb54G`ˌu eO_D*x FApn@0D"9 ?G:_A_j{zceC1ul[oKg?=ہ7C_5=}}=Lֽ8޲;25 hqLٰ\ A-&mnIJRhE^"926K |.e<ݢ[F<(3c" `ϵޭҙ0(2힪"=FY__uhDd~36] ٰEvX>=lLo_ oKɯ߉ x%Pw }1 逾؃if(#J*7t8?gIer Ԙ4"r~IiS9Gt} $r3*m"/+Gq v퇾/p#RUݽ6Y3Dܱ:boa%oQ:Ȅ4lJ>0Ͻ7-b+Z~wL)|Ms9I?5Ļn[9&"e\+ai͗SM>YgEeuIKGe.(იjHDGo+:.`ҋ"u3Ui޳Ao>_ ϱz([/xQl`}O MQzjʪFU]Yrز'7NZuA@@+ gJl![4udfQF6Ԓ@ʶf[7@M 4Xcs TT͙4ƣZQ7}df?DyPo&Ofѕh >ՀކMD),軁Q|[Q&c"7{J irqy_&`9NA^Ա`&s cy ސW~)ˎxGmAy"۔k` eۯL!%'2f8:awY[~oKɆU,ݯ|љd|3~iTc^ }'9ͦdؒw@{#u(tl2vPkSZEyb3Sv y #6X?<.vWwkB6=(ܢNjƅʃ@8%OwhDfb N[9PD?ZK(Q.׊Zzv rӅK@FiZKT$ ]ZE=o_[l/d/%eo2)y/3GD R^S-m*lJ^DsgGormh#ߦͱshxbښ/U>A(me'#\_:M{JsM,lS>$vm>؋Ґ<-\n_ݱV̍b攤WZSdR؄Cp&K86H4\Yu4_/*ҍF +U?GoϽ>| @;Pjeml xsGiЗO|Mc Shbb{6aM-)`mcY0j곀=]x^oOA~x?K^'.CR!g2a? 䭖Bm&v>TF}ajjy8J;F̊߃r + 3-\*y:i1ss i+_O_z?-2r}vUdÛ8:e6y .KVi6yB W=h-&wCT~jYc1@1gRbr욫b񘽗Q%y_tbo8y_#G4_kgGl'oKɆՆ|JwKR$= ~ F_On1{io9m76Wk~(x XTH̳Eܬ"m-+3oT=?Yo@ $iGа<7fO`7iSa,PA <_ag{ (9Dl, il Mr9ָ:0y+8gռchuͩl,{-oKɆwߔ<BF{-j뀾cŧK{F1#䂬zYy!@ z"RYWJ'IzO(5_~ esF` 5oƼu,.WZ+"[{Xwgٓ"`_G)wr>u Qna׾d-hAa=d{^oy;9/%VqY{^^lD0{@-eLJ_,wtHz[ :{!v|EB5Jp6[%m}۴ugZ+B)E_`L𺂴PNP߁͡ioXjqMźiG)ȃ_`]{ yc[ m,ή`pַݡ0j=+ kSFx M>'!0ҞƆ~y3 Dʆa Oz6~O]i_Q_NÔIoq0 ~V Gt,Cit~ hyxӄY 6,ˡ>r ٺvlNe6kJ_:ڳ@F~oC#+,ңhlRoX ):`8wxՓ YRy>`[BwY=8Noġ2 ywH~VnlsR,փ1C#*N])S*zW.N?O6s}ξ,HVqShmYg)֘oCxij_R@6)'{EsJ7CLSNCO*9eQILn۰G y r^[ {1fΒ>^Ij"#lV\g55hD.QulTZ-tł'~wZᜂ %n͖3D}̼=uU5N i9g8}DĩAm`, Kqpҙb^< ׃Jb1NV`KGX?8mcNN *U8TT_Sg^ -U^ mJSV$O?+ '@G_ߐW>۩g3d alkb亵A`,Z!03 6zo+V_3XP'/Z ߔgg[/Tp"?&4^S5߱zԭS5h l AŬWmۅ@A%7g<'Tf A;˟7;H88ePxaZ)Dj<)`Rpv7e>kΦғ28 x|LGѧOQS{fO!pl7AW [Bgڋ_/}~bi>nG#oϪ2i_l`|Bڞ#`kf3;Av ߠzXe3R:2ۗb6 8GS*up j AaS}aI;5Ʊe/A_oMݿ 7ѬVNsA6½ܬ=.}EYSPܹVEہ`.Qn:I-΍{^ȱuֿEN3!!de0 愿 C ]Zo+VH İ5Ku.0al\rp+e)mjv 6_oɴ4[2 BL 9Y;ƻ;bQ O(De$Ӊw 4Y{WnrOµ22M_#0~ii;7{;@%@pe3OZkC`ֆ)o&| IDATy:lʆՏ_v5ϯoLY~Ӿ#LJ [IeҎ8c%0\1'f'B|TSβ\w|3AƧ(w/K,_~Crrl4@x(Wa/brSB*1o?C|lv.|ֵV|@x,C,Pr/CR[@]pZ4/u1'λ=C4<7sRO{Ț UG:5~Mzp)VL|Q{tVF;xh00^2hJ`uU5򅌜-$]UaX:)(!u2uD 8ۭU/N/6:^By7,&a߹O5&~Av}\c;ue\[< ~oWt*4^Bـw¥$|nC 9G'8:$/%*~QO|߳CUf0}01# Vyk ZzbZzjƢXI- ӲSdžA؊6:~sw@~=kןr'Vm;g9U;F e) cLX{ =ma4ž}3mE7f[J19; R8V7oC)6ﱝ~D.#}+, 0x~-0ųhIp'`[ smܩUd>:QJ94Sd#FL ~yXo!l쓕!l-kGD:6* 7٣7z%蛒V W"Y BSl0Gvjsaʣ{eC4m~Ey츌 P:i軁[P2/6eJ$gne>SQP*nDejV9f- qA0 e9C}t2^V(BoxC˪5xV6ZY[(flKL@Gk}m47WU͇# ^}?,ulfM˻7=7,'SS{oJ#הVat7 ;q#,VZ s9w.̮7ص@a#=Zi, BTP%Ty$\[&ŝD*;M_hJ-0Ap&|Q x6iG phNx~7ˊxV6ZmM ĐS%N<^8_/ןoƌoC}_S #-a\);PsצW/6)j, qXV{ /oQn9FyKb X# Qa4 3'xc1bw| ޿2lMZqs! <Nߕ! N@ [kuG2AkhZ a4cW(Q^QS3o\S|i U( jԆ_!u3Gy~SE'o\\Ej>cH^0r 1nՋPLpo-4rr߿n%.'g$BRC:>6b7u"Xd/\*ዉkFHC'ב2+߃0/h[ȥukB_ ߺK2'k5"߼mI[- PvZMc&¢Qhfm >zܬr% /`APo'Gjvyd7uj>K1GS *? ~XnhޭXmX:B`(@`/6-Q6 x9]V2BS2N_)l@'.+Q8Y޻ =uϠ떾C/{Zvw1r-fOٝ1<| c] 0f]c@I"i+~2.wJFZ?D e*4t-~i :a>~SGF:uMӼ 2/SBϯ4Y`}f,>y e,\+YE< v o+04 #@+.w}+fPGV{x4qV5eiPy`AUq'̖CqdiR ߭EM'(-v"矆_"7&˧ˣS%bg<<W#oAu+&zi_xj*N5Wd*10hM9 _S6Hښ4%kȃ.$ko/~$p%cbG.f1tsNU }`wygrW9apt`oH[P 0zӆ4֙8]a0 \t%U"9-ќJT!#]F`8$DZ9={3k=9+?ڏAtU^ ] .W5|-!]2---j:ma_De 5\G1GcP5i҉ L%4~ݳfכm(`}殧}9Uc 03chL%ǙP7 #o{m^,%<v`&j3e{yuqD 3w|)&.4|&=ďHK>lY Vu%O9K~gT%/i mպf t -25sBj1< -Z^T}4 smw8(\]pMӯ CkhOĨ6{'fy)elF4U1jKkEGObBUyck8?  %x J~ei~M Q>O!-}I ,Z&H:PͧRg1 ,`m77%uaweŪ#Q_̯. ^[#ߓfU'_m O} TlPMĨQhHkPպ3m2ZW׵5AOfFE;ɒ;'!~,# y{ u'FۿG@:Z>y:Eʗ CPgMs5E[Si`i9'+$ЖAXt!WBe; +Z WeMf {gק/~ K%{ ~_"/98P]{//]/.wsdMiaDw@_҉t%h=CZ0rH*E{O_jʝ M'LjUpĸ VP>Bcf.cZܹ15ط7 |S+_<.mFe[JmL-, ~V>CeԾ81 _bZ NJxR%%ܲ``I4vJjcJ H1ǝۄ)`i*p=G|%yne텎]rй8LUA)Oir"}lSJ8,CJݓlE8%5͓hP_%,kJ>X؝rePLBAŷnIXoހ: >[ p8)%R9Ycyvk uɣxg̹" Pkæ̃_EEe^{͠O˹?S?pxTp<\3Sg+AT6e*?-'h¯_NK}R௑o.MĦ9u^2,\9G,4JcMOymr!@.9%b,6}|Re6o[ʆ 8HeU|}MZi%_ܑcD|_# ^Ea(3Wfssaמw'ܛD5~x<}]'o#c}J2 x2-+qzWd ~o囚o2/ ~swd=.)+`lʨVbv#hWw@`18CcleC`̄zS&2g6ٯ|V:_Gpߟqi  që2) H )MUxa剘MVk\ mK{XNeޠz+;J<:_z+AZ)/iL_uxU=Ү g/0>P '7_A-k "%758impZnSP8LlQ Yz 7IXf= (E&ɟ`SQq\hȍKq\t3r;ǪZNG$zJ dG1e5)̀)8FJ 3cO߉Uqvx7eqL*Qr,PL/6koƸ_ѡnkke֥'m_9{ Q, 9H$2քjXYmtw}Wk}4 ੍U"fi%a _u߱Zr3O>vwў>;|Y@`*> 2SC1U))㖱\p杢%|4Ѩ!Mfm $7-FPݫ`3RNbpJm] y2אd ;#*׳5{s2q (W<ho Y < ׌Ta9wnl 6OMAL}b{+d>B9VWGh01Qe^~~@$`Qd5'7<õ/ܯn:ZTX7@5]`,~΀F>K:k2l;OJB8$}%tSFXZ3Ԓ7 w:=ۉ= IDATx.;\ ȭz6" NZHY.BRLfC պ#p= ~o]u}eZJ BzL-[竢!ƘGK& ,[,p `qB$!0/V8գͥt9n} M>LV(&LjW #uDhjg1<ӶCrYO+6x!ro4{$lЦ ^c;|exx𭂂㊚AŷF( _WLWs{@ DIͲ=%Y,c|H:x 4i{zR~&c~cnAc"NvԐ'`rmLm)dogl_'oqE+wyH_[O_'\k{`NK R h +VCk/.)0Ҡfc.jB6eU΍"GnR_}>k>,&8.4:=h#KtУ=U %gt%: 9ރ3y/ ~\iolVqtWA%OS)U57 Cn$ǰ0/> 96It} T>M̓ %WkY 4Ag_[zX;ƂQ!K ψ# 7uxV)tg\Xl׃߾{oqU;v+n3d4ҬL7S h_WDT$7$*_cE/X]bK# &|*aȔv@>D׉s#(ΧȈ' Tˡ?3秋:>?&240qYG:&Pil7=eCgeoo{ j;KoaA~Rb+>JNuW>)!ƠT(A E-<{C)y{FXV1D~?PiH? c`!@a'4W g}<^2k \ bʴdMvK뀄/$SNJ}} p\=͏,1d} a ﳒ~ulՑz#TqmTjQO 9V OS6.+_T?2Y9kRi8 _NOXô8&QOO{xwɆ L=T= ~8=l DMyAwӏCSf0 ؖuXG௿]. }NXwĴ@]NYK-=mH n=2~[GA =/,+__FTֆJXQU T:na}u?MbIpGՙJ8%BI86TPTrosn1rMmMܠ:S#:Ӗq )sC>{H= xVhqdςG:ncB3jܧ| |见I`]ʕqs!ΨGU^=o[ /T In kP3AΔjѬED +Z)AzϟyݳzԍcV}㠡objho3vg4w'|ϧrvܳg,uyɅS['jǗ~E-k>h(jvg~SuZ FyxC ?e8t]n(l|F͒'N;&!Ӯ;,V<*t0 ~6wm⨢(S^XVEXDeBF)LGOL'$y꽯Ͼٝ 4H6"hq{%yCT, |$*A`|Ǫ4/s{FC8ˆ6o +j/]GL_!7>zVYlON_9GZA"ic(@PNxps}O{ ܜ(d]37Noe-n&Wo ڈS.ڶP_kd<*DLtR͸L Ca~O=ҖЃY+5<7< <} x:Kxn>s+TSHByVe TJf+f(Z .nm @*&'ks?U|L|C`݆|%]b*$7ӿkKt_XЙ/ 3{R.UN~̢~΅Gemy`#6NiyAY/~*ī]I 嵰+؆/2"BhBj28ʸfkè xӂcBzcJ78+,֐t&ߔۈ$r3aCaM͠t}<%lk`ͬ3,.dBQ"P5B`f9@dyO#XWKCC+?8O/⁔*Qf@.oGɦ Ppc}:u֩~xL d >dϷ &0Qc8M`(&346,GOF}xS6'߄e]{ /=7U)klsJ_sf 5W`B1/$Qr;H}* 5{rl.o®0 n3{twzaxL(*M6Abvg~W1EwfȤRUE5M>ʾ؇app#&ދuu.LA|W_yH[Q&HPMsGo*h_ьN+K3G^ = |ujAWIsRo>4|?mKqut|O7}teTzm#6'DŽ}l{k!I${_%cȏ9,% Ё-G C~GM2kaaY1MnAeW׬y5klgU]k성 -* q8dJh׳1,c"*%OWJ\Ι=_z~nȭc(X+}#~ΕV7o~}V DӮКW>{Vll8DfOb|V U;z5=f &i AIN4o>ZzJJ+u}kj)F -13.&hxÐ1 *Y=Q;1/&^˖s<&/ل5edׇm'Q!Mdv]h!n&װڲʈhŠut څ9Rk%icQ'ahndrXxd&xwalZe+jpj& X&W't=AL3U RJ@#bvg*v1OŌcQ?hRB܏E<΅OW)x~lj[e,_} ӿ_UCGؒfON ۴W>GPN  82^`A;ɪZ w)ae2/լj \?*%E gZ[Jʅg)-Rw2 P*QvZqB* VVڞIddu]2Hc/}- _x+jx5 j>W)5*.)Z6 a zn0ON ŪW>{OMdj9ɪ}; &x m?$Eeg23ZrEY:6 u 9:Z%8GoYؿpS9$J\[]1@9?f÷1zP }]^KzK+Sᩁ0'r,4싄З0 iej?r G{A-@ Z|Lcsp9x .^ʞ{u{ۅ+ \++ST>ݔ8%+/o#4u@!vmy<lmT#^ bgo<+S!3V*؟#0ֱs ]V_n|GX[\; fӟ߀l #ׅ~n:/U*Z,Oϕux[b} }}ܛ2Rڰȑ/=kƽKV9άY 07*T,Q/#Ϲ~TX uWE)!\JO]jh2 yg$PE,>&tr3V$;Ʒd:*tE6KЖ3< Q\mEz z@'yC3yJ)x[R11F1 #_N٪0+{_bϘY4'RsޏuƌiY oԝPw,Iv~ڌ8o QY@u<84j$p5~!~$H+n`LȆlgdG n6#@[k_V))3L-NRt:6b.WW[.:EqOtS80M]= iVGZ'#]g,S XVW#r=jeתu R \k]p : x@ViGo@`^;p-Oa'C X$C1ㆿI!Bg+Ѷ_X{NFzUa1+ҽ::.Yʅ2XE)k"1.nE8Mv ᓷoV]8)-wUvu"yY=Dlg['S()&^ܨJзux\Zm KYbOs?j*i]OmC=:A9^}#gZs6^0>zYJ]+ }+<&-+{ ~xS2D}+fDWVL;_;}ݳЍ`z5 ]*q8>#tRt0_lgƊYN dy1ѧ#H/"M =W9%^{Yչ;R7o+q723-, wyເUUrx8g㝅n"di:M^uzWCӿ{k؋7I=bfp<==36al ^en ҎB)o曋65TvlyZ  ꆵ=LXהtcom"\]MT25,vgdzL؊恥#[0LCUVZ 9הio >%?~EH6非1c}o_S_= }i8WD$&7i>ELmd #[c?[SXdJlz9JPHos,$͗ kO9i"ihuL]\d7*l@󑧁 />\v=2vD RccaiT.0V%JsR֐ڟ*%ԗd%ZT IDAT1θzC9[W)I`o{^ٖ9c0KS*,)Ҙe:8ۗ30^#7vGM92k9bá0xFEYmi@Mי1v;A脨@s&+ۭ r-,"4Tl'M#f? n-bֿ HЗ $V>f_fkW S? Ws[롫5ESl`_.J߼X9̆aMɅMN*+|bS`W?({_ ]QCph~i!\²G=UZTi^n`gTw_(r0UQ=|Brҝs+o{ ^U3$Q:AٱUZ߯3yݳRɑSV86>iװZ(GƊxZz `vFMNFϒ D"#B4cw_5E?M@2tx͹8w_H7@gS+(?'670ť,0Li3I+,n\A sӈ;;oE:PyF<L=ei^4_Iyx`(iz9bAsBqN )8C3|E vJyt.剘^ ˧W@oINnOA1 ;c|yxaHWI9)G~Y5bg< 5i yu83_ řte/= NS=PeaGz.@'C339௳d$ XBn[Ť$ϸz?Ɛ!J6~K.op{Z6Y=WG$,0X'( P>nvL9'"r8S[y CX"W!jre^yXc0y 1Y z% M1[yN0CtG!03uDpQ:rBi'z(&k9[N.)O@Lp.@}qsB_2yZd:Y+yW>on*6 KwWZ3ҕ,ʪok32E:cpUn4ĕM_0~+sooᯣS7ߔ y' /Ѐ|$Sp؇7ݾu\oT:W Y,P8xS_'p Svs ,p mYag `\wsfz/${^": , no)hEK/jԦ25׾͟zX)] ةc>#2gφnuk߀ySeݷ nX^Xf(̖YN0Vu3rBy)yor0Sw oJQ3sgࠧ:EQN7s ͛X[ͳAApO,9tmY ˼Һ>[aS̷148%! 7G iMWkߑ:IYyWʸT 4k 9B9U+\ qY mngYР0b{l. vgc#/N痟eՀBzEEYuoř5VGإlߥǤ|6X`B/,8[oJw_lȿ}:1DʄZ'NP[=)r8zW֔6yk-cbRct;өr34V|:82~S|3?SAHv,׻\FF@pMQ@ 3YjWMe𞧁[ẂYq6݈s pJ)Nj!)A_uU2/_XpŘuy"EA(I,Ƣl _tȵg`7җ5.[ljY47)\x;ү{~5*c`؃$'S hl7}pa`іgPnȆm _S/ɯTm+L-3|%kk}o ocz OpIeMϽb ӧRR&QnOc]|*"ōTԗ߳1AJk;)3 Q:/['`RrV_ Q_ M'@ i#t|D7v} kGįKÐW829ʙ*pF7ҙ3^@ Oy6Fm5(wƄFus9h+ [l8eg7u;e„#7puGzR䝩B}UqGدG wJ̫=-8$nׄ~Xp͟EN1/b;Os~ =s//̀6q} S轈U6 Hi￱U EE{̆"FeHjx/;m.jS}$e_}S^x&[*/Ukjy$Rr`"PS"Tָ`Lʲ+,BJ|l3-lXy7)9:d-DU%>IZWtUW'oa["ڀ~;΁)ɗ{U5x~T/bMFus홝3Gbfl8&\ Yv[?ɪT <ȡW(O< (p 26yg1_j7NI>r+_X[_Y$/(`SH7r򐏛/'I%&+{rY^:c1:|{۹?n, TpW\*nKfDZwl4}g讋A֯/[Q~ ~oRJCGryWBSFS~XvS@ਖ$ܱdG pot0 ᏷QWUy}]{c٭-x(ڠ 1 fN`6̅>K{i (Si>ړQFGi wl&,5g/5޷z#m;>QɁ1uw_57]6(K$П)445;Ӳ7!LJ|R3t%H%m3^:[0ͭEB]#əb\70$3@~&Di7\8nxx}>#fWt&,?|O!pVK? y$V!pj^ j[!0t6TtUW#E'l2DLPAӿ[Ї6/(5"- \ $Wԛ XH ~n}3Y;AHc>vSe-kO20 7C.Py$ =3* j$KC\ H"Ƣ̪Zz1poTUtâF~'hmuS%@bkU<><jwr!JK"z?B7~\+a79,ׇKL).%+Fe*.K3$:GS EYajgzwlp0&x( /+40m]f0ҽpTe<"_m9+c!p7ݙ@~ ?,n /?bx8Uڣ1P_2/y~4(c⚇dp/^` 뀿p{!(Wԙ1qp-M`lwLiPb',Pb;D5cl CADqohkk"Dnr ny 9_|EIwe2 ΘeUr SkFjTK?E \Tc jIqShx 55ԝ)  r:@T).峙W` PJ{-4"giSkw/~8Ws΋Bv)C`B>  EC9}`Wpڪ=zs剘ϛ6N)[3,OgYu76<(+Y\} %:dmO_|i턥/!R4ժs"m36,kף77n3zIdn^ߍWqlz"ņ5!w_GWL+]Tšpnc;0dXՐ0YG} kKj^w8ư򦸀51zP:iC20!ɫ;euN|9nY!H%6k7R8-tzRdlj_apdc}/o6ߣ_ktKIb E,Mυ"$ T!I--$p&Rݠ-;:F|N[rNmcv~e4;d o>f[}$ @  /4ut^ay<Ҫ U3|a3LWPe"^ԤV;FA[]{`"Y6ѰJS^L;M:$ۺ>b *6ߖy_ w c<WW=~u&:$sIX#T3T_^+8-Y5hKGB&S.PLtࡹWQdi([B!٫K_?Q˜jm"ʇIlFmQ_;-VE _Jn0Ƨy8w*Y`Ȉ9Y!%U7inw %wO} ~w=th?e  K'%򷮫%|.` }JQ;XgEZ Zl2Z!c^K (W ;Pm~c˕u^2^Fz_W:̃KƂOk[ Ec.4h9ppL E1ku' Oiy4C_l%~P+**H[K"۱%®xbhx2DաZ^ U?`ˢ$p%]=a6w͈% $ y ltpRW(\WJRWN1t? \ Je6 |I2h%I`Q طl&|C@J5&2fՑ=4JFOb~Dh Y+62 YT!,te=+Oj-cΪ۠AVD0bL=NraĭC &K]w^Ĉ(͐Zhڑn!3 zTC(;#H`s^i-GjK"\AhmWm<֞?Pʙ)/%egKɋVWp߱cz*JozU&W>+"6^h ѦfUm vB(_lql`zidS|: !n!fGpQY xߗŕcƶ hЌԞ{CU*c*X1^ ]$Q)}}'p*!L7 r ac}lcN]' i$@B*C;&myb0nqĊP2?9-eR2IYyqKG1.#^ ն:@D9IeQ=l=8A ո +G uJ;) < C ,JIbɲUk]7-E5qbu=-Tگ|R!ҫk'-Eo5-i(aN\EN'=~H߇ -4 UA82Kw~8.wj55@M `3S;PBKz`H/y8u /"R <`(HXe/2f[W<aȍlG*]DK6'?V$ei*%] QܛWB'3Oj{ڧWBmD6>\($=aڲ< R==`}B঵!J;t,aO:Kߗ'u_ƪ{ ybBW0\D|5*e[~70m׊j`";}^E_"EmVX읬f%_KzaO~$~_ҷp8q|X!& SoJy$ @#&dտ"q`~jX/2: Ș@ iO]`6j;z" r=H6D#3+_ %ĩ,oC -(V^[_4zz|}Ƿ33MQybS.(ΖR+MTU;{tyJR\Q/#w,"m}%UK~.A'EA賑DO E, (vMza@]W+vdzsp F? K5%!Nr~: )\4'CӤ)V8Pfo+g~8#]=N9Ff8>02V IDATcJ/咞J<#~K4YU`ڍ"xB^ Qm%A-1hH_Nj"Aب9@gm%|S&aY~7PuD,g(4D.dW5vV}n򒋒Fp[>{uY14 k/鋠Uq74B W 3iXJ\sGyd0LSq#1%R /LN6̈́$lZ, C_? |W914&Sթ]6W91Bu8)lYş݅hFa6vo3T3 R И\|`^Ly3H"=N}ִ4b4WJTRH(W-0{th+Ltn)Y:iQ@NyTg8ڂ^ Ɛuߎ#%_r€}8BrXoByɗŽhF./4 @SGexvJts)לJoUO;eYh{ߗMѳ;b`$#MF dٶ V{J,_sg"@_4vjز,,MW-l~_MOUzr&>rY=I`+$|UpU%/'-Q %l5DWAXƷyB*nPGW!F HzĆNgAهHl} D}z7S|$/"5-P[vF=uB4(WcOV]SqNhlENt¨ᵙeNb[T#Xn}ץ!}mrHO'J(yje}WhHМotTLOKk@ҡj]iik\=8Pi]dň6j614͢ K;i̽/h+E!Y:e;ǩ((HN'~vC^'*~ëPNwxrDsCb6c/fHktJN>Yd Lb"t9pW{D0~/;e8:(bKvԤRtN֝{舡# suEe+T #;KIx.ǀ d Ϧ'JaZd*~pbxBÞB{.Pe/?9[9On~4C_9zg|mJ&d ~ܿ+:Dc–L3j%]7M6>_wqa.*^GuŗSמ <5L8m~FUL)e !$dЏоN/|K `r_Ca =)Bu@_Glt귓t mQz.ΐD40`mYuЇQԱ ^ }8Tm雀لMarq-s Fpw%ǓE^<=,3*0|;W' RJW !~혘c+svOzó $TpLFlئjr"jq"lu5pzY{}5Puy= \z)i^8*7#OrY@ TCi KA B>IH_5h\CY A {%o%smjI!3o̵x%W~?2F*}MW hԘǝ2'l{4lQc!6"] H\G`ìW>F|Ui͏ "IwKM'ޔ?+Ws,|_]~. OX9{_^XߞAUM*=Kv*_S.1z t'7TMRq-Ks6xH:ӟOD# Z-3`I^p4@ne& v'A"qƼ4QJ[تG%*3_Dj 늆f&0.7UO^j\gx6佃*/#g/x0{R^'dỿF+ǵ K,@/c:6Cx BZ7kz3hU}pV"q˚3^_ecpԅJ69^1䠟Wqk/BqIߴwck* Wwx#T4<.ڼs{< Y5#$*&9_-Ń!C/T{S/.x+1oVoMۖ4L9>hJdNեQR/@MƄ#vNrp]H=!1<]"͔HKIeCG݇Ue ߧVF8+- _ yzSB'__}qzf"-.Hw۬np͹꫟q~|O.SC t|3^ܮ?hbaEkʖ$ w:#24C ڌT~kS":AhO&~o"}?| YU_ЩΜlN2?h[kwȴTV$Ύ[F% kBɤSN|O4)!b~xmx8rȏ"wGHdPDjSH=_EBݔs8->PO"ȨL/֑vJ?Q}Ftoņ"FU_ާ~QL@6LD2nGCcub7wcpX oF."mݏ14OjxOX|8;@?NJ|ya#Ãv 9~Sr"RC}hdd& :+1Own=5500"t28aZ$О}u/$K2\)s Tځ"ՏSnUczSx fڋ>TZ%qXʴXk~L]a,AUH{Wj*VwK1>䎱|$a9NDAϲ)6C ђJmPm#&Q]@T4i͎TReKGDw0ιCaW`@8̳wγ__A= gpuq}+[hPl@DL.QK:60̉{NMwk ,C^Ħ@|iIڈ D#|rbq?lݸnlebfExPx Z^ e?_b0~ ]gDH٣D ,aFã7fh-d\ʍ2iC7 ˌ~xK`﫟h}3){jVPgfc|`!C/x'/m o6At=D{!n0c'qT+%6N݇,ў䦇oO"I[Ԉ*&.{_RX+1"W"~-QhɃT ;o%}qd~KWѴ&Lz=)厄02!9}LLTIc\K9α)T.=G'#h*R%i%"жHskJͻA@E3,)BsH$gZkH '}[ {Xm_] `di r[}Flʫ+ 3%(%2Y2>Ԗ8.O/D3_T.UHDT^nTR0wnnFL_n8ɦ',~z}7TJ*z JWRy:k{%k7+5X V''emG}5AK\Vѯf3'2_G~VW5 q_l{)k-**I+D`l(Bgzi*1U'ȡHʓYyS6?:<$g&lM+bܮА$0lVXPK5Y6=8"lusN^^b<>%Ѓ%T$ɺgQqr4P}!=ip2Oq /mD# !KHdqqm7n^~djòoE0FX]uLPZ91:B_R+~Nrپ6}0v-wuJ֒]i9~QcUK:cp0 hazzt ~ΉMOvGH[k]ZR 7Jt/YxPe{_*)JZۮ|%4Eҕ{H'jw;n lןT' y7EZpŪtxM߃ ً̞WO";K jyb'4B,.Yɽ.1lG~/D6E{qj YB3-L`;Q)DxP}qkOL$1ut3ى*/WdS:)\/hzAS)]Eဖ ':X4/9h24A4pqe؊ِ*28O>z-ć'1%mjL5|=%c&㇈.AZsҤ˜*ǁZܻ^H+0K66dN2gc Oo%} pwqvXs=,^RL9b|䛎W?K-lm((iV1xGs5Gq_i ^1 Jh s:.HH"G //![$ܝP)nK\\ֆP u.,`pŤ'T*vOej*fSE`"?/Nе{b k[+Z}lt @Qldđf`]@A<+C^vV,WRY8ǒ\ZB&I+pt9*?*;a=wi>!֓mLH˸XQ\ד^l i +K:zx~6/cD}`;Qgա pach?'ĐEӿscA~g9(/MtMeio~i`,XSU߻_B0צlwllȃ`Yc,\X* dGrXZ~BZ FL#\RQ7rzX IDATZZaTt"8/ybx`)fw%Hb]`;e&EĢjILѠ Z7@3 |$xHte%<,Iʘ{%ou!IЃ ,: \iJJ!8CWRC-~V|ɹ<+ԈH@q Bm@#𒿻' iX.@kƒP'_ J¡4Z^[45oO3ٚOn‘bnflPi}y򷬄{(wZkt-r'b*) 崁rtjXƑ {WΜ}rkw^ikRsW.ǫ[ vZXLkhlfb~<8$\I) qE I  8J5ck/_MR+/MB.{$ pSupgue܄u={,㎧=>n$Y%O"u)d݅gq>sƨiA65C\) :xV^L|k" ;IT|I`\L d H٬?pO-[ڟ>SMq>Xt5ǒx0k`!/N*;`TkBMҙ1?(˒}dd%u?_,T>,l&x|g/d[pM[E9F G bPd摉_1𒿍&#vt:^6{M^~9,wE  a+u(#bGA|>R;?sIۈ`mLҧcθD jV# 5F|@4}" [w5oH`hV]қ>Wxg1n]Oq"w͇6] |S]| x&\)}3Qiw ]tԡ[Xb!jH7*]Z"WzC)T}4[ٔb?h6! ӿLh!W<V$pعeIR.-Lk봌Es`pk4Y]eן3P ڈ sa5<`4"\^]IRI.yA ]`Ҩl$pcl Yّ.4ϜT^ pD]+^jH<)OZLBĸvC!kd}^,VVx#0NKكZ1Tb, GLFJDiGy.G.Bd Fb;3r0[L_r}fNJި|bCo`?o&![ /;@t ^($W6DY=WR)Ocr֢oP]2k~twiS6u"'E)]`K.AJ/4/ `W>+1vy;,#Dޅ6۴/ҟR2ulJKa0x# Wqӌh|ܯVMWJ'UGx#~C]%4xNl~T㤹%A6o׿v)yTO Roɿ)'v1/VN֕&˹=bmXg'gbr:H&4*hȵu;@*I#L_& ' |zbY |I6I--3FqjDbb7nؿ­`W@e(j8~8uCt>֠<@NX˳<ckg jذXտl]WD""bY;Vx х(/I AQ8_c$jy{ ی[q)5?.ZQhQZפRI>75~m̻;ZҞZ  6A,P bc%ZibzӬ|¤BCB=@Y7sFֶPE͋߈}R <Ƅiײ5,~~.ra3D,~U+ )cvx NZ]ȥ< @ɘLAzcuD'c0;Fw"pN2vrNK$p '隟s^1.wF?#MH,veB6 .X~H4;v﫟MjSVM/}]TR Am-*CG .Dy!Nxg26WjMaR\^? !W?= 2j[ QbuV}oR7̒N%tZ|_3k?ԗzqzo`7ORVGSc.t0؟I>2!ĹLI~!@Q_'+q,4trSߙ,'}(\c6yZ}o4oڶ{r$X&"=*"M|q_\ʓI%H`J&E$&ϭV^va(/4m$0j'@t96C*7.Gسb)a& yoXic IO/L+ A^X/k7Hf$E6}+YC{­SvW=`L ZRVtXk=C:^Lt9GE7Xs}V\K^0S 4kU/Hk鈃~~4p/xIW#P&Y4W3_޺z\ŋc׆*/!ݒϋ1ϕڎ/Ths"sQIiK݃mzx1קH%9;BX, LC/M,yIN~Xͣ&?C7$fJR*%}l?'|5 ՈsL?,vdIVaix&8qذ7gKWn2Z=7'R!//cC.|cO۰ߕ ;"0b6#QI!PC o".{[WJV$zCL]# S󷋕&_w 4rbr'ܜp;1{ac Q3:}e|X V l[?Pai%sYb)"XH5̩нk f9pPNVGS:dOrxx QdR^BY6Vl1;r0e=Oy P&?Q#F=k^l}W3'6r! yփabAܶ]re\[GQRP8ΖU7pg' "HB}6u>`{bq":xvq)|7Qf-%Es_\K6,-?l c2vZM$\,..~V@;]tVmB# 0Fe|ߪ:&bQH1$:`⫟_EEB1#O$7D S_!ʵA٧Q{PܳyELSPZC{ ɼڼMFE,28_"篴/ \Fn+!(U NIbgKՒf똭\iT^;U"%K$Ro"9t_GXS[,=Cv.rJ56.fu:yXb9O/FKw uW?#j-om&8iRc%{L+F{9G@(m4WOKc:ˆLA]hQv}FsޒETA7 B2Ic΁#U%z"%c#.G}\E3fG: ca;o#̮1]zӖ-&!;E!ےV6Omrn@{{`cRk !מ"IfOV {!NEz%ӷ&ġqp[oAřoQSRc*M8#zKQ&9aޭAK84fof~$ywvx아h5Z c6JuVhCU 7]`$2t>#e, ZQS~. Z&ݲ&23WdUq ;K]Q6"j$h^EIEh?o" 7'(1@6uO#Wq%^[jg=5c@-G*o"L1Mҷ}M!~5H Kb5s<^w⿬@oGk=N{ ⌇JE " T1 ;,?Q"XQ*:EyzQ^QcdV~%4A*Fy*^nʧZRr{?F=N q}7*8DI`{ګu֙jRgtł.p1" rJ3 﫟Ҍm o _F}".dڢ-)LJ\ Q:w s *EP!.O#ѷdbtsD ǹI]tE}m!OkJjL9Ǚu$ӟu9UH`E ֳU30ޏ g.Jт~fY>Xqӿz1\,rMt!5#K\'D tNHrRuXq=hdu!' GRx|6 TS6*q˺8>/$?>F6u˱!nE7Gc4:ŀ<ÜM3&<sV~ &!7f \ B'`1/qb;GxĹ'K -ac{??JElDbxM Dpx8cfjU]7ݬ$gtD*ũ26Gz]K٫iҔ$6ny`p۽.MaCFt˹YwbSp`:9pG,z=S~wG&DrI> ƒL"M*G])|}Y1JҊT`g Xb6#3go& ϕR9uM-}tr0!M(k}|3>42kZwl˪ "bc?~[kt2Ѻ;ck^:BUx l?Vfզ4>;Fdߣ--\=v_[a&qϘN-SRVT8g[ҰQA7&h J}c>  y>ANSӋӭh49P}k|,7?Wj`p~Y&ջT-G][0QIU*D2f跤JpEE??:!M7EКq>Hls#uL%k9VÔ`~wN}ocڢSUJN{lQ +wX6 t셻U,ۃ&`-Mo}2*Xٓ`/D/O$F;1LKpזƁHKzG0B?V1=֣8|hŸW< $0w2&薷/' H CGRBHVoAxZ'ӧ zI`([Z+X`l_(՗drZ ʣS#Mt\cݺ4k5j}srh5l~'UMihu@JRҫ8GODXU.eҎz2EL!L`>N3a7{ĢN@0 G SOݑ5bGm~uS$W'!`w Ltd6j!:5cf8Ɖ|妺Q (5s_+ggZS+S%8e wVxp=]E@c C| Z{+<1F!m( xP $0R { }WA5u@kIyOk&ewiN˫fyɄВ/p>% &iumQ^,E :kb^7pV ZaI&:c4.NyHKL,Z{Kڳ۷+$)C-yY] 4` Vŋ0Bk(DpC/{slNAg3Z#G 4t,4ۈ滷M ;p Sb|>P6)|%R[#  ,窙,5Ym}@:`XDZXk?7 1yR>}eq!-ϖjOB7)fN5@FڴXG2I@iSUiEJW.JT[?pKE{wey9^+?<;mا&*y?6I É5쉻> ץd"9j6=$;L4p )//*pkxg5I7uca"8LS<>'/⏦ԴTF9+!vLIP_bVQ2"5wLfZ-̯SDVTJB瀊"ԁr֪{2mLt}FUo;)V?~/24McINkGV%`"^zbM (!Um7_%RQ^¸+m~=adT$Wad W̎Z͓:XHv]b>r/>pv25EF@QR}|-V]*KO=kv6䫝5p @a>yz?`֩sv};KCy%~}SNȞ^mBkƗ}FOy:uH*aN=b3&y"?'IV٦&ݭT kFɂ:j8댰H)rN󻎡d;e L@쫈wUtFf5|vBx n=??!_L9 N\"cҼ&كMp=,uE(;P o#4F,V Lf tc"0j9i YɦT^8AzFTVFƯo AY?!jӿ>ĞXYIeԳ-;]!D%H X`?ab&Z$j6\;KBr9}\n9_w\VxM<LN)&t+G(URP|!߫b忁qŝo{&W8iXPUvYyX&`L}ŋ`CCᶅO0\l>9lԕ7ƎHn?nJ>V,>RL UM$pzاqv 6;-߭˔5eOTBAZ*_Z_٨eӖΪZ$p1 iQԂ1.u`uaf+|b%D R+N}x;wwjZK6*$3C;kGE'2 &m1m12k4/RA9.-z[$ F*Vr]&;tM3ZjH|jW3p"[iZMlUv%3)٧:K!ҚʳT 'Ekic Ci8I$iZqX :jy񺏉OݻN1Pڊ N=*Uxߛ;0Vנ4*31   S#nc̫A⋁n" 9Z 1.62}Bi#ZTxr˪d%eqHYϏrp ]ղy+_]Mhe +IV3}]@כ'(٠ȋK,ج_YCO"y=I6w;0 K*${S.dȔ~B9ReT__=|RPR)ӝn5 ]̙NF%M>fF6g̘-4csPXTOv˓OIKH`Q* , ?!k%y|2cLj>2z!jF f )+H5OF4CBЃΰ&E_R #hE!J1)QwDU~)5oc_o:N~A /j4UKߧPMKxB&PT&Z GrѢUhai}ܳq~vx0s}ZM?Y:f/# ۢ5f%V"8~`@#7yNf`䧁eNLqO6oSᰅ|1`kb ğ~))E^, ;4qRK#%(&# 0V~S!(i,&rާU f>el!:^ DZT%[yD2STJjp[ezj9g̸#{rֿ 2<YM69/ i7ק[ro7}į\wZxXl-#WЗ6NJ$0w_t_UBF4^Zr[a 6֨ψ8$&J7w 8S64qܓO|3 R_OG `K_TQrZ&]b~h 8\8\\@~N Qd==IK &0$̳5Vq6 `td{ Q竟y95)zo T ?Weud*J GK5d]al o0hqXCZ3uL"ut*%: 8?迡dx_D?kR⇫ (Dnȳ$~%yJR%52_/5*<;ix3P ^Dp?I'G>%~>P] \JPCSZJI̵d' ZU^hBf} a+C.\WA+} ZVNJ5ި %[K ۵R<<!$0_!~`j0pL4>ARJV 5dKe.E\ h:g5:} !N4n?5\'uӿ1 R"&8T؅%`*Z t1A>}_ /k)'qe(XD|w>\J$X\f#%ؘ¥'Bl+! A g(܊ߊxڢk^5tݲSVБB oX拘eΓuF,Vˌ#BK!zM'j."wE0튍r$m*^xb^J Vœ.? !oRwYQj4ɾT"׼h(v/rұ8$ c:uqk h1W >`s{'oKC Nj$ /$=E'7]_Ӛ$8+^acNLܟ_+DbwͶǗeNk~#pF dp"߿^F`}OՔ(gJk #ޮ lBh@'OZy;k&F.L$I L',8S6_\NqexHw67(5Z3k5:K_TϚ=eڷ2vwMͣ,DbЃ>d'[vnMپ|$P/ӵ =LpOTCw1tIܘo_bM[ PIrSmy^$\B6p'ۖmgawsESͦ.o_o!~!ڦ臍});"xj?5d{nį>Xw7=v T ~Ec,َʮ \c)Z҉8ZV!jJyK%kig-dL"#iC5 MցX{Os{ڵ/FrwQq B[dBᢵYZV])*OfAr+Ӷ"'EsKT{~R3U Þ*f"Nĝ`vK_uR'] dMNeEN"fw*ZK6G!p -CU?j{5j;qfH7})M *R5B #=kXfͳ%≙JhOk%Z-IH=;BʿMŪ0Բ-& ~eKo%0-78SΝc4ߎkD'" w5l0=X[2DpfҴ%ޚ%:H>JTg ADo&1&MMg~a] 2 p[jH܌/YA,M rʡarw]㷐DŮeiQomm.Wڧ* _B<y1?.έicȧK JBGM ~"Kr4( :òCZ =1=H+jI`.绿v>@bWH_%a%},VA^U ЊpP] I|dƧrXJ͒1WqkMQ뻺Tuv%|٦&~GSn#4$]ٲ{eH`U]xb >a[q T'%ݠE3zYcp0սN<2eueIs(tQ"Ԩ-v7MB"Av4b z}3zs6yxȈ 145ЃіBucY1F&>rӿHӐ oc*D5wi5ڊl E7 _H(vvD*{V$˜7:΂A/#03$`І UЅ J$iѠW,ںK m6匩x}גF?tuz8F-O ޗ}OU?!95e6MjF>R;sNsVЛ EYډ)Me_nO Y{emJt$ѾbcD۶ -ٮAŪy _,ϫ";p* ͤ*|\u.AK^w,1II4X]`<z8{1 R7gy_7'TpR-l ea鞓#`ߴM5?*Wtued" L⍖68$Tk$0$W#9aH(w i٘06La,N~:#ֿ=̘N[dSd&Z(.2pS4e!҈ kBψ?҄@&o'F|ΫMC?:ݟgR5Ƞ(9.zGN 7<1 &j2<Xl\t*goM%#>ǯ;2$Q Ot!:k^5& IDAT mvE?y@,Uu(["Lus;/ VGT:\t,7TFqPm(_0ӓ֗%/X<0™^/P$lYCA?0 V̳k@;#p&e6]+Yc/(jʮÓ_8 $rV%~K=ؗ y:O~?^r~omd\d~f@8z`wAN4Xb5Ľzn ej/9ʒ5?KNZ^ {cҒ 6I`)]0|34+Fd)OrSq?Ti $:?{gŬՑ#t*ט߀oSb<tQyFM/]P@ &1=wc>#q"{f 6+=ӆ,{bL /de#8{PlAx6{+u6KLǞ2^zON9=N{*zsľڅx= Sem [ۃހBL%GIYr\)pCDΟw6urס%wZ KzMSξ<^0*X7=k1H<C ]-;ٖbW?h?}H3j˪XP!2 MSO zү[G-y\ bX}ft_i m H艤@4H ^V"ºm+!_Zvuƒ1WǿumX6jXg<˻#< CW?(_>'2[4D[5OAb5zBᚗ{0y2UHA \ czXDzI^֢*̶0zU%AK rtWw珯ɡ{ wu8wމX>Ɛ<6`c"V&>AP0SV3fq69"Sbz/W +N&_Pɳ&,D:&L'}҂,\xN:(d-Vc(TOSeu Z!kB[lK$7-`ݾ Cb-Q1 ;BKw1;\lĿIgt,Y~ !O n{""VTxcNe]=dXFia)hE&l ){u obpQ̝gtǾ rHZvo!<3x>&-TCT+Fl~"3_$u^FƵuo p+_euVsH̯g[E \Ӄ10=۰ompT+NEFPnT/ K&5H.|,Gk}c"0!q2 1H~NJz5tWoЪ}FlƸ}‹8u+ 3i)V MWI`&{qܫ$e,l܄xl"\7 a5oQ|"7Pe`_IE+YOx,YltgFTl/zWF/~y{5gۑI@2m~òoէA4o7삦~;TV"m޽]߇='|hTwcxCnt$/g.gF3`*O|sTmwߚhUeBȹ]L >\?=/#a]an t`H(]ϯoz_ݓ..c(L`| >딉dж}!yubo ^d{,wt靉N0@z&V?̈IʗCkHv:qT݌„VLcz f]p'd^nV۟NX8=gvu8,+\d~nj\'-@A&^}1g&6ޭ{LWu.aC׸vEr\a#jPٝnKrJZ|P]5e|aFX)wGWTv"g}/\cP^tlՏ`Q9w见0Lda}9dp)BsT /mQMزW.1e 996$) |= \UH5l|8?>k 9M>hZ-C ؿM΄H\UX|@o$9?DtPRnJ$#mwv鹗~Q_X-j]VƂ3Yƨgq[I 4H`Jo!-gNwFd~'P˦ M*$"ⷾ?xLm%{_ p'@dD??a[mo6&[8#n vK6*nlfbl"hPVfxWך[rb!9i9)1{Vi2z-mX^Sޕ wBܮs9j+O:w/:܈tF&k֫kXawz ԗ#}o;4۪H$2#7nm)H*>t1^+/fÃ#ն_+`bL/ HD.]$bÉ({}a<ß?'XBdJ'!FoY3 +$p-D CFm !l"|?!R-WAK*ś dx\mҷH -} XO#-a0x {xSI+yO&`Z$ +' $YũRn\䴅s@$rs,FtUluu>]hk㹳KBp=oigz'If%:쬛#?c_4]YAbYoA*%M>K ;G(W17GJ>oho 0L-ehPMW&$08MHr:Y3KLJhnB7Q:{4eQ=Mޙ) unK{<[3!ӄ>W@7VaJ$U\0z T쑪RYVdKN4R{e5`?ty<%4 ;Oo"4ܨ[`^PzMx=dV87~5B[[#LvtƂr~9[Dpw#??1;_JB??~yqJ]ak/2bv*>uu?9q]js "4OOsif::tEk:AQ8-^8dHh$ o 7zg~dC{}Ruw /K+Guc}5+i߯@ 3XRRWL+xuz<Ip_ ??13bzsV!R{<7TS%"2 DOSBgM߲qet²p5sko*hPE#h-O6,-_觀\dO ͆J&Us0i/{Ԭ;?I {0v4?#Y@:"e,LXh7\Ȩx dW>'$9dŴ\2k=Fp+rg^0Қu60Ĉ<& }IUɘi @[n7 q쓈_:c???HXO{bc<,fVL/8#Ei^4=7YSV'4m1Qf^Mr4(g"n~4Zu%әL:O+zp変^p4u?[ioi~[KHMeq/sڅߡ/O.8{Ic-Ѷ-Qxbew|JiXWS}'XJXO$~eO'}xO@ҺFڙ#/Al #% 1X$0[C>Wc+WAZ.X-S:՟ YF=I?MzovV V| ߇%|վ?N̿Y>W/ /!kׅXs~6WL6*'/:_A;_J~FlLk6B~4vǾXN8 dHEXS<6";UHV+߁t3,ϳފAU0fBnYZ0-wEpK1 .1r gjG`2!`~շY^绿: ]4x$!쀚߃퍉T/F\nSQRe]E왜)]`vK%o,Ã4c +Ioc1.yc ?~Ƌ 2?૟aO`O@K܂^ \om N vy< Zʉȫ (]3{-S{ zflr] `:^C'pDI|+]oRdF]EJ#Ov_p >0wQZ]tJfšw/n"z,lƄ?{olu܇7+31Ib bHQvRm)QR+v*J"vRVRTb;Tʲ$Rش%3,dYS$  v`0`f0=ݳt>}kλt;cDQ ,'A`_yDKD2/QЉPEZxgTsq6D3s]ȫ#ྃR w%j5Buv(&"ss#^5Z97 K꽉D~h5$ZG T&SP֢?JOغD㐅R7,Rdy4 0kȀS͘_&I-_* ioq)nc4$_RMm PcuF_?pwx200]Cc~qvoj+x~sv˂r]Bx[ԡ Z97eLh6|,/󩦖;\;!63.3.e§:HtLӘU(芸W!TeCMJbgr2 n hUǐTL]h] j4z߄b_׎qMKe ئG?73tp IDATn`OV^cr  ~~;N;B|b~ P21/(,".`Ksa:柮gv.Vאm)|V< =\#KW, ++Dk _TK^nG P\} RvlEW8J(/C?"ԥ(1+ysyɡw 炿* `Bfh`G}M`"إ]bHO&˝5ptm6oU8^\h`Ys8 x ˶΁*9b]T6Q: uiAHSqtUws2(l?4gqe4Fn_H]!-aUx2W[5!H3v_fKmOˠJy! &Cve3[?žw+&(ZɮUkTxUzajTT%*5]AYl9tQN mN8r0`x2!6LwDd`:Y*&k>)G?ޗdq]vxQ/oԤtrta*ZFnr!gN׭zTXWCr!YLVgmDdصB0ݷi>2R8D@¡Ds~`ҠZ-<|ƻi-Zu2"_g /VW_[%\pXlYiTըcE4*l;I.Ȍ -g̺hͤ|bP`J&kRϭV*KPGO=yA Z`TmB;Vo;ї:ӄ?0U}=\/M'q<44[K!.lkO|X gϓl1noIns P]1͂ӊw*^-sWQE ^DU..uz~%YcnjseCȪB?MT$Jx?nQ{0!Y;aM^hċ妠A@wΠyE_&Yiy)"HҲbmӪAOOi!ʼ> H,kY}L M7ȳԙj_W!قX!)M|x~[!T3UA&\^EPLxQ&˞X"_ճVY`q.LmWTߴG.2ىKo-1[dl% "vH-Å L'SL߱)Ůt d3~;o6RYp`2n&=̻M|$w-.d0BBRL/{i UUk'~{',IKjxeDg)ƞs؞ʊ I: YʈST ?/TK܏n 1 Meȁ(go61Vlk:*f[ 1̖OSE\̏QU}jԣ7nElOc6CG?{E"qhzIMld *>ŬiF: {J+}' e7Zg\cT-ћ(Y|ֽM&DXRxN7%O[iP8lsmZr!ڸ:5A ĸΠ?kEE\B+G/Fv M l: jҐ#"JUU¾ߡ@?k[*n26$ę|`q-28Y,`ng@ س%uג?z'!j] :5]P2D*f.2<..)cj%pR~ ɣ]fR>ז.I^xG\"1}jLg7_kČ 5v]&vJ >QUe>47/NM/_H1KJZ$Ok@9bvŻ>5IU(UQ8L(>ZbQ2eUxΤYNbt.{%AGߟUc+o)Yg7kA~rWv)2fT{w-;(l~@p夌 v?%}0(c݂ JͰ @L&1ُqT hTX,<0LZc$L,q pt?W4OxMX$Rt7(_[q }XYԯrOb(2jUC12DJ,+_2`e36dY\0` DD:q-'Q۸D;tF@(#'C}dOKCBD+S##bujD;Y-ŸDiTz-QWj2, .&˵̱  rPB,n㟣IiS @&R"_Saj&T|V^?KL:1!֩3V.~D^…CWp 3N4VyE[.:B׵n;E"ɭY" [? o.sh:]ͭĝAޡH@N}C%x- K򉟓VXv> H'6WAu%&z=3V76(,;UX0ƀElU FqWW$m | &q V)[3K#l {3VF:HQktS8rPbf0%|zmIp"H`F3ѬR[> +QOWE=-%LUf(5r&pˍnNXeA`M39HXD :rcG^g}b׿|y(|VfoHLZCI]cY]4*upa L<6]op6p +0%y*U.x*PGܦQTm_!,e-t2̓~ϮRpXe-={M(*[]D 0mmH C_qHzs%dFPbEN딠9j4iҔ;k;ը6·\~uDcUTE\  l3qdPQ) ɿ6 DiYp֓%x,OJGp!JHzpᖭf`|-o/Ԝg%՝ !&Zҗ):^?JcUR}r2 E=5߫)"D簆QMxb- JA9o#n{'\$Ë߮8_Tx\ۻWYT 9ld\0Gզ!A~M;_ɤ|;l˂=zt~6ll7+Wv%FUΟZ# KpSu S0yw`RA`?+Ke3~ (S\ ŋdTZHc$ҷ(&hmǭ\xz_J.U'Mpp/֝FSUeu#/lZC'| | έ=$訷H"d$l|{b?P6|--`B.f$f8 w):,-,':YNe.=E٧3-Kg=)[F1 O}8,Z vVW.$/l`J'ek:ZQܹidfK@`5.gqQP{DͅC 0.]Yb}+5ʲIX8IH:)>Uk+],٢ T6ɝh8ҁBr'>3e-]޳\Hݿ6js֐Z% _~%8衮e(j =4s(,V1`t"]C |\}7?|~Oa8yf5yz@NC] Lh4A\Jf5<Qu'8Q iK` a ,jGdz`0^=ܲBf8*8Do5le0 vߑPz!&`&f30vv.)i<`pw3Ze{Vڛ`/}I; \%>tw}S?w|Y@tvC:lhQ%Ҥ*ŕa,Ԭe.\om95ղDN_E;) Xstf,'"5p 0{ky53я] }G)f$Q`ptN&r/9e(D2MFtӏBNuZd Cx|~iȸH熓FusU?HO]EC68j$ pr#$t"X ==M@&GA`a = /HW7i{$Wg]gsT-[Z$R~=zt4cgCxJʍDBMRXu aߘyu+f7\uw͎~ڤU"ѩ5Ah!s<#] N4@Ku' ̻"RZj/H|i;^uWïBwQCH_'_fg*=-#Z Ջ=j[ kJp1`NKflr8@:uk:Zn &'Z%$[n$Йagosxdb` [A5ȿ~ή`c L'S0vBQmM @="A`yc|=OAe!sHtEA_~JD@t=^W|E?XvɀV(N612)TΗSb h GA3EǤi wlJpc1'A7h5\B=)^Uc@o,R@e kbf !$J l9q>RgrkLǖnṐ7!6 b uù$QQz&]%R֙;r)\C_6*'!@|x [ MdHx&[n#ܘO^聇ec7=?Ou? gΤKH;!^Hge0ѲZn/C4$:klao7n==Po$Q t R@oQNpJ6~nuʊzOj1&?J2r41 &at~;Xul6 v X=c~Ai٩>:@76_}F/<8mAۑ̥D c0t|qċjOwP|B(h-%Lyxu5nq>j3ʤo-(bq%IPhYzL.Aƹԕ"==; 9>1Xh# R$P^(/_ܜ '@cN%3wavл%R1Ue?~a v)GSꑺKmhkF_R'j1خ&Y\<%ٗ,裢q]ҜSE Snpom<smҋx5/}yJp9Kz?xd".i)@XH0Ȑ%Ga?|vm<8 [f373$Ҿ=6Q~r1֪mA'ݯnBB]=L vԲLFOwV 1?5ڴ cgyQ~aMnZ_4HķhYۍU4y1W9 SdP2iA9̣諽@` IY2~T 7kAtU \mpg^z&WSm27i㟵_ZOlf) f,[xI41hHouT6uTf=U^_!f4 U=or>ey I"!^@ 4g5]q@V_ ZDTh0 (P#6^> .K&Y^iA[!3bh [Xp/DhSߴ7f7& 9ZxJ7SAVh$ AkvǜaDJ&@f(w$FD;ifB8L"c"A0ex^6 h7~:v1WO{2&Sy!0dp$-?3rE.o uUpg@du[IDwq+2$h`aPMQX4AZ]]|] [>Y"d0¸"^;%fuT=By Lצ`g[vdQ9(]d L0 tZAZ n.'K{ʨ%Q*J V%#2Im}@^dB%XX,( ^tnV]iB;ۭ͡M`sszC:6CEgiͨHh pҬ]8N (}<晧0D]S,@5,L:^n@RUf*kfe"E{ tKb,p2SE3xѦ0j&ݣrC^|ȍz-k0ۜb:!CP_FZ;2U&'zLv%Y..mEy=K* %ؓxw13{|-瀌+BXlN.JBcd#b(q=iMa_3t3FHWZc;T"2w0Hw.O0v6 2)YNծ092yu0+]dF'"DmYý\f޼F$N&eԖ0q7\1Tv7pE7^0] 2{ G1!USDkN;>ew+iV?s\jnXmv9=N3sڻz?_ B{qk؟-a^T0#׳}DJ% l>SV ,#֏S!pryHP4֌v-Sp$L>זּGD3T[fm,BʋG^P~i<X;n?F$qxV|i/wn :{qlUDV ZRFQ$-$I\z$U)돤~<DF-]h>Xm^L/Ex ]γT4+YcmC1JMc:50ͭ0]~W2kkk`"4}%H K% 09IuHD,TIK"c|IRyINj4.`{ɅTPJ=YjHvwF)6d.z'֖dB>fx(Kf\IBnӻT\r">ίF&_UEOj8"j 2fnISZ4*rCR3{ 4ɜL}Ea?je%\;/WqسqXKm |쯮W\@G/3*ðmPeD(]d]6xu0a_~6~7}yp( @HͺHе;cqmMaET":jFD. OU9>zfA:&ΥTn&iL,fvLE Uv3OyBíMd -ix%vuZ;[xTs .>,T,T[Q)UKسALb;Hȧ'}-l\ƥKwIe$Q/_b$!eyD:±[/Z(v#KU®eQ 5L 5ɔCbʧm@<ֹ+w@`-1%)KLDv{YNN,a!jVjVuɱ-a{2!Orϟ8_:>xbfۿ?< 5%vrS)* [r'jwz1o#dNtB^BY0"EĩieH%!hPKQ/ 'H/F;7 YŗH 8]~gNVA CnL= >ꃹR8+[ea:f`kvb-= uO|ēil{S>u߫C k6ngn1MlU%:[FHe.9}Ju9T/0O ^R%λ5;.`꫐te !)ZɱP!:;N6$BG^uAs(%(pq@0uD dJDrFwHN_Yc/ cMlRd&Im H椡i3:&Q].]ɗb$yd\Y<;c0ȼg @jfRmGLqmZk"s5)*:u|?^?TFI"y쉠z1 VUo]߸u3{kМ><4|pd>[ H HvfZT7iF.| |b36܂'Pa2w \^y -7џsm|".Ճ(VJkxխ;=ϼ0zbpOΜdtPi k,h6S !xrPv9I\שL iJ0Eg)% A&ԷXU4m}\#fٗ8 dZyyM?/UR{ ^U{ O}svV&qDl<)+`P! $t= غg3'q^k:eJ=c%=&;t$+LY`;`*Ǘ' T FUѶ6IV$`N[aF0MFd20N,&Qygg5캷uw_p+jF X F@ڔs UO7r" yKITxi4LFّ[NpM 3"cBgRȖ)e-I'"ߥK _n%FPf2DfT aw)ECTm~cweG;l+I((DE L|q8}NCq,`O jD1:1_*+nxq'`ɼH(^DŃ}2FfBrުjJbF*Q n^{wxleRx5n IDAT?dK4Mc~__ O>h0E'L!Wƃ:2_k]k`Z5/)sŧ2ym.,UKa`qDRGQ<2~bRF&PQfSu`9[.e&,b(tO~xgXJ؞&kZjY^AJQiz8?lKO&m6>y~OrT_ɦ`J:Ψ*{h0)'+UىfsdQ32 ^l]ay o㟃 gIP ` ; ӖѐwPّg`TjDŽ3^lft~F)!Eufԓ}ZNe07I۬%࢓&@pqPb-^E{+zA߿~e DZV.S>(/nv{n ĵZ>_ZiE5K5/\1"*m]? Pa%ik˂^K eq.->gh  ڳg_%PvG/ h 4ck6"WNhВIx ,; 74(S. 0tKWX邴 >?3*b`L$o|t?);Ll*=t]( q ;!I>myLKgʈDZ"Iڭe=I 뗷BH%ӏ>Om rXG ZU*#R:hHɰO/Oe wf3 MQXW#pѕo}G|wU:#Y ` $>q3g %aMEbWZ@$_ rL1[p\K)q2*/W@:_OK59JkMYPaGcit$0w  hۑDg Fl.f>]@n2HXA=7Ui6=ox‡u'8@`6Q2$$ϮFIͩ^;&% dTPz!S+&gsZyM8y?EOYL{a) ` {C:wE9D5 Hi w,s:L lmY;ӳ,͢jzp=?1S [C w7R2ȍ3{lE۳x(zJ΄;T#K)CbvHҪQ\Mi;cp(4'ycU AJ) k1ɘJq)S x2hr 5>zSIZK!Ӎ룱 !9-LT#so$^>,E~pibFEe!6[&n2 Ag(xhH%kPHb3ƌВǞMۛ:;?o(_|V:EѲwQ"`'HˉGg^i;6.x495*U+ /HfX#h =V2,BqA,7bThjO$ ޢs=?Il$hc|_3-7Y]^»6oq=c")!ۄL` m\Kb%@ \!; [I0TWn! Uى3P{_i3^-j\Jn?0dkhXbз)Xka3~UO-< ƀ.)q-Pq=Ns!!AjX #撱k:\g tʢ]Ҕdno!G nR(BT-mH;E@yY1 =p$,fQqklF{"܏T@*i! &g_J 0.XbWcڨ,uIjudUZ+)U2N gFjRybclM WL>`O}a { :%$FfZzsf"9"Ƙx5 a:{fkNA 4Uo19[˺? ߢWБN>#R63x?yJx60jmwȵ ǺoNa酀;{>$X X3I^<DžBu5Udlcԗ$$=Xf,8lxZPNr%\Z'_P:g ^Ktvpl>6Ein^iP1 7"z vX*b] \M]|7< W\`SEYPz_rF8Ww|\1;ղ''ASzFkdL.ދ9Zh*q /b6.7 )uDNevP1v4|01a}'q!vTJ&́_dNI+ vإ.[/>c6_XKK6/9m5p-_koc ,ԤSY&ԕMS&+~v⟾.RA?}G%xIߋ:WT"F>Pw딋arbw֫)"z3Wa|-2̎-s7WoZX!IM 3iRoȒy.ÄGњA;WJ` zr׿޳YK I|]wΐ3ui~?Lar#dRLBMDVHv/3.b{jrG/uDs=&W_+fE?W;Ɲ)[?:-cg_ k`bv Vm~RفvJ?O❇Ŕ_}tdT"R3Z7B!C)ޞ`[7۸0*Җ0۲s5kg._WVҹMXEس VOGDz7:/Jm lll QO̤_5捏dL%cZ2؟ l1H})?f_ZLEm: KG`eFBsU7GrnY N쨬gg`(#(^[ExQ#5qHھap&#;]&Id J6f /]S!r42 4(S&XJ.ȠuC X"*ZJ>s8^fa>X; 52cw H}-Z0Ym|FV&o$km %?{r zc`}hpߝO&#"$Rfy;8jڼpRU?) Ӊ4H i݅Ύޜ#65`4 fNU Hf/(Hw ,uT_lc&6cnG^ad}.y_,pomm .ջ~ Ꮋ {=cO>#mi'̏~.}5,y/&\kugȵ_i5/C E(r 9,*> ΑiGLJRjBFns MlTU 0a XcҜHz0eg1"j8-(=2PvY4KXc;wж;p=nޥTTgfPrR+C:5ioF{*=ON* fft@&Mi'Fg||%{ڏDE#9 =9590*'>ɏ;_{zx/3/'kYY\5oۼxǮU4dg 3]Uuq6) /z:;T㳺K,.㙷&fZd#Fd6 9eudx9 hfYISQZv[^Fp?{_RTF^JG.&Dm>g'_-K.Q417wu4)%WuIB3drv_hTf~ .&y81IKwϯW Y'ݹ+є yf;&xdN5 jpt[֚<vpuia Aa991,рg"wj p a`Bja+uRu=wcϷ" 꽾?ݿL̖oqslxbe.R|S]Ruw&M0n0&55_w)8r C4:Zn«{3p#ktgW"aaC=K^^yT󇞜?>J\mtfr_lٓ%w~6),ѻn9w- y 3H8\)$I[Q;8חv=ӗX2uh9,/f({?\|,/]K=1G wtsSf IDAT> mmmiӬ `cB{~Pϋ.*0XoiwP]jRθ]Zf/"C*#'KUiu]3M&K] "Fa_hh=DFI֙D=mA v̑.|jXc˥2|_2#T'vKv<\'e‡`>/i3Sy!E&x6̞Y-4bAWQqt<>bB~%7 9~I퍌#TgjxüϒNr/!g3oװE"w{ [Uw\E;_Nn>Y(L!+x^f?f~,'c`T[hB3js7 Xj.<<=:}28@ٝ% }uhnvu)UUvnb`L;A/Mw8(] _(m(GJdoJ v5*c 3̈́2R*&_ n]Xa'S*?KعНK%$W3^2zpv*UNeC~-m6^FCK-|ondC@ۗ(a)Yd2k,ïWB CKg?;;o8vco<l7ĉ1^]1}7[h a\@2d5W&fݿTV1K T, eK%Yk,atᅠ, h¯EV3Ҹh]`O&30?2}EWe GP4,M -~ ;c.m =&ޙU<!  ~ejl}r3P)]a~P䶒lU:1xȓ^ ^mOZ?ZXn^}Lsg\zeG^IjOtU൯~\y@ݱЯ;OY#WX(M `t?^=D9Qb5RB[=s7\uD?lwD=b| >U(N/QL:^0Q4feS㳤1, OWD~]*9ɵXg6|0][K37=`/> W^-c:7|ջ`k,|O-| D&k?;WTu;WM}}8` c @xsN G1܂c_j'ãLbi+9\K D ATшR\\c55 /McH£N/I=V>/&}M4(P3x<1f E9Q -.rg]Z& .M&R.jFv{zeSB6xWF/ 1{դr ;~ Z~͋ߩ/~n}S' 7SR4^m/{nܵ}щi U$MigV0ky6R5,}V2I.m[_ $lF{ΐmoz+HQ}X|?^O=Ka={c_ -pO6mlll ѻ;Dom 3Ȝе A`]iLSE/&L>vf8Ô'5jNyGKܕwa>I VS KLkb Ni23gFvI;()[% gi4=L4vwa`ހ;oԤ#Q1Aay0djtp#n Xdt-?Υb @.aHV@خ䗎w.S͝6Fyp4ߒUJu0D^*~Khgy@| pp/OORa5q^ݛ_?s ٽBq;&<._ڙK,wֱ 7<&2_afz /c`ׯH"z<:s_ߦ>zMO>g<G(KV}^)^ox tu\ƶ%_/`QsAb76GA\]b1? 6:ɉ?̑;gGJ%9mbr ?[#,^W/1wId5B_K?ï3tE6+{y&5k.2FNY&lOaߊ/tmg+-u1^vÅ_|F]2%ejwuIFl:__Oh><ZH*x}GiW|jhaTFpwIJCZeJ6Us 0=xsjxŋ<`Ȓs%W}\tuC g_.?RR~4=]DУzU3d?Rrt' v6)h_"9 ~EB6F 3 <>N8+l( 0?J`3DN C c[$*fnh2u{Fƒd #&I?(pq_`EtYKD`$2tQ{q&J;9J\HCCMlE%C۟4P~-OyBgW=_{98xIͱN %fo}nqϵOgۏu*u2Pb+#ϧBvA0^:ê2=ZPem_͔[򩤶XNz̺y!{a:>M./=|p aϞu pྯ~7LßVm>K1u{8ppԃ/վg r3XF;(h}?sx_TzG됽1I#).dR2b-)>I#ViBx*;d%V_nj$stб`*}lzC 4(" DkT]PX){Fxf46w?z?܅HvI||;vy?*۬Fy3ݤo}%x>$*%C `G 23v~srija->eĉ7&~e ͯS;1 t: 4;=Xz(v?aGc,I>to犺dM~YͩF Sr]nnfW=z|X%Tn;[Y.Q&[P5e(m4*N pae .W'>Ye.rpE: J]rEzgH e~*#B"Yc>kDe_Z oP,,Hd9sEQaޱ$"<Z$6%WdXFy݄0A=W%) ;#O~2PߔyrE&ZzN8Eױ,26Y &1"6>uX^])=y on|sKB滫&A|gxel.McU_N^/S\jCJ"n^Z;p< ~qsq'9<oʿ>Q0ư_lX}%,y{m5>_^p?$\g+a/intr_41IJ'*QHߎ&knC!y7:@ 6]*z=BL;ՑFDt0#5 нޏ.W)8- f1LiWľ=o8&/N.wm#=||#849GGiRhdg\ D=< _N8xE wG&EnE1; {%39NG,F/ߋSwuw|{;.rNޯ?n0,-Γ{A?:eۏI$6+|G# yUꥧ 01*dDdR(QԵS nv;@LN] oLh')o9e }* *VJ#)cJFՈF C6nFB:gMҺX)Y$U<:, :Q'(~oyV!Q7:[% MebR<'BWB2f<-@{xɮISTXwD+S^6gEۦ4n)Ekd]kmi[ uMLrB6Kʊ$᫑N9/%]j]j|*I:$O*, %5Id*ƪ$k n;pm!k 䣻LwFG(Oa@Wb5;X&W,+|r&,$F_7|G-[u6j6Gn5 9,NJ5?U ' w{i$wÆw4^ƛqgⅇu:ۿ]x?_q{}tzKxӟD+E<- K) TGzE/Fʏ捅Kj[!S)_p=d;xw`KZ"[6_ծo= dyߒ䯿!@37BE'᭧qs0[!^fI @MJʎF|m*"/]`[[6$*b()v&abtZ^@l^Ru߯k;j:X/ܚ,2ܼqmVއg^|y7g"_/}>Y ?n{n>yA3cMZB6]hI.FPP~o ~ϭ@;7~;(wwUT^䠝:%eSCPb*&Qfm#j%# y]FFxlFD vO".ZCv֑KVHN֑-Z޹] [Ŀ5 G"]ْrzXTuHtMH䣯Fv.[ @\H6F)`6ڰԠZG6X Y).8qj }rlIhLƆ,R)0mXmlj_CFfЌ8n4e1PW]\ԕɎl=qhQnUmBTG&B<D+9ʛiMYf+| PKhAw|U mbD .`Lvុ>+|,k~6yL_=$[n"2S:qI( 2~3Ƅ3ώXhd,ǤvGbPȦ բESqݮ@/K Tyzw&Jf"q^"cLL ՙU\ ԗoV]cO˕+7E1㫼Wom`Ud3!}[`g좠LC({=ϘTO +MT##_&y@%e#hDWpqpݴKƂEv-Q \#:]Qui_Ccf}-^ ƀW K=|ᅻp77?zݽož=tG)Uje<ֿnwsbu"fdqWJM'|\y]7R$B|҂ON$ >KƈuBӃ0KI,yҕ n+bSe0 e.[I&a:]I "=hoʘnN"o}P^^0X@swV?@ &1/_r]p*[~1bO 3JFzI2wgJ><e$FzuJ|;WC9M +퍋UA]{8zqr݇H.H+cCYÅ_)QUF Xo]Ղ)].*N0 #E5{%2]J_xIh&lR]"o_^I܂_EHg"-PhSS7M;SƄvܦ| B<&nxpR3;Z,YZ(5V00|TM_QW>I^b7a 6db$Pw LO\'YkJ$]>$I^XM! !cpDJ&>c.Ǫ ._^_?lc#t$Cq ܵl!xm`wџ`l6-PzSEZ_!P.`WI!v@'YEZn|tF#a+'//|`2h*f jh UyDA81'U;ć$ˏ:MfAGU+b25 Q*Q [psc5[@)Fg kl@#L9&Q2rܑ_><֣A4©6ֈ? i M'H|ͮBl67Umv9VV6ʙ./EVG#g!#[Kt/E0gG+˨mԊ]1k!e"4.l2WnCoѹrQڡFtbhI'AEqz'}mpb3, XJ,=Z6fam/O\Ĭi] Ʃ-(Uetf&rcսUS<"XeYc0c̥Nܓ" zMOƏ\="Di\2Uݢ#2y$Q: ĚÈb_C^Uc[W~j#H$>+v7޻}ܵػxݹ.~=z'c;'7 ˫+~iےIԇtwMO3GR)h&Zw{e5v[PDӔv7ݻTY ܽ峿ǟ: ۓ(D#rR7ލà Ks0$dӠ<9by:MqƞMhQ(JgSy_W9Us9 :PvRJ1,\ &"SVk$ל+:qȇ# ԗ#WR9aՒ~5@Y6[W6]_P]2ٳ{_^Fo65'!0GOt\v(eROCvbnƛhz.8=H$˜:zP;]%Ny;6a)WYGwP yKN ɀvo!iF60Jc$l`09;KO|"ʍMXl$\67& ;T|#KkTC ;mE5 d=ܳH\(cROI5] 7Plu'-6ހFI{{#]\75ҿei JOw|wwO:ZDZp$+~S>b'Rٜ"VUY4 O)u4ϩ~~}`$z&_Ђ KOa\ȬJc"uϭ4eO@гZlThcL( ޡ1y4ReZG{yj(W(ź}Cxij3u)$ ˝[‰NnuA}ʗBif 'wtMporELݾ.戾"&qV@5X }t{=Bp[Zđ0w݅ΈΉ9]`=+9̚u KIǮ*J}wDzn~ 6%nb.3/BpnG8T^[q,/26+ր0^F`XcKoCglD͟ ~"l0mh'ghؓ [FQ̘&bpӮU4.741=N`c_j83Zhs$tXRA!'+kzP%5 Ӣs*A-g&حs)qn+ގ dꬿ-:6 gIA'$oDF x_ EuE[?wN'9x-Z$18^Pu8Zky@.ZWE"8,Z mIhq2y>L.A"YCL C_^.[M,}708/5o&g<{cp]Ñ}u{ !z%\8I nx 50>!z;|D +,C̋py!e ”TѪàn|YS1du#B]r$[HT;#~l9ܷF`\'hGm~$ݺ7y`,*lc탹kFrm7\bw_}W\mk Xyܨ¤-tjF,) Q,KS/*ɩr&(SjRZPgj>j-AIRANcL)M0cooڔ X|#:g>\{ވϞ'ro+Ƶ0N.(݈6s/6$:P jr#1ga]tш_32۳he_ J77{)S~gkPiT- VQAc?ʅaȓn+;$k!b&_W5Rb&J`I&$0'"8ƙ2K딴$Ӭ9Q17Vp2{i/V:wrůl*"?OP"* !:0Ð6INt"cxEHK ͤI~A`Prk5.'L2SQZFzW8&~ ߈~?%:G{ᠺX8qd=W+Oc n?\%YV' ̓[7b3b}~oVh)GDhB>&. (¦цb%Bc&&&y4K F1qw%xP#|q3uj322lvݫ_IemȖl36{ Tn +< h[)x[_Jx^49擿WuU؅ nL )WU'\s7oQQ\X6fE#t%7fpp]Mh4 =$?[vEEv"y$o>tY8*rPڔeKί\$.B>TXкl x~)/eK}QHQJ={]ܺQ{&DDž=# 5{'I`UB邺, >B&ؼ"Eɵ杶Fmuض()c{c{H6t/&l j`u\<(!76woMS6&zɍ1/v(O;@";C'C_ A9.;Lxw{x'elp)- qjK$OC^BDFyY`2<[ (0,ZMn$A@Y~+F.M!"_ mOFB8WcJQ1LC<`m\=X;8vw]_MdX/-bcOb4\mZ`/!2Ywl0jOvf%eF)ѕVȹk]3q|2*ͨu.D܍[h8J / ;6np)fŸj"Oˉvml7 f.U%ŧf|i*)=Z= 쐛96G28rR+_Bvu!_W¡WZr,bN gH^k$o֑}!QnY]BX-`VuUQ"X !Zlv &ϘP dQqa vN0۱P4fd@ =Tjh X͙X8/r;᥮6p^uH#X0oq&VYjl_dż)>ftUW@+TE8"v+iO h0=wp ޶U-K_ZT!86 CWAi!⯵7_._h5?Y0 ,Ɣ̄mrMy>\:J):89'K‘*q`v/h7R"|MPwcS8o;x'Wc1cx x݃}ڽD>y9wZ(?3HcܳW&@/_p&%$W\U-n_ܼ8o«~  /u!~ey%CAGFȫ% 8&p *N(ĭ +m<# -bT;NoPn\GF!o"($i&-"uIC&"wх0}l*$pxN p=#:U2qԒ7pf-\Ƴaq;4JI!hGbg/ ZJ٥t˚y.թ|,80+nbyFg&,/;c.@IUo%j̓%n6o?vkM ;oƋ/|*} 4xnI.*Tvh(xKdyAheW4ǧƵTHkK"Uqщ`>/VɧL>3"P3oIpli<^8x [jo mM6n-;,a8Z68Vm]Q;!vwC(m~Ʀ'sL Ɇ!_}uD#(ڎgp <ϰy[*q?/ANcyk꣟}zE0dW:f1i462dShVM.4mmπgb6—(-U KG)L#s9rA Z ٠]zrMZ6Su|GO <ݵ6 G!HQ|D3NDǭm3*deu_4-$hXcfR+p"}ze47_g(h(S|Q 5m4Zj4T6D2C?T>u YuqGLYAT_y8ҋ?~/L&z+7.oO+оwa. JCy:-X C"mmC[!=.Ձ5nbq0X%SG݋j`$KWW*(1 r+R.𞙚rAjƉ>O3太VZOwvjSv?7$=ϭ#ZuTx"X3O͈߼k+{YТQQb^#݉_wK2#e4lq-O'BIed>#\URe7}4ct)6L-\`8S/KTU.b}&[\-+qLiG*ō`p[F/I_ Reo%q˜r m!fN`o2d;51ejt++QEkL"4B[G?u0m/xoMW`r37.)7/..\Y9z /'?&;vRN Pek o5h"Oiu\X[-:U:|39>)ZB=H@vpX]nTEyd{0']ɭ9-ϓՈH !%gȘ쓆4y`ԞJGUJUѰhTx%c摿M.\lȑi.R&8]J]Vw`¯(3;A?,"@2Rb:ye2/2Jķ䯟fm~{8ķɿyvћF2]:^*<>| \ʃą}h`h2oBQs 5Hw%&ST-Xp\ӥ4x9?tNa/-!aX,,? 8i4\WC,z&|(/+ &$5{h%Ђq Eԫ'`vvԒ}q5 @xv"EnP\1*9j6F9W.,Eюb[3[ 뭗Ii`s|N*&1Kl"JUth'Jr+Zn&!bH Lt_#xv]Dټ9^m 3ߖ% 5-䐗jlU>W 㔝p- G甧)^E 0rYN70@Rޤ3=2RDB1il& %)be S@ i<&8|`]&[@bc2m5:%|W88k1+1>sϞ_cO,ݤ.6VDv#hHYϰ!&5& eQ4KtÉb>j*뀒D߁h=[8dv8(#;5#JZc8^n"n m$g(3tI2]MD56.]`^}ĪX8f\e0Ud 7ZrjjXEM%r,~:b ;PSUAFLwυxla1 \bapyOю~.5h,{oB5EėKwqw#ݥؼ 7Sf%2#B$j Mx׏N< +i,E%\ aFiMUwz4I.\_ΐঀfa>6{ PQ esfV6Ee]..BF 55yr#;n '6%-]YёFZDcCyj\Z2[M#LswmSƦ^K"NnYL\_>:9PU#anK)dtDv rY s$yH}? 'ނ&a>'8w <^?ז,n`&?@TIL`xYBlhw L\mQti՛6'W+Uk*VY=>p$ԧR l3௳MlH_#VX]$*w N"v .BEņVבL n<ׂ iFwKzjAFCe `9 l%?/sP<,BwX_1FD^KEecdV+g gtօK^G!|+AAw3KW؝%FtX#m@ts?Pǃkq9/!{.amݗ' b!S%  }Y'_sDTz''1+ ;wG<5!|Ђ,=FtW0jIeIPh-ZrZ@qln")wV#=ALz.\K2_G0Kű]W^/(uu& 8`MԖ-1 nrJBvpB7 3ћeLQ. ""["~s7J_eJ榄$PN*&Py 힮p1 CYvp$ 0*!tgZ.`1vx3ol̙'׫vо.a{u%5TUXL`I&U|rL2K`٘h3B>z-6K0&{d;H 0'3%1{x}|z$Ex„Nj͉;)#>Ԃrۇ+Z㉉FvE ppd0M sh*䯓PyUkN)̪t8t_5#^omCRwnas>Ҳ06Fmlom`0p 13]>^nge=+?.B& hG}o"}pH ԛi_ n_iaY XJU4P3\`AGg Ȳ՚<9&w,#LG)9 >Qmʼnc &N[囅w'Wג'|$9+,^zc7;Y "4Xkm5'~t-*^m"Aݿ_]UTE9i{u6PRk1 8~O?}[g.t]ya @7S4:_pF9^RӝGAyaZ$I#yT[ 2EE!Ɉzs6F> TGH:+{[L!yB&ϛ@Ξ: U 7ٛEf*HZAe_C{iY@B .\Du+ u2 6=F+WR`@.tqL<: )& %n- &'~EC}/v:o]#貗v?H*s`{C^1`tF`FC3)Gt;R)MZ=~N`mЫyV‘*tEtZy@"z2ǝ`>]j >mXIr`?ݬ-mJ=nlAU# QK6L VB\p WMÅ%VoH/%xAa/ %?*0U'.헂{/.=N| \ٮ[_ڏo~zQc{{nn( =_fr\E[Z«Gn#G/h%#ö-,*I~؄)T/9AֻYxNrlotmGe~G?tT8G{aUצEs'6ڎʃ-rHi.pMSҁQؑ RL^=TBQt${?pB:X{7X^)DI] Ų IDAT׎Wja&5^-l*:Xx[hA @EgP%@ш$|m Ѧf RGkMI`+2BY(/#d{p⑿Y |9p"N\}2wl0ZW~o20N9C\Nl&ҙשO ,q%1ǚA=Gt13Gƀ=s@Op?atFY1 C'[$2aR{;6[,H`F"E oԓnF=upFƹXFWcN$m# "6Xh&dpD&+; tI?ė~Q;jkQn7{˩Kn6 Km`q!{=sd b)!Qt,TIbي-3Pb`梞p -ؙ8:A e#"J&鎅 66$=B]UUB^-|ǑC׉hWxҧwBib&ah9XDM2 R>UI(iHN+(4:5ZNGоy։8eg1KP`XZ>Tq8X.LI_Uxqk"nakp{:X9ۋ>v>8 nmsgO?`ݽXZ:ޮtv߁^:݃XZ>wܞz,8ۃxW>rIh0 C0<J>I2P" j-!V5,Xu+-*CK/ fGpN/ۙ,OopV 4fr'_rB` Dj' 8V#}51HtϮF̅7[Xoin"$g[0wXc++K5"([;&6#!jawvݮ}l\K+=NxGj?}n\ "ck`/hw|atͰ`O≈vv/QNs \rۂ-ZY/7r^yȶs9XhیpS9C[&C6PxIi/@C̚$Ү% !Z&#~磈 NOړ[$e>/}#oC7Ȭh"} <ɮ ~I 6o (I^)4[G=$ C.ʔ,%46[,}zn\pmRݿ x >[T͖pCR۷W52;~ϟ;'?~8 FlY Ixh<=@Us8MEԷ. xSM +=m3I` sL ^ֹ-Dh+m\_F%V8-L\ ĴP9} *`m]ޤgr)3|>٠*Q'OazY<_ Gp=:+ѥ_y( n؊6qs% ,,\X:¡<1O_ۤn&Y%<[OF2Ej>6~(eu0ʑ3=G,w? S-a/\tWvd.59.~[fr"Ef`0pX<:ф9zCzIJ5|;[`:n;5*2+Ӌv4laAA#.)Iw+P<2z Ij~ I\ ޿{S"¤"`m/4^U^zY"N)dWmW]Hh$`!Վ_;I$&QwXr\4 _|30Me1G낱☼Tp-ꢮyoBŶE ZE y˖YT4"I_qrIqy4t"&6%<1,Kr$qİN%ǚU?2$ypg/<_h 0yoovNWN76^ZV)8泪E%*NWcCe'8@ !^F1DhU,aRugA4'صh.G {L8u4+~6 I`G-")$ KtԚ(#, |s+?K"Kg9^n éh9-BKZo ۺ"!p$ԺMja3KYO- ɫ4>qvqJ8,{[d& ~Z#| K"2v$}}swLCQr^ݽOBC[[E76J_$=e3 7LOgE4ʗZ@ҊK X+w i8`~o)|.ւW -䧧Ap\iSҳlP (rΐRIޙ$kvampXБQIZqįݮ'G$"~x/?վX;4x{~V_'}&|呬Dl= AND1;bYa&ZbLkke|O~ _}OH鲨Ss ۃmz=C%S@9Pee3l.H-PAi V0`YNړiRwˠ" Dpso=>G<K䜺 ~kh@YsI+< zh4~ܫoķ| Xoio"!F޳x_4%& ׈Mp1^=-[-KkWomn?3D46 %[Qe <jѢb4TP3p!=fADgY^t4ɧ4 j2]T#瘤/>^tx緟C+$h1:/gU2Uu钾F='-%FnU.9/guED@<~+ʫD4nN߰hhu%mpfkVvaK:yHp*.ZWO8ZOSAYU)g? 0:H^vTqj餩oK)ݑ$>?ִh1 ~//aP-X މS%OYKQF.rQta6p\&KSB[T[k+ Fnqo[ sђ$A@Z^daa(s-lxry1#9N0wCR!j9 Nl!4ƚC U*`@_ htʥHӢvx{?#ۖ1toȇ@rHY@HvHkan"<ce\gA_T iR"N%[889c=ƭUZ|ll0Mk6v9e%3?i Z_h1CK mpCRulv~S )4>3J {bHYzGFA nOh^?7b{n¡nV8 1=>Q(n^' < i$;Ie1$>P!hsZ85-K@Ǣ6v_]'o\?_ `͂pJ CU_Ƀuu1@FhAūana S)5x !̉T%㗬!P~r@ݒY8Y3@]\V j Do KDBi(ys~;9kMR3g!'?R*#FwwqD õ!uBKVvo0z/ee\fX&du`smhqX̆hᅖnABh=jF*ޠ!#6?BL 44˔@(ȑy󿃢* &Z WŇO,4k.U)ŭ|3yACA&YPKv=?|?עEm1뼊Q[Y:V9 vjqN2YKg{;_ʑ"=/A3*hP6Xgo?2:ypY(F%hv= Xo-Q>bge8TIXh &@6aઍ_D7|$S #0tad)6eGThFBBnT ' 9_/`8*)(Ha1~,~IlqM!}[;sݙ~7W 7!j%J_.`h )S,#1VWO~y//|ܒE0p p[K 9u38@=G*Kw2 57_Ax*XE*y#ػsI\)dv44ϧ>c̬Yt 5"}Ãs5! +/$Z-[C8FO&no;ڋ8o im66~>bcBӈN%k'^/AhDmo ÀcLM-a#xql(]jHd8|ߏuTN`HLT #06hݿԸ.d6&_ -ZX%sKЄh-If4<#r%L'2x'{=ћp&v0xSP׉Cp; dVJn|Kx}\C<.v'pXĺDFz:VO*C4BrQ;bG 3-L2a|R"UcP" v`X[7{S~ƤQAJHɬn!:nf+-Th-(V6ߢbQQV{)֩ίAoX$Lё plZpؚ=ұ6. L[Q57b$h ڢfnhx*y=9\[!n[OS笣3,u6*0*ZZD@G?{ I՗?7e| ͵ ԍh 3w8b8Jɞzy@ LR7S̖ll"`I3A(Jo18>:'FQ1MgHg樞 $. J:ZҦ;~mX #?67 KQ_߇gwӋ^>1#!Up*~eVvWQnyK4`B_nƬl*2Ү/ ;]: !DhEo㏼ׯ3aiR pFCq~WEhMpSM^^!/Oz,z[$,Agڪco|2"Qu.  m`&/|kG˛i+H=Χ&l3/y/F!ApٿMKNS;xßssSbpX4zgG"裭;d)7Zh#SC;.U,/63trmM|G~=usP $POv:$fh;hTb)9@*;-RG[2htllCz= !3=i <#j\o82DLT%} tPįnQ8p@(US< Ce.W+⻾47T'6*zlmmr }oP#$ϥ?D1>TnU 4$-&f &ZŻ { tccm'mL~Y_-++mk^`??"V IDATW0]RB[VZHײA1\M ׺X.)" ߉n˅L@$4[mJq xJyЇ\LHrN+BsO@ al"9C2"^>05 0OE& ҟ¤^~­1ӸU48EJ_Ef};!MEkNBiАY%=vEb&'eg"X$n[4v+Yp ng#(A:M h4]@됺`Qsj ` EF7[S;Iw\Xۘ/&.ziP!WD3$:"8Fd˔aXJy$_֗,&{plnͻS.b,jUOku:+/C`3Q5(Xt> Na0EF6Ĵb9O+oplNsv(K}2T&CYSArJCLe'[vdǘd cF' <'[ B/Ud K8 lE?~-zݡPvyjuqnIT0d[֯L\ZEJ4?nXz%{Nh|pk C^o1%JLxGiQ߼ј.KߐJ^f 3&&^3Q:fv1s"/e\J^"1DVz[T8;49mf*^IB@0M ])Z2$ ^Q+ ~"9%y"f%įSUNcޛ[LAعmJI|'E:}CAFԥe:.`70 hr |!XnW84uY[T1ԵHkoȾܿzeB E7Θ.ƬI`>Rזt [N.xe2ǔ$qMe$ԌwnKM᫕sY}uPMJ,MB᧤\D3KE㔔H_ˠViiAf~Kx{g~i& ۣ8xF"v_ n"R("A@E1Ba$b XN `Il`g8=33}..εw>=߻wwZVUWu_=*; /?'C~qG4d/FK'ݎ #+ S8w37nM8@Ez!$!7)_⯇o7WS`}q_[K RxK<~)cV81c?pGia8ATD!FSjko|(|%AbPyO^I;J^8]>b6aHB*"~y: d\ 7CerGbZ_>˗ЭdŒKMėy(d28,]U־]>\uUҠ $pDܾl`Fom|~=|_ %f kKY79o!5KyCH;} Ϧ.G¯ e5{yjÈv+~B5C.d J3jWWHO4{?7ܑnNpQ {!RHؑ}@?ocCׅ_fX{bXv]Pd/IA#đ FH54q!+\ :@K ӻ(E:''p ԗE ή!msO;!3;`].dkB %l P-SB _E ~)o~]_OOÿ}3~+^~*|<|& euvr5EɨD%wzҳ f$h*tC஧^­`Nܩ5 ]4e{*x=hZg*~[" 2|ޓ ;DͷH)o߆7oބt`P!W0疗[]l=h1w1Xd~03%SUl+{I Q‚+1G0ѯ֋/emgb@":\L:@k3Y,9[?65V2;F?МI {%j iI/@.7_> Wx1;?G 7B ?_lD+] H)doOzAdG ŀj2uH]YUO-yw"oMpäjVm;lMKg4Aג [?+LRx}} o޼eoHwOq-3> D; T(9-)vbzOR2^{²,,귀ŐL/ZRM@=p>_e u_\eٿdFKxQ.edk5 _ZzJ-v1Ǫw^." Ul0EtFhO I!z08YaLD]q}A"& H:/'~dySGW`PDdMBxVIqHq%AY  p}I"Fd C4 C˅NRHbZ-fpN^)Xɱi 2@ GˆpcSeja6l* ri]+WZo "tc^ J.KˇK?О1M ~pNb0 ~)Nik "IߒO}2ソ#wކyW 8!AZJmJ#*i☐\UFW n)Wi{;@46[B#rK*O`=\8GWibCtz+E%XLCMQٿqP\_vy=˛&&7v |mV(IDCH5-c,- hfUwWB9焠wq @d;yO '*_k\,1E')9꒴t jW/ i{f vD1 xjL~HDPlzC + .-]N9|7~%/?> 0VJHŏD !U7^\|'y_to/;IK$ [Z@o?C: dic$+(ٳt>ީfo2'L Nb}Nkj)E%*'}&V̜UDw?G7KȎ!C$劲ZS4=ݾ`?@(cb,tk@Wy1ş qA2f)iAs{U /m B4^@1@(F)ǬL+x^'ބ}׷Q^Y hQZˍA$XZ WB^ /^9S8̹D1%3Awhv-22?>/ٵΒw-]l? B:RGh[tH+cHL6: ߤ>Q鲎}}g|9[5T 5u>e u 5=G[x%43%Ph!Zĝ&,m h0-%9>oH/S(>%4@ "Zu--WȆHn~1ѷGp>[V7^xRH'^>͏/e"YC ShS^:ߜm>L&5/NjKeqXh*֒Mڝ02KC[;:!I`[91% jAL1zXscߺ.}SlT2zxޖq>N^JH\xaX̐޺O7!>aݔGU_^᱂{|:Bi(?g Dt]Dj|#c C?JJt3$ O38!7?z$Jm Vg"xYDg4@]9F yQXĺ gp$&F;Gv/| {[7 O·~VxEF!zWٿ[Kkx%ϻW iNnn_QZOM?P,U chzu4eGx7IpY-t9 V# 6ۑ0ډ!SZfQa䯇љV^ )N)w(He#Mg 㠏{}8_xk>桑2~`Vl u'g ᠺGΩ.>o͠?m0@?j Noŏuƒlڶ6%,#Di=;0:D[_q^"|!^BTEȲKpdG7o ?–B73-x_<[^%o}& r`Xk]G>Ha"+D\t2b nݬ^\IC^f9#nzXzg}>zx\ |vkĐfaa&e\UOV@Jه},,!5}^VΎ }p;A= 4H`:<"u~vF`%i8Is@nZCGQ}ʅd%@ Q$3dxr._f{/tFi%c!T|P_ખu}NU7%m5k-t6ς(1%* .E8vtJ/Q"Ze#|ꗪ:iVK !p>?J|{,X\6Z'yIJIk}k/c t0_Vo^Vx]7]/dȭPӪ DuQx]ύm~@2Л' T&jB$jd.[N רq4k-H2ç?O~,J᯾ /|H"_5명g!ܼٹ^,f3[ >WeV^[Bћ l l`XvS+'e t S yϛ~%M{g5Ǯ]giRW>ȏ%7( '4Q| Q3dI!P8D:Hmwg$}!o%m=)f8鸭EJ0"E0Ï,+yNjH 1C4$0H >[#SRóBBi zUvpN,ɆP+ByU\(#6ZEc#>2oBr_aVT_bY/X"k$YK}/V_Sx}= ܀іF܊=&$ہV:*܋5ʪ^k6vRW<衃kʨinge[e)3$h$!K.!WP &'dnq.V0+j1"51u އm, _)_C0EL xFT:s!k=()+U(/B?7o ; cm * De& Y6j|nҕx܃?\IUCVXf9lVgX[A  \Ly"B*Dǵߝ NVI3zH)޾=6"e IDATE}8xȩ׼>Z~J`ճz q zm<ΐk e\' x4kd;&RpIo,6=\`%$m?{,DLє$~vQ7 ~4z"ƀia. pzgX]Җhr,Qzc|i~ 0Q >vuѷ&ۖRh Z4X6܀ōL7cPl!>5zKG+oO99FWl{nWrK-Rxf{۶jfŒT"[:latE!hȝWmV3ƽj.SN0([}!eA`n0c,Enbncry#w2I1CNơX;5"7PPFQF/KM#-PWQ͉I.iW(LQpB7<{5嗏??N$l TlIhH֙)R"ؘ~A@^ R*TFwE0A"!`QμGոcEVAS 9}=l!gY>0V Jcl HXiirwquv`NH6cKv!'c!e[;)-k~vJ 7H(†& sjfL@*x_:Zð&H_ T]"ʽsxR/Wg;%L)bEGpK埇kD -g4&e]37*eM4&{/*oR06;.<8&허ѢUůi!HQ:_5xy0|Zַ6#u>=PqH/h^Xo#zҟRgHIV݄;Bfw"몺$pt`qj0(;N9D 7/҈}j7r*;1wtz 'rV _1yD &s Һx| o~ }E!s8vJ,PEΎ`ӉXr-!F"W^n7|\oC6"o K8#Ĕ&LC!_ٕB*t ỿ{ѭw1#~X|JWoS {KVl `MPHF7Y b8cPYeٹ|cZ )oJ-)уu+WSfnS|o__Ym@?.u&Ow+6 +912B 5IaL}̟}xM0Fj4Uc~GcGw]kŪ% kyz,!v󪅶VoU=5= N|M!s6/nFs⪔@.fxBUԛ>d/n<:aqƽS&K2A#-YSwW+5XڂF~=ίrZum9Rl[B\~7~5 ?? 0=o,*O`Uf'CT &%#!X1 -a$Czʈɵa3_ K)97/8+޸YU<+u+D횈*Pԩ>E 1p6T ʶMʑ7 +@c/,o/2D>x!ՍqocwEހFRu+f:o㾠5aѿ|~7 ,~Cx'O H3W???^{Ҫ_[{&sP0xOJ.p+TWYȓxIo1tзulxKI'b&Xe7'F| ]RSQFR?&@x]s1.$> *&yl8Di-R"XFFJ6/"Fc<5@wL0 m*% ݾz{Bj3 9lCy*VА<5 a=6*ŮԿe"l3 q>>גd ,uz!N{g.ߢnṼUP:0Ɛd{"iX~RTd 7qkҒB#@\mQd`p V;Bonr1/^<+ޡIF1a %LZȰi\i)$!BU)ϋϐ)d[[bG]4҂F HI!QsRՁ(EH@`#h=Nhv2iW>i8E'dZƻ0Tv-% 2c`7jJ!_'(S!\ى޾Mx)Feڂ9/iSF:-Y,H_3tj>sGvla*Czy/@($rMY(!;؍RRR;z׭M<$IKgN(^cMi:_b KDUR:Pt KR)!L z3WA$7gt @).YW"l/*z?)ۿ5Ĩm P&U[>'FJt>)9< Ոw%kqj*Ct w` ۃ4|CL;տ;<2R}ܣHn4؎mx?yq=a~M½M䯴nPCR֨L?(R~C#_~mX>`01Ͷ@#gWzпU6f)dI[R/.p9]눋g"фqA aT8)Vh *IĢA (ey }Z"MZ3{8+3jx=z}#'hoLf&'AZ&+;W0rYa E=XP  `l` 9Ot ;Z/WH nBj~~E?Zl^phG a6h> ]"Q=*bDI( mfk"cQl}IP7%/4Ԛ 5!K|:s;Ndڞ!s!a ͋6T*>Ȉ5UOcCH^BL@0ݳ{@"'BOiۜ q l,$p>jB^Vs@R^l?9!~~o5Hx )p;ٿPvH.T< mCLa0pL=EO6bKGk6 w|< h5Cul@Y =1ŷ5CD}ٲqFƣGpUtxlDתb-łkAУK;RH|>Ӊ ޳[-wG_WT%QkYc6rLBI-XKO=dJKc&$ӳbWmjQo$5Qomg֋f?9ߺUG#0IsT^L*u}{4Qޟ750ؠiB[&sO{iAԼն0ȈlX,L*d?i7OSC I `\+VI]P)M;_:h!V-!JN?);=BZr6p4>55ҜcY t! H`ko׆rC F=RH󭟅2O6!u'F/ > Yqi 51IJfD7}H(& jUr݌8mSm#mVۗ:IL~zGOp82F'-'>i&cvZj%'6B{{Pk0@|PK(!#~W] O R:wc{8/ijZ^S&j4s*Vxٿz%.sI"G7ü.r)X;`%¢'5S%' b-@.atzvzVloP! +ڑ>* x*iGK`%#dtg&2GXUzm/kHs>pM"x? G[`'S#/D"j(j9>m RF39dL)lz@6ψ{m!(e,j# VM޺I`E<!%WõF,ۃ`mS1D¢hB䍘L΃!E#C0bSC!sg70p? %}D6[B2>+Ss!/2^5%/m__a 7 +Q]af;&f;.M?$\1n`\*rk׍`; tMهJU6"(eo\e2AqV6Hij&1& G;L5$,š roLvyJAµ{+A3FpJ_ rXk4X#EF֖ryZo9~-sa>M*Jn|. w$,S->K Ϗϲ܂C#b:w|$Q{|4|QKbP2m 0dždM- Iw%''9L 4@s]f;;YYNs0<Ljh_<;NGمkf}%?5#*9 b0 D [BO z>_o׀ $e%~oR(4t4Hp:qjVY!St-VW "."*DRRi=J0 ԋ*^B0M<,c~ yt yEd*c iq҇:9%l ^< ;PO,c8pΞDQo35sC&H`(QK/|q\Ԉ9l,el %&/!f1~md|ZBޏh޽^BHCh#30 HݚclvN;܄sޜ1) utKvpf {~Vtk:af)r1LهrU̸ 76MN;;5F/L *yr$ie8k6o=D~/.3C@{dQ[„aRCCk  -¦bMom RfO0M1$9U A xxK 0 O/HC,EU[ "v6 ,މ9\f#w)UNLKJ?.o2+|'3"WMb^h(붋@.j [%aky ?{@J2W%J*:6 |[^27&H,`;5=Ԟn.T S.;1u^a"SG\.26kyF?b#;BɊ cQ/N'~cQe#ABP~}F>HeH0;4h8/V*32`d"C~9XQ tAoO 4 :o(_mdKU8Yȓ:1Um:?"{lm~> Xxr@*I0|RiC/K&2A,xI+1 lGiӵB0"j窏uF>^򗁑/C*8l2t: ߙ/Qӥ79mף}~ .ZX-SeFRrq pxInfrju.Y 'aI}[}xAۖ@b?Cڨ%qXhx~84IykzBآ,I)#֎ U?;X^ze(~%gbyx]l;g[)$<p+mP*6"meV? %Q+De2?JoW4:Cґ*i E\9`LD_OW8mRi{~+a5K[(а&_b-ְ  l7[~;<5ϲ@0N2+6.Q]:9 ,OuJD!,dȮ~nȎQ`KT@4M ap#vmr~y /ۀqGiňsfB2qnX sg%5r(N62SS:^vm+Igg/04){"$>6dVud:d l~oYi>\vnV4i4 Jcq}3IU5PC͐uA[9%"Ɠ Dx"zn߭F5FA `2 w8=>cX2Д[Uh}fCnNxZfKrzs]̕܋AJoTo;?߅ѕA4ӳi{G$fGho P!gy1Uuc+MO-@l+sa#{!`o-xoZTr"Nep=VhWNS| 3s{"KExSF%1W`Ulms& *y,.4\Ϭzȶ*#fFk@X;Ol1hajl|%v2goPŭF-Q  1RߕpLw`ϪOWO?'Íjt-Nix 2%'uo} R6-_jy[ `gC͙9Ẋ0B v~rG;@z/i{ÏЗ9uJU=`&x8R !$G/׌~bvO0ToXȶ!-^U-v1H%:R#ZWbj4{"K2bzt>_X^v%~(/݄ 7[.[b)90Vc0:NZ.R|2zye3ڻj je"^0g"XcXfA`hn0_D̉ZH4k3MH`Yllu=r6Cy`@LA7”=ďQi3~KC_=Z@U@ɠ$."]`K' D>3 bYpҲ(HK%ْ̤s\ :ӣZFbCP$mZ7%l_!} _wbepC%\Wg\^ iŏ8NxCPx!hx ;!w9ip8.l3yf t@a`>C;I'Q$L/~ɉAF3Ԃo\؞d r9onSi- /s[^瀂E3 KbX%^ߙ3 ~b6/&Iex˪5yc@E@CJ!m2qW~,=J tZ =,`tST,_3<$0 #k wnP1 4 *'ˮ "-\ /Ե(Ҫ2b %O+^xxei5"xN n~A,~v4 ײ0@7;v,wK [1ViBrQ86a"f|HYprsQǮ耰{8b Qg3XpG<@ @y\yfaߔ)MŮj-*.~Jޕϛ <[`&_f~t"_d\pWVk׊}*݋g$^*>FI{g;/E.S 9@¶~;뤚RNmP<NDϜ"&joGOͩЄyBvsGD܈̸ 4) _ ^c1h.Gr5P!cCw}h|pjek3(T )iAV-(BUP\wE(Cɜ`X%tʺS\Up,3}JjFZ ]1ݖ!8"@)D?Fk0drݑ Bubd Pg(RXHd_(iNG&cx r & Hv :M%:@@eR(n h LEŷIH!Jm'm d74PY8@WB"l I`~&4\tT%od0G`ÿ h `o^|!UZߦ8o!ԆE?9 ƭ߄#1|Cu뫸}H:Ps˅ xT܆J$pLq:Ne4~zr!\鮭\q!)FX-j|t '\@n}TiH{r8 :m HOІ6н)6Z^8 !=TYՁ wnLg1+llhkqƺDIG7P jCRyͭtU򆔛AVlԙKt9Ru*ni &uq"3qɊ$B*⒯%] 8 *g-7=xm JMpېa>cx%#@הV )ޚDZw}U o_YZ$Y) >+R }yg^Hv|m} 8Ǭvoh^hhn- W ܕ֭!*^}# }36bgoOL.(;a(K;KZ E/̠@)tD.܊о,s`sgBu) 6ug8DF$stc apA-[9Qpȣ@g1W+ ؎ L ֧K-7v.~sSgSb(`~K}B\DZ)Ix5K XAa&0#}=6loON^蒿 1VpA Ap-/db6@M".7 ٿ=mp/n%$z84E5>' t9D["`_|)dM++0n$xI$0LH;H`k{kmX*QٚNj ͘£ :> 0m6ޞ}<8^ )c1)M:;57htScr|?'_W>YȾFċ|"$\I\&tkIE=xCN![D-ԥ`Hуdd #k\\@W4~l|eUPCRp:j4D'ƔYђpswHL;zxT^%ZݖqN M7`h"] SW &Y5e35hJ2fX/~5bVhQJ$pj =BI୘ wOFM^풄LR:Zc)OHj_I`+nW nfq-tVЉT( fo]Դ H]c!Yj)5. "U8Bhe/%6Nŏ-%,_Ĺ̛ex[$H}1QY`zj5ڌH`y-&* F(@q~74?g;k C $$0llV&U(7G! M]7F:h:-aq&7xt@@3]V~? |PyV`A '=ဍ /#:n?y"iNbrMD=Z`Oݠ> =EfSAMR [0JnߌGQ lm]iS"u0I1zX,ɾ}k؋鲗\P? 9I("oy:緀!vtTH޴}T&ѣA/8^6=; kд IDATm*(]XR<2t˚7AcG.BƠ7Tr. <N`ޢO$[?eO ]IwFBHKP ϓjBֿ V`Q`T;2Q !޾@RJ1kˁv&x'DH[}NM"!Zt>5YR@L,1q;/VWXӏŲsQKfCgXT*N`k?!8E,~ytRT.!SBX[N8PAW%QM`DpX2X5)p:XFz7 a+_y p1Kq{x )dJ B4dj#Ssz'rk5?u/e҇ ԲmIe*qch3?H[;G< [Xzzh ky@-WXyR; G/2L.=&{/{N+q6)~< 5 TJF9A+Z3 a0 ibHLQ!C@_ wg8+0'GS>#MnOߖz2\<և,e"q1tci/CB.Ѧ+ebv'SFOAeflh_ٿq{_RTH\ʽ= -C>ӷnfBL_WL@.#$S[<]:.65^kv]/([A@hEY5y J}̽3}>\%j ޞfCX`S߁ &.IA# aoiB*$fQ?":ii ~n'!~Cpp_WֆK `h9C=-b-OCa1OFroScqsP >o /` 2PFfG+cT&m }DjK@AyT9oZ3to^{j5SN3m] Ao z8" ÆLpF=2w` MkxԄbH +J-3-zd2XMI`4;T8GL[?'{g{K<cNV~.Z 9dߚ¢,N}P L 6U~[]7X&D [㵤QX}}Y;ޯOnh] !|v\꥔I"rJb.R L@A֫U"1*Y>2졏G;a{"fGz2vl tb4#*!'li(ҧv&ceqWe$.< [=I&)8O$J?k.5 ƂG׫.&xe.g'GE!L=IKeԭKmBNT=9"'(O'=l4Eb6xb KV4ͅ-=pMx~XL*`rAHhOX)@IAd*iD 6&2;W>40Pm%ܽ'm[dYk"jC}^S`Gh@asY}-f$0 A{gڦOjn4t ml4ĨaXFf$KH .٘i\;vk݈ ^#stIM 1kCR,~ۻk7kM.u?|բ=çB]W A WVᴘd)[3Ȏ jv/YՈƒ3_#k~a1Bt0gya,/m :k7Zoݣ\(T*BWwPɯt? cvSD˷$djbَ}hXEJ3F`XFCH`;-{!LEs47K!c0 WM^ĒhT&% 3}w[H@Y-7(Գ  x:u !XӮ6c'}wO:]i#ע1=.N0պoGɤh[) Ro_^/A _P2ñB/vMXp44sL@rח^ c~<öl~k>xG/8brEYmVJo(H`I <=ul`/Ngd 8vcE"SQ g'vQVD2/X~^Ln>CN4mYo>_[rkgtAO츑8g^̑FtmwB9UA_F\Y n řځT6L4 O2'*˺r0#zFz$]88PY]oM]M|.EcX./AfHp=2ZWDavA/"x#J2جВ&h*%Pd|fvr]b<4aѦ κ]Qz8?{n]jmCrc$XL)^?oHߧ!~f.?Xw_ }D3-$a/H5im R8ݬ ,h?c_|6׵hq&fGz2@1Ͻlm/ƒE/laM)a[6de ୅Y%_B Zjy~JxRBNeu{`C ;DJ(M\+iIb@êaEjyw>v ؎zhdad,{`Ӑ! RA"k4! r:UJ/tVőuʱ~ (xyL#ݎ]GPcoW+ +m90p jh }dڭvL!/PgpR!{GM+J|bHbYZJA+Jh+#xmqT 6èfUM&ZۑGP)]Ī/ctQ[ L:2\_c0 )m2qa - OTOC z`kV_ {#C0%W74['PYh@[`})EJ#Re\(p@@_iٰ s(z5 }EE"mKWYZq <+)6\F%`N`=(/,x6Y,. &vdBjY gghm A ;ى8$p9{PFwLwNq`3^ vwMJd98B81%ӎlgȕe'L+lb>Q0b}Y-_ ,_2ߤhш߳rZh6GmMFoSF~#ZDR C2|"G { ,]7WV2W;rbB[AX^=?r>{?C\֒Y|Nb)5DXMr ^HGA&DU TRK0e/(gh z8fzYMs\\}&c}r8e$p`RBVW %qiZB A|@VOKAhD뿰11mI(E8fGs hv[/6εR A B́&~mx7+_ F%b_jtS58!0q}g 3s"1tFlej%8=Hζ܉jqR%hk (dM%ӘB 4v0LJDp-:(&! VCA$0N]XiB.̓)@c?k ۑ}x R20a [" Q8kE_gp>Rz<9 GY 8'~䯽-[q^/7|K{uIB}~_ 8Wҗ!hv'aq޸s0`ucNЉ`Sq .SyXN(^"MH W'7)apD5?fGHX+G @ If"T@0L 5` { Z,>L:Lay1nhW [j-(h )E0Jebv'P$8&6\:$`dյ֔@iqDچV b4~jxҦ$p_rL$q$pO(݀k;.!L=pKT6$7 i!?D CI`!ar\UB(᪳$ u >(+4"Gz$ml& ~oZ^_t880= 1 !U!6tpdU8p)Ȫ'-b.O ]"' 4 n@vjUqT@׉6 #s%ްam-AO`Iz,#G I@7#ƍn/cMzaB;UԆJ"]6j IiKLtE][z$DιX[?+n-HKYBJ ᫃UDo,bBIR0H`dD$ /TZ|G{PO5 ÇVeT8j^'jjF( %k&g{#Jzh3鴉-8 $ppLvIvV%Sb^AQ>$mhTdPY&"$6ihp-NJ=5UK$&:ƶ HyNowH)'aDнV;"{pGސ6,9U%Ff`r;i AgmH$Wo[&{1A>=;>>2Kx; 6ttlP`NF#n fG( <$ ̀: P-!kp{*}:N!j=2kE  :@#ThW(V+{FLA&m Jٚ?wGַc@8`0^4Mڄ-#CFoh+$0FƢ#VHX K IDAT+q`= "K5"yzՓrr@$)8[$XkhK*m ! YٺQt״J>>5wIHcKh8{\c~D$0iP<`F5IJ"_A *IH&!zܒe"x."qO4h7{Wx79_ko GiCiqJs%v3llZVAwќe]U HBuխrSX-Hd 2Y_e(译Yh 5[j3/.mP^.v+0\.L_>d2*eGn`hŬ`ֿ UYrMүP,1Vn88?K` <:aCeXZ(t$0H$aŽkn7 h:<D"؝om  gz#~=L<qce[30Q@Q[ iR| C+J.ȓl_RېHZ\*Jf,G)@i"z65ۃLJbV.$ dQŘ2DuhDg@{Uxl#)t(q/.pUs Uaq IvC :TCj` "RyAKrWƎV R.W ӑ$ LYmWh`0;sv9Mm,oApɶyδ#~o\?-~X 7!h<忀PpUƭ/V#a —jET*P0,K6"ɤ+NFy'y l1P>9XK+ X偪&3VCH3`u.;! Yi?znOAWesWQnO=dgg,GDPXbD+i+&! F9H`PxA$pf3v_88 gtcP`|,۳ґ{-Ho/<<:zRyR> Xk)\Í7;8 ,&(؊;Ol[@$5I*JoQEocw (Ц`X»s1;+;p[@Ñuo @nNj>,`w~ܤn Ծ}X{rpz$p>E aqc::`=I[R kgTXEj Ŭɕ'`ޅov){͌&) ܭkƅ #ܡzSxE"p;~&-߃>BFRAamH2eڂee\!ӧ0.oGI(_"b*RQc˭}S!.=Hh#kǶﷅ)?Ic&.l=t \S*W]U}[B+ÊoB|![ I?SH`:yEYmXQ )2ͣm$0ඒGf~tI?|&JdW<ؤ?҆1Y "޻?Bb1[wܬ"2'o?/Rz/\y&!(qŒ^]=dH[QحBٿT( `3n2ܟ ꠑTY2Y4N@@gM킔& %>Wg7D6-!KbV0\TS S,$Z N4xA%$0Wa&גZGzᆍ=Ȗxtw;؀L"qdqog_p7 9)UN`5c%iUPDGek0Wȵ ?Ylq uak}hΧ V_n]/e Y9,DWk$0f$0W~B"7eG~Tjɒ2P Pm _ThdTt{Z#CjȸwLDxKHx,DH_oK;~E|`U#G/N\)^ o0!9NIuGp x,,@5Ib&dIn &x[ÀJs! w˔^C? ՚]HNk k.Bc~F 1Mt dHaDO&؄!u [|(ȍaa`?&6JԊ@CHסUGCɅȏ: Dp{!oq=}E¹b.b˸ߎJK/9Fݒ !8"6דRM )R1,Jb_lonSI2.d;nc P4y8:}li6QmƑAMgm"MS5llj=Ubw$0_2$6 W)~aq3wnf3 1'q%WI^Ĉ8YΆFDO$0S"Or! }\I[AT(syX n<뭟窟 Lڐ"ArѧkK%6/:$-ȓr0K&I]`՘ { /).N i4S'ĉ1pHΏ X :QHn/ŐIyKU]3 &"ukcNME [ "R~y(9 2d>L&XFkIq3 i؛0"~A ېǮ&2ޢ|f$`冭Rx`xܝ , Eg5.&$tiulY0y$R9[v&BJ~[)wc>kThM" 0d!p&KKy݀=~w(]W';X-{ N'ߋJ_Ɉp.Lv* d#+ʻ!r &\pJ#!F\zd`Sm/M\ApJ*ON;6GS$ } 6@ ۼP {B`eV= =r~Xqb] FL[gELA"tȑyzo#={uFn3.#9εREb6 ;A`ΘR1d1) N)ni~5d%a7V7+A/B𷖧_$%jܡ#9ˁ4_1W~͆r9BE(M~~?Qႍ:\G(okת2uTZ@jo\5?= ios6 bl^4(nʂ# iy Sb_2Zoթ\61>uyJ1>tBpfoJ2]Hwam= 7YP2@0}io}!rtXtߤ Cঊ%W%_!LdoR{;gK/)ao(]{Rjj4s/ӡB踰 [_HP?g_s@4uucHd ()߉fAze"1,$hߥY#7&(79n>hz6(Z4Nwo POAC pߠܬ-cҿåa"@@٩mab),́[Cu`8l#L Իc @#><%s7[. tIQȃUS;;NvH9&WPM5`bgyzי'gKO"4t$R:3+|ZGNA7MSit#ӗ>ڏ67)ޭ~ ;U?5GBdUn_G< ּŷ|Ff l`P10 x&mvc, fMM~4^&+ p6Mt*GZ# `vWu0 [^\l<8 (ڽOWŹx>~=?=c W g&9YAZ]7a{-B*Jbl֬' G/p[(9–HY6ZqOEׇFcϑi?=-X0=˿pC~sOM8+LoeBmQ͋%bb`πi`>bd4n,@bO\]m>t,қ< ඐ5 ݰ.o0 ۅ0d/5f\J(0y(t)S9K#97" 8lQNN_ݶ]6gϟW l4~ b秠KӅM~J>!š3 /FmhX ˯YiBh)`V^䖣~r5Y'ə@Ѭ %u O NՇ23' Ct'Mq+N"OvRYOI Y J1MuvupWvn7t~\QtFKIgt%6e+x:|=) ~-(r)51U%I@(2%7-Ӷ Rgl0騩<ۂ.F/Cgɴ7SOlP[~k| {Rꇵ~ ~w+'k-۫Rm}SQWSQ.Ô&G'9)*=[h,,g]Nv귗Vу!5&ar +6FTeh4uvɔւ6dhtRYt]ZYڡ^QP7U;4}#Bj&q-=1j#bUx2&u ` ֚99O.(9?++W>Xh;O U6|LRv?ꠔ|7;$7u?/$9nhaX8-!ŀfdWz}@qnk`|.=1NmmeYŜ8:Hv]\fguH8 WZ wT<. j/RԤMr {dlεAj(+X]tb^_rwl`,C JC{} +Xu,ږ;}u';Ϝ[(s3$k0 RG* ZF4wX-]Е`x33L8D+%c'vq bLGp}gP7C`:یBv`?8'$F$Dv&:=~N_3Dɵ0z.jtJĉ G&3|E6[o,J]$\: 1^Sk|yy s=ߒr`$k@*yOasF9z ` È`+skgCW6k}l^Vytݑ}n4y̤}y5ErII gU)VytB,c 15vo30v a[}gow,PH+t 5Q|PlL+}PS#_4l1 yl6h[= x'W}YfLDc}.5?`HKF"!p/ȑ nmA6m<y'Z˩UuvCnIKo*".}"}{lS~;XFxᯨ`s cٛ&HJѨRvE$?*YۼDrG@(jj2(L`: 8 |u> bW6G)hJ-*lM5ĔRzN)X֧d͆r h*wF<(ZgLGzӠBo۵ 5{{Ҿ=])##kE4)I ̄!0fm]s90`gv~@pn,rݯEEwoSr j.+_l_"zƬ!M}HB'/t IDAT[UK-ֳTer~jp3ufM?YbݫVաe]8 M-EޘY(/rJԕcU|n yOA[nX1KUH*;~Im<6pzX,cnC,5LeI%kAoKZo,Mk)xKK=B૜jdP=3fɆMVݦ5B@Ay5#:^- >;̋'eT=`rsVm>V_k h|?+۪W[UOUξȇ*'s^s/~h੪69]KZC *Fc?‘lo-`\avP5<(9WMm@X?}4LE[0 |h謑-pAwsbz}C4:̌S).3ٮގVAS'b-w Mk B(b7,(0{O?=ZGۂJs R&{[;i-n< 1;0Iyh 8bLCMkeF>NgʕeKU*8Hg{%q16f5z^(9ajP]E$Hb!f  ܋T y xFL+?3I-5=$K"L)>!},ȳ[ڬ9e Aff,,תw/P} mCt66S gW*τ͵":ju2aΤ7 nzur_5j1\>Ŵst te L-4ߍ6`%^r7sZcV?7%|l+ 0U&}$i]7!(.Cg*P{%P/ٝb>ϥi" ri[|AL%s h􋶿~d^k<b@!wp7SZgw-`QJ4"uJJz}!<,:o-+B` RiSfi-~C꠻D6E#]/ϓNΧ-N}afm3v9'=RCOĮx xBH_?SAp\ ӌ*gHP-[ nT /ߔ Pp+@eY!_ŧٓ=b/YPA>ӗ毆?esuKd1$b,Rzs2 |5| :rѝ#rAӘ䨛I4=t?I x0z!Kv͓D0`7_@ T<-:sd>[jEE!=+蚿6q)Nz ٗf<,pJkC`Lmm2n"_:`WV`Q p' 6 GC`w!p gBC OT Lkr?c-["D H1xL@_ ~pF '/y4ƧuVVSu^~$Od!.17 c -]c&ruAG˿޶c4?ڜ7SN!sս@OVl2fNCܯ~:Y%vE>@!0phԧW~ \:n>Gvvo0 d2<,urc );;?#;WOI)ٹ" V̥VVLSM-2DlVO k¥K[KvkKj0(uj;ES+@V K Y{O s5gVwVyZ Ă)iNכ:Gض_$N_zҁ #3qdVneN -oop+cYθ`Oȵd`ovǬF xxz|1bM"+ d,n@] /t6*h^RR(<} z3!pw>z&3sHzQ)>O0Ind]s&϶90z-F_` x~1`+ɶUH+_ k}{R̓ t,PRY:e{'t^ `v9\%x0d=%mhؼ:"X]dȸ熎AY<)h|]P\RJ@r=7i졶l^&]S 1Hi.nK~.'C2!NdF܄F VY8;B xC`&s#!pOrg`# O=YZ}i=%^JT{T'oJT;{}"Mɰ5a :!K.sf-t|ҝ deyKΓM6)[XXem k޻zzޗTMFMs0 'e[-#0k&,c9!7 -i)h%Y?/t:y WCL6,uJPA{-iI/a͟){:;;^=[k UK3w;&Bc*O6{kKY{w}n'̃NWWsO4a[jb 56W:|;ejoRDuJ]A)Klm*oi6C]zYz$"[Gi((3I՜^y+[`%5,(95Dkj1d1.EFkrECl6]Fح|[R'w}*t!D8U㒒 \2(_L!~8 ?,KjLeCcLsXW&`x i`hl=IA54sZ9V~6X1-Ɗ5P,241N'1: XߨҶ $ ?G| tq8#^Vm㮌P}`0Bv Jn8/.ak=;($nG#qk nM޵G\Vىihr \qהjj dKJxmjc `K25ȂK=#Rs{ڻ=*X_thdv[ﳥ_ f,޿GJ/=jY4ϋ*uprJB2,J:^htGqlYRadVHYo#"+uS"()<‚ "Spx>3 M(mcZ5z\ϖ~\[,s AVvs'\ hxP[ɆhoJ0^'x|_7eJƪe`VZט n|kKG:ɏZʶJl|iԖ;=C׈‘%_}~?wQ, o%TaTQ>؃5Ou|G뉔Bkc$ ~ R6w-oƾ.5z(;K-jκ>Gq92QL~L8ؖuс/3pke. 7>tD )+|5NVdZ 0 3kC 0` l~4B@ł4ˍ o!`rC`PkA0nnE)l4;  >ֈ6y b>n段GOǎٺniM@r@ʄ`0bk$B w;Cߔ~2$gb2*UW&W{ c8@XIPZ(r*s `Eܛ0,Yo#7 4dD z3%"vR@?Ӳ1~=`9I9ܥO@IËoܗ{xb1fAKh2D_iU ^+P-+OzU'/a\tY\F}nI._ŗh\ǿEz wiWREx3<-]$Z,u3r[gA~^T oŸVc,u_I?Lט)hm Qz뗄aQ:%_9uKʨ{1gYJ3yp23mj<^bSGu2:ZT YMjJ,i(P|Jv1 Jk1%8%|xz@k!0&XU|%!fF[l6p;pBNxk,Rg{!< >P+XRs)hL86/vcqȩp\7.}G*Vwo6}(PD)ݠ5L>ǚGOX QTƌa0\!4l=ZhYaNbvYo<'AɊg+Wⶂ6y#{CxtB*{HAp@CRp[1$i1r+7͚x!Y0,Rn9۲%}][ oupD?vjj׫8S~q}JJRJ*n]я3|ea2š lʞj_RwqlbI=*+(fY QJoc[]Yf= Z*enSFEm:QTT} >u:|*-Y5(3K!z# C :wanλPí*m=t\׼oE{G:4YW_rp^z=Le|v3 HAUD|P69wIlB }-߷8"Sjo6ʷ[!Rnd[oS14&R9d]87ZWpp窹2[)R-7wN&vռnu3::\fP˦Fm7TRv1z0L/h;`p X{=`Wx?2!aGw2.Fxzc~l](ԧ_z}&Sz3-sK ̜ju萠/M*z}dZ}QG)o 06߬ =wǘ9N21*fNaꗉ0*Bb rA#r[3d[{|2#|;:_[錆E\o9E'T~߲)_@OcsW dPM9A9z\% c/K/Frщ vm t*RĖ-OڀoiaMqFTyr͇3*2 [T{O>ߏ 4gɫIJZr\t)[dǗ9o^=jV k$Sl,t, hax.޺&OHVX|V';.+rJycV'# k=`FtpBIԧ8ߧ? Fݗh٥ rR|7PdG)U FQk酚 IDAT^ RI,ragn&usYP9P EZM){=`fI"xφ0< c B~˖T|<;RgH~.H[΁ߘ^.|N~4'fֹ߄iZI9g[CsZN{:Ql ALߺF4 ` j :iy0a;-B3/6w`ч 2e 8k3ziA1k3WҚ xA"Gs.NBȿV[xWĴaxJ(( zI:4 шA25 :(1wS\n{wgB?0%<<Ѭ]H<-6+D>6li#} M'MJ^y3f}I57Ǽ^=aЎ1e:.=' _lgO'YT#8>kSGl(kds5]Q'^=O?{fÀp fٙ O@]F _Yw%avF;t@(^dCm"#w|Y'b::rDz'P뉓(^h!K*-%tj ~*Ѵ,_r͋UT̛(ql\M9 CY6x,%ǿ 5F:`{ٍ7V}uה_ + 1TaAb:KN|~ ._5Ŝ/xnY_|b4DsꐑWTJyo~sov2opԣ;Y}oɾQrI/MJM"}9&B -m{=햪/ۥZGf2h*Ez~.9Yw[fr~t;k?Q@'OA_,u{s‡~^NeI69UFRs'k7D?l,EEe_єŎCoh-ZgY=T dM=eLnlrm:;Gc%G2R+~dvF-mKtDKuk[QeF(Į|ƽ%"sa$"+3h~Њx QjNo Ɲs+r_IC"2QD8!z`˚͛0압bB3ERFmZ]5,lv-[{yh}}ځ. qSI`9&k~/z?+0KqKJ~H8l=^@ O.7%t)e*+TSLy"y?02cKY?\kRcE%2Fb:Lm,q2 QZkG(!_vL믥UMV8 ɓ B_)8C`"X]Ӻ ?.AxQ^wʏ|{nţf% Pli!.bQSсQ, 6& pJө: Q0{j?lt5K@` Vy8q;Lܦ?*m{MZc>~h0ZlZ XZ ֒M.{8Hs,wmEl4sB9V@Q6ft"- u f l}0 &=D(5AVXwE˜,}S7/ъ+_y*aDVu(ׄW/~uȁ4ڢserpc7t5ΗQaV+@y_o 0 Ys!Kf(  .Q͂Cd)@:Tk WE'<Ŀ (#J͟PkA`dZ K^/*s@!^yq:wo64\Z2{MoJ+߁=E_G+ߋql;~'l@ ]^ 3{^j^uswѳWnpJs 0`[/A8짠`*晖4--=qe]ۍIB P ̑R,laVnkC-#ټm`*=υMnwULIx\#>kdES>G{7YobjO xag o]#Oj]s$'o}S7jgP/c#o+-Y#| ~S~yV+ӊk{{j[ mVgM y n$7)k?VVR E]]F%-26 _(ʞ@`$v۾8RMa䣞 eQlu-3ɐEnS:Z K 0Y=.o%yeC?GSR9z_6nАa0͎^{k7d u^*W4a~$h2;R6Co~]7%f/az^Z~w̓FemV3Ҫ?t[X܀8 )7 Q@gzf A7&L "o@`7 } p 6HhF3־v%MG_zĎ ~/7Ϻu~Җ-+n|߲o) Rok?sC{Ϥ%(Mg -j}jD_`_̀~˙5;^-9hjx] p*nč]>XBV݁8&#OtcT p|, /U3YBQ1]Ӯvp'ՀRTk0kp9G^R"=jP/)n%ZGj}o!և>4.MQ*^ם`ٲAtx2z(}`ϰΑ2-3 /71ωnkr,Y!_K)[@͹& ٓ^*QV1=8ވ ZluL l$ttSlx2~Le>ۄG˿zZ}̇5òc۸G hFAkڒUZ8"\5RpUhfڑͺq ZK`7>:&qkAQ|E`q{.l fCĽlh7:3 2#Q :n(eM_gG|ۿ.ZSd>$MX)9StyA b}c=;zb#pTq <RVGF" 淪rw|G'].j sG_Ī=O;TsJ%̞aK3&V]3^HmIm<"HTt<υ~X my82 k"Y(qEVo2Vrt]MsfM*:5I !0دt )ticygJm&FѸĚ5h/9yDk*8C!o x5(3Kdrȩ_ESJv}3 JeCx~+]aYw2sGy`]sr *֜$șn{m Io|(gLLkp@aͺRUma;$ICC0..q Q8io #`KVUb,GFҐ[+E{|ӧDjSemG іh}פj||7qs}Xx{{"Fz9M0k͓, Ji!_@J4Ъ"]lS<ߧis,o8p{τ*_yDZN,/^s o9陸;)5?]^'Ta1!{dIzOYz0͂~>C 708,<0hF vX-{>҄n˃d\q vhW i[ЩͲcDty`sI?.*"w#-4C2i2j h[G.WgG(Vl M5BsXX`5LϺ,?m" ,u,.W=mݩwYsbpic HIo1MgGĜ&ǖ-AќKZEeA{-_}w=Vx%%F@@1#ǀq, {4{ccʿXX+A I ˱X@h̗.9F,R7\e@Q5ݓ_Ev:)( E 0v2Vpy 9zkjDg7eI쮸. Xw> {DB5/#Lh,زt|?^41^B_ RUfRo`wy x4 3M5o~Tk6-? S ƨ`oN49!SI 0o"c{G ;RXqm6_#7R` n6OV8} >;lG[;ypbx7@`=*/Ag tY Oif΀ :}\n[~O˙jtH𫚿#/!o_z{oWn[ߢx L ܹL=)EC` 5P<!b5#éG@`:,w_]M23 p~ ~ڜ7Bw[`}LR  IDATcEӰjo?je 0=+~82K`6{煌;_zOb. `4:d&k2 ht=}/j3K!H;`gϺ[U%ޯov7>S*ly-W j4}<<6![k M> w4͞l4~;<[2KE[@ߔU3Sժ T7&E5=aFp g ~룺t/RDHj%*jXpGo0#cA`c!c$l$di XP 707byz])nzCPv6/JcL $o/?4[Uw'\l{#B H`vw-[F ;-[Aߔi0g\=w<ڌial"VȄ_y> .% &A`Ֆ_ ᆄ ,z4'?b @%N.u^{EyZ}qBS+㨄z?~_ 6b.Foup((XRzj%R{O/Q<{F'd` 0jOV ‚MP?$l,i4> ,km,Ԙ *+)H欉h*H:;@r(b NČɆmB']G>a65ZT7j,uhd&\{''c0r{#E/f= Z J$gݼV5 =]Q҆Ft+G C`y&%X!8ת@N,FI[`Q, WNű˦e8΄5͏X')imH-ȵ!z/0Hn8[3UK,7Bݭ5k ϞYRi\tPsw,ܟ[VIY"FBߦ"MX㠝SB{Whiw_W1Fs;M 5 LY/X8'HKzMl$LjbTX"n!p;X_|C`^ 0J I`/U@V(v԰N V|&7Lox-)b]]7A)ngT$lV_};P܈a9d>N)f1“nmrwWBIP@C`XFEdߔ!VWI,-voQ[{c,-/To[Mf8Hք8@e a ɣp|)_ؘf@LOBˑl`T H9]H[RFOZW Jc,+XP.]ea2$e 0q8̯/gBU0@p!.0pqm&ظ|]n|S9BPj e+{FGg=  jH!WnH gH\66q>Y-ַM6RAlL*7@`6Ll8 pnGfL x3 8K'GJ ջ"֮*Qc=_Ee·//6%}cCi9̋9WQcufqrvMhO"[cXQֺ@iŭeacOo9uR (~fQozOTvD ׵B!/c8'`Vs26+&ԆA\X 08YkBW@8qA0{`8[XWq|NkPK{CMNn(L4)wq @t\x7j 8%Wml aQ `0P.Ėax#"Pe} u! ~8EnHQ ͉(0: m:-sT\֟0cTX >RJw :_]2d);r(1&?5Vzp=fYjh|ord!p)X,EXo]u($1@pG&/`Q Y2Sm,Q!n{6ҷof_'|R4gkh{ Z)V0ۿԪok ?b|Zx\AԆ߁/}!0 _u*B0uQ * JǛĻі2|DP^ObZL*b6͞u0dQ3Hz>gC!0 xG>tO[08}w|n%. vc 5*Un܆nR z'](~S/rL΂zo o[k%OP;A-lpK U["M33l.xn  ukNxxVtB)JYmܖLn lnw[ p{Ph|ϘAUJip#]gAWw+A`poEei̘aApY"9toeb{=2{ۏ!_ }z~ _xպB+m٩7ZWuOsϷ:J7;B 62 NiCX8] 8 H#& E\XC`ZA0nAG("a [˄-Ni Y[_uv.gB'{Wyxa)`9 YӍ#U-nYe8wI3i@ ~7np;߷Ɔ``Se\$NiC cTX [eCц pq5qU1by!pJ ֪wZ>U-TLcU4:<&⸥b 4M|Cv Ix/1Y :^\M@0hx,X_/Z"5*-/V?熹ve!b(D g0mw_ՠ-f 3PQ)=U>娕 ~F_XWm55χ)-S+ M(j:)W!" O>x˳F#j@0PWEMsKZZ 'Qk&<_E( c!1[l|((H/! mۤáP'.2m@oN c*Y~T(!os#+`I2g9<зh.7S' UFe{7iI5  F*|0ex6hW^20wn *)jV'OA3?u~<.s[G~(fG^@ *~Rsތ~?XI=zm [U\ pDt|ړ:m`j [_ Ge`Qք"F0pJ;}-7 G4ǤcpEݕo (Bb}=FrH _ˆm놿&6 J)m߃=`FcC`:nALP+ KclI VRrK,;n~& qmqA[GK2 ;w۳1QmRזgX`t84 5 ; fpJ_.B4d:\0f)m@~+tQפ#Lp@Eߐ~y/"%2<.cp'8 !=A !5M g bDjLYc88/  Na3f{ [j9?uPgfUEA0\? VAs E _BDdBl @` C -_8 xE\mK6n␱0ӌ}kIrt?\^DY(i[9 vW0{w8YV5os@ghstOIfhW<!WbK>jU>4B`w%D]7؀i3@pƿxĽ+l7T}]?':m :Xo5yLI&Rnv,<_8^"A=#~/#ǥ~Zp~mz^Shr1aH.q_ӆ@6ŭ?aM!W6 !5 S Om126Pgn,b˘Uq5k=]$,A/A(";`|k҂ r+`}ַu*ЗSm ~ - Y[pߋəW= ΔoJ8 bcVrW^TA Gx_lm7F4k?~ Ψ. X\@'ݱ/ `f^Kϐ YS6ZwS0kuY"ʈ YwT6WwF;W෮=~A-y(XKзEv w_%6MNiClls.z*y+GOBZ pJAQV >p]p/Ta Bam-M#ĭKV0,WGL'`nKpA.@|hL=M0>~Ǹtl|Ŏ@US ` hb X>~BpB_l\}DKZw֒NcVV* <zɆ> OYy @ %GC!n9j 6fK&2kM'`P=}iޗlV!X9)?xL@/ݡ/q8:[&@ 8Zk~@{ ^?+}Ku+o` Se\)mˆ6X fqCŸo6cA Pr5bσ@p?UZu?c l\O^U ӭs$>5])EMDːwG{>!'j'G$vo."=8#3{1| ff7Y3@!dZ?8z}6B`b`_X_g%_ WwXM&N|ǁR,s486 G\ , c g:Vt7X}kZ#sbYSb0k_~NcM M 7%z1l64u4=&~4Q8 >0fI"pJB4@9)~@z}8Agn6K@>1Կ 62 {{nqB@#tqQ x|E U"Pbew|'|tSα`, fR`g`xܯS crq%㋨JJ]cƝrؚ~>1[ aL/ ޜV++mo 4!WX8x_ xOBg<SO xV 1UV.-p aΌwBirI{ Vo`ҪR GDB%J4!p_^LyQKދ]C󃽉ܯt{uFQ8/6@D0~ہߔލ`)Eߔqs_IGC`_-^zjY2Zmm ~qU4ͣ:ln^xuz+x3 Vۮގu琶O!^_xM>*a&r T,,1e4cM~g25U^ ֳsNL6Io{Å@σ? ~IZ(}@)q2VV/K7'f↿sbƘQ4!p.w6F @W1ŐAAp fH\]`õ6Wſ u }6-_"# 6RUe*0KxJ I6iNIᠹ`DSwl@jNI=ǀ`L(x}ApT1R>,c}u1rF7X&t8{2~a; ML)=~H]l з~+ȹx7sOQ702Ꮙ4!Wf`̷ lC`\n, y(.4A`DaHeg` YYGu m6YDTDްkkٙ*k:G$Fx 4`uU1@v]qLk_n≐DWeruOTB*c,R{e]#oVz6Eˊj_hi !ʴ.hC=dwl{=L/Mi0NiCltm xOB< a x 2@`aS 0K>6nbJ [+&L.T'57^mE%C'!*8GwiѡK=;g_ 47w[JQ (҆yΰ!A=Pf"M}++A`㷞e~V&UI`l/2(!Ha 4gQח4kHpIW`KŜ-}ѡQ4:LN.dNw=lr9i? ^  ,M7:[or MuL$E[<>i} 0AѸ9n }Gz¶v1ok% )_sv]6vÆoz MiNiC\օ:H X=tPWh0`|Nd@p ZmO];`|i̜2}5+ koLZVKh%ЖL7"KAfom^Y)h2y9hm8fݫJZzX[dз 'D3J"xoj5[au{Q: Eſ~:val{=jnʆ2h74҆aw! }&BQ8a@'y?qΰ! XD)ϫEKwYh .\ os<>v O΀Ź-}):eTU&CX@ٛj.86 ^2;.3,n7WB7Idah]#Zk@,ٲ:EED}}I=x{ e*jp·s!;BymYtWM@ߙ/!s$X|+*X?v _%%H!bǖ*?M?š }] /[ERӔB9XkpI?9&w20iP|P^G@sMZk!%S9Wo4e2>a0Z\cRFT/UFud!͠fZS(eT's<= \F_6hX}&`Oe>=<4T e`s%^J\? K)XnIڜ)VB௏>, I;t X!8CE*asv9#S/̂] lxT is=]c{(%MnV(+,.uKųzY,c,sf,/e\atg9>w! ෲ#2QW>1dđW=a!pZ']Tp)  {sf$G$t7Bk !p)Apם9GYӦFgfv<'B67Gg8>t':`s`Ug.sa动 9)ߤVpzl$>o5 f*Ƣ`3#y-.rDd4דo~%8og5L3o)R_8!_e_Bj+|N%@}^I֟~@k&x 0]jK;O`g†ǧQXz</Tn';Fwu4k*Z%a".( A !rm?0bGW?}-_"^v ~/{Ԗys;vwK so)R_5cWQ?v# M@u\kJA˧{]߃;SV36~InlHBΐq+*zmo&j2b}dz.XLqr?Oڑ̥V5 +ki?X)en`켖a#=^)qQ̭2hK3ߍ6"wGBfwo_Dl~w/+ƪߏ1wY*O( 'M KIFB`3$  Ʋ IDAT. 0'i{>'S|mtN-| -G}2cg``h=P?贺 xdPi+µUB@`qyxRvFkUC Z&奘tY npMcްA:@k힨~ᡯxweo،$QWgsK~KF(0z q)O T<:˒kK}p|Co[Hx܅ڭ= 7_(K+`6Ϗ`O*%n(G-BƝŅA𷎃MPMml!tD]?ڑ^)Osg;yA]e ndJMsjNN[w˧ku0LC!Z(doĀB_շ1bzywDߣb3{ 4] |X :7o)R_5+/bzЯsSQȶ}t XB&w @pSZoY2' ȭ&$kT@ߣ̍Ք  13c _:C WZdITd) M8s[ɐxNuh铛W~{ۏ@/^Az΁w$=c  Ý}K)t|vzEL5QNjI ~wq7ǘ:2'Mk߭eYַwo) R_%@LJvB?5Os\Kw ,t)}m׹ 3K`֚n A.`GjMe›s6TJŽP $΅طZ=B fLs[S `U+r7-ZgzGewF osOP7 ,4ZLm-G1#q9>4o&f. i yԛ/`p YLE{#4ԅ9=U=NJl/p}8l<< 5f@0}d& ;o>fG@ylzQU}OTZœrT9A_F;6i ǁ\#}oL֛ї^``F yXE×$*o@Śly\JBZ řY +X3,&}4P۠ 6ԢHʠrs]M/ZAתO:fV{onPcA5$az* [vGdiǀFGDf™4%UDYK#C=v|2_Lb xo)w+h EgZ~9Pn&*+g:uup\U Oy߄o M/l[R׊1N oF]ඟf!0t_}a+Mw$70l&=|zCkؑ r{!1W]$Hs\wA5H`lLCm[I8Lu5@fY6hy E}Q R :~Y1 |m'JJifVB`q !p׵}HYhG`q Xl6V(_cap͚\}ܜ/^Azt:0l{v6 krO*1B @9.r$jVi/WkB9q4 K[kr4Zȉ@'lO<te[hՎ#؞,_[Z߈On鿵c|jQp'YzB% ʴhmKI\+!8vXUNs+b®f@6k aҀ`]?]c@p3,Y@2[$ >={GAK m׵ pCܯUG 1N)V,qZc3rw`` =PDz-'"jC3> zx.m` A_.j8K!9cjT Q/T迺yWvKP z#pyv}K'5ۚyTv08 C^Lҷ1f|]k+}~9 EQoU󶵡*m3?;6(+/qb=wDo*+R_'Ԕw,; $X9R'n22I| i"vU 3٥7 mrG`~'n`a=`9?! "Xdhx73Y{`,|~BbLRmvGlp"~c~Z ִIMoBRȆ M跘xGrt8r_56-WNux$D  ,!pA+SY Cz#!MlLjn/Z*dד,~`ulp$=`ʢ#eg48vJ*@ t><8M +ggo;sLvcG"k[.|Jh]mQHh ˱>+X &>1H~WIO(&KO6jp) k%Ve^N|-E/R•_&R-UX5& ρB}zr̓F||G=Zl!ĹB>l|*۲A:dWY'S)&ܗ iɦiV/XOюURp[J`n{ca_>;k@z.W ^5t*_>.΄,O$\JBZ ՙRV0#VA`:A0mp\s#@ !;9ݜs)QuCWӈ!uqC@pӞ5@vz,zps WRo[j%ds*f5u7bb2:K}5dDYݤ_ :n{~ٟ ~q_qxW`w#9 XXmEraTK Sj?<~Hi3Fl?@`,S V`0Y1h8v6rS$$sp {Iq(u6"4]KEWs(\õi%?m xSRTSix8k݀ ^xE}ɈЗ5fWߒ-6lEł][gpr#j=/ 70˦\JBwwAL|-e&ׂǭ8xZs4BE~q} `8%m`Ł@O s9v6NPUHגMc}&=P)@ z^  |#q%6w-}1\n{4,+WM]n? [' 5#FJӣp) z.\B`_@A0LĴژ ;_L 7_b00\pWS (M1!h4Q22ÝK`Jƈu>uGHrMcZ 먇aq!ө |ߥɼI= }e ˞}z$ ,N/5.c<=dڇ{V'iݟ|z$H7nRX}u|l!,,@W˵CQ@R@)OĪ`XUI,62 &"! 0@gH~k܋Skry ^fCsB܁ -x.<PKm̃ &MkX_v{߷ÜU M֞P+!J+#p) J> V$`4lC?CK4׶K y>5':Io@9:OŽF(:XOFN g`&bE1o*]$,6$gmc@K6Z̑}7Aϐ6VƷZ熿7RID#oߝWR+!p]ԯ±jH  sY_~Sq,} p1a 06p{{%a1c[z(Lkn1KC.'H7@[ Ժ@ @0$.ؐ&BԕIۆ5T,ufV"hB1Jp=Kj]~o8SWDWwlD WQ_ KIVB`5$tmNk_{w"_w:ΐ]@cD_]4-'ajML/'4{3J`e Xf;uS|ll C_:1!7?c2{(&H*Wu䣓/٪^G͔ע?)Y$9v[P4VFv`+s-`NE9Ɯ '>DZa0suIl#8Ό|=&RBajR1C{_}X]2n1\wf[5!ry0_OBබa +ǻ詫|o([ Gtb9d'1Xӂq$Oo?&_ ~/.ylW4JsLO.%!p[ ۹րJh/%jb-|~QbX'O)Ap/ϵciv& :'}4^9& ­:?%iĹ 8k}Xd8RrͶ" 0~|0{byY -o) }25tH{W48 R~mLWx/O>; 70'p) ZX}|@ʒ4~ XM9r`/iR6[b& 6[7?+ qh[{҇̓*q~2`yXK?p;[50F  "y,. ;&Ku/ zKIkӁ-6зݹybLhR{~K!mF߆h{q ~Mz3m%L'$_JNE,m>`UK =:^0XusS@J@X6[EzV Ծ0\[.!9 ȉJ Nǥ5VLpfuI%&'gV x 5Зh{t˲Y_Dza7`@%>෿cQCG)Ct߄xB] 4S<} XHLitnǵTGk,6/@dVBfwEu14&I w1? -b+=~gnS6ZTYbYWr.GBMo>m|?FHr Xɒ8#FB-Sy]J=%~/.LOl9\JBӹIhy$_ Gmgb"gօ@0J8~iV\3OQ.0ۨ=<s&*"0П_&(AH{蓆b *:rSZ=uZif Zi<$ [ {2̒9^@֧B_XQ}b jh }֬+zu&Mm=*t)\J-.g5`[6%; oV6GaYOXP P q=u4>󧐧xU(6;ZJi6bq~5Q<\) ~(VHD%;4iFI2àVΕ}{{V*QBoTh<;;d!f:nH,.%!p[ \ /}HI_f _ %; W/uo>8`A@/v?h uK~\22x6՞;ژ 8!j*K-2NÀNze1Y![.IZao) |Q_BǪ"wbFc-Wiߧ{^%6H {Ee%uR_J[@/Ov] e\<P;Kl<:O/ d‘ LQ灵 N7Tj]3!8b 86rF+/x><Rp'|dg)ao~ DB_ & N 0ַ.C1 M1.Sߋ^@ׄ)o~(, &c.0c Y+ܝAJdo Yjl#\[`.͊=Ŧ6l%Eߎ))ڲlg Pe~z>)d8ˋNД4Qjf6L( &A'2W&wVd?JFd0c%Jőߒ ~f IDAT˃vԋ'>z1*@wS%RJK)Q? ]TD7Þdd;T /Xgk%XT"~wӑbZ/bA> jw >A,7I Z]FGo<-K'* xfB`wm@]e k'I I+j:f]$V[}{ٴV`z1#G@{ෙ~/VXOn#Eп^%?A0/WЗѱ}guc+zlJO )%e5&(+9pӭ&3t-cne10oN+x]_J^7RC骣be+J Ao15>}ȳ+iӹzr ̻[EeR:zYπ{;TD2?<_8gZ6Q̀ }MѺqge^6k߅:g=KʕK )%%n1``-?eևRZ~0s{ 1UG4 L|BiFuc:dg֤"(ΰ+%+34@EMRF r6+XL<cN7[y&s~[o ԥwj^D<ģR ~ọg}~/2  wWT)%!0!+`/u &~ >Z?/nZtw{p]Nn.w)ƌk:ݵ:!!OߒfrJ`Nw&# 텖\7񅌆$ j[[ ^OE|=cEpU{ܾ/~= }?6O}klqwC//[~#s\0<O\[@p'"KXnsM,orkߖ# v5}9*96v!m* gym`8@-GxB's;җW[R8РB_/u# g݆W?WfE ~^ 5V)(%&RB~A.st'mVnl] mRZٯw#s $ l$7uq< aCTf=rFl'/Έq$?t|k}[|2@sVVߐPր}Ø|+,Fi65$A:hi/[h']U G*0!uQ(BY(#Ag5bxzlQ,'Wfr=w+|"*'i߱ 'Yhy- Hl[՗0_n?$㏂\y]12aP!R_;'3gN:5SXNCTb:0.x>:/+j+D6JզQdb`~ %԰A ͔y*>Š ~X.F@T>a%4C_koss>.oG WP`X_&r50k@9X'6E!mV+4N6j''zeSI璨OxaC:$I}0 _C_?wm٦,7My.kps'd ~x dܓ$NY!U}LDU#om =xM|(ky~H (A {J,˷.j`Q}q /Bܿ*XL4[ϐQ s?!e?UkIȱ)WߴmxP0ٚk8X[)jU/-9[&) q]W:Sf7o_tSq MCmBEؠ("]$~ %MBRH,H'$(|Y2ԓ x\!Cv >*N4ϖAZO1o,5d|Aۑ zOD cB f -s^@Z% Ag z:ُ Zb5^};G*"k} ~[зs> (<v4ء=MB HYF8 i-PCm@p75XrR]mUev{( \J3ï \ [g:mS@pK;= c?54H*Ϫ޹Rj 5 ç*nIT̄31kv?_rDC_U6uҘmѤL΢  G` !x%]Q JSB`y>1 v6«KY[Z*AXvxSs_m= ૗o/mn 0uV[bj:i t + [ݽvtCbf&azIkiei2P?*ۨ)|n !Ͽ񆌭'uH>0p_ 1TsCOtҌk*VqA_@ p94 ~SN cY7BwV,E؆Rap  %wQe|x@0q\e(  A;p)\|20Su/mf{ҝJ#rBa%A.?T  3BL& OvEk o5w>p=Ei`zVVB'/,R;`0 v.U0fј Ph$hso)lKę ~+#wyЪ_, '%]] JܓbE) r504`w@8D|H, )ۙOVa93$Ud v%$NY4nTĿ̽g=$!Ei\-YQku%:@SC oowT>U#DЗ*6B!H -4g)W 1^}LiE/௾WqP_ wP`K6y./@.-/[//,_q|yWg1^sz\ a@{9 (B;#0os;`x2B70;$9Ƶ~%96rmW t>Migmg+lG Y$yOjH_X93{SpVǪwQ(0X %JϹY X_/CHA- ;s-l6\*4Jo8ƍ_3pӀ`*ATjuRjJʭ]+$bvw aRme@ԚPYR_N (]'Κ_Uƅ_ec V[(i[@Tq@Foo;nhe] !w/%PB` KqmB\ z=age[ }o~" /ϽYTա­ݲP9}BpyKܣ*Luہ`xva2E13n+Qm6z&Oeq,h"F= :;׫ ^4_viqB~{ W!D9j KI)!T}q ^.Pʢ XSA*k o\'`0zs:Xn |ʺBcDP&0 `1cVjp?qF?5+LmΰKK/ X[4wU# I0Q%)D 7Ѓaިtʛgt]7ϡ s gD8tФmG {?ߤ=&G5=&9)I=1ZWYG|j?tү0R׃ŰH{9z/H2hܳڠo~F_u>mU]8X z0.]x$~8vj`CܶS`zVgF ez_D^' fрߟqA/, / yr}C QrhQo[V8ޫH@/?G w}A 9u T";D=FN YRTxO-. ~/F诣8 3K wg%R%^ agE ٭Ck2 vȩ?}kk.Z ϋ;gW/Б2w] BiZYvIQYŕդHJ(Ap_1 :蜸pI>D`U `(}xFROTwI}yEG 3o7F4mLkJr;R##:6nW6[ wWAJ,brk? 2q8o;>޿@0q?ݽ>Qm6\  0~n"r̨Qw_6%zj Xk)J ί3Џ>PN4gjm{U\5D=xxct[}O. } ,a ~{o;ුdg|U_J%RϐL B2   ?{tl_~Y` Wkjj{ $/@{0]7!߳Lъ8esPH/$aOjļ2m*y+~L܋nW7Z@^xhn"k},R:1t;A;_݈ ~AٿwƁRݽ ];uD d߷>E +!T yŴO`'V_}_fAȰ}|6!-V{n2ճ;h4FuJ` < ;[>/ԞQ #{ iL-k'A-Yu[y'3p|¢o࡯N3oh[p|F4 {IWxAu9Ş:_X &}+xK؞w!\ʏ`+qX@pML+0 C0d.ki@7<_DP]m  )/1xg]Ja X+DcWK4YXY%!t^9C͹Dc=f:>lR?0!*2L[ OU8U VgkA߯]X ~q "!2jyH:դ߀vJ4%j[\o`x,/AzW dj4vkH_;B?Ah\ ǯv;ߣCP_DvOpυf~w;s,v3yFAg>C'ѵ:ԪUjl%9ɣ =MԼI5׌v/GZ/5/y/JO[2\gJN ~KW2 j4{y&V'*D%HoW '/n.%Ap.^&B`D^[̇~?WpR3lAa&A 2,pj;l viaP6p#ݷ,&d/^67.!j۲ :5Hi-LlF٤,m,'>vygJο+/{KjRi'Cn˅/ IDATG_[` OhR_eeF Jd%^@ 5\J ~x -Ǟ tl4 >{ف^~>O" pzeXyv4iq #kׇ$H3.zg.Ns2u`"1uɄ2}(-%$h]lݿ}s<6< ~Eyo({yʳ.EOWEX ;WKŻK# J,Q0ZDv0 `vGYl lEc0I,U r?QwOY56$1 <zzc+`N4GAiu H&u4qSUZ]ч@kf[rLXfB_> R1ҫs {PF*;O0y U&q^X%U*/(BJ  /Zl`Ab%_g]L}J G-w-N , -?8`\HՈ317vHc" =RMò;CeyOyri3MZyZ.cn}m:Vrdj8e "~>k ĘҁS4i^`Cn }3&ARFm ƀZˁ0 2{_hJU&\8 .-%E%^X Jɏ/AmKW],'3`ěו_'#-^B9_D/$o߫x4:ʱ>$RDp%o6hP:5@K:Av̽lO(c6>%BD |,N.Y^݊W]{B^w7aas+/ȿ;%" |޷{/ZyV n? ]LG p6B`Ya0P,;n `p7DaR[amN y)`{a|Vd( $*!Z0Cq{FM0*Dw#ag9c:OD&,X]wA#Tg!(jpdr+M8ێ׾_QJ9/Tԟ[5€߀vH+vE-I\课RT୔آ`~m)[) eV? [}h'c`pi'rRch*mFzC0O=SY"eI9P?E>~yi I8=>Uj@Y$$thiaƚ!QdK)k^\oi@oAyr4"``4oͬ b4"F4X)!EJ ^{lfr`9N,F)s'ԅ(0gg7\z\Wn D#pDk yGoԚd !HqpC_}Pu(1wp|X#2Y5h zK>_51и_n]HkaOfC<7DK_*}!/oVm^a5tXQ XWtllEӁp)@NN #n(dK/^Oa8Ob'HM>I8eb.c0HBlXՖ$y "%DZô"eY$/ya }A_)b4-[/$%7VتYXj~ xg X?Ea0W1lm O#ap7̾@U?846RG!K.(pԡQr[txCU"9g(K H_ɸr7,)[f(Df 3~N^4}^:K~}^@5'~O$U)oV͕*%n6!0f%gEG_N S}%~{4 rCW u@&ȃD`I0n1#Y0J@X~FBV| .{H> RkPI?ZUFACosWpv8"Wm%l0p_ET%0Kj~%} 3/uw{נ)?H =ҵ] B3`4`apssɚ0P_=˻.9hγ{ϽW[Ч9' *4#i@ {' H aVR Rw3Rp8q3_l|TP }+}//2,&w='5*oJSB`Q=6W@0Sfɂ`!l:$ 6ƣ҄|?2`~I %hJޝpw#u\.UWGGx~;Vgj eQp<9vujOjn3uk^R?Dg 1v7@ Pfy1+%&e F[CS{NQߔN ^1? ] ` `(A/뀿dvR\\ ~2~sJ앮r51ǃ``ww|;<083f+`6@Ċ#q<r/%#W!x|Ou-z|bA}O%1f+]^[&LV{h۱dz쮺5&~ot@?O$ kA_>\ ~5V>OUx]l)?X ޿7?$w-%vz@mo fLV#bD`GZ¼.ȀC Fןx}QRmľIPu:Nct[4 { `ol2ܳ @Xl562t*A^tO{8$KN ~NW5ߕ_k3|[J߾|Jp%FHކA`WV+Ly*(*h8QqS'L} >Ɂ\ ~q%urB F֪opQx/C?lucJg`h B8 z@}/!@FR&`L_`]Z ﯥK+ 'ܗN݊ik>.HLw_Tߔ_ @ ҵj VbPݐ,\%@mm'-t0#W7J|–8os,Jr #!#nieC=!i}ii~cϖԝT6Oz}2H WH֐q>aosb/鴗nv=@`kNW"=nF0o~.f/Ux=WJ7QQB`+A`ij`E:A . =ce1q]`p8].ɺc G6%a I§/+HْÏףZ,P4#t8pFOXhț!R|ub_FrdW!=*/USN%eh:J7SRB`~ D ˃j01A`: }^ېߋߵC km~KaEq򆇇,gT{!în`lh419'ӶCrMɇixb_F 5Dpy} H{ l}m ~N/fWRpq(o ?(0o`=XU蟇f@Am΅7z*a!݊rZ>$5C~f̤R#1r/'2GB$%mm#VQT5ZCZ*L':W%5U$߁T,] ~m_ bͳ&`swS^ T a\ FBi0dlZi^M /P>VG/mC76~$ÐLzOPXC}!vֱ8]|E^_~i 0 =P(K 4c+NuV 7LEq 1JRאa'Gw>"/Sb/ kY{*WJ5>_ X  5#$,A5Ыǁ 0XԷo#a*aDoͽ0&;\J&;aq|u. ^!aV>ٓOs 9\C@!C]K}8.Gq $֜վ#~;qn($`sjY+T SJJl\X ${!~R !~ W T@yuj-IPLX;VuxOe>=',gP}Xu'l_uKs_+@($p 6%y!rBq(uaegn}1Rʕ>2cd>U =]uHK9|Mb$(~e@ߟҜO[JJ la Dx mZycr3 }t 9y_QR4TwS^GӕzOܗU|<3 cڱJ)~ CO|e0XAӏ?"ˠ*([py;arFO1]`[|T:x*jbWW~%7[&eéՁ;-%N Sc8UJIl\J`Pw XUG@BvE^"ap?k 'O}3+d&o>AHh{`tj;NQZ%sZ6I_U*mLA=>,#2TxrF6 D|jFk%[!r7B_uu6OW]&Hשy)pO 5#U+`. ̤`uOs1tqnk[/J?(,ScTc>^^@,{ޮ\9O<*_`锸)yeC־pFo2e U6k& G" 4$9|oi>`- }]qB ~eI R75V S%FJߖ+vGI| xn&={Z;7U`| 90жIڠ0`x7d&pmg@x[:@FEKuK"۪Nί* f"'/J tq:2@[WEs >@ny3 jҶB&50@8ff[,ZJ+p1AWym8U)!0Zp=^DxCJ0é=2Qcǽ xou4*ꄖWJ"-}{ 6ѫw#t>~Ŷ.'5eaףaKJ},@;0.>e $|u@ DQW_]ڿ-g IDAT'a𞏽mDTW/0ඃ'.ebGW~x<΋-4oڕWgk_+pUBtUp`27LTO@׳@+^uh|S ]>?V Q 6ո6 (5^ ~RM}RJq'$<;'aHljRsOxjMJG\*wFdH /Iez4v}cw~.JkQJ*!p+,zF ]v`ap~Ŷ.#u0Xu>ap# YV \zS#uț*fq-y>=> R`&)nS7%`YjO{mOr;l+]rj_TG V5uYo)!zM5Fs{F(Es!o)G(W< ]CWG*Q[]- y\:CV"ILNJ_ۋI k^q'*o+hvDvB0xnM4fX!W-j [0+w+dD@W^-G@i+f! +R_SJ #Яu .6nu%:o??>\ zio\G`pM)NP-BGPhU0#Q(/C !}3&RnٸH~ڻN*+vWr^? 7NVMiH1JR+!pVX \ xտ4nozWlz%iӼյap'hup/.u~>~1{uWr%=6u)ru1S;qԪ|($UWRQP+lcbL?L/aO.9gVݓLp=("d.vR;0r6&PxtEhl$Dl༌L+rGFB@g`hq#Bb- |z/EC.зFZ׭UVm)JU p) ]Uh\yD {(FE/_[\GOƢ֎ %iom k@ X`/Ud>R, Yp&2@+>h<WtؔvU 8iL[A55{m|߯V\{͂=cۋ;l[tD~$r#^k?W S{(pʥZ#WQzGB^ XbOgVfP0XTȷ~ݱq2,J8A >[4Q)wCR Kfwb]_lHρkv_&W͇n4DŽÜaJao#X˫t!MF }1U}_w_PHthzU>Jr+!pVj^ Ap#a`p 0">/cI4SGeq2ۥKP;'?8^KNt]0xTh@Zd;Q?n- |R\<@YW5@ з0z Mtb%V0> \< u(0 /ܟ￟YHWz>a[o 1(:u`'*jVu`KvDgcrsbb$ |GSTM+{_ CQ ݄Zyy ' ~Wimw[jn$My? QBh7`$ՐOХ4ɜ)oc(k`; 2+yy:?YkYш00J_a`ԡWZ+XpX}/I' ~TP˸_7fCs:PB",01b^ N`𶄇 AΜз_K4ռW2&,}7*W"7”xV F@1-". _ ,( | G3d}F]KIP rgŨY( . X㤋- U!#䀋d?HOm(ikbKS=qo)BxV$k ^ ~n¦Km"nD]evi(lq{䇍{$Sj i/J3B-p|`4&WZqE0k:n;MAo# t +'Hm}N_Iw"4Mʿ UMz+h~GȩErE :P Ǯp 4;=Ao}C7r~;.PGǼ>U~|]3yY>u>JֳDV=p}˖.si &c|:q|9?(xlz|PxZ4LߡOC85s*tYBGKFagLyL8KZdؠ!p]_}.ZB_EUC_ٷ4]J WBQ#x e<&t;5|_tJĕ^`}7bp@dOqw .rt,q')sȴpPC`[c4!HyPl `׹.=n XV_4\;Kר$K}gD)xDLrY_f_to㘯m7!z(GˆsH 1 eB}\`|*;ys}FKRgګ&# \¥ԴTP^l>~wWWkT(I,::=+7uսq ~KjcKYpl0_[ OQέ;p/AZJjAX!U%m:=jHrYɡ\vITPjQOHěk3 a?m*;f`:+duw6(.Mp;TdBJ*kx(܊xS#`XAmIP>&TeK){~X"86QY[VY9z0qQ\a *pE'؞s!e e-}V0 @^@"5;u#|y*Ӑ 諷Ƹ%(!6 S:,5\ G.BO6;Z§Е.h [EB- ]CX)W6 t9Uormk_p&ŷG5̎rd}ה{Ἇ 94iF yڜ< w6h}"W_D'뱦6MEo?-@FD*7Q ~'*/R&oj)!HEB1p!saAp <Tg>\^1{VK IA׏\BaarUv`K$h޻i~я#9\BըPp(Z 嫯j0[N"Zgv &U ̀WDz&cWF'H6 S?9葺^~gK,_r 'a?]yp\eFtr6=?MWѱ\r@+-Wk J|--kMO${şLT'(y<]YAj}O#q|ApIvt-$2!"mtRTW8Ue8C 8 V2R K["EoW9 |A:5"96~g_[ߋGD75R SSx 841H Mf0.:>ι nz``2,Jw= , @KCa)w`r6À&8CDQ >sL8 !kOzjX9i"#bxSxny5O3e/746 k{Vc6ŷm2?v/:W4!Elt$kY`H1%NM{ xuh '0@lyG`"&[@}P{7PTb%3cj@*a,{6 Ca:NܬjS3b$Ƀ렒qey#0v/f޹Nמ~{*8Ĺ)ل:lwGd^ݙ+ѾwVHƐS20'3^R_;ЗvWEctw2BVenNJ.ii+V6Gzkk;0dޗ6^ `rB_yM+p=GDm75S SK)! ٰEB 8>`@ ª[)Dl]X*0v)@<`up)Cp€QevG @PJJ\PfjaWI=7?+-Lw&hLb֜a Wa:MLw8Y@/ WN7@J)abO^LίqͳgmO3UNۛ$ܤH|mq[ s/})܌"-e_ sOgL%B5(ojSB@;ku20W"hy|d7M#}A2,"d\:yn@0Lyi_: 6?WZWK&l$O"OEFEfĒkgy 3S5.sPR Z)3iCT0e^v X<#ב 4}ЗDP <ޭ˳dzh8  "C@p{ yG n hFY0熅u  ݞG:Kia" M|9D~>(6̎^"9$;ODH0غCvAZwFޝY{TK4)jf^P/(g^G{m |oFla6Q~^2w(G ~eiN\c* sF+bB+ H^ t_ʠ+W ys>o~pI2!Ӆı_վbzgM9.MxE~uf 8n*!p'?Ҩ~LT0 *nC |J 4lX*(M3 & :7PBJ A0P/-LȪRwG`5HG ~ʭXg3Q?S܉*a2whjR`XlUå7v+d) ίJbBY˪%,kuOup9FIr>nP0_匋@J~*Ik48|4U`X 5.0;,0,ߘ [R LhJZU S(!l:#!p) u{AaYЇx0vNp=ލl`T f){ȭ8(Z*wBݿ{3b! MԒNY&p:3[}IhX s ;Q;9b ~5{#F4C<.FK<^XN9׮_a{@s0?KS:m7RBٲX5 "N #ŁqeH%wg`w:f @zUHuAɉAP b?]8NȶAՂI!>+ľ=9b8o( wEיrqs1 O_qꠗK21mlpNm 9h_P:(ojՕ8w3*a[| ê`A20UeZ\w K a06|LI@X^KqZfa: +\C0[C#v0U{ 7|W+9RNsamO!_"@p'r`S{^]C/`_]?I݄2)IofvL{;fk (v7qx[g# ~Y/t:7U^A6@ <_g nZ*ODIP6vu0:L}a&6hքWҝHPjW-HEAtw$w/NX1{9(Gt4`] k YK^kW_\o|b&+8U?߬gp) #`e@Eh" \E R|=jK]l _G`|)a>0\(2&_ylĔ,]{tf:#\FBQ95謷҈5HХT<;:>tsd M_K/cxm RX5 "ߣuN a%,ojG%N=BwW0[ _ ca8HZH2dUp)MlVGܸT:Ofk g"x~*zaԨw p 8HͫqiƿT-י[]뺳 ^}>ؒkkt9gP }}S;_M+B#ZvWx%%oV"BDt)o&Y ~EXtXmQ,H-Y0f0S䡵KV O;&^{@RA㒵|SOy k`G5{c9E1 %~%[}I!X]Xm$'rĨ=;BDAEiUFh:}vpxyW#^%M=A STBtlyFCRK%, GD"̟B[`FWiC62p?kgBaC.vfհ0 -K(MyޘQӕ"")մEt2*in16U:;K@#K<^{L;.>.?ܾz$x7ʸ 2;ZTIk. &GA%Ld$kFDD;zΘށU]C5T)Gm윹x O!T?\DQd\Q9{8.zkj^Krw1&:+[933j/-z +˺i<`H 1LҖ-"+L+v -!;zG.1]Dp-] Kcb '.6t6R+=%X)Rv S;i>Ep@ep9dee0?V G?2АҲ|![pQ6@ GΟ0Yoq#] C83:4(S,Cc G hqW(w$Bq͙0Ս߰.~|VZV0a {S 6JLP\@a SOvu]чl\5٥ט5+I6y"9S׶^k\I9PC'  8;OW#z%[F8|;ג\ 7,&V7TNs]yTlƙۏD^}^do\A8\voc_kmk_El2ce<`.+&2]ܨgil)b:NIؼ,nEk98o 'i4޼p\ðISZkIRD {Ejt"33d1"\w'[UpfJP{5R6sͩB>ڌ)F> }8}ed K ~30{.!~ @t*".:[(ʌR!$אnCZ?P  w $jkIr s3tٞ1e.z<"z=x;H`v'؍%|VO)I:0[#9s%nHR\勿҇陹$e̦+N xN%n) E@f`\6ZL  "`@Dv7L-ΰv̾l_}dp?VRj3!\\m3&*WamQJܕ{oi.zo`bL]U_:A3$K [9.1+ϘQOBb E,WŬNS-z8"X3W\ y/-H}k.ov7\ǔoX]cǃ s?nk?Mk̡ `)(Գ, ^͇>06K_ Փ;zՅ/+ tD(*x*ST 2E] zzMRx( tSt3pS/m+y+ !sno7lZS˲Ħ\_lXQ)baUl8^f(G #PnNdҗ '_[m./o.f)g} 0^ `QdSL|֡J"|\i,l!L4Ki_8K  }AQ, [ vS:^qyjʱPV)]zm%qP>u] #r䲷!&}t*e񛉼-W mB&+^Nъr):.'Ewsm:4x JK =/Q`1|^C|RqT;]$wpرkIWw-"Wi]Ÿ* 1l{?~ uP pwdW~T _zB/.,S@LOJ5Yg&jGhbu3yyk0rWmFKPXF Co2^QD7#0xUVDbU$`^6(%KGైm^%B,a]¥*>0(cVp5|`/\UϦLa rYEi-J z啪5N, DZQg=,?5 (xJ䴞{[-{Kuiwe>UH)Pz3Z_ ~3[A0 0F@ Dptׂl%J٬2n͋¶ŒB+t)|VӖP%g0 9<+5ô%2WjFs/e^z_,kfA9{ 8-ah :isQxiF8R`sC·)I+#=t{~WsQ 0^`Ut5 ngԴ v]3;UO2}e •j^n?6R6{[ .%$&zJXLZxw;b}Z`4S &/U:ZMnah]5'1B+~o,B ~ /O : u`,1jRN,잻XO݀zԆ7B۵659͑}p%%gWvoo0oqfF]m1z3.t1k,K`TŃ ,PWj0agU -/3 NkOp`0NxVD gkgllpe0Q~^[Kq}OYaA k],,+ ?i+ t,44Ak{k1Gǘ:/C`BBeo1MmGqoLb_P8_0ΠxVDRW#`&qkw>B+c]W 2|gmJ& %GK_78[/}jTkE% GqY O*ל3(h i̹<ϲf?=&<7$},y~U7;//@$.@2 m7Y]6LDeBhmkoL+c8R{Wpy gDžnE͸)\Ĭ唈go#혿/$O k*~\gmt&䨽xN<~kG]Ex>җmgÉX`-w"${c'1,2- ౽0?g3jdRPm.z9e9`<5[++r1t/uh'P0e>̾ߟ/Ө\3ido7j:{GpfI+G[`3!`e. @8މE0Ѻ]M`5ܺxf.eҽ#"cڗ+xX?* ׵j>"|00SmǦVp,Pϛ]:'sPJ7 LW{ % `&nݰ{+c8vg5tB'=kagjV>ýl [J/fD#K ɞmʈ60*.,p4O 3U>9r ;17 >gM;ӤfB$y͸Jx7/ D BجfexrTF]dC[E}ލ0FDu.\j"`li~b+JB9yTsW4y_./)>}-3G?rrAҝb읽O9—zYDpȖBheKP  wDR^jM,lJ/a5\fAؔ~yQѼ>n]%w ldlМBZz,AWOsLJnr0me33taqZXr.u׿O,{yu*׳efLsy7c ~W$xGdxv̼3Q:;Y,w3L)̈"zyPw.)KZ;ML\"uWS@]V ۄ1f)O~Y~Du]){K\?i{V!AZl@J}WzR<L H$ԐX$Ζdjkz:k_m7Rbay2v$ 6_.JT,N,mR3Zɖ{1X5`n@sbtI6_@l oYx]*|Wr/#4Oҗ`Sk39"s>@ zw>pOɇe[Dk%T"L#]XՕ0Q.a R#n%'d\{+oK}iEah5Cm2DD1c34Nfw^gDM^ j{'A0YTkA*Z@/@0IA78P֓;RTE4M͔u0QR\|bp,)[o|A_&G2|ee8׎AKGhRj`AOgddgy>OĈe/фQ —WYy*)2Vs^c}IDAT<@t{!B-2;U >}ٹ;(ew j05ո2Z7w aܢb2l2kW{@q,wR>Ao2`,&̉̀[b+G/{(!}́]{ @> Xt"8.8_(}?bn| Ff a}Tӣ4ygtU]?ZcN}'#Ldڇr4|ѹݚc؁)'e2]CٟIR|peJd2O%5 ~Wf-K @V Xt?`yv o.! > a0j^qsQװhCk컇<`k%" XXȤn\P_On! @TOlg *I! y/{(NY!}]qpǹ/ڹS @n X t?s| &.pW0k'q@}rM2!LD]6uTLf7Ʒu=d=3)}hJ.cts(z_K3r>_o0oHG4~ z;8&wP׃\Ք@ؼ@ ~ ]&"Z5 >S:%}'^sV0Pװxc/K8S˱\@)KޕW:%Ip\^_όFYp-*z"D;4K) }5;0z Ȇ` Xt?n_8,Vgʸ)FdZbKN1Ld!nMZ38'wZ-KZaL.N W}8cPj@`sPJJ(ϗ}kUɞ7.9Syޅ// yq{kř 0S amX6;)K^1L$i5. w1{mg/95^~]ԥngqu _ʹHqDd%%|ORf0 j^ɴM ;i;TgMtq5` :+- Rν~g &u`# LdĮ`Ydݩ; ϊT.ecdl}%ВT b Zzeb# zҞFy6`D p)J#O '86~yWfqY[g&. Pή_|ۦ}󴈆y#|Pwr,@/ l^"8!M 6Xq$t ӭ.]6]>%u _^?&vɤyXYʦKQHl&leteCy|OR'|׊!zu֕)ʫ͊yYk9y_A<t|Ĝ`Q-dpg]Dzu  V'EUƒ논*:S|ꙶ6A/~:!$1߆>09gK2.{=Sޱ! ]kOwD'`_ x;Vπ`-b'̋άCـ>7Kr}eR?)~0*b&|rJcZ-hv~bbW\l^asw&k$v҄vN ?Ə~̲pcky7]CX2z>ruTr` x -4 BW𴌉d<`kBx^K(H =U I,@8dKި]xcñ}ʫwϗ~19mu M5M 3cdH)NYoaW x<t7" HNd eFwp`vDDVb(bQ1$Љډ]pjW;ytAzJ^.y,Z Dх +2a`֖Dɤ>*;{}.]WoǸ88,r8U,>Ǜ}EMdpVXe/qO!}o{c鑬-~ x"t=4̮`qF gclXB4F񫴨/ZwoOJ08Rp~n7&.LNcqV-8'ghk!+Rb"y6ZX[@@70lN{8Ui.2F}UO`u ͼ0 YhW:<}(v- 㞯i'J~ڮ|8Ghd!{YNDN=$(8I͠g πһ`^΁tB6MpT:^mJ66l*d~]_ILa\߭]Mt32smr/S-\t69mXr ߠӲYQ#4]sNsA/P"@Wp eXrL쀼.aw WBa"k9LJDIL$[1}843ɯTGx}sXyN69E?o=@)]bG55kB\4mAgtA#֤7*¿V6_׭\",šTj)U쒸&xe"|%XTy8p1GM}>g褯C @@p >Ni2XmpBJa"n&껀څ,&8G^ocV\LAs$s:Gm8[瓼-uAE)4g_]9zVu  ` zwAQA.'.uMw 0廄W'm'ftVEϏes`~5NrrLVL<~ޙq:\Mr]7&3׷P:\x^A1-4wW0,3mtE;DDp)t#|.777__֖WFI]|YcjTu@Vr\?sxx;M4JbT}܂0  Cp1gP4*v| a.O+62)Ű}Z+> RdI+nxN&j6/<o {v1Rh]w^V3 =֤_/@0@D0z{3hr`qvbx~2!Ln R(B w {V9cǬ3WOIb37dLA7EWڥծ9o+O: -Liyp/+#0,W!Cągk`?պu#aDf$w%~tl=0l 3|xU{LDfztM /`@@snM`A369bKvŨ̸xMa kU=3Hӥ8]ÿ/=y8k,䭑;~ \Г?U!]3x Zo}N|*-/*n]A ay0Nfwd~d:x, "k84Z,M~c8'1D^)*RB^ 0 t+\?p2r`] !Kz)L4\:bH%2\%HAѵ^ E0w˙ʸ.$lhVpLX 5NU / `4  &R\nis1]-"|t[u%1L$j4:rXb}BTu.yKgt(A! J<¥4XBU_dtYKn!@L"XCp-;7]DϔQbQ987RS'><˪;YBuRhQ?_Τi2W8GmWfgn!%@f HX~3x2.BR؂G 1+Fm?̬`9&-Ӈ43?L$>T'|$ sTk%H_@f Hn]gNyRM\Kh1)L" &z$.q~`"<ď3j$QO&6!G80MhV`sD!z'x*؝'{^"m^Ώ}"'C+ 0 5vITywpaf_Kro]7cQL4ddhdkOpo Mǡ:Scd'i4e9ֵ!? ~,xl_j~C!Zb]o~>Cl(v,Z/{k‚&ILT圳~]V?h]HTn[;ʻwM ̟ݩ,H_:@ `;qji!vD/9A! }aHj / ;Q|_ 1vE2 p!LTXt|%??,-|@a"8b"0XcUs`?xߘg,ߜ峴JꢀO3G 2.DvO_)<mn+Ka%KHd1{H ̮ޑ/@ĚX /Q=D^9+ ΁aA ~OH ABd2M"VS;v D{}%t |XtҶy^"w';_oW/x"' x4 =JZ(E,_͋W7ZHaKODS{?5R瞳7kT/x*'  xt EHaEMpEɢhI|[;c}052g9F8Hrk̓d^Dp*Qe$@ 0\8c >-Ok a&{g֒階4" <,`v(ωgY q&F@0@70L >}Xᰰ6 W yTL1L){lWܟmr o m?;kɫ,W;d~/@@`` 1B,Ǧ8W#k[͉ѷJEJ.~ (5B28˟~%ZREbx/@7"@ ^Š.a[⺅obnptxcVz F;TP&΂9Ļ-P?Ƈ0IENDB`lxqt-wayland-session-0.1.1/waylandsession/000077500000000000000000000000001472067124200206675ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/waylandsession/CMakeLists.txt000066400000000000000000000011021472067124200234210ustar00rootroot00000000000000file(GLOB SESSION_FILES_IN *.desktop.in) # Translations ********************************** lxqt_translate_desktop(SESSION_FILES SOURCES ${SESSION_FILES_IN} USE_YAML ) add_custom_target(waylandsession_desktop_files ALL DEPENDS ${SESSION_FILES}) #************************************************ MACRO(INSTALL_SESSION_FILES directory) install(FILES ${SESSION_FILES} DESTINATION "${directory}" COMPONENT Runtime ) ENDMACRO(INSTALL_SESSION_FILES) INSTALL_SESSION_FILES("${CMAKE_INSTALL_DATAROOTDIR}/wayland-sessions") lxqt-wayland-session-0.1.1/waylandsession/lxqt-wayland.desktop.in000066400000000000000000000002021472067124200253060ustar00rootroot00000000000000[Desktop Entry] Type=Application Exec=startlxqtwayland TryExec=startlxqtwayland DesktopNames=LXQt #TRANSLATIONS_DIR=translations lxqt-wayland-session-0.1.1/waylandsession/translations/000077500000000000000000000000001472067124200234105ustar00rootroot00000000000000lxqt-wayland-session-0.1.1/waylandsession/translations/lxqt-wayland.desktop.yaml000066400000000000000000000001471472067124200303730ustar00rootroot00000000000000Desktop Entry/Name: "LXQt (Wayland)" Desktop Entry/Comment: "Lightweight Qt Desktop - Wayland Session"