pax_global_header00006660000000000000000000000064135424060070014513gustar00rootroot0000000000000052 comment=d5a90430b8d6d178e7bba39ceb8162e3bc20cb58 gamemode-extension-4/000077500000000000000000000000001354240600700150105ustar00rootroot00000000000000gamemode-extension-4/.editorconfig000066400000000000000000000004201354240600700174610ustar00rootroot00000000000000root = true [*] end_of_line = lf insert_final_newline = true charset = utf-8 [*.js] indent_style = space indent_size = 4 [*{.json,.json.in}] indent_style = space indent_size = 2 [*.xml] indent_style = space indent_size = 2 [*.sh] indent_style = space indent_size = 4 gamemode-extension-4/.eslintrc.json000066400000000000000000000037021354240600700176060ustar00rootroot00000000000000{ "env": { "es6": true }, "extends": "eslint:recommended", "rules": { "array-bracket-newline": [ "error", "consistent" ], "array-bracket-spacing": [ "error", "never" ], "brace-style": "error", "comma-spacing": [ "error", { "before": false, "after": true } ], "indent": [ "error", 4, { "MemberExpression": "off", "SwitchCase": 1, "CallExpression": {"arguments": "first"} } ], "key-spacing": [ "error", { "beforeColon": false, "afterColon": true } ], "keyword-spacing": [ "error", { "before": true, "after": true } ], "linebreak-style": [ "error", "unix" ], "no-empty": [ "error", { "allowEmptyCatch": true } ], "no-implicit-coercion": [ "error", { "allow": ["!!"] } ], "no-unused-vars": [ "error", { "args": "none", "vars": "local" } ], "object-curly-newline": [ "error", { "consistent": true } ], "object-curly-spacing": "error", "prefer-arrow-callback": "error", "prefer-template": "off", "semi": [ "error", "always" ], "semi-spacing": [ "error", { "before": false, "after": true } ], "space-before-blocks": "error", "space-infix-ops": [ "error", { "int32Hint": false } ] }, "globals": { "ARGV": false, "Debugger": false, "GIRepositoryGType": false, "imports": false, "Intl": false, "log": false, "logError": false, "print": false, "printerr": false, "window": false, "global": false, "debug": false, "warning": false, "_": false, "ngettext": false }, "parserOptions": { "ecmaVersion": 2017 } } gamemode-extension-4/.gitignore000066400000000000000000000002051354240600700167750ustar00rootroot00000000000000# standard build dir build/ # node node_modules/ package-lock.json # generated files *.zip metadata.json po/gamemode-extension.pot gamemode-extension-4/.jshintrc000066400000000000000000000132321354240600700166360ustar00rootroot00000000000000{ "maxerr" : 50, // {int} Maximum error before stopping // Enforcing "bitwise" : false, // true: Prohibit bitwise operators (&, |, ^, etc.) "camelcase" : false, // true: Identifiers must be in camelCase "curly" : false, // true: Require {} for every new block or scope "eqeqeq" : true, // true: Require triple equals (===) for comparison "forin" : false, // true: Require filtering for..in loops with obj.hasOwnProperty() "immed" : false, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` "indent" : 4, // {int} Number of spaces to use for indentation "latedef" : "nofunc", // true: Require variables/functions to be defined before being used "newcap" : true, // true: Require capitalization of all constructor functions e.g. `new F()` "noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee` "noempty" : true, // true: Prohibit use of empty blocks "nonew" : false, // true: Prohibit use of constructors for side-effects (without assignment) "plusplus" : false, // true: Prohibit use of `++` & `--` "quotmark" : false, // Quotation mark consistency: // false : do nothing (default) // true : ensure whatever is used is consistent // "single" : require single quotes // "double" : require double quotes "undef" : true, // true: Require all non-global variables to be declared (prevents global leaks) "unused" : false, // true: Require all defined variables be used "strict" : false, // true: Requires all functions run in ES5 Strict Mode "trailing" : true, // true: Prohibit trailing whitespaces "maxparams" : false, // {int} Max number of formal params allowed per function "maxdepth" : false, // {int} Max depth of nested blocks (within functions) "maxstatements" : false, // {int} Max number statements per function "maxcomplexity" : false, // {int} Max cyclomatic complexity per function "maxlen" : false, // {int} Max number of characters per line // Relaxing "asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons) "boss" : false, // true: Tolerate assignments where comparisons would be expected "debug" : false, // true: Allow debugger statements e.g. browser breakpoints. "eqnull" : false, // true: Tolerate use of `== null` "esnext" : true, // true: Allow ES.next (ES6) syntax (ex: `const`) "moz" : true, // true: Allow Mozilla specific syntax (extends and overrides esnext features) // (ex: `for each`, multiple try/catch, function expression…) "evil" : false, // true: Tolerate use of `eval` and `new Function()` "expr" : false, // true: Tolerate `ExpressionStatement` as Programs "funcscope" : false, // true: Tolerate defining variables inside control statements" "globalstrict" : false, // true: Allow global "use strict" (also enables 'strict') "iterator" : false, // true: Tolerate using the `__iterator__` property "lastsemic" : false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block "laxbreak" : true, // true: Tolerate possibly unsafe line breakings "laxcomma" : false, // true: Tolerate comma-first style coding "loopfunc" : false, // true: Tolerate functions being defined in loops "multistr" : true, // true: Tolerate multi-line strings "proto" : false, // true: Tolerate using the `__proto__` property "scripturl" : false, // true: Tolerate script-targeted URLs "smarttabs" : false, // true: Tolerate mixed tabs/spaces when used for alignment "shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` "sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation "supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;` "validthis" : false, // true: Tolerate using this in a non-constructor function // Environments "browser" : false, // Web Browser (window, document, etc) "couch" : false, // CouchDB "devel" : false, // Development/debugging (alert, confirm, etc) "dojo" : false, // Dojo Toolkit "jquery" : false, // jQuery "mootools" : false, // MooTools "node" : false, // Node.js "nonstandard" : false, // Widely adopted globals (escape, unescape, etc) "prototypejs" : false, // Prototype and Scriptaculous "rhino" : false, // Rhino "worker" : false, // Web Workers "wsh" : false, // Windows Scripting Host "yui" : false, // Yahoo User Interface // Legacy "nomen" : false, // true: Prohibit dangling `_` in variables "onevar" : false, // true: Allow only one `var` statement per function "passfail" : false, // true: Stop on first error "white" : false, // true: Check against strict whitespace and indentation rules // Custom Globals "predef" : [ "log", "logError", "print", "printerr", "imports", "ARGV", "pkg", "_", "C_", "N_" ] } gamemode-extension-4/.travis.yml000066400000000000000000000000761354240600700171240ustar00rootroot00000000000000language: node_js node_js: - "node" script: - npm run lint gamemode-extension-4/.tx/000077500000000000000000000000001354240600700155215ustar00rootroot00000000000000gamemode-extension-4/.tx/config000066400000000000000000000003011354240600700167030ustar00rootroot00000000000000[main] host = https://www.transifex.com [gamemode-gnome-shell-extension.master] file_filter = po/.po minimum_perc = 0 source_file = po/gamemode-extension.pot source_lang = en type = PO gamemode-extension-4/HACKING.md000066400000000000000000000012551354240600700164010ustar00rootroot00000000000000Patches ======= Patches should be submitted in the form of merge requests at [github][github]. Coding style ============ The repository has an .editorconfig file that should setup modern editors with the basic indention information. There is also an .eslintrc.json file to linting via eslint: npm install npm run lint Translations ============ Translation is done via [transifex][transifex]. ninja -C build gamemode-extension-pot tx push --source tx pull --all --force --minimum-perc=5 ninja -C build fix-translations git add po/*.po [github]: https://github.com/gicmo/gamemode-extension [transifex]: https://www.transifex.com/GameMode/gamemode-gnome-shell-extension gamemode-extension-4/LICENSE000066400000000000000000000636361354240600700160330ustar00rootroot00000000000000 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 How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. 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 library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; 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. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! gamemode-extension-4/Makefile000066400000000000000000000013101354240600700164430ustar00rootroot00000000000000 SRCDIR := $(shell dirname "$0") ABSSRC := $(shell realpath "$(SRCDIR)") TMPDIR := $(shell mktemp -p "$(SRCDIR)" -d _install.XXXXXX) UUID := gamemode@christian.kellner.me VERSION := $(shell git describe 2> /dev/null || git rev-parse --short HEAD) SOURCES := extension.js client.js OTHER := LICENSE README.md GEN := metadata.json metadata.json: metadata.json.in @echo "SED $<" @sed 's/@VERSION@/$(VERSION)/; s/@UUID@/$(UUID)/;' $< > $@ .PHONY: zip zip: $(SOURCES) $(GEN) $(OTHER) @echo "COPY $^ $(TMPDIR)" @cp $^ "$(TMPDIR)"/ @echo "ZIP" @cd "$(TMPDIR)" ; \ zip -rmq "$(ABSSRC)/$(UUID).shell-extension.zip" . @echo "RM" @rm -rf "$(TMPDIR)" .PHONY: clean clean: rm -rf metadata.json _install* *.zip gamemode-extension-4/README.md000066400000000000000000000020461354240600700162710ustar00rootroot00000000000000# GameMode GNOME Shell Extension [GameMode][gamemode] is a software package to "optimize Linux system performance on demand". This GNOME Shell extension will show the current status of GameMode. For it to work, GameMode 1.4 or greater and GNOME Shell version 3.34 or greater are required. ![screenshot][screenshot] ## Installation from source Obtain the current development version of GameMode extension via: git clone https://github.com/gicmo/gamemode-extension.git A script is included to create a zip archive which also can also install the extension for the current user. It depends on `meson`, `ninja` and `jq`. ./make-zip.sh # just create the archive ./make-zip.sh install # create the archive and install it ## License The GameMode GNOME Shell extension is distributed under the terms of the GNU Lesser General Public License, version 2.1 or later. See the COPYING file for details. [gamemode]: https://github.com/FeralInteractive/gamemode [screenshot]: https://github.com/gicmo/gamemode-extension/raw/master/screenshots/gamemode.png gamemode-extension-4/client.js000066400000000000000000000103711354240600700166260ustar00rootroot00000000000000/* * Copyright © 2019 Red Hat, Inc * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . * * Authors: * Christian J. Kellner */ const Gio = imports.gi.Gio; const GLib = imports.gi.GLib; const Lang = imports.lang; const Signals = imports.signals; const GameModeClientInterface = ' \ \ \ \ \ \ \ \ \ \ \ \ '; const GAMEMODE_DBUS_NAME = 'com.feralinteractive.GameMode'; const GAMEMODE_DBUS_IFACE = 'com.feralinteractive.GameMode'; const GAMEMODE_DBUS_PATH = '/com/feralinteractive/GameMode'; var Client = class { constructor(readyCallback) { this._readyCallback = readyCallback; this._proxy = null; let nodeInfo = Gio.DBusNodeInfo.new_for_xml(GameModeClientInterface); Gio.DBusProxy.new(Gio.DBus.session, Gio.DBusProxyFlags.DO_NOT_AUTO_START, nodeInfo.lookup_interface(GAMEMODE_DBUS_IFACE), GAMEMODE_DBUS_NAME, GAMEMODE_DBUS_PATH, GAMEMODE_DBUS_IFACE, null, this._onProxyReady.bind(this)); this.client_count = 0; } _onProxyReady(o, res) { try { this._proxy = Gio.DBusProxy.new_finish(res); } catch (e) { log('error creating GameMode proxy: %s'.format(e.message)); return; } this._propsChangedId = this._proxy.connect('g-properties-changed', this._onPropertiesChanged.bind(this)); if (this._readyCallback) this._readyCallback(this); this.client_count = this._proxy.ClientCount; if (this.client_count > 0) { this.emit('state-changed', true); this.emit('count-changed', this.client_count); } } _onPropertiesChanged(proxy, properties) { let unpacked = properties.deep_unpack(); if (!('ClientCount' in unpacked)) return; let before_n = this.client_count; let before_on = this.client_count > 0; this.client_count = this._proxy.ClientCount; let after_on = this.client_count > 0; if (before_on !== after_on) this.emit('state-changed', after_on); if (before_n !== this.client_count) this.emit('count-changed', this.client_count); } /* public methods */ close() { this.disconnectAll(); if (!this._proxy) return; this._proxy.disconnect(this._propsChangedId); this._proxy = null; } get clientCount () { return this._proxy ? this._proxy.ClientCount : 0; } registerGame(pid, callback) { this._proxy.RegisterGameRemote(pid, (res, err) => { if (err) { callback(-2, err); return; } let [status] = res; callback(status, null); }); } unregisterGame(pid, callback) { this._proxy.UnregisterGameRemote(pid, (res, err) => { if (err) { callback(-2, err); return; } let [status] = res; callback(status, null); }); } }; Signals.addSignalMethods(Client.prototype); gamemode-extension-4/data/000077500000000000000000000000001354240600700157215ustar00rootroot00000000000000gamemode-extension-4/data/settings.gschema.xml000066400000000000000000000020461354240600700217130ustar00rootroot00000000000000 true Notifications Emit notifications when the global GameMode status changes. false Always show the icon Display the icon even if GameMode is currently not active. false Active icon tint Tint the icon with a color when GameMode is active. "rgb(115,210,22)" Active icon tint The color to use tinting the icon. gamemode-extension-4/extension.js000066400000000000000000000216431354240600700173700ustar00rootroot00000000000000/* * Copyright © 2019 Red Hat, Inc * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . * * Authors: * Christian J. Kellner */ const Clutter = imports.gi.Clutter; const Gio = imports.gi.Gio; const GLib = imports.gi.GLib; const Gdk = imports.gi.Gdk; const GObject = imports.gi.GObject; const Lang = imports.lang; const Main = imports.ui.main; const MessageTray = imports.ui.messageTray; const PanelMenu = imports.ui.panelMenu; const PopupMenu = imports.ui.popupMenu; const Signals = imports.signals; const St = imports.gi.St; const Shell = imports.gi.Shell; const ExtensionUtils = imports.misc.extensionUtils; const Extension = imports.misc.extensionUtils.getCurrentExtension(); const Gettext = imports.gettext.domain(Extension.metadata['gettext-domain']); const _ = Gettext.gettext; const GameMode = Extension.imports.client; /* ui */ function getStatusText(is_on) { if (is_on) { return _("GameMode is active"); } return _("GameMode is off"); } var StatusMenuItem = GObject.registerClass( class StatusMenuItem extends PopupMenu.PopupBaseMenuItem { _init(client) { super._init(); this._client = client; this._label = new St.Label({text: (''), x_expand: true}); this.add_child(this._label); this._changedId = client.connect('state-changed', this._onStateChanged.bind(this)); this._onStateChanged(this._client, this._client.clientCount > 0); } destroy() { if (this._changedId) { this._client.disconnect(this._changedId); this._changedId = 0; } super.destroy(); } _onStateChanged(cli, is_on) { this._label.text = getStatusText(is_on); } }); var ClientCountMenuItem = GObject.registerClass( class ClientCountMenuItem extends PopupMenu.PopupBaseMenuItem { _init(client) { super._init(); this._client = client; this._status = new St.Label({text: '', x_expand: true}); this.add_child(this._status); this._changedId = client.connect('count-changed', this._onCountChanged.bind(this)); this._onCountChanged(this._client, this._client.clientCount); } destroy() { if (this._changedId) { this._client.disconnect(this._changedId); this._changedId = 0; } super.destroy(); } _onCountChanged(cli, count) { if (count === 0) { this._status.text = _("No active clients"); } else { this._status.text = Gettext.ngettext("%d active client", "%d active clients", count).format(count); } } }); /* main button */ var GameModeIndicator = GObject.registerClass( class GameModeIndicator extends PanelMenu.Button { _init() { super._init(0.0, 'GameMode'); this._settings = ExtensionUtils.getSettings(); this.connect('destroy', this._onDestroy.bind(this)); let box = new St.BoxLayout({style_class: 'panel-status-menu-box'}); let icon = new St.Icon({ icon_name: 'applications-games-symbolic', style_class: 'system-status-icon' }); this._icon = icon; box.add_child(icon); this.add_child(box); this._signals = []; /* react to settings changes */ this._connect(this._settings, 'changed::always-show-icon', this._sync.bind(this)); this._connect(this._settings, 'changed::active-tint', this._sync.bind(this)); this._connect(this._settings, 'changed::active-color', this._update_active_color.bind(this)); /* connect to GameMode */ this._client = new GameMode.Client(null); this._client.connect('state-changed', this._onStateChanged.bind(this)); /* react to session changes */ Main.sessionMode.connect('updated', this._sync.bind(this)); this._source = null; /* for the notification */ /* update the icon */ this._update_active_color(); /* calls this._sync() */ /* the menu */ this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); this.menu.addMenuItem(new StatusMenuItem(this._client)); this.menu.addMenuItem(new ClientCountMenuItem(this._client)); log('GameMode extension initialized'); } _connect(obj, signal, handler) { let id = obj.connect(signal, handler); this._signals.push([obj, id]); } _onDestroy() { log('Destroying GameMode extension'); for (var i = 0; i < this._signals.length; i++) { let [obj, id] = this._signals[i]; obj.disconnect(id); } this._signals = []; this._client.close(); } _ensureSource() { if (!this._source) { this._source = new MessageTray.Source('GameMode', 'application-games-symbolic'); this._source.connect('destroy', () => { this._source = null; }); Main.messageTray.add(this._source); } return this._source; } _notify(title, body) { if (this._notification) this._notification.destroy(); let source = this._ensureSource(); this._notification = new MessageTray.Notification(source, title, body); this._notification.setUrgency(MessageTray.Urgency.HIGH); this._notification.connect('destroy', () => { this._notification = null; }); this._source.notify(this._notification); } /* Update the icon according to the current state */ _sync() { let active = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter; let on = this._client.clientCount > 0; let alwaysShow = this._settings.get_boolean('always-show-icon'); let tintIcon = this._settings.get_boolean('active-tint'); if (this._icon.has_effects()) { this._icon.remove_effect_by_name('color'); } if (on && tintIcon) { this._icon.add_effect_with_name('color', this._color_effect); } this.visible = active && (alwaysShow || on); } _update_active_color() { let str = this._settings.get_string('active-color'); let rgba = new Gdk.RGBA(); rgba.parse(str); let color = new Clutter.Color({ red: rgba.red * 255, green: rgba.green * 255, blue: rgba.blue * 255, alpha: rgba.alpha * 255 }); this._color_effect = new Clutter.ColorizeEffect({tint: color}); /* sync the changes */ this._sync(); } /* GameMode.Client callbacks */ _onStateChanged(cli, is_on) { /* update the icon */ this._sync(); if (this._settings.get_boolean('emit-notifications')) { let status = getStatusText(is_on); if (is_on) this._notify(status, _("Computer performance is now optimized for playing games")); else this._notify(status, _("Computer performance is reset for normal usage")); } this._sync(); } }); /* entry points */ let indicator = null; function init() { ExtensionUtils.initTranslations(); } function enable() { if (indicator) return; indicator = new GameModeIndicator(); Main.panel.addToStatusArea('GameMode', indicator); } function disable() { if (!indicator) return; indicator.destroy(); indicator = null; } gamemode-extension-4/make-zip.sh000077500000000000000000000035641354240600700170740ustar00rootroot00000000000000#!/bin/sh set -e # Largely inspired by Florian Müllner gnome-shell-extensions/export-zips.sh for cmd in meson ninja jq; do if ! [ -x "$(command -v ${cmd})" ]; then echo "Need '${cmd}' command. Please install." >&2 exit 1 fi done builddir="build/" srcdir=`dirname $0` srcdir=`(cd $srcdir && pwd)` # create temp env builddir=`mktemp -p $srcdir -d _build.XXXXXX` || exit 1 installdir=`mktemp -p $srcdir -d _install.XXXXXX` || exit 1 # build the project meson setup --prefix=$installdir $srcdir $builddir ninja -C$builddir install # extract names from metadata.json uuid=`(jq -r .uuid "$builddir/metadata.json")` name=`(jq -r '."extension-id"' "$builddir/metadata.json")` schema=`(jq -r '."settings-schema"' "$builddir/metadata.json")` if [ -z "$uuid" ];then echo "Could not read UUID from metadata. Aborting." >&2 exit 1 fi zipname="$uuid.shell-extension.zip" rm -f "$srcdir/$zipname" extensiondir=$installdir/share/gnome-shell/extensions/$uuid schemadir=$installdir/share/glib-2.0/schemas localedir=$installdir/share/locale schema=$schemadir/$schema.gschema.xml mkdir $extensiondir/schemas cp $schema $extensiondir/schemas; glib-compile-schemas $extensiondir/schemas if [ -d $localedir ]; then cp -pr $localedir $extensiondir fi (cd $extensiondir && zip -rmq $srcdir/$zipname .) rm -rf $builddir rm -rf $installdir # optional arguments usage_error () { echo "usage: $0 [install]" exit 1 } install () { extensionhome="${HOME}/.local/share/gnome-shell/extensions" targetdir="${extensionhome}/${uuid}" # remove old stuff rm -rf ${targetdir} # unzip to the target mkdir -p "${extensionhome}" unzip "${srcdir}/${zipname}" -d "${targetdir}" echo "${name} installed to ${targetdir}" } if [ "$#" -ge 1 ]; then case "$1" in install) install ;; *) usage_error ;; esac fi gamemode-extension-4/meson.build000066400000000000000000000043611354240600700171560ustar00rootroot00000000000000project('gamemode-extension', version: '4', meson_version: '>= 0.46.0', license: 'LGPL-2.1' ) # our identity uuid = 'gamemode@christian.kellner.me' gettext_domain = meson.project_name() # imports gnome = import('gnome') i18n = import('i18n') # dirs srcdir = meson.source_root() prefix = get_option('prefix') datadir = get_option('datadir') shelldir = join_paths(datadir, 'gnome-shell') extensiondir = join_paths(shelldir, 'extensions') schemadir = join_paths(datadir, 'glib-2.0', 'schemas') installdir = join_paths(extensiondir, uuid) # dependencies js60 = find_program('js60', required: false) git = find_program('git', required: false) # optional git revision suffix gitrev = '' if git.found() gitres = run_command(git, ['--git-dir=@0@/.git'.format(srcdir), 'rev-parse', '--short=7', 'HEAD']) if gitres.returncode() == 0 gitrev = gitres.stdout().strip() endif endif full_version = meson.project_version() + '-' + gitrev # metdata.json configuration data conf = configuration_data() conf.set('UUID', uuid) conf.set('VERSION', full_version) conf.set('GETTEXT_DOMAIN', gettext_domain) conf.set('URL', 'https://github.com/gicmo/gamemode-extension') md = configure_file(input: 'metadata.json.in', output: 'metadata.json', configuration: conf) # installation sources = [ 'client.js', 'extension.js', 'prefs.js' ] install_data( sources + [md], install_dir: installdir) install_data( 'data/settings.gschema.xml', rename: 'org.gnome.shell.extensions.gamemode.gschema.xml', install_dir: schemadir) meson.add_install_script( 'scripts/post-install.sh', join_paths(prefix, schemadir)) # tests if (js60.found()) foreach src : sources fullpath = join_paths(srcdir, src) test('Syntax check for ' + '@0@'.format(src), js60, args: ['-s', '-c', fullpath]) endforeach endif #i18n subdir('po') run_target('fix-translations', command: ['scripts/fix_translations.py', join_paths(meson.source_root(), 'po')]) # all done. report. msg = ['', 'version: @0@'.format(meson.project_version()), 'git-rev: @0@'.format(gitrev), 'full-version: @0@'.format(full_version), '' ] message('\n '.join(msg)) gamemode-extension-4/metadata.json.in000066400000000000000000000005041354240600700200670ustar00rootroot00000000000000{ "extension-id": "gamemode", "name": "GameMode", "description": "Status indicator for GameMode", "uuid": "@UUID@", "shell-version": ["3.34"], "version": "@VERSION@", "original-author": "ckellner@redhat.com", "settings-schema": "org.gnome.shell.extensions.gamemode", "gettext-domain": "@GETTEXT_DOMAIN@" } gamemode-extension-4/package.json000066400000000000000000000002451354240600700172770ustar00rootroot00000000000000{ "name": "GameMode", "description": "GameMode eslint check", "devDependencies": { "eslint": "^5.16.0" }, "scripts": { "lint": "eslint *.js" } } gamemode-extension-4/po/000077500000000000000000000000001354240600700154265ustar00rootroot00000000000000gamemode-extension-4/po/LINGUAS000066400000000000000000000000061354240600700164470ustar00rootroot00000000000000de fr gamemode-extension-4/po/POTFILES.in000066400000000000000000000000471354240600700172040ustar00rootroot00000000000000extension.js data/settings.gschema.xml gamemode-extension-4/po/de.po000066400000000000000000000035631354240600700163650ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the gamemode-extension package. # FIRST AUTHOR , YEAR. # # Translators: # Christian Kellner , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: gamemode-extension\n" "Report-Msgid-Bugs-To: \n" "Language-Team: German (https://www.transifex.com/GameMode/teams/100322/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #, javascript-format msgid "%d active client" msgid_plural "%d active clients" msgstr[0] "%d aktiver Client" msgstr[1] "%d aktive Clients" msgid "Active icon tint" msgstr "Symbol Einfärbung " msgid "Always show the icon" msgstr "Benachrichtigungen wenn sich der globale GameMode Status ändert." msgid "Computer performance is now optimized for playing games" msgstr "Die Leistung des Computers ist jetzt für Spiele optimiert." msgid "Computer performance is reset for normal usage" msgstr "Die Leistung des Computers ist für normalen Betrieb optimiert." msgid "Display the icon even if GameMode is currently not active." msgstr "Das Symbol ist auch sichtbar wenn GameMode gerade nicht aktiviert ist." msgid "Emit notifications when the global GameMode status changes." msgstr "Benachrichtigungen wenn sich der globale GameMode Status ändert." msgid "GameMode is active" msgstr "GameMode ist aktiv" msgid "GameMode is off" msgstr "GameMode ist aus" msgid "No active clients" msgstr "Keine aktiven Clients" msgid "Notifications" msgstr "Benachrichtigung" msgid "The color to use tinting the icon." msgstr "Die Farbe mit der das Symbol eingefärbt werden soll." msgid "Tint the icon with a color when GameMode is active." msgstr "Einfärben des Symbols wenn GameMode aktiv ist." gamemode-extension-4/po/fr.po000066400000000000000000000036421354240600700164020ustar00rootroot00000000000000# French translation for the gamemode's extension. # Copyright (C) 2019 # This file is distributed under the same license as the gamemode-extension package. # Christian Kellner , 2019. # # Translators: # Mathieu Heurtevin , 2019 # msgid "" msgstr "" "Project-Id-Version: gamemode-extension\n" "Report-Msgid-Bugs-To: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "POT-Creation-Date: \n" "PO-Revision-Date: \n" "Last-Translator: Mathieu Heurtevin \n" "X-Generator: Poedit 2.2.1\n" #, javascript-format msgid "%d active client" msgid_plural "%d active clients" msgstr[0] "%d client actif" msgstr[1] "%d clients actifs" msgid "Active icon tint" msgstr "Teinte d'icône active" msgid "Always show the icon" msgstr "Toujours afficher l'icône" msgid "Computer performance is now optimized for playing games" msgstr "Les performances de l'ordinateur sont maintenant optimisées pour vos jeux" msgid "Computer performance is reset for normal usage" msgstr "Les performances de l'ordinateur ont été remis à leurs valeurs normales" msgid "Display the icon even if GameMode is currently not active." msgstr "Afficher l'icône même si le GameMode est éteint." msgid "Emit notifications when the global GameMode status changes." msgstr "Émettre des notifications quand le statut du GameMode change." msgid "GameMode is active" msgstr "GameMode est actif" msgid "GameMode is off" msgstr "GameMode est éteint" msgid "No active clients" msgstr "Aucun client actif" msgid "Notifications" msgstr "Notifications" msgid "The color to use tinting the icon." msgstr "La couleur utilisé pour teinter l'icône." msgid "Tint the icon with a color when GameMode is active." msgstr "Teinte l'icône d'une couleur quand le GameMode est actif." gamemode-extension-4/po/meson.build000066400000000000000000000000551354240600700175700ustar00rootroot00000000000000i18n.gettext(gettext_domain, preset: 'glib') gamemode-extension-4/prefs.js000066400000000000000000000065531354240600700164760ustar00rootroot00000000000000const GObject = imports.gi.GObject; const Gtk = imports.gi.Gtk; const Gdk = imports.gi.Gdk; const Lang = imports.lang; const Gio = imports.gi.Gio; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); var GameModeSettings = GObject.registerClass(class GameModePrefWidget extends Gtk.ListBox { _init(params) { super._init(params); this.selection_mode = Gtk.SelectionMode.NONE; this.margin = 24; this._settings = ExtensionUtils.getSettings(); this._blocked = []; this.add(this.make_row_switch('emit-notifications')); this.add(this.make_row_switch('always-show-icon')); this.add(this.make_row_switch('active-tint', 'active-color')); } make_row_switch(name, color) { let schema = this._settings.settings_schema; let row = new Gtk.ListBoxRow (); let hbox = new Gtk.Box({ orientation: Gtk.Orientation.HORIZONTAL, margin: 12, }); row.add(hbox); let vbox = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL}); hbox.pack_start(vbox, true, true, 6); let sw = new Gtk.Switch({valign: Gtk.Align.CENTER}); if (color) { let button = new Gtk.ColorButton({use_alpha: true}); button.connect('notify::rgba', (widget, param) => { let rgba = widget.get_rgba(); let css = rgba.to_string(); let idx = this._blocked.push(color); this._settings.set_string(color, css); this._blocked.splice(idx); }); this._update_color_from_setting(button, color); this._settings.connect(`changed::${color}`, () => { this._update_color_from_setting(button, color); }); hbox.pack_start(button, false, false, 6); sw.bind_property('active', button, 'sensitive', GObject.BindingFlags.SYNC_CREATE); let ckey = schema.get_key(color); button.set_tooltip_markup(ckey.get_description()); } hbox.pack_start(sw, false, false, 0); let key = schema.get_key(name); let summary = new Gtk.Label({ label: `${key.get_summary()}`, hexpand: true, halign: Gtk.Align.START, use_markup: true }); vbox.pack_start(summary, false, false, 0); let description = new Gtk.Label({ label: `${key.get_description()}`, hexpand: true, halign: Gtk.Align.START, use_markup: true }); description.get_style_context().add_class('dim-label'); vbox.pack_start(description, false, false, 0); this._settings.bind(name, sw, 'active', Gio.SettingsBindFlags.DEFAULT); return row; } _update_color_from_setting(widget, name) { let idx = this._blocked.indexOf(name); if (idx !== -1) return; let str = this._settings.get_string(name); let rgba = new Gdk.RGBA(); rgba.parse(str); widget.set_rgba(rgba); } }); function init() { ExtensionUtils.initTranslations(); } function buildPrefsWidget() { let widget = new GameModeSettings(); widget.show_all(); return widget; } gamemode-extension-4/screenshots/000077500000000000000000000000001354240600700173505ustar00rootroot00000000000000gamemode-extension-4/screenshots/gamemode-off.png000066400000000000000000000356561354240600700224230ustar00rootroot00000000000000PNG  IHDR6 Q %zTXtRaw profile type exifxڭ[+ D / gwۚc',ETTI _<4yX^k=vzxH}28iݯt}<|+ݕ{qyy 5l$cKt'IZ)s|Jbq> 3.O:~/>'~U=.xZ^H}~~xr_DSYHW}+JmWnyE##Yt9n5S3֒|@-G-J &%k/w=k+UL;osi.50ឧU"W. ˓F=ȇ[94W BlMDc5e %]RsJp޵V(& r.Ro PRɥZTs-VW%VY3R˭ڬ死:%xuhϝ:w4(m<ˬf>ҕV]շl.nmt);_QO3jFMuAa_Sȕr11vz1Mr֋,RQvY.8K.b h9-7rB@.\ܟq j?rnS2Q~JOnѣ!}n!%/GUl%92\\4f'b…5.:<^[+}֚NB*mS`(c&'g5={YQJ;ޤL4pQ'P /MZJn: ċPbc–eyM䫕2,qMN 9xLB}YĮq-ty4eCwm_cG`gJ&:>0;*uMJA}ZSNMۙ-ϒz :aS\a(ܚK{x?e~(z醌~v\h|:/xFxnNIRg|'3%{1Q]xIVO> !ZV&;7%I /?evi4hn>n(N:eL3JHfJcH|X)C"90l>'AAlsgXOZGB ` DRj&Rz=R"N#%sŴ]n6F a bi!][JU,΍FA7'H..NkR) F`wg}Lخ^3rEʆڶańc c7r+c͜9Mn]ao`>B˔]DI œȏ'L2>;Iҁ(s8jG:@K7\7Y;{Ls,d՜ĢѮᴲ+dq +`8𛩩 YV 35.6=,4!WT,,gDc9cۋİ \*n,pMƹb5S j{ХW(sC;8-@vֺ7zgrR1HL!zrԇ| <'zݺwo|(V&b#ۉ& Cq 旟'<'N6Q(}#n "%W@яTL \٥n_GAPyNevV Jdk CkR^&B>\2M"\qE9cf:W2i;6y;0LvBvh [QEۿ5HrybKGD pHYs.#.#x?vtIME ;r3ў IDATx}wT.tQ RA X(-vZb%XPT&DQ$(QQHUPDjEee>}?qg=wŰ\_V>cDf2η"3)r"-? 3dQ_7[+sҟ9%yꆚrfpne HH}W-w33e9E3ȽR5^~W~,"KgD/6-nY6xQ뒣Cb7!|S̆3] qp;QQO6&o2HtEY[y`#s'L%{/) {?,0gb@3+[ 16 k"R9YfQ$t ;+љ '>S2Ea(apVP4/Uk*3ER!@%)IQ۶q9DD8 qr2ITGYRX8jrzWʷ*O,΄ 3F>95-\|W :QQ ũR`UY,Vf}D# u|*nTn+ViJN{`*_;j5qrn#Lc*xdi\a4`po^Rj|#yv̜m3g)"D9K L,AzDqYH]*n"Q }fŝY(b^])ݓ[λP]X5SS ߓcFD36CKO'tS!CC/[8vragw>!HS)g&'`_!:kÜCNjEXP;I%;la1-kC@s\n/Jd-j7"O-{ S'9K ɑ7njٮzqMRR!بE@\ |Nfs9"{t3 4KͯM5eR"X,1PvmPcSJ['ЧmG[@480|8Ql q!xYٜZaͿIf}s`P%gHgHȗl2fN 邉SN]2列98i<"Q0dÇ${nQH{|uJQ ;uS%KrOL(Q؄ndHbe];۝8geK-A:^9Vc|,5y^ -e+K(ʈT м9eY` U!jvCꊚ1DhTl  k qb_IǪgb wލIYntywDZqt"c9/h$Ӫy4#BWL ikH[ z6mQ|gq-u?ٛ+xuZcڢU(JS/Uz%%hҤ1ڻ5ڟƺ`Cya"!"u.X{qY<~>_ǔQ=yuŧB5 p#YoOFdz5583rcd- 򫍲{bzf,^0X)cha$BR"RtdZ9;8\ӺC,Wc}s.@uMI(W~GW]=MûGŗΝ;*j!܉DA[DqƱ!mVRڵ7aUشis(-|$Y4b(~sṡL߳T&=}` z8ο` jq,$Uki邢#B~*o(ݻ֙`[cuV!mdڞ;_y.'^-p1+sqFAZ]1TRoaLp[QyZ7\u)ewx~Ř6}kj_\9 Î֫auuQDbtm'JKKЫǡ04i$)`˃iQAzB(;xqe){7p XOeK/Duu5n}]NH1QDW*dH=.NWnt>Xǃ· 2Ŋ.άy jҳ\ IXv_!CI1:w hïg|(oѢPOȐ6MS,k2td -%ն/0w܉+w[űW_}9só7VSoPZS8gSlJ"fȇQJȉ:(oYvCii=T`ÆJTVnQ[[ڟkA ~i)5l-кeKӶ@˖-x'9,up ,^1ke\}kg#s潋>^w,‘Ļ >@] 9S"tRn]"X,յK'-[~[" *קקZ};㴡aBG0JF~ kUkBnsafIŰuat&`'ܷ Av}2xxgګwKhР4hΝ﮾oO'N<8G}!8PFx :MYJR9ӟȾ:/:\޵r#3ߙO,a˖Su iF:è[uX3=k_16Um6"uXR R(S>W_yISX^= z/OIsTYqkjvHVZ]m_όzPa Gc'oETp$8eeͰa1e:F<__:7.;Sٻ'o1m.)nʗ'E@aݽvYh̟L^H5ZF\ HD y2 <~> /MvF 5jmlTu8OO{b}߮sUA䂈UUcQJ2mێO>')kG(/o0 j7[!*+7bCe%[@nhؠ%Ap0Taw?_(z;S1m, 8q(k.{P~)sޭh m.KG?n}#ڴi(Jcv텒xve t,o/-dƔN"B6Ѳ*7nBTLs$I1RJ^#$A&E(? Q$AEBM%L\{,2g i <beXtM(kҤ1:TAsek|b f/fXsA YK3;,(>Q)UXS-@t䵑+/)G|`!:InʣN-CG3LʢූBX'CCŎΐbҟ_֜,iQrŌR2`@#ܯݾ)]}1nPǡo2̨5g ZuFb8=fȟ30YkXV.YFCZj߳oѥsY@rˤ+7nhP}O +L+3FKTװSCb0Ϝ4E(*gLzŰ$(Xmm-& kTTtr:q!|؈~{xD:uѹ;>jd5h}EAt"U ^txhMؘF֋Vv<=YSS0Kǂ&(H-[PX1N{׮]y7\-.㏍ǽLߞ}UUȣO`£OaROg1oߞ}+V~.,9iɱjE@J$ Wzc ?<8_wP#JYWvV`/C"p+1los~}XW [GCyy#>ti z3YЀI:1~6b9uFz *bX0ߟ9b~z'y⅗^KUAmIDATɘ7Ν:$dFV)Y=#Ez?m(*}~=jd\0zNjkيqULsHD&`?yoxsj.**¨k< (5̲/>8;J,-<̙e{Ȅ;$zqyY0hhԨ!5j;/}ޫWh.)Ox,Nǐ.Eqq;oPJrl~q}xh8;wbc0u̼4y"PS`:QI y֢)^߽lz8m׺(uX81TH`AR(+n5[$97aϚvm/qUHJKKrOW:Ͽ?t:- ]' UFƀ5Nb+䤂xYH-V{_Nž7 xhܸy݂?IJe+)e;նya=f3ǪV=8'h9t0ExfUQru)L8 /* 5? WR: |Wޭ۷.3ĚKi`O#hX2?qbs`;4$`ǚXI*\[l'*̾0$"fڙ#c_Xc&<6 o57e-Q/q$T& dxP٪W35Z+Nm+Ţq 50YO> 3ni)Q7JF̌?=WCu/ɶh:tm6lX["O޳)D:/$"±X.lц*:+|*X^ȱ kq љ 0#J~}^0:π?0fkrpl9"n> QI~CDV-qI'CAc1_ V},]z߮μ.++vli9`$cه !N1ex#-J1`f26d0"Cg~+^|FﵠE+X##M4 )fPc'$9y[x4ш3"ʃ,E!vL; 1*/H7,?+o/,-jG'im"liEdh1Z"8bk^dq⊸) }JDn ~7#B͗~!M۶mǶm1uLvօ`Q >wb$'ؽ/S$[wo56hFB1Zl12ڨX>.sP9X jc^jKC:p6hɏEȍ5Pd,ar'g0RI>$BVn 3[6 > 6(^f8β$zQdMs>3^;qfSQ׮?n3 6Yz5"Eq& a7gDmgFd9sK~ |Sil~VxŠ"qC[ cI&5sv>h6XKLu(\Xx8.!(O`6nϕ:!- 'B!" uhLƍ 12lڈQ'$08JoZ06v$o\@)W+/5dr~*a\V4fcL9ݥݩ6U.5h_}ld }Ú m` :6;(G* v:Aj+/?qQz4z Ss8T1,O]0uxCr$n0ts~W@B39+s[eI!pûT̈-HFyIЄ%YN]c*B!8fD=L2sWtֳafrA֑qf@ ABE^6+Dt~f!EF]Dܳ\e8HNKǮbY琲D]®8aL֦YAY,a` F /&BQC,Dɬ®cnR u"Zsb*K* $(\ԧ,O(Um/Pc']xU)2IPLz(0IPHs{YHF2(ueąapkGR [K 2Y{"BqJŖBBx.\$( cʒ;ju 0 4V%b"S˭1lz#+UFTg'D DQkT#fykq|:՗ڐ]A3cS9EVp ?Y1,A2OTpfFFH`3l**J!E)s|+#G pTkt*{hmjG%SAp %?,уq&5A+J N\dYYMVf-Юhk+.NJ$3[3*D$CAg-Hf'*s[F[$N:;?cQ$+SHy9^D(N'*?/Ѷ1+H ȜC0o^]@(VƄ41 4BkYKY7Ʀ "Hg-IK5' g\ 튑:ѓYI/9 #H6vuhw[KŸ(r˂FIɄb EuCST*l9٤#Z1JSAcq7fmWYnZ/N؆)uȥ~RHljln׮:}9 Wo8&G BkB7>R Sc%{NҴ9݇RyuRU ]dS^ul +C |ktRr"EA> g7Le,Xf{汚鎮ɖD3qvdḍ yv^wNVwcb$ `-9KNtZٔ W8 "tj}NE♡%\ (+Ig%t^oc` JaC.kfw΋Ģi\0hpjA32dG"wJSØ ̈Ubp(jvc\j;5ҴZo.ts!ؘQG}1'2Yk22UkiNJUkmy®Ǟ*yqͻ9詧~ƙQwF-?@y5[Dv3%x@|1=/r8D.b Xv+@W䇡|#Wj`(k0YwcVG6f!gأ;mKyW'ScǪ=U7ɪ6 '^Kk8D+Úd5[ሀk֝O;"gl:EJ`{K-ގȧo^DPeq;-[NP#P[YP#Sa4Oellw {4?@mG:ҘdޚNd!b֚0vVj.lQmFt45pqLK i:RZc<W-SwuWhcjxo5@~!.z,dP.[S,d6Kuh&,,jG|g-Up#Jl^&&K9t,)ܟ\mϵ R4"mMt (;Bx ᕀSƺV~q Yλمv9ǖa6!Q%wsau @ls6;6F[:Vd2Y^+ZÄI$<tC+G6VjE(&[{(ɾg9r䲐պ;O4g$67by܌o@Q„ v/{kt}pa*"8$#;SR4T8W>jh%S p]{HkJSBj>Q%kϤ,Cz[82f1g5]JG|@ LM\ha''Om?Tr-dLvN}1d^o_6s@V6qmji{?qnl&P$VZtjY(V.Y0ܦg+KG!dW2l- 464 U%XhxjgBPǾ x<#I)Hy8hTށI*S14♊J0RVnX꜌QevBg`m;t o;- 99k-ۮ_@0H I0vL$L59ZFȝBJ.xpo[P(ڗϋ59rJ#a9Fܪצ68C5:}>2Ҹ Cb!JnDB-L`VHn*,OH NW!F1EJEW=N{U~+#:nFK[|LۑJa?宕ˣ(u`wzr׀ m0]XE֎4~IbtAk)ۿ5HrybKGD pHYs.#.#x?vtIME ; IDATx]y]XeY9E *" I#яD8U0*ğ1yE/KsxF{ej$م8{+RaaS/X 4z‚`sJ6&;et%$gaڳ*^V SorȢH'BBdQ]s aOM 0! .^$cn1)393ƈɇj[Ha=Ezͮz % *+) 3 }oIhCQZ?JJHRlջl̂cF 6vEbqMHRD|& s5st jxN1$!V|y7/[ garhJb'i&f|mѿ ;,ӲmD-Sev6)2*")9f{ŵ$ʽH֝efOJI.0q,bilu3BFqq uV% -_:ۨ6N' #v "S+BMD00|u qR9 R~|\Q(Byc#Fi.&y27&-%ΎA20#H℠l)0.šfsWh8V:7Z! sgkzeX1 Poݷ$7vFGJ3]Cӗ!!# KR}}KIุ2h+5PHdD'v._3ڭs %3Ru< ڑ1 9r*j  ehBCd {ZJf%TEV[yN)M)Ȗ{BOL $[xE4HV~0"Ggfʴ>:hu˄|@WM:2&N$YYD働CL#@mNkшHCLw8Cv١>طcov IgOxA$5JrAܶDnqXM쌔xTJz`1T#zf  6R鲆Ztyҳ9$K йsXvfLAD$6|xof}vT_IeJP#.lD_!;,2rPpQXbU~?ӴJb=%Cgt EM KN}[ ݻ'Kg%zd;S@I3bot8`Xdf$ |bqft<; K+@3"Tyn'{@_~Ԗ~ճ;v=9FO=|[^c <Ţ0H6#AHϋLFrj-=CX7Μ (e%͆ !7% (MJ/H|SEmMtP2z/^DF+>VԶ@Vd,9O/=wk3嶚0A`1or&Se?94li?0ҰѤhΆRltB). ) З! ( h|t s?y۷o…obmꉅg|Pڌ4)$9{F~ 6Gj5MpÏ֧id 5 ԣƄVHɯ*rX]g }f 'VF/ #˹NˠafTV)"uCDD"ieZc;v a3;?ߌ֯TBEz>ɫx\ iN48 Vh՟ #`1q\ȯ#)EE8oHgʄoytZ6#svQᢏ+Qm#Θpρr@&% ᷒ØIbxkf-T9.:"D"0'S0X` A-cGQW# xՅk꽨^҂v 9]… 0ԑʾFhVMаa!7'BEy_~Eb8t!$}!g2F̥c^t;ɸ?] X{~-5ᏺ/.9O,{W ?j{L}!-V37gtN4TCF  vDoT R?++dpqN:x1t9˱y6+B,CAtfwEñ_=z,cfAȭz۬YSth͐ldgAh٢9#GO?c]8x9x>`6uŗ^.{ygr0ނXg~9pacͪ`n<^-/P`б'c_4;Ӻ:e,2H,T5ޞ _e(6O!Û "B4+kfl i0{]e/OaPVVn$999wq٣uM^ݱ`#OףS_eU3YkإБN<7hР~[WDѶMkmEغu;PΤW?/FF4O gṗ1ӻ:g[jp>AEV^Rm8$X?ˌ`;w_}?~/4ꑫ_M؄iB%j-? !ΌX\s#/3: :*3fbo/ŒoܺzܜIeػw8RY "Bnn.A^h֬ OʚnӺ 'ZPk)l~1C];aXbwVY3Kjͺaؾsc!Ͽ?/6>bᑁ>N*w;jɊ`aS,lT>gǩCttk22OEr%gtDƬIzFC򰛼()y1&:{-2l`Zc\.]N@^^]ʼn]:c̍1tȹ߀IwL7V$;&S }%徢"Cr| #eee(--=ذsr?z^:u]~*O['M=aX8gggdTּxfԯW=րu ?^}f@YY9哜ĪG5kD 6s]KNq!TcUXa,j:{>C.b꣤*?Ήͯx`VTFE E31y0ˍ`yٯC=wCl&M0伳?Y)+ r`̟g5aqMtٻx}ᛸߡi}}O6?6CY>CK᳍BƍpF~8k@?t ѴiS03h?m+Vڵb߾"[vI[FTpmPԛ&? Ē`Zr7n>/Zl qiG$| 3h`\8ϔH ) Ή2_G$-pxòdHdTbU4'dꤪ2xUBvC)Mbb:m3!fH%Y(GO2ePi Īdb݇2ԯW>ǟ <:@~&g1|Fhâ*jXx ]q$Q#''^|!F {zM&=p԰AO / GXߝ9 k~K/y뚭I 6sfDԑO?{QN5 հIWs dWs ylA kN~2b3Iy]4iDɖ-\JQ9&I NaҭCvsp<,.b-2D䆨$JˑQŶˍhJ{UI3য়~o߾m` h׾5Ywh;ޘn8Z<|-F܂R\{+++Xb%6~n]`qB8zh7JY-k8s'pYZM 7ϯ6 $(,8t`~sJ ?3S?Og͝5u u4&R9u]v+W!vb|6EeuиCO 9W`唭8$0pgm:EF(bNL_Y:nf%q; ; Z%W"7˚ |ǝV$Ad;{Lݻu=Ğ?bɲw0Ṙ>ur1֤IDzBq/5+P~^ Z&c,`)--Äw+: K icUhuJ4U hoŰ0EH&-E ?w-{~vA fE,48}sJu+i'[-YNPHEx-#/Qjzynh7|yam]hվ{aa;vs-\ˉ9l\7W 㚿\ˉAF 8xlٺ +Vƫ/¨1{X~KLK<.bYUB^5ALygc`XR, H#~R-Tgs;P Я%1\:J!6 Zm\SLOwqN$/2;G&Ǽ1.>ul{SZ0֬%`W_+sD!Y/HF}M.p[9f:uТEs 8̸kV.ÆsG#PM0XHUAvօ%%F4Ht;LCDo@=H1ظqE+Mnrbt~O~&7g,sYiIMkRlٲ I' ۗЮiRy};(,lf|n*j,lJܴtbX+bN1ʭyrɄ͞iE@N n[ᵹcqӅ}qj׶hW;w HXdCȷ  1$EK#G\[o"B?q̘0nOf4z4ǢEd2v.,z߷*oK(_t4R-N ?Ӻ --1)=.85RTM%2:duM_*7c)_uɣF-`CaInF_UHBuZ53OA,].F\p>gSpe_’e`3̡C0aT,{{9_ ]CKa#DԝIzqvOv]gĜ}1SFC"ߏqp钥eVUM̃vLx{khܸpN,IJKKxe2)vDGX Th/D0eLMPm++0b2㵚OPP 1=;.+"7r#CzԊZaEpI)Gi:f=6!Qṗ3ϣx~<2g> MZK/=fLC`dO?<~]1&V]<Tdx1安pF:k?7;v d5xq]+g1JKp~(hj< 6l؈ck$[/xH : vmxR\]aY50ю=Ӳ\o^#ظyh&BBH iRZ Vf^PN)F]mzS>;e{ = he.{3C;!;(i 92Z0g`ǢŶo$)wNE/c!"Kbz:̚77]3Y[l_!~z_^Zhaİ8gbEg?:?^e7?>KXʈs ܂IXxz-׳"Ӕ ]Mr ǡ[W`V$- RIDATZvvԲؤ,!s4'cn"؅T 4,dGu>/f7]'oCm?< os0kA %$ #SX0VzFr_P]1N 49!H*6YkؤBx>[aǬ%S?la>ɩn%(dz Ql#&ig3R]FUEyqT|{cf)a+ρ"T)cM3}$X&܊s>Y>Im̌}fƖ-neZˀ "╺m&hllBYVab$=*DdY ej>wOPk&Uc;OdPzG{IwvܷRĨ5f؜.4I0Uݸq,B]ZBx[=sqf-&t9WZ8p ?*D[AbOCFJ)ܗ}{0xE8tPhwk20Mߑ̙#HR][m0ÒZ̈o@Fz/ꂑ}YO ^᎑!RͻdX)/exl=q';V$_'eYm֘ח4q=?7q"dy8:v5ve.(^ 7ֲ[0:'%E[)k+nzDUjD*Z' <ʎkH""cfw숇u8;r""1:):/SK@| _BeO,(seY_^gE{B&FXGD~P HO޳+_jG*41$f^וQ ;{SEQ[cHj,Kǩ(g;ǭ՘]BW[.x^ 1.]l[…l ʊnH:I*.HH[i i*Hn#@T@9HGE5)A)JO N\cO$(>Oۉu~0ƈS("rfv20VuZ6ЇTUw! Xsgr{ GQ@=W-ܸ$S謨eHa9,A퐴L$0=&ড^%jÒMPBe}6p@p@4X$"%A yڱw=wzN54zmm9u×TR+jv 똤j :Qʼn@7f숾sX-K8<{/IGo %S(}^ġ`m8y `cYB(8…U@N)iě =F4)շHch?RM5B2)MI}G2`@l W4 RCft<(&ٕ}N:BЊ qf.!O0\]T*-@  ;傌]vh{EBEے%RgmhLQX2ST2#kniB/8cd#;) &SA:tOI*}ȗ>]R%_^`# l>st(!3% vG2GdDddqTI~S?K,O P$!o%XlbbvhdBTf`wAz&gDjBrF ~ՂZi 8Jn'2Iqvt@YIFFh SZZ喭vDG~VīXgXq0 ӘZV$aӵ1L76uHyO(2fe;hLSka,LW$kLHl Zoqbk(?ԑowJ:|^ƫ\Cة\D{Hk>[C2 Y57Ӿ$`Sd'XY򍓹ZKR ""Ә:In,^fU-EH. If<ܚT3-F0_ỷ8ÿ8)O#I;4hHDAmwȕìT!`͙W$0ja%aEzM#edOL獒8kUe&%>s q=ߛ@?`x q,B oBw ks/3 ox )N.}:^o?%č[p/ssV=g?Vc6+?2?IK4q-qN7b^>c5IqC~Vfa:wt?nVr\9>|>ӟ2wNƊyy,PH;Ϙ_g/?%6t\Y`1Hspi|粞" dfsı}~LYB&9|{Oqx!F)"Y1J uB)JC9KNJ,RJ-jZj[ƒiV[ks;cu~GyQG}R>34,6+, ʪݦvi]vmCpI'rifՏYg=ot]yKy NrF|td(Wlu1zeN9-f12ܽey3Do˜Q?2gwop.$ d`WF>ص0~d4w?6oͿi㏧4H]!㱹RݑK=W\2Ηv}rMZ yzj{F1rQ&щW)̚fpv g>>;ľ̦ӯIu"BV20RthiGڥv}`v=}R4Ű9yh6wc5dUUkF]Qz{3w.ͳ%ÍDVJ+,*2se6Ok!t[emY KQm" s1aYW :hK+ ?9chPi[iQ6Eiɭ໢.ꠐy\-Ӄ)u:h!]ՈE{#uՙS53v*͸5VCB$ 3(p;z݊{Rr&3IDdBP Vި`'F[햴{_P{R:% HzmW:CyІO^)d2.Е<}Z. 96GTI |W3A+|O-7H$p*& g7@0*ܡh^K cY3)47W'3% f gA1PC k2jjngBv-[)p@;˘*G8CSlLj;G#ADp3("صimB-ŞU &[ؤa*d @}X" ȆHXipnobEѣ!Y#0E=qwYO46@=kp/CC"v f'D6͞"0f<O.5V:Zm5苃@fTre5~.T:ZD %]/$r1&|HWégS(xBL_BUv:6S3*}T<&שudT1ߟ& {?7ByXL7Լ{Sg[ٵرryEXgC0|H9ukGl,P ڀ4 &NOWir']Ze6B0Ibgt8=EANkQ{)Ako19I#13]8%t鵒C&ӎPZE<(?tt1:j`EKkO F;c3ɀt mA᯺È>J0QdH, Ir`WoayTۉ-wƝQȂg2j|y)^-4w?hZD(kV^^5a'>w;"k,6j)r~6bГDmQ=yGo($v!Oq"dB#"vq'fH^]Ĺ3U J_ SzP62yż6ܗ[f] \^~IӰd)vt]~31M&aym> ݴWr_7a\ӳhhDχAکq2wZ&&8($25Y+8 e42;x&T& a<|BjPzٌ֠ hЯhk T8op HP=( F8 (.*{hcǍJJX^0$Ux̟Fbj򡂧aJ33ԆgCjJA 2AFY3@DRީv!9I@eB22pg%Ԯ#E. N 3iw㲰r2&1%A񁺿ݱ` ȑO,Hv7BNF M/,O=jk-+څBlXNJ\SVRH[󥙏3%WED? ۷d1PO3 4@-drGgᘧ12 7}Uw]rCڞBt>\bWv$uMQ&©*پL$*KH#r1/Y}C+n%.|y~zf+F%v?F; zJF1Cu;P LvR_A"YQ  ;o0 .B*> ,EI`z%mEUiܛs?=ܗػ˨usN~4[wѳ>4B'al*s*6MBAG[rPڑ&,DJk] ,Bu7S%wjCH;u9RꅨRf풨!9Vr1\]D!t76*NrjȪW)KA)vaٻpM!ޓg_AR͙Zf$GlHT4D"" iacV5FH t]xie z64n$Cyt$Sꐩ6vh@D0c> մ\BA?TTfЮe } d/V\l.Bs?hD =`BXPwJP$kL;uڞ-A7)4[$ <D<1?w)|BoȽqTDͲ; ]dB]ߠ@Rwސ[%;+4_(BJ-k9z;d*y|iԉzAaP7^7[='hUGT&lR}_KRD[qk֖ <@:NmT="SܯA{=r\ \=4,f %Y5(ƮTB4OFvr /{ ݃&~tZBZ.8A).}1`ӗ cB#1JeP8~cLMٰM$M=3 hM6i(&,i?ٳ @vAOk3\ue(%^hϗW߿bixsO-Ś#{3LiF%^ͯN@;hie[zJx2=7}˯d~x^*ʌXktx_]o^_| yZaףo6@~]Oza{jH*rWo.ʥzzRxo=nw"7Nj?]UdڹAoTJqkVAʲ/ш3X=鷾1N^閃AߧY 6M2A[Q$reƲzY2QF&0~Kċ|(@@w_w':}<|;OD\O2S4| YD,"_b~1?׀Ek@"5 g| Hg""; ԪmfH ;}#5-+IWgS~#6*@.УiCCPICC profilex}=H@_["U;NDE EjVL.4$).kŪ "%/)=jfjDŽtfE } $f곢wQ}ѩdM:Ԧs'tAG.q;a## & x8.+82ߓ0ՖNsq,`"(cEXҪb"I1%k(AwfnbM ŀ@bǶ];'镆9&;@.#hs9)no}>)*q#y^xw{sox rWn+bKGD pHYs.#.#x?vtIME&7 IDATxw|uMHB衆Ѓ{N<˝#NEήbJo (KB`CHHYYH]R6z>0g&;߯AGH ~"\Dp '5OfJpz3 ֭dZ+Mvv֭[m۶Qj+CN_IIIٳ_~ھ};E,=@l6]~:ԦMI7O?U~~Q?_xzjqvmA$..N/Zl鳼sܹFo])))gLMJ\d vFDDC_޵P-fPbl.RTT|(33SVFFnw9Gͦw}W5v؀ b04i$9ҏP\+5k7v~J۟wޑC$s ͘1c4~xy<)py抎h,bbQHHbbb$IJKKӞ={:lذ 5Ijݺ.R} s=9rd۷o6m>&&F:tPωaډnE;)Pbcc-S#lR:ּysy睊TTT&N8 sVrrz쩘rX,5iDS޽ .O?T^x.B͚5gݰa͵4jԨ ۭ^ZWw!Iڼyrrr|ڴk׎g5G5`ݛBױX ?oFBӘjUbbzjodd.]b乷h:x<g]ez &k6cǎرcr~zur8C9CX(POZp8d0$͛7bס͛7ȑ# $k˖-4nݺj>//ORzzUPPwff)88XCѥ'..NQQQZfM=*Z3^^[':Ak˭ު-ܢŋkΝr:>Zft:<+c'?5,))evk̙:wTyڕ뮻N]v<̙l sٳgNvQ\*##CTnZ>mv Pr-{{ŢnIԣGRWe=Z`?~l>6}j߾KꡇRVV)gɀzJV;C\s)nWF}j̙ZhO֪U+I'Op#koF[}"\jPYc,'d_jvdM2EsO@ܠU`@_-ZM6ÒH%$$h:O)#\ `mڴzFEEyʚQ6 :`mժU={v@c}"\jPY=NO-Ҏ;j*^ZPffѣG{o-ZhuzJN>l!zJJRRR&M38>[DDg|.| СCO'Ԑ>|~5py~-[Ttt)Cȑ#OZo>[Niii4iwy-\`JU1$$DW_}v),,LGGі-[d}(`=v%<9M`Ȑ!kRcsέ绶痑@ͨ^kILLԒ%K|_|1nLO7]t>s}JNNVttVl6bbb4`tyQzȑ#=锤;{キ^ ȟ_\jHeµ|[k:uիWn.))I ,h4k׮zr1Z`Ku *Pgu]RήrqPC*깶tRM>6m.B 86k .Д)Sߧj޼yt:e6; *Z 1P>aÆ'=[+,+++>6l?𤞲n[SN?">VZ>;;[Ǐ>nƏu)446[VDD222ꪫtQﲨ:AlޛSe6mrss5uT̾TPPUVIs'*h~R)S/ c/5$%%4&Nm۶Uy;wԽޫ_~Aݻw׏?E0-Z~}A`BըQ#M8Q}$\R/b[[ꑷzJ oJ۝s9>N\Q;B 1brif@bPtڵu_})ꫯ\߭[7.@JMM~jd2cǎzg(iQFz5d+88X?5jԈW_}>sssoz]r{'-X $k@ HII)uyzzzy<xtחhʕ>O0A/ŋ;{43qRg} ]wEk_|ѯm{9p4Q޽{cbb_5|GzGUXX[ok[}j㏹^О={|oȌFY,IҎ;pB u)y4@ /Pmz-͚5KfY:uYzqiiiNc5hԩzW4djZn]|͛7ww}4=Z\s͛+//O۶mӪUK.3"Н8Zuohc;x<;t YϘYmPRSS5sڵkvZ  BBB_`0jyPPPP `TFao8GaC< x4 GTTAv"'=0Ͳۋ'Cup q%}klvfYpDh4d2Pd0TL&5lذZ&$Z,j-,H@!\jmQAA22-vDlaM&Ѳ-ހhO|j=%jm㟏kZ,VE;2L5>F9ѲZl|JTFv lV F(lY2>&YAAAZ ᨕ QQ >.`3sAak@51Ͳl ^!$. DT},3$$Dfΰ0Il6{N JNjb`PxX1h2*##CUA\,' }2"i%#JR[W7L͙=Yԭ{7^Kѻw/Ƿ:cv=ww^rݚ4~}G]Deggu~jQvo>oK/D]vQVV^~zY6u^;w8$YV:f 8@tA-]L6nVzzH5oLyfEP IjԕUFYchTEvK̞+VJ}]x$i֬9Z}l]^^V\?4C@tǝ)9\.w5r\t:) Եkoj߳gnFϿUWԶmkxM&K~/'ljԨQK/Qrr?n=ZK傎CQ6꧅u֪QviO,{'|DžZ[=c>On_8g[U>###~ҺoA_}S~ƏVbb᳼ejٲ駦ƛWϞ=|4mTM6U~}K,=Zl'? ᳼K.ҵgM fEݷo,^רQWG-] >JZӃݯ&MNs>էOoeOrrr8z]j׮. jUm۶G(88gyxxղe 9ӫ[GS$"I***)r Ffs'N#\`E 4$edd.,,*&''WәM7k?+5%Uj֭5|eNo,gYtai֭:xbb /AԪUK2LZd,^]v`0Czh9QaFңMQXX6oڬ3?Ν;eԾ};7{]wNTaaa裏duE ifݺwSto+S,"2B?1UQQQ:rޟl٪|nZÆ]6m(1)QwOKO><>"##^j IDATSGj:VׯPqTwɏ< m޴Y~vء\QFJ蘠eKUzRm۶k⟥7|M4yTm>Jȑ_$'Wkp gАPE!wy\>Y6IݺeV,_BuzJmg^;~{k-A8pL&x_|ݿlݪv=H}O׍SXXnݦ|\(e˖kÆzդI."͙=z{m}֗6{֜JO׍(I'3ݻ.--M˗І u-+8VIQ*,,ԣ>ft:tkMUguJÄ,/f!m5-==]k׮$hެv>p֯ IjղϺJN'I̓z{IRffz$)CJG},ǣnݻ}v%>o,Ծuրwyޅ.Kow=v<t)I:aJII~VaH͚5h֭e۵{nIR+u\{Ӓ%K%gI*ҥKgFy@9J ~0@xpz(^l:_Jˌj+p3 ~pz;1W\hϜ3h3WU vAN71˱eS LS\ul@.VmGYyЩdjc{4:&0'd3AI{֗ Pjk̳>6暼 nc5G9ϟ5]تl#8QuVG?+fOī=l2ZUB6smܩjۚѝwNO`X]qqq?vn[.K***.w2W*{b)9ђM4R޽%&(OU.])1&Ivro>P{[֤Ik;8@j|npzVZǟxRn L&ƓU1\`THEEEx<ӧVXիVjk`&5M6ҋ)D)f6l zCvVoFhU U# Ѥ`5iGhZbz)ǣ"\RӐ6ke-/ """4ӏQQ[y9*;hc@ٽ{Zh1cFkUJ={=,>$ol_誫Fj۶5g\r,u3  LfYVY6v5oBզ+TFF<L&S*Ӌg `-1f}vyX9ٌԲYf+/WӦMu넛]ys?ӼqP<=*,,PNQ 7PHh:v5\~֬Y+#Wf8X=j>AA:uD('(:PXP_|IG;wsϡ(ӂQNQQ#YUyۖ\نUqyJ&.ڵt JSaA>Wc[lg}.DǏ/?"3@CǥRh)"*Zs6lڬ_UEEE2Tğn[n[aaa;gL-s9oջwOoIxSڟl9眭jѢ4h,mݺM?/_Q}L&SqlbbbdX]wOf)eJ08p_#JMMՊ+hbeffaÆz}=ï~ذ4kt:u$ 1Lƍ$oe?[铏?Ռ ԯ__5k,ۭ];wi3{ \֢J;s7x.B=pC:sf͚)88H{Ӻ4k֜:JRpp=wzhEEE*''Gghㆍi"mݲ ,_~~**:FsfR$effvWiQs\- fD6M@^cOU^=uրZh_Ӄݯ&M|GFFOӧFӧK99gdd{~OZ:^5h@oJ݇Ѓާ>6VÆҥ\EǶPۣʝB3ZfY }Rj͛)><{u-[ÓYޥkuEҳӦk]>բzy4TttګC|`=d9J|۶mNQppperR4Eys5hr\2 |*myQIJHCk@Z~zο""#S#Gh˖W֭5lإjӶuĻOUr:ӵifg*##C BBԺuL111iڷoAzGոqrrrчhJKKSXh7o={hՒij׮w[oʳLfffjŊ?Y mƌZ*H12ghϞ=ZxId5iD>   IZͷ>_7Naaںu|pq7xZl6lب^~QMK.Ҝs+~[B=s:tkM|P|O<U4StlКVYfjDY\9 ꥗^$ 8@={:k@Iһp\z󍷼P-ǝkJZ4o.((H;T4c>YoWjj$iP)۹Kg9eff!! ܯߛYWffz$)C .jQ]瑝o_jcm@RGi.h5jƱUʌu=z~ege=(ڵ5%Iƞ*K.׿h99Z"IRSqPX[Q'չs'YIUj#mN1x@I?"f͚h4vkֲڽ{$EK]Ԣ&DG_A2 zfS!L& i('~!I>YQe:뤤$dsz䭷r8vܵzW+ܦaÆ$Y{$5d-Z4WbR:uꨰ0*44D ::QƱ|eΨz~zhEFFK$IVU$-X6͏FQ0(m@EMGi&t:St*22RWBWBZW\J.rsիWOI'Ze=Zpi6‚<P=W_{]7I7T-*(?v{[e$$tЄnQ\\,ڷh<5mj{⩚ XR4p@oֻO/iMc>ۄ73M+4@ZQIk֬nE}VRb'vSdd}h̘zg}v>(ӀQpP0ԇ-h4pzhZdO-ެ;︻{0ef=rM$?YNybccȔɲmDž𣏕?ŧرcJ RS;Z1J|ͷJN~W_SaA%ߞ1^zo}OE]Ԣ&Σj%Zxb-W#p84yCᆛTXPp(1[ZUZJ*ŋ/^x+^_{SYYYj8Vܶ{~}yClg0Իw/IҺu*ug,ݦT= 'kٷ0}Qquݯ:pԫWO{nђ%NjqF'WZTEMǩ:޽G|2KӞ.I Um@w?/v'4([r,:P_9rDo$.QVe=xn&I˜K.V||+y<}JG#;fCJ]w>9œ\u(EDDT~JU4p *b g4z(uYbfCBu풤J~rm۶]<&svFѣGt0{͘~eZlݻ{n>K?И1C/۱AϾ9_{SwOS-[K/\^O?-R3ghۯ6m۶k]e߻w<&;Q111>2 ~\. m/kq Z,ZH#F l+W9}}EŽk<7T:&&vW6զMkue?|J3lUͶu}@3]{m: ۮ^ny.bC11 e2~]Ү]|1mt :qMB* ; pzw~v=;,Eó" !CH !lz!K% yE33)[}oۮ+]vڪm62 JNNQD]N۶n_~Y ]?:oN:z4^VA\ZÇcuQ4h@uJJJwTqqqZnv_}8R sst-7)2Zlh>B;vDkܩ KE'ORh-]V  *íYI}4JO IDAThqq);n0YAaZI˾0ԧ=\]hpvf2Vgk-Umhpik$ o ɵL x6Gɑ4Zk5VM3jOelI(Z[ 8/P%ѣ@#ibZe0j|kwPkϵjQ 4Q}.4] ǎK:uKͦPSiB @cm۵+fܼ<(0_A 4PAuY}Eomӷ|4AXn^}5&֛oDF 5z˱XŢorZUy<=#C:|$NnO>UcG3x1j׳Up:No :pZ|UZ!VuО«$;;GKWXAI)@=(ӓKgB5;)uZO999RbR? 4<%?h⸱ZYY; $3}Ժ={|$>`ʂp 8Kn+vڥ/ݷPDxXϳZ:VgtQ%W/_Nu_~ۤԴt0u=x|ؐjپs}]Ed4Fs_PE.UFfm_^Ǭe4k,aA!|ިKiҸ+e6{V1j՗UZsq[}WYْk24tlߡ_{Kŕ5o =AVXX+V٦=QEQbTjNXa  ՘#Էe>L2C7_E,Yc Ijqc---Տ? ծmMӮ,77TjQѻdjFEFCT{]7j5hsݲ>~&O:!I2WjꟵe{%&*ǒ+/Ym#[k~򊑵-YvUFf|ծM]sz~cw^x%J/fn[qv[*)){?* +&na׻%˯UZZZ#Guh~ݴY}{-/uO:>T׭ŒkX@;)WmUiCuf~Q V>T%ծͺ[5lpKۢwJa&]5N^^vXV3}Mjz;\WڽwYL{~uj_q6TjNior7e7߲Uƪ,Sz鍷|cƭiJN?{cy2]ԒWy^zN4Vs,/?_.]^e6mѱDIR >޻OT%X;۩4=HI ?.X;[m-'@dei{ﱛ_VVWy`*';* ji7_e̬,zqcuǭg Gm#[gٽ奌,mٶC/_a i6mݦ':T/}.`K8vG?xם...3rҕ?J*=VVVVgtS'_?Vqq 7H*$iʪ/?]g7Q;oMvL}[}n%%(",T׭WAamaj}wێwKjz񧔝S@>ɪ *]h֤,?W?//,srY>9 U͞2 vgnv˹VY퇩OV^QvTfvʬe_ZkL WWSe\laNvmءFռtWLj=vovd*4n95in,eeUp`5 QNv3[g҆hfb>|$NÇ yyz߯3iv%KTVNsuV(KnC`7]]e*:QotM:_333S\)r*))QAa.YG;Ѹ1Wk?Pm]Ii/Sig3{z*_YSh~+oWժ^ROQ^ѢjV p*]:u޼mt>ȸ.˱X\u_T̰ԧ١XsSM%@&A3jVFljmݱ^uUil7]XX[n^^ohMYNA]Vybj d2į\r٥e4mN$׍^kunFm#GkSiiy|yo//[PjݷϬ5z)u*--UQQOfj6{jc7WW[Uye>(ɒ[ХgUNnJf0CUϿoceeez냏TRRkp 8o//6Dk~6 ձC{jwKl{zuγ2V$;5CZz_iWu $IRVv'&)uDо]~ٞ_\\CGZ<j~&UjY|VKUj͞1tS δk6c豧ӶJMVbu*jhIR` I~`|?hMm]'k:.nz_T,-[mC=u$inO-ܷ9 l'ee+3#M?2ˮی2-TY459u ݷkog:o}z),4D&22t(6oQVAJN9)I:]h4(.>A}Y[\SP/3~ۥ/($POϙ?NAڷ5L9uJlCyV6$i@}ZDŽlOAة{QǍUH`'EVt8y{HV+Ge+TXT}z94J/A[&`*GW4|e)/b{WO &T>DPF |}SIGۍTY/Y}/i7m$-KE2*))q}]~-[p+ff=O*OYYٶPl6k:7O3u]3Y[m^;wiLMwW_eٚz:K9遻ָ5WMRO~!Y(pZg[rqqÆ=~}z=Wx}meee`mdk ){n~qqNJFy7^7Unr G|]w5S4d`?c/'.DM~үiH *ZqcGk׋lϻPs 8Ktֿf?=kh? X,rssڵiK_(( ͞zgڲ}mۨgn|88tX[G;~W={tOkюu4mԀ}6 |u1tZ1{2U~~~I]1bzVQI>p~ݸY+W#*,,T` GS'MVYq -(;3Cy5kj\\.(^m+Wk55ߥ JͿq\5i$)"<xI'G^d1ᠾJ [l5+ϧY( 5AJ492A5Ak5{k4hd0͂kyxx-вYe$La45\"$IEEE+../ ?ކB'3h;<)@e䖿 '2A5\L(OOObɡ@-ŒfMt5Lp_WA99JOOWQQ!}jUQQӕ#G~~N31Q4|oko)//O E1z{4|  :D={wKj:B6P4Lk!<<ںUk^MKgFضWJNߠa$WWWjkշo G \(pЀv@Ps pP\.\D8p p 5Ak9.B.8p p 5A>AbB 55{͵A#P Ps p 5Ak"\D8p p 5Ak"\D8p p 5Ak"\D8p p 5Ak"\D8p p 5Ak"\D8p p 5Ak"\dE!"?/Wj"\D8p p 5Ak"\D8p p 5Ak"\D8p p 5Ak"\D8p p 5AkL@ӱZ=`0Px-@#Ov2iY@#.T-hx`0Ը\@pk`t}f958_~Ys̑h?w}5./7ݻ6m/_]r%vZuMӟd2. YzIVrFrr U\R23kzgmnnnVnj}W_}iӦ٦/_ǟ}8t萺vj;Fbccվ}*w}z뭷=w|Moͻks!-]zsYvƞRQQnam@p:Ts`PhYwOWDB_yygۢϿ֒$WWj˸|j]$twjݺubTVVm:""ʉZ!>>.,+++S|||0i޼yz7k|͉'';E-ٛ+esq1#7\~ܙi/owՕ=?6"8tg}vAMTZZZp~6SvNL ,֬ӑ>Ŋ;dz%S7vk`2/fO%SVfL5ZhgMp";LuԻK/77Wƌp+44TGoQeO< ]bԻwo  1ixϞ=k[~ҤI {=IҊ+4Ann^{5;ֶ_߿ymݺn4[kտW} 7ܠe˖U:]z|bݻw$Y,͞=[ƍSHH"##uWoO8'|R#GTᡠ uUSL/L.J"њݭ*--Bvq~*&XUk!ek\PpkUkleX4}zcYyBЋĀ_$iٚ3gmի5}tGc}g{ァǏ=~A{x ϟ2LvaauA-[L~;%pj)=0Zֲ2y*0$glT}[m{+T3/׬zsA݌mL$]4mZ\;29Ce0Az4w2,Ez-6`CӠYEf['H6mڤw}Ww}w裏l9s>Cȑ#5a 2,_\RΝL,X$ԩS_QwW;{Se};v԰aԺukڵkGc}jÆ rs;3~;uIݻw_???vm纺]v5 w㫻m) 0̙kiZ7mgCjbw>5b4;{ʧ@b`>2[SЊf4m\+ M?cpD?szg,ӿzj.n^ 5qD阘&ݏ>>v$nZÆ M+--Mjeddh7obccܒڲ/I2NFK j-X)݉2}|u|ͮz>2fg>5k̈́p"W^y6mWê&;v޺ukEDDTرc㝺<*Wpp:tР痕i5k*Om۶ե^j\FFFGSkX$I7|_@l٢;C:uRddm߾ ȔYGd+xkj*`*'Jˬ(]Ϯɥ3cګ̪?DkMp"u-hܸqEiɒ%>'=={HHHU4A* ̙UԼk`iĈ;wVX۷رcͥOMƍy) cz5`͚5 "Q/0lZkQڗ?w=|MgVE|ݵX^(aZ3 \2{Bcǎո\jjt&d2k駟jƌ:u$m۶zꩧ|rرC[lip3sLi…馛ixYYΝ rwe%I>!298Zyԓ'tw]iҟ*gUty^kZk(~׸|۶mmMCz'!!kU.wK,kE"1keGmQ4.r...7o]Ț}2V.]Tcƌї_~-[>P~i[mGv={RRR$}֜QÇʕ+tmذA>ݠkݻWsQaaJJJeM6nhs.;3FvޭIRAA|MeeeٖmrStly7:^>NgV&Iy1mݢ(ժiC[Ks Қ"@޽_WuM?욒[N֭v7l07*<<\rssSJJ݈aС1cϟoqF?21cb{1=rqqQQQQ^1ˣ1Ϲzj^6[7rѨo ۗ"anq_R\ҒbuS(Ie-jv P-Ef)M߷/\$驧Rǎ\n^9eZJv6j*++KNҎ;9sfU+_TΝ/--k=zɓk]_cǹsjժ*,]⢗_~JVoni1\IhaA$ih jY5[y?w]hYi($Iz\`0Ӯ]t]wk׮򒧧?Q?[V)ShϞ=խ[7fuU^{?Ԇ 4sLuY^^^2ҥƏ_|9~~~O?O?~iz|,8>ڹs>S|0`"##p *++%+550y{_e蓵-k+;Dh0*~x@kBGIRN)箽VAFWH>XRO,%IҨn~2˛5549ժ%K>SNNEZf^~e=czj*W 裏Ge@QQf͚ٳgrh(((ЬY3PZ~*--VV 'JÙMC]{T"}u*H,9"gO~"ȗ2LkMD\֬YKkٿ/hmIII?,Ij۶ vAu]G111 Vǎu)}_|6mڤJ j9+::ZV~~|||֭[wފ`>HUjJ)BuY;Gb4AI([WAAA.֤ЪU+o^999رc{UZZz)-ڶۿbbbt%h̙/VUm6(::Y5G-[KP,}:xmx~ԩS/ԩSھ}_/_I?@CM"y_Ғ*mW.λt{Ĭ\ 1)=ZtH%;D|GeVI}Nk̀p׫W/w;{キ6oެ={(,,̩?׶_||${v,*nl&LЎ;t嗷AR7,%%E,.R1B-S\\8qiܸq+Bk֬QllRSS뫨(M0A>>w0iZa۷O*++SDDz衡Ch껝g_tt>۲>stE~~p 8p`mݲe٣D+ @]vհah۟Ci֭JNNVzzL&կ_? 4tqxj˖-Vzz0 8P]vYɪUb ]r%۫<|r*Mbcc;K/խZZz>SNϯbC)11QފԕW^F;+kUIJJ"##5n8]VOrqر*۾uV}6lNڨ}GG}cCη.[RGxrUZZvNI2ᯄ4]1T諍J}e4yhne4j \C3ڴiK\HHBBBt ?~\1112dVZ2*88X:q8_..}}}կ_?>|XYYYܹ|}}%#n޼Y6lPYYBBBdm޼Y1115kVE .Tll\]].Ţڹsf̘akfv_~Wjjڵk3:nnϴw^L&_iiiZvvjRyf}2UVdXtQ=zT̙3Z~r o+11QfY[jUrr߯vչ}Պ+t!Vi{n+??_񊊊{|Ϟ=>}TYwYYy+$$Daaau?+33Sڳgn*_\9zkNffϟDL&+??_wVLLFcײ2͝;WFQ2S\\vޭnͮ\HJJRNNfs@}9Mp.رcyfO8p`:zFUy (!!|;KC}. yu}cCη,[Gs rp@AadъNgkC%LKT!:i[=ԳFXZ]c5mJ55kj PcƌѣmaDVV͛'NhŊ;vFeB>@ڰa^vkZ`4z;VPPѣGkѶ&?Zp>Ko{7|X 8PSNզ8v.\#Ghٲeki;۵kviѢEJMMՐ!C=$ڻw뮻ήISbbl={dR?~\~ݫ={K/=roh_~nbnX|NPPڵkx߿߮s4($$D'OԞ={k111rwwWk~&Nh+οJIII5x`꣏>ҢEԱcGyyyy~[sWuk%&&o߾? .ѣGt8UkvRƸ;>ɑdžoYP_S+2hnyusrr|tSQY 2dӱ,)עCI]ӨzpR{y{4}3'D,9kUZfU/3.T{*((Hnnn56Eӡϵ \VVbcckIKKzR0a]-???]}Ւ2=vXYeGihĉ>0{yyٚqqqVddMfLM69sF6lPm4$mܸQ>}zZnml6_~UjUDFFjђΌZz.εz%I\rI/C_~T&޽{%I_Fbbbtѣ&mFQ]w]׶?ׁԫW//8ԥK >\ڿ9[c\Wͱ_g޽{ӧW4Wc_}.$$Dwqcw]5uk{,ZHfͪ'66=zܴzj۷O >|x:8z$$$hΝ >_zicsԥzj}cCϷ>tΗ/2H~5[GʭlSoy^<\ZH/}`DIJQ**=oZQ N߇ 67Tf0@J.nm|]9c5 z~$ۡ1Vil=A |^r=[OmgCZƚݞ5)wN_Vo۟ g㛪6?YۦKѽK ^/:㨣338΂#;*8 X 6 PJK{d IDATJ[/itIKҤ4I|ͽsngɠ`0J81%<<YYYAfn1zt BBh4ey.f̘Rdgg?X,FLL Fd- p">>(**GF~~>nwBBBKϿ[ti_Uz{\ͥ+ˑ;{xxwE94VSS^oժ$55*~zf\^\uޤرcHOOɓΝk|Ξ'Ξ:nWՏ}}鉫˙먳+ӭ_Ʈ76CT uS-)<| Lb"Ϳf ]D"f׷)&Jƅ*||@ c%*08>2x26(mEAgT8߈#}臇'+!??ge`5"iooC:ÕL-@A҂7Ebb"<<-- ˗/9р-7˃^۱}vdeea֬Yhhh@yy9&NJJJBTTTt=_|5o|_Ød2tttŋHLLtj;}U_yP(0}tݻGAFF<==V۫?:.Gtmh󊈨7'Fbof[3hkoG-W ^3ztvhpXg$˽>SgjVUz`eJK6r9-&.``bpnAeeeLnB())Ajj*N3//e?oTEGG#::-JѣG~|>|]c9ŋqbˆ T*a5WD!++ 9sMS\u\9rd>_M3\P*b̘18y$كx}U_ey>}:94tvvb6guybjz; :ʓ盫+""W7:F]Tajdp*M+::Q)ӘkI_n)b?00۠׶I= zB$"a*)A\'MVbp_=\___ck -WYw|wHIIJֽi;y$f̘x1Əp"z .Dnn.QUUF©SPZZ$%%Yѣq%/}7 ٳohWǮ:.9sQL6͢U؍*VOԩSkܹDyy9lق|b?>}___ 9:K=~|(..w ((Zh4x饗\>ΛcWH$²e˰i&\tI8$ \mXX7Ddd$N(^`:Æ Â ,w^o{ J=Sزe *++@*" 2 P0 dXhE ;g wqey;vl]L۸qUPt{κ⸝WqYd 6l؀G"33bUQgUyr~t|s4kkkQ\\ 8{,NDtKL2oL&잺v 1FnԄv/44?Og111n0,, /ߢUUUȑ#1a„n LHH?4^^^]we=iСx'ߢ ĉ1m4.;gs233FTTTC AJJrD"3Dbbפ$!00ЮR*O'N… BII Y\u\x琖bTWW#00P8׮]k{<[ːH$R:e$$$ȑ#1ydrv= /s!;;hjjBgg' 1l07*~ˍ."""f555 ¤I0|l߾n9ngw\GgoPVV+W ,, 3f ^~e\G՗ё4hƌBcL6@Ywl]K4n2.S`[}MLMTRx!"c555xW'x BD_q$>k@-{?մ-`Jܔ毳{q9#""֏DD-ٜYx QwiƮ^DD43+.T8[( 8s~'OٳgX{DDF0i>vc5""'@.#44ިF}}=BBB0#G"<9c8{hZ9sΝCMM 8̙3rDDY?@~B0 ׈V q5"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈\#""""""""rkDDDDDDDDDNbpI 95"""""""""'1FDDDDDDDD$׈$e`ps"70FDDDDDDDBӺc+f:t1FDDDDDDDj DݮgP3_׈zk`|ٞA3 / Q򐘘(,׿7&LJ;v` tzױvZb3< #""""r&lo5JTlhA ::;;u =1[ D"H%b)EI!ݮ 0_0v ٷo͛gZXX!sX"wx"֬Y#\~Fll,:f6=%8WP~ ] D6 QҢNũjT&;hjj#"" 1X%%%% u㍴rk%7$)<{* {B*C,B$߀uP;P_SF<2<c#>)+Chiӣ%5-tE8SZU;*5w%_k}/adc1vhmmK? HJJPǐ BBB0ff.Q_GT%P7rOE?KyP աߝ66Pz˰tr$;#JJoycA͞.hx9KU.Ua+8<<5 `q\E|WPTBP _ Eb8v6o H~~~L""""mz<<ϭ`D"o@|A! 6[D+p,NBxj#LsH-n ܟ_{ S‹d۳Uxm>ۍ-¼K 0l0]P]]Ca֬YL("76l'!""""TA3Ywf 7 ~Tk /=Zp R?Y0kk-ޞRdLWwcӷ\%OQAwmFQo سgd,^b? EDDDDDD}拓5XcP5k y 4*?f0.Gv"T /wy`͜/_LA 739A^ m&̬"q]wa񈊊V}t:۞9s&D"5`m݆ 00ViZxyy Zr^]]|M,YƍCHH0vX,_"xh.%%bmfsjH$a{Lxʕ+3f`Ȑ!DPPp=_GcciT*EJJ {iiiFu0{l5k֯_V{CwDw!|~ڴi=TRRIIIGPPf̘_rDGG =jԨbΜ9Bcܸqx߻$_@ 4bZK/y!$$QQQ;sNVDDDDRүٷ^BGYX`@9Ѩ;BǩHS^%)數u;n= z 0:{l(}73gC^b<(,ݻתUQPP`ڷ~|t <`ڵ?{,Ξ=[bزe W\cǎ _5~|y͛j綶6#??{?nWzb{GuuZSSW_a͚5n`Ŋjoߎ>_wq6z- :. Ǖ+W@FVVnv@^^mw)FVV:)))tddd !!AX^r%o.,ڵ &Mk1&KhFFRc=&d2bbbcw:j{ƍ-v]waB<6mڄJayظq@F)Jj*9sFJ^Dҫ|PQQ!,/^[n̙3s׮ƎǏ[=^vmB?*9uR'/ -֮u5֌Ac8tQwk]I"qʛ{9h+[([IJq9ak7P[95{h!cjh4{!!!63olB'-: _]Bov=,Z444`ԩxwZnUۋ@岲2! W_]+b1^~em7jud>)FTT&NhTy[[uY??v׮ZFFF"%%EXG]]+W""""rgq*X2 "|u8rR ?VO!OT"B*|z-k7O>bgQ$Xgǎvofb;Zʘw\hE/K.Tj]Quvvȑ#Xf ,Xd ߾]:ʬʊH$ ü嘳'88C qs䫽nWVr%""""t;_A{(v @d0 hnF*-\ǘ!X5;N_l>\` ٣AWX!s5cp&յڛoi5P} x'`;wĆ ;cWXd09޽{^$ sƋJKKfl2̄R^kW\ZxW R*xG ꫯbÆ :;v;dTWW#''ÇZ,cƌuRƋXbb"= 8m݆ɓ'FDD܌La?w+G}b>ʠW=:p>2<:Cu٥*?`HYLL0zhy4mu˳DL=y2jx뭷|wc3i05Y زe `ĉ.S+++K$EEEaʔ)V#`q??VBI@ޞz)bvٳuV:u ( >>>}3rH^zIhY+x `w} "먮vG?*_SN޽{QYYz?~/dW"""""w(0qZPXkТ6ާ?%r@ M1NVYa -&ԵK~ZX޹s'A!,,Lh5ty#88.]Ç\„ x^wW^OJJ BCCډ'???rTUUisPP6oތe˖ ~7 Cuu0!Rc=2e VZ%t5m׼4?|%""""r9MhooD"S1_#@C#G;O`v u\h4A1q?7x`5JXVTػwb}Zba*&]M2ꫯ">>5^/FۮY|9<<<,^ fXZmH$x׭9⥗^Xs=طoU3-3 hjjBMM Ξ=tZt)on5kkk+-f4/goc=c+;^y9s/:F@ܲelNp9|'x1~xDEEA.#<<&M3</g?]9B$/ 233O"!!B\\~`/vܑ={~ÇB@BB,Ybu}݇b\RDyX~=֯_ظq#?իW#>>P(6lϟ裏ܒDDDDD]2L]BEqu1C) CCTmds=wxxgJEN0/7Ϛ׿5^ya䝈F?jU9kL RVbRoy~+ם\&7gA,C$ n*m 7<8fL&xݔ^s5tvvZIiӦ1a\L1$tơBfEcq8q܀BowY""""""N]@Zgqe6ƴ7g]A]-b>##`\  gil%0@)<$<-;w#""„!"""""0ܔl2> ˖-c_s""""""7L-S;MoPC<6\B.DDDDDD}G*@סSduO%Ѡi.h4Iذ:nNb"?oԴA6 g HeuZŀ̃Lb\c͵-\.<ho/g -B +5/O`s׈n ?2p5v 0$Tҍ\#"""""""[@vv61tPԠʡ())AFF Rj RHqi.zoРAx!N֮] T0?k SoUc W'KC"n{./\ ,D,IAK(nMAA)w T*Ԅaҥ;>;h ƢCebp0j(}c~ ,˯\dgg#11WDm755>C~~𚯯/܌رcXxMwCYSS3g`ܸqv7Rzq+儈o- #p2uXwX$K=Pޤ!8]®_RQiux,; =*w X 䒒pZގ #;;}ZZZ0e$ ~ӟ2͜;kEEEx-u~^oXNޖ5hj֠q0B"`A BWQ@ A~x6ΓUa2Wkx8 f͚\\pzɵ~_Q__?O̩Szaaa0aFm/Nyat8̟?v`ŋߣJFrr2&N(tۻw/݋1c>x'os<; üy,h48p.](Ja…=ivȋ/>>>ܹsjWt_&NBVVˡj 00*?9r$LbB6̙3ϯ={n8pXbl޼xTWFF>#O?~| ;4w#k̘1(,,D]] 8̞=>>>Gzz:._b;w.d2E`` &Ncǎoo2 fBfffhy0Crxxx ** ӦMyl}h{ꕲ2[CœO>i~)RRRxb+11V¡C DDD駟vx=w{G&^r|wxo=ݯ夯'DD' m ~YhTu cn 1(衡8_Xm'*QUc:|sfCU3ñtVA5bp(::"mmmDdduokk[or( DFF`0ӧO###4hQYY+W ;;?8{ߓ'Ob֭àAVQ\\b`d۷.\N L!''Jv[d\t MMM ""bNEGGBBBJΝ;UVYu74ىxݱ7]&LtdeegV\[9<"&&.׹(VTT *PGʗBp/$$!!!r ʐɓ'c߾}DhhEó>km3gNh̒fAnn.mۆgy5jR)FaqTVV7… ߎ š-uttt 99Lxx8VX{MMM5ku[ ;-O?ĥKk.<o۶ 1i$|lڴ _|jw뾮vލ .`̘1XtErYsN`„ XxЪQXX={`ɒ%VڊYfa֬Ytݱ7]1d ''FdfBc„ NwW_W111_|ZL</kkk׭#)_]ogϞYf 555wŕ+W9s 55U#jkk;ǏԩS]V.0e>|Ǐj)\_cǎҥK-?Dqqq{ggoW+ i4?@BB<<v|wxo=ݯxB0uj֠"| غLnp( "rH\߄ qB%?Fw=f*Ӏo<=/c\mwPrF ̠z\hǧ۱b1V\iWrBEII {~BdQQQ5kk-ܹsVv*K.?oooSaaCRRr6lN F\'N@hh(VXa?XTT DEEaٲezjb?~uuu6ѢEsb1婹gB,#99s5F#[ Y棠e. .@T;`l)2gMpp5b֬Y8p:::srrPZZS8塴ΝCXXVXa.ZE}lz?mE"<=zzܻz~wM_w}u=!"׿8tLT砹~k#]M,:u6GM0'}iջ~o-Ŭ?{e߻0!N`xxx\7 kfUOL)vڅgϢW-0qD?g 4P__/6zhrIkk+rss1x`=CBB JـEEEÇIEESߛ &t;v/&Ol È#`0PVV^PÑt=z4<==q 555 P*nKwGLS Lbΐi|[_TFラSG^oaW5g˃)`9i$,>pUhyig徯WW]꼻"[L'a&!z(FCu[57,f6,&LNyU}[GVՎ; 0ݧ8Srj8S‹[1xug!1"/.ˋCAlwt:y1cJKK?b1119r$o#Jƀ械---hii7:5 OjsyzZO&A`0[UUt6ۓĖpdee {{E&aر8ve0<0 Bgs5SӚI 55*~z)_=Lw*RSSq1c@s+ʃ.s4UJ}_]zwλ}=!"-# Mǿ]olZ%Rxz@ R Db{_`:'"2Etm(o R. IDATLJ Up>>\@& !J U`p'|d0em:4;PZۊJ p< k=0FD 5OVB$~~~= k`0aW5TUV8h,Z* G駟bv[HOOGII RSSqwZTyyy6o M{{;1rHZSXX닙3g|AAAiܓP䠲 61qHHDDD //Zjeee6mUK.w{WR)ƌ'ObϞ=wj!gW/ӧOǑ#GN̟?߮@~oʃOeee77>pUhb: 6nGGϻ޸'DDɼ7:p OT#T+-PiZѡGggs8Ɂ"SM"X}6cS7RO$r@$6>lfJD .&+1{\.ͱLpt?$}wBxxxa…Eyy9c`@mmUwN|Dw4,D"ƍoPt^dgdd`NufN<3f8NMttpnXhpyxxx뺃2qDرϟ:[_0w\dff[l>Ζxzz"55wB9ѣ6mF߽WNs(+^9#h}y붻'FMÔx{,e o *#U[ԥvוj߾}ٮ_6WFc7mw=X'n[O<y}|0] f6MCJHHPTT"&*""*ͦ)**JJLLfkk#}¬zy?^xᅺ[}V:4eeeno_7""BOVnnzrUSSwJIIQppҢqꫯlرc'|Rk|r9rDwVzzTSS EFFEgܸqP[[/^as ,Ю]g(&&FVU7t9oQ/_ZcƌQllT\\mܸ0 |ڲeۧL5J*++SqqxW93L[yfeeeG())ԢE=x3fhu K݇˔)St}饗^RII^|EYVEGGfNrݲl}z}}u0w\C<{guq,N<)clr>Ok׮]:xOC7{@_`o#\޷\yyyq[t)X 6Vvdyfy?mkO^o? 0jjjTSSA1>>^Ǐٳ5a„~?u]*++K*..VXXƏ%K8lo@UUU=zLe˖u;[n/'Nx?N0A{}HZh.RWqϟ\JLL};***RuuƌsΫ9=ta*??_JJJҬYΩL}.\8$=(Υ.- W݇˘1c뫯RFF TSS#%ݮ)ShҤI?~ \^_CJJ֯_4檬L⋵zjmݺU999C2a?ԻᆱB +SFޖ p jIS刎R[[\.\.E,"ժĔ +'+S'PdT E:F kйךZtGOAY^.g  BW~lOS?`{ٟOP/I hkmUDç5ӣ5SJϯUIUZ EKS/3LZ̊i|rn4U7^m;.:LTgk@w( j m߾}J˒TTT;?;ɓ'{ێlVvvƎ >dϕ0rWtjڬr6f,Κ/,3`y`x'__e*}~j_jC5L&ox}Yޝvhjl趟*Ilָ\;rYIIvܩ+V ߬VMM|JJJ鑟ʺ\.mh;gs'wK]{ 6׋G_e``{"HO}\5, "5HfU&y(ժʲReT{%Sc5wB&&xb#dH[;F?Y/+\嵧UR٠C'lV~ؓ^lCp<ܬm۶u{A ~4k֬no;o<ƪB9smMm{G`2[\]/+Cmf QPݿ՞uդ6U/;8lTݸ8UE6"TY0'ǯ*mX)RFA2 jq$I]Wo%`zk7xC$ݮDJ^}UmڴIeX1::Zws='ɤ~ۚRT>ιuMx[ 9z%b>n{>?R,-Ŧ;be2:n{nWibJp5uec=ӌ0Fk'kGze=>lÁpFCսeZݪkQVZK ӛ,: j#KtA]YEuzكznGp?1we ]{Z`Fujkk;c544??u+99YJNNa}璤g2L>aIٳe2d2t饗vyѣG{1c%Kx/7Lz7ݾSNbxow\ 6h֬YRll/_*--wm{^u~?VZ_bbV\M6}NwM&IƍuW*!!AF5\^{Osn686E*I~4ZGkrkfSuC[YCU9}R]>+AU+N0aXyUVh_z'$I裏t8;vЭ%*))QII UWWkN޽{7Ե^vo\.wY~򓟨>;wΝ; /nvuu뭷ԩS>:uJNҎ;F[nռyۙ/~~Z>?텅ꫯ|nب۷{~2*..֏~#&M*544hͲl=R{#uq\yxeg?u;j{ njkkShkkͳ*d5XYZ='Qg3$;3uDU՟|D 08:ul2{{¶{NTQQ>@Wy^k׮/,̒—]v s;}z׽曚5k|ZZ==>aVUw}K;vth̟?b ~aXICf,Y=_YYam/+/X2%i4~ay>Eַ\RʓW;w d2o[{ennoy~m_ǭv( {.$`om᠒Ln*Orc>C.4g|^5Vm. s µvw ˤ{ %$$ \.oO?Ի6M7khh8|(uƎs_70"h{2HUXlr$kInjUfAz~NnmX;I:|V{#0m0{n7YL#Zs{8qbX̙35{l8p@Rk~^{5mZAWppyͽʝ+C/.u k#..D 2O^kBOI[3^a!V"B;Jof^xk#T^kO>º?|ݺ{ƿkz駽_(''GTWWj̙Up;ZZZZ[[}[ػML]vIjO /%\2h.effJN:LM:s~Μ9Cgo* ΥҤ}Uʚz-V;bIZOpam vr1of+V/|\; "@mmm> ̜9SwnOwu.2}ve˖S˗s9?[ IGDy3ѡۭjIRd~[t}NO 3dk=}:ߦc8>׽Zt{=R{?*N>ƍUZZ*IW}LHHUW]=m&s a>YF_|$77WtԩFv} [}뭷j*ڷoy͛7O?Txx؟#i{0|a3gdI"b n3ϼFtԀ nnZ*I*l Hdk#P!Fµ^{M---ŋ>իX-^X}>%K(11~ɊԩS ﵵ; {=s>]`?͟?_v]ƍSXXƏzHoƀu:u~ӟoΝ曵pB}{Sqq G5Xsl1!^̬ӧeXb֪ Շ:ihńv}e|?Dk#LCCcqqqZhYwhƌ󵵵z?{9l۶|TT?yoiu]h˦Myu{nA[nrfٱ~h6nܨ=뮻N۷oWpp𐴯ڟ#e{ھQACB[ۿ'.+o϶@:ɭS"ù!\a^uJR|c>k{ =ڳgM8Qaaa4iV^?O.{u)==]ַ4uTvMuB¼3ߚۭjnxV\xǡr Ytɕ]A[E!_)suS[9Vj w$i\=`AA g )I2_AվQawgkfEP'2R%Wh9`ۘ=B\{Dn;=pfs{)O@qT-~orvB/gZtjxf\NN{. 4U 2 JZdX*m-kByvj$,a"\.9.Ij=p-dC )i$v]mR G.)I:U0u$lA tID;|њoIRKc]`-(׮#Ur/ZssRtޞjXxk`-PPPζvIMMuu &ҵٵo$]=7Y 5@`o΅񒤆J?._-A mN tmgŒĨ`@X[%j9IfU!󮽾D -΀{CSy$eX,Z' \8kVϊQLT\.kިԾ5(DFGMqQ[{B6iݺ4g5 p {L$Uw.L2B刐$==_ MNOSۇ 5xnz饗TW߫ybh477kzG9~թvlUMI?JәCCm.sjH՞̑klמִQgyV+ Re׮]ڶm[7T}$ .В%K(h7-??_PvvjkkԤ9j7n܈c[׆ d6\M6I{1Yc8~d ~rãbz<5%(LfYuznAfm*V/~T$٤/UDDDCB quX---JNNJ|||Ǝ:M0a@êЌ35 Q~ΦF_,""BqqqS~~{n]veee/5>w=o0o91Z85E{3TQ &loML&^5XE5 dj>(Ϥ]PTjt3rZ5#NΉVpp0s µfƌ1cF7mڤ|]=~`X,zt{ݫt%%%+L1z0uIz?W7zꩧT__.H^zRRRMkkrssYf:l߾]s=k\;v:ގüK?USנʒ|ťS%I2%I&,!)Ҥpet,f~˭?ŠfMJ ӿ\(z \---ڼyn:u]0aO&I6M&Mҵ^Wժ ۷﬷}weZL @Z[ξzghˏjV';&%T֐pEr=刧s=L}xBa6yc#s >5zsNUTThѢEZxy[ bhr:=%\e"oTei":7:d hg%zL9r5,6[*<Ģ^œ"su uڳg233UTT$˥M>]/ѓ۷+--MSLw.׿ڵkBCC//]egg멧E] ~vرcURRJYVi޼yZhQ'fzcL2Ew}>ceddX)))] v^޽[j*V#C͛7OzkSFF~y_ƋU2G?}aj+t)6if:I̲DB3'$PN^Dz9j2Qz‚-dݰfC AAw^ٳG.K JLLTIIݫ _522RUSS'*22R\.~_U JJJq{´vZIRNNΐo 79r䈎=Yf|ЗI&iҥjhhБ#G mOqq>3%&&[o2Pjj\8p@FM73|kѺ{d6gUTT 7o$uqaIҍ7(٬.ϷRӧOqPמv͛7KQFiʕ|ۯL&=9s7ܓi(PnmOyW~nOf֬Y{pk/ oC8rJ?TkkLhҥg]h.((W_}$z]So>ILN{|28pul3}:t[0!B_n.>J&Iue*T])].?) l_Ͽf6շBjhv44; f;Gi8kFF? ժ*͕$M:yzG… 4ױc$I\rI$M6Mn[?fϞ-ŢLM ^xUZZ̞=;Y||$>dR\\\k4b^mGӃX72={[oijnnc`w'fΜ>|X---kjjɓ'p Y#Oͬmf^9m./VqnNts0mgqMC[lXLV-m 4utkOmZ/Y2PFvK_ꑗ=k9;iztmBm 0xs?ܘLljkkmO /Kw5;JOO /zvMuꔤy˗/WAA222?YfYcƌ5o޼>/vQ6MsݻCPln[ ,zF5cezj{x+[u)W}MBB&-XV[Lf =3Z{ug1YLcRFmST[['jbńt(D. QtML}K[UPެϭ՞jU՟)0mtVLԷ.qd2)<<\g]`p pfҨQz~رӃ_O>-I>êzߞ05o<\>'NѣGt:\tEںuӵrJUUUH-!GQ>cjʔ) Vee>دN] lƌ#ͦV;vLSL/Zl{=}:pBBB`릦o8ڑjw߭'NСC:rrss4|g]H;\xVݿ߿_v]ӧO-歆"U^VˬSj9}Zjrw>s[r)WkNV1Ye ,Ao_/WM&)ۗyZPP|. X^k8o$%%)==]ccc%pDeff^>^'hӧOWHHӵvZ>|X $Lh][[g/_ˎ;+VkyS9zhÌޯN] /ɜ9sw^;8qpڣ?sٲeO&˥իWy\ӭ@g8ѣ5zh]}ժծ]/NzֹN{|:JIIѣGԤzK/-`rf-I}V[?;ZlTmCZ[rC4=gεE:^lnHr5l5XfkL dn?u &"B,Ъ낂j0 \Ðhkku?ЪU5L_$i޽Z|Y=z$O>ђ%K&РC)88{ f̘}@5kx̙:~'SDD&L0',XpNo*ý_ um_\q:x𠊊K/fWO ъ+onwY9t0ڵ]vK/nv5kȑ#***Riiƌ3ǧs=/ZH۶mӡCT]k*R] ltrqyX7gpXY<1R'F{:yn|[[$k|wY,nT\]o |,Ly`<+ z3eM:Uz]Y/X@Ceeez嗻 [~̙=zyfןys /f]uU}\yVz{뭷إWȌ3d2o>h>`~g]vSUUկ^BC_Vfw~%i'C.u-Ţ޽=[=.]nMsOWiמ=:~~E'On`4eeen+..N:}rss!m'=>q844T3f%I֭vV^^xS s}ǟ69lX{ zIF,11Q;﨨H3fYW3zq8zg*--U~~"##YfHSL YoS(tWQQEK/կ~+ۯr^~e8qp k;v1ܯ۾3f~a}WPAAjjjrd5eM4I d{)4ڮSRR~z)77Weee_իWk֭}uRuukɒ%}H;\Ë-D;ל9sӯ7L&#TUQEFESAPW[#IpDu|o1`ܾ/5'.iO)w73TdqQ@,F!rvrt:s4]-͊OT#B jU*8$T'ObGI>;]SSO756>MNI.##<5x9sFǞ;fYI+WRSC= M ,zP>ov2]PxSOËp P:^:4"DZ]Rzy&aѵKGr%bi1]Z֮:C{xT|KG.i (1j>'8>tߌFw_1v,ط2tUt.Ozn4[zs8 Ź]ަ GN٦L bǒ3gGL#Nxm`D[AMK5v:]k͡#Y}+蒛)<-Wj'7wltf)(1,@KnᬾlTҴ,f# n2buɶކ5XL[{̭x=#|G#i k+ɟ ,p@#QWM^_Fݴ |e̲U{A/q _R\t:ھpiQr=^=!B5:JFq !x0q U}q Eq Ĵ&7["+ jIENDB`gamemode-extension-4/scripts/000077500000000000000000000000001354240600700164775ustar00rootroot00000000000000gamemode-extension-4/scripts/fix_translations.py000077500000000000000000000023351354240600700224460ustar00rootroot00000000000000#!/usr/bin/python3 # SPDX-License-Identifier: LGPL-2.1+ import sys import os import subprocess def _do_msgattrib(fn): argv = ['msgattrib', '--no-location', '--translated', '--no-wrap', '--sort-output', fn, '--output-file=' + fn] ret = subprocess.run(argv) if ret.returncode != 0: return def _do_nukeheader(fn): clean_lines = [] with open(fn) as f: lines = f.readlines() for line in lines: if line.startswith('"POT-Creation-Date:'): continue if line.startswith('"PO-Revision-Date:'): continue if line.startswith('"Last-Translator:'): continue clean_lines.append(line) with open(fn, 'w') as f: f.writelines(clean_lines) def _process_file(fn): _do_msgattrib(fn) _do_nukeheader(fn) if __name__ == '__main__': if len(sys.argv) == 1: print('path required') sys.exit(1) try: dirname = sys.argv[1] for fn in os.listdir(dirname): if fn.endswith('.po'): _process_file(os.path.join(dirname, fn)) except NotADirectoryError as _: print('path required') sys.exit(2) gamemode-extension-4/scripts/post-install.sh000066400000000000000000000002461354240600700214660ustar00rootroot00000000000000#!/bin/sh SCHEMADIR="${1:-/usr/share/glib-2.0/schemas}" if [ -z $DESTDIR ]; then TARGETDIR="${DESTDIR}/${SCHEMADIR}" glib-compile-schemas "${TARGETDIR}" fi gamemode-extension-4/test-client.js000066400000000000000000000037501354240600700176060ustar00rootroot00000000000000/* * Copyright © 2019 Red Hat, Inc * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . * * Authors: * Christian J. Kellner */ const Gio = imports.gi.Gio; const GLib = imports.gi.GLib; const Lang = imports.lang; imports.searchPath.unshift('.'); const GameMode = imports.client; let credentials = new Gio.Credentials(); let pid = credentials.get_unix_pid(); let client = new GameMode.Client((client) => { client.connect('state-changed', (c, s) => { print('state changed: ' + s + ' ' + client.clientCount); }); GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 2, () => { client.registerGame(pid, (status, error) => { if (error || status < 0) { print("could not register to GameMode"); return; } print("Registered to GameMode"); GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 5, () => { client.unregisterGame(pid, (status, error) => { if (error || status < 0) { print("could not unregister from GameMode"); return; } print("Unegistered to GameMode"); }); }); }); }); print('state: ' + client.clientCount); }); print('Entering loop'); let loop = new GLib.MainLoop(null, false); loop.run();