pax_global_header00006660000000000000000000000064150563033630014516gustar00rootroot0000000000000052 comment=f748627798177554713c6736b1df57cadd26830f wmnut-0.72/000077500000000000000000000000001505630336300126205ustar00rootroot00000000000000wmnut-0.72/.github/000077500000000000000000000000001505630336300141605ustar00rootroot00000000000000wmnut-0.72/.github/workflows/000077500000000000000000000000001505630336300162155ustar00rootroot00000000000000wmnut-0.72/.github/workflows/codeql.yml000066400000000000000000000143051505630336300202120ustar00rootroot00000000000000# The contents below are based on sample configuration from CodeQL # and on the variant of that file used in the main NUT repository. # name: "CodeQL" on: push: branches: [ "master" ] pull_request: # The branches below must be a subset of the branches above branches: [ "master" ] schedule: - cron: "18 2 * * 0" workflow_dispatch: # Allow manually running the action, e.g. if disabled after some quietness in the source jobs: analyze: name: Analyze runs-on: ${{ matrix.os }} permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs language: [ 'cpp' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support nutsrc: [ 'pkg280', 'trunk' ] # Build with OS-provided NUT package (or build v2.8.0 if pkg is too old), or NUT trunk? os: [ 'ubuntu-latest' ] # TOTHINK: windows-latest, macos-latest? compiler: [ 'CC=gcc CXX=g++', 'CC=clang CXX=clang++' ] steps: - name: Checkout repository uses: actions/checkout@v3 # https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages - if: matrix.language == 'cpp' && matrix.os == 'ubuntu-latest' name: Initialize dependencies (Ubuntu) run: | sudo apt-get update case x"${{matrix.compiler}}" in x*clang*) sudo apt install clang ;; x*) sudo apt install gcc g++ ;; esac sudo apt-get install libxpm-dev libxext-dev libupsclient-dev libc6-dev-amd64-cross libgcc-s1-amd64-cross ccache - name: Prepare ccache # Based on https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#example-using-the-cache-action example id: cache-ccache uses: actions/cache@v4 env: cache-name: cache-ccache-${{ matrix.nutsrc }}-${{ matrix.compiler }} with: path: | ~/.ccache ~/.cache/ccache ~/.config/ccache/ccache.conf key: ${{ runner.os }}-build-${{ env.cache-name }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }} ${{ runner.os }}-build- ${{ runner.os }}- - name: CCache stats before build run: ccache -sv || ccache -s || echo "FAILED to read ccache info, oh well" - if: matrix.language == 'cpp' && matrix.os == 'ubuntu-latest' name: Initialize dependencies (ensure NUT 2.8.0+) run: | GITVER='' case "${{matrix.nutsrc}}" in "pkg280") case "`pkg-config --modversion libupsclient | tee -a /dev/stderr`" in [01].*|2.[01234567].*) echo "WARNING: System-packaged NUT seems too old, will build dev profile from scratch" >&2 GITVER='v2.8.0' ;; esac ;; "trunk") GITVER="master" ;; esac if [ x"$GITVER" != x ] ; then PATH="/usr/lib/ccache:$PATH" ; export PATH set -e ### abort on any non-zero exit code below ### Follow nut::docs/config-prereqs.txt chapter for Debian/Ubuntu ### to be sure, with a minimal set of third-party dependencies for ### a faster and practically useless build. Most or all of these ### are pre-installed in the image or by the above init, so there ### is little run-time impact of the APT operation here normally; ### these explicit installations help bolt down some auto-deps so ### they are surely not "apt-get remove"'d with the operation below: sudo apt-get install build-essential git python3 perl curl make autoconf automake libtool pkg-config gcc ### g++ libltdl-dev python-is-python3 git clone -b "$GITVER" -o upstream https://github.com/networkupstools/nut cd nut ./autogen.sh ./configure ${{matrix.compiler}} --prefix=/usr --sysconfdir=/etc --with-user=nut --with-group=nut --with-dev --without-all --without-docs --without-nut-scanner --enable-silent-rules make -j 8 -s sudo apt-get remove libupsclient-dev ### avoid conflicts/confusion just in case sudo apt-get remove libupsclient4 || true sudo make -s install ### overwrite system packaged files as too old echo "=== Checking NUT libupsclient version seen by pkg-config:" pkg-config --modversion libupsclient fi - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-and-quality # https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages #- name: Autobuild # uses: github/codeql-action/autobuild@v3 # env: # ### Avoid installing obsolete libupsclient-dev # CODEQL_EXTRACTOR_CPP_AUTOINSTALL_DEPENDENCIES: false # For CodeQL scanning, it seems we should actually pass the build of # tested code base -- not skip it thanks to unmodified-object caching - if: matrix.language == 'cpp' name: WMNut CI Build run: | #PATH="/usr/lib/ccache:$PATH" ; export PATH #ccache --version || true ( ${{matrix.compiler}} ; echo "=== CC: $CC => `command -v $CC` =>" ; $CC --version ; echo "=== CXX: $CXX => `command -v $CXX` =>" ; $CXX --version ) || true ./autogen.sh ./configure ${{matrix.compiler}} --enable-debug --enable-Werror make -s -j 8 || exit - if: matrix.language == 'cpp' name: WMNut CI check run: make -s -j 8 check || exit - name: CCache stats after build run: ccache -sv || ccache -s || echo "FAILED to read ccache info, oh well" - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" wmnut-0.72/.gitignore000066400000000000000000000003761505630336300146160ustar00rootroot00000000000000Makefile.in /autom4te.cache /aclocal.m4 /compile /configure /configure~ /depcomp /install-sh /missing Makefile config.guess config.h config.h.in config.h.in~ config.log config.status config.sub stamp-h1 *.tar.gz *.tar.gz.sig *.tar.gz.md5 *.tar.gz.sha256 wmnut-0.72/AUTHORS000066400000000000000000000003101505630336300136620ustar00rootroot00000000000000Arnaud Quette Initial primary developer and maintainer Sponsored by MGE UPS SYSTEMS Jim Klimov Maintainer since 2020 wmnut-0.72/BUGS000066400000000000000000000003441505630336300133040ustar00rootroot00000000000000- segfault on FreeBSD (using -w option). - problems with windowed mode (segfault too, or misdrawing). Please post bug reports to https://github.com/networkupstools/wmnut/issues and describe the problem as detailed as you can. wmnut-0.72/COPYING000066400000000000000000000431101505630336300136520ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 Library 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 Library General Public License instead of this License. wmnut-0.72/ChangeLog000066400000000000000000000251741505630336300144030ustar00rootroot000000000000002025-09-04 Jim Klimov * wmnut-0.72: + Update GitHub Actions recipes to test both GCC and CLANG, use CCACHE to speed up the phase of custom-built NUT [#23] + Revise `configure.ac` for better portability (or detection of incapable build environments); introduce `wmnut-common.h` to handle platform specifics (like `NUT_PATH_MAX`) once [#20] + Code-hardening (address static analysis warnings, suggestions from GitHub code scanning AI bots, manual review) [#17, #21, #22] + Safer use of configuration file path relative to the user home directory [#18] + Fix conflicts of global and method-local variable names, rename some of the variables and methods to better match their purpose [#16, #19] 2025-03-28 Jim Klimov * wmnut-0.71: + Welcome at least 3 contributors enhancing this release! :) + Address compilation against C23 (using what became keywords) [#11] + Handle more device states [#10] + Track and report NUT version we built against [#14] + Detect tokens in `ups.status` using the smarter method from libupsclient, if available; only match with `strstr()` if not [#13] + Extend CI checks to validate against packaged AND upstream NUT [#12, #13] + Make sure `X11/X.h` is also available, it may be packaged separately + Streamline the release process with a `make dist-files` goal 2024-08-12 Jim Klimov * wmnut-0.70: + Address compilation warnings exposed by new toolkits during `configure --enable-debug` builds + Introduce `configure --enable-Werror` builds + Address coding style (whitespace, indentation, etc.) to be more in line with main NUT project codebase guidelines + Various docs: updated the reference for problem reporting from Arnaud's mail to NUT GitHub repository + Revised `Makefile.am` recipes to deliver the images needed for the `README.asciidoc` and to remove more build products when asked to clean up 2023-09-01 Jim Klimov * wmnut-0.69: + Further documentation and build recipe modernization 2023-08-13 Jim Klimov * wmnut-0.68: + Numerous documentation updates (building, spelling...) + CI: CodeQL workflow for code scanning + Build recipe updates to match NUT v2.8.0 public API changes (note: not cleanly compatible with older NUT releases anymore) + contrib/wmnut.desktop: Add categories and keywords to .desktop file + configure.ac: Fix obsolete autoconf usages 2021-12-06 Arnaud Quette * wmnut-0.67: + Clear battery load 10's column + configure.ac: Don't set `LDFLAGS` in configure.ac + contrib/wmnut.desktop: Add a `Comment` entry + wmnut assumes that there is a UPS available and seg-faults if not. Now just exit with an err message unless there is at least one host. + Remove duplicate variable definition (wmgeneral, display) 2016-12-23 Arnaud Quette * wmnut-0.66: + fix XDG desktop file content and execution bit 2016-12-23 Arnaud Quette * wmnut-0.65: + Add a rule to install wmnutrc to /etc + Refresh and modernize with recent autotools + Refresh and fix the README file + Update TODO 2012-06-04 Arnaud Quette * wmnut-0.64: + configure.ac: WMNut actually requires NUT 2.4.0 minimum, not 2.2.1! + src/wmgeneral.c: Only use XSetWMName() in withdrawn (native dockapp) mode. This fixes Debian bug #565751 + src/wmnut.c: cleanup debug functions and general layout + doc/wmnut.1: Escape hyphens to make groff happy + README.asciidoc: Rewrite README in Asciidoc format, to replace homepage and README + contrib/wmnut.desktop: Distribute a .desktop file, for windowed mode 2012-05-10 Arnaud Quette * wmnut-0.63: + acinclude.m4: removed since it's not useful + configure.ac: rework libupsclient detection, using pkg-config, and remove the call to jm_CHECK_TYPE_STRUCT_UTIMBUF (from acinclude.m4). WMNut now requires NUT 2.2.1 minimum! + README: update requirements to NUT 2.2.1 minimum + src/wmnut.{c,h}: switch to UPSCONN_t, as required by recent NUT + config.{sub,guess}, ...: refreshed with the latest autotools + rcfiles.c: fix some warning 2006-01-13 Arnaud Quette * wmnut-0.62: + Disable the XBell detection ad calls as these are not much useful, and cause some problems with the switch to Xorg and X11R7 + Update the missing file 2005-01-05 Arnaud Quette * wmnut-0.61: + Switch to NUT 2.0 API (compatible with NUT 1.4 and 2.0) + Rework host handling (autodetection of UPS(s) on host, as you can't anymore address directly an host, ie localhost, without specifying the UPS) + update Mandrake spec file from the official one + Enhanced Solaris support, through getopt modification (thanks to David Butts) 2003-11-08 Arnaud Quette * wmnut-0.60: + Enable libupsclient autodetection (from nut-1.4.1-pre3) 2003-10-18 Arnaud Quette * wmnut-0.59: + better handling of communication with upsd + reworked autoconf mechanism (for autoconf 2.50 or later) by renaming configure.in to configure.ac, and updating various things in configure.ac + reworked Mandrake packaging spec file + xpm icons converted to png for Mandrake packaging. 2003-07-14 Arnaud Quette * wmnut-0.58: + switch command line parsing to getopt() to make it cleaner. 2003-05-internal Arnaud Quette * wmnut-0.57: + Bug hunting (thanks to P. Marzouk): fixed a bug which prevented from restoring values when a UPS was temporarily unavailable. 2003-04-internal Arnaud Quette * wmnut-0.56: + Fixed cleaner a minor warning in rcfiles.c (Bill Richter) 2003-03-22 Arnaud Quette * wmnut-0.55: + Dropped out INFO_RUNTIME support to INFO_BATT_RUNTIME only + Re-enabled debug output (through -V option) + Re-enabled blinking communication status on lost communication + Re-enabled code that handle unsupported variables + Enhanced (again) nut files detection and handling in configure.in Now WMNut can detect if the path given for --with-nut-* is a binary installation from source or package, or if it is a source directory. + Back the standard naming scheme, using the pre-defined PACKAGE variable in config.h + Added in contrib a basic ebuild script for Gentoo GNU/Linux 2003-03-20 Arnaud Quette * wmnut-0.54: + Fixed a minor warning in rcfiles.c Thanks to Bill Richter for his help in beta testing: + Fixed a packaging problem (call to autoheader) + Enhanced nut files detection and handling in configure.in 2003-03-09 Arnaud Quette * wmnut-0.53: + Added configure option (--with-nut) to specify a global location (directories) for upsclient.oh. 2003-03-06 Arnaud Quette * wmnut-0.52: + Bug hunting (thanks to Russell Kroll): ignore SIGPIPE, so upsd stop doesn't result in a crash of WMNut (which results in a Wharf crash) + typo fix in Changelog and README (thanks to Bill Richter) + Spell checking and various update (thanks to Bill Richter) + Include autoconf/automake depends (install-sh, config.sub/guess, missing and mkinstalldirs) + Added configure options (--with-nut-libs and --with-nut-includes) to specify location (directories) for upsclient.oh and improved configure rules to automatically check for upsclient.oh 2003-02-16 Arnaud Quette * wmnut-0.51: + (0.30) Switched to new NUT client library (files upsclient.h/o) + (0.40) Switched to autoconf/automake to enhance multi platforms support + Include packaging files for RPM (Mandrake) based + Did a bit of code cleaning. + Fixed some minor bugs + Various minor changes (reformated/renamed CHANGES, ...) 2002-05-05 Arnaud Quette * wmnut-0.1.0: + WMNut now supports multiple host monitoring. + Modified code to hide all values on lost communication. + Enhanced rcfile code. + Enhanced data (NUT) fetch code and add TCP mode. + Enhanced code to handle unsupported values and their display. 2002-03-16 Arnaud Quette * wmnut-0.0.9: + Added rc files support (/etc/wmnutrc and ~/.wmnutrc). + Modified Makefile to allow easy override of various parameters (NUT, X11, install directories). + Replaced "-display" command line option with "-d" (easier, but "-display" is still supported for compatibility). + Modified wmgeneral.h to define WMNUT_NAME (default is wmnut). + Modified code not to bail out every times when accessing unsupported variables. + Reformated help (-h argument) output so it now fits in 80 characters. + Modified code to handle FreeBSD X11 problems (Segfault on XCloseDisplay). + Modified code to handle blinking red "C" when communication is lost. + Fixed Makefile to use CFLAGS instead of COPTS and to include DEBUG flags. + Added full window name (form: "wmnut:upsname", eg "wmnut:el800@localhost"). + Did a bit of code cleaning. + Fixed a bug for multiple blinking events at the same time. 2002-01-19 Arnaud Quette * wmnut-0.0.8: + Added blinking battery (Red/Yellow/Green) when On Battery (respectively Critical/Low/High). + Added blinking 'C' when Communication Lost (Data stale). + Modified INSTALL to include "make install-misc" from NUT needed. + Modified fetch code to handle unsupported features (RUNTIME) and other error codes. + Added X11 Atom management to allow clean window close (corrects the "Broken pipe" message when exiting). + Added cleanup on exit (need to be completed). + Added a -w windowed mode (opposite to native withdrawn mode for Window Maker). This allows better window handling on other Window Managers). + Fixed some problems with FreeBSD (forgotten #ifdef). + Did a bit of code cleaning (not completed). + Modified wmnut_master_LowColor.xpm according to wmnut_master.xpm The -l (LowColor) option now works. + Modified wmnut_master*.xpm to make green plug as default (was blue) according to Bill Richter (huge thanks to him for his help !). + Added "-v" option to print WMNUT version and information. + Added "-V" option to print available features and base values. 2002-01-01 Arnaud Quette * wmnut-0.0.7: initial version. wmnut-0.72/INSTALL000066400000000000000000000366101505630336300136570ustar00rootroot00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. wmnut-0.72/Makefile.am000066400000000000000000000020521505630336300146530ustar00rootroot00000000000000dist_sysconf_DATA = wmnutrc EXTRA_DIST = BUGS ChangeLog README.asciidoc autogen.sh # Files referenced by main README.asciidoc EXTRA_DIST += \ images/WMnut_desc.png \ images/wmnut-0_09w.jpg \ images/wmnut-0_09win.jpg \ images/wmnut-0_60kde.jpg \ images/wmnut-pr.pdf SUBDIRS = src icons contrib doc # ---------------------------------------------------------------------- # Maintainers targets: distribution signature and hashes # Assume tools are available (and maintainer GPG keys) dist-files: dist dist-sig dist-hash wmnut-@PACKAGE_VERSION@.tar.gz: dist wmnut-@PACKAGE_VERSION@.tar.gz.sig: dist-sig wmnut-@PACKAGE_VERSION@.tar.gz.md5 wmnut-@PACKAGE_VERSION@.tar.gz.sha256: dist-hash dist-sig: wmnut-@PACKAGE_VERSION@.tar.gz rm -f wmnut-@PACKAGE_VERSION@.tar.gz.sig gpg --detach-sign wmnut-@PACKAGE_VERSION@.tar.gz dist-hash: wmnut-@PACKAGE_VERSION@.tar.gz md5sum wmnut-@PACKAGE_VERSION@.tar.gz > wmnut-@PACKAGE_VERSION@.tar.gz.md5 sha256sum wmnut-@PACKAGE_VERSION@.tar.gz > wmnut-@PACKAGE_VERSION@.tar.gz.sha256 MAINTAINERCLEANFILES = wmnut-*.tar* wmnut-0.72/NEWS000066400000000000000000000000161505630336300133140ustar00rootroot00000000000000See Changelog wmnut-0.72/README000077700000000000000000000000001505630336300161302README.asciidocustar00rootroot00000000000000wmnut-0.72/README.asciidoc000066400000000000000000000247171505630336300152700ustar00rootroot00000000000000WMNut ===== Description ----------- WMNut is a program to monitor multiple UPS devices' statistics through the NUT (link:http://www.networkupstools.org[Network UPS Tools]) framework on Linux and other systems. It is a dockapp that is supported natively by X window managers such as Window Maker, AfterStep, BlackBox, FluxBox, and Enlightenment. WMNut will run as a simple 64*64 pixels window in other Window Managers, or when using *-w*. image:images/WMnut_desc.png[] WMNut provides multiple UPS's monitoring with: - Status of power supply (battery or AC Power), - Communication status with UPS (Red/Green "C"), - Percentage of battery remaining (numeric and meter), - Load level percentage on output (numeric, if available), - Runtime to empty, i.e. time left to battery depletion (MM:SS), - High/Low/Critical battery status (Red/Yellow/Green colored meter and battery). It is known to run on GNU/Linux, FreeBSD, OpenBSD and OpenIndiana (based on illumos/Solaris), but should also run on any other system supporting X11. Like NUT, it may require C99 or newer compiler support. Download -------- - link:https://github.com/networkupstools/wmnut/releases[Tagged official releases on GitHub] - link:https://github.com/networkupstools/wmnut/releases/download/v0.72/wmnut-0.72.tar.gz[wmnut-0.72.tar.gz] - link:https://github.com/networkupstools/wmnut/raw/master/ChangeLog[ChangeLog] //////////////////////////////////////////////////////////////////////////////// - link:http://github.com/networkupstools/wmnut/raw/master/HINTS[HINTS] - link:http://github.com/networkupstools/wmnut/raw/master/TODO[TODO] //////////////////////////////////////////////////////////////////////////////// - link:http://packages.debian.org/wmnut[Debian packages] - link:http://www.rpmfind.net/linux/rpm2html/search.php?query=wmnut[RPM packages] Note that you can also access the link:http://web.archive.org/web/20110913170506/http://wmnut.mgeops.org/files/arch/[old] and link:http://web.archive.org/web/20110913170506/http://wmnut.mgeops.org/files/testing/[testing] WMNut releases. Installation instructions ------------------------- Requirements ~~~~~~~~~~~~ WMNut requires the: - X Window client and Xpm libraries and development files. * For example on a Debian GNU/Linux system, you need to install the packages `libxext-dev` and `libxpm-dev`; other systems may have this without `-dev` suffix, or other suffixes like `-devel`. * If `X11/X.h` is not found, see if you have `xorgproto` package. - NUT client library, version 2.8.0 or higher. * For example on a Debian GNU/Linux system, you need to install the package `libupsclient-dev` (note that some stable distributions still ship older NUT v2.7.4 based packages!) * WMNut may actually still work with 2.4.0 or higher -- but at the expense of build warnings with data type mismatches and some needed tweaks of the `configure.ac` script and possibly wmnut codebase itself. It may be easier to just take wmnut-0.67 or an older release then. - Prerequisite libraries equipped with `pkg-config` metadata (the `*.pc` files), but installed into uncommon locations (such as a custom build of NUT), can be suggested to the WMNut `configure` script by providing e.g. `PKG_CONFIG_PATH=/usr/local/ups/lib/pkgconfig` environment variable. In order to compile WMNut using the `Makefile`, GNU `make` should be used. NOTE: For FreeBSD, OpenBSD and OpenIndiana users, the default BSD `make` or Sun `dmake` programs respectively in modern releases (2020's) do also work for the simple recipes used here; however in case of reported `Makefile` syntax problems -- remember to try using `gmake` instead! Installation ~~~~~~~~~~~~ 1) Download WMNut source code (from GitHub) or archive (`.tar.gz` or `.tar.bz2`) Either get an archive file from link:https://github.com/networkupstools/wmnut/releases[WMNut releases on GitHub] or clone the git repository using: $ git clone https://github.com/networkupstools/wmnut.git 2) Uncompress the archive (not needed for github source code) $ tar -zxvf wmnut-X.YZ.tar.gz $ tar -jxvf wmnut-X.YZ.tar.bz2 3) Switch to WMNut source code directory $ cd wmnut-X.YZ If you are using the git source code, use: $ cd wmnut 4) Prepare the source for building [NOTE] ================================================================================ when using the git repository, be sure to first call: $ autoreconf -i It is also wrapped into a simple `autogen.sh` script for consistency with other NUT source code repositories. ================================================================================ Just call the usual: $ ./configure [NOTE] ================================================================================ WMNut now uses `pkg-config` to determine the location of NUT library and headers by default. Alternatively, you can point to systems-dependent location of a custom NUT build or installation (`make install DESTDIR=...`) area, like this: NUT_LIBS="-L${HOME}/nut/clients/.libs -lupsclient" \ NUT_CFLAGS="-I${HOME}/nut/include -I${HOME}/nut/clients" \ ./configure # You would need to install that libdir or pass it with LD_LIBRARY_PATH # to run the built program experimentally, e.g.: LD_LIBRARY_PATH=${HOME}/nut/clients/.libs ./src/wmnut -w ================================================================================ 5) Now compile WMNut $ make Or (may be needed for *BSD and Solaris/illumos based systems): $ gmake 6) And install it on your system Use the following command, as `root` (or using `sudo`): $ make install Or simply copy the `wmnut` binary (and optionally its manual page) to the right directories on your system. 7) Optionally, configure WMNut for your own use WMNut will automatically connect to any local device(s). So if you have remote system(s) that you want to monitor, edit and adapt your `wmnutrc` file . Then copy it to your user home directory and/or to your system `/etc` directory, using commands like: $ cp wmnutrc /etc/wmnutrc and/or: $ cp wmnutrc ~/.wmnutrc [NOTE] ================================================================================ - as of WMNut 0.65, `wmnutrc` is installed now, to `/etc` by default - if both files exist, `~/.wmnutrc` takes precedence, - command line options take precedence over configuration files, - on Debian, a sample `wmnutrc` is located in `/usr/share/doc/wmnut/`. ================================================================================ 8) Launch WMNut $ wmnut & You can also use `wmnut -h` for help, or `man wmnut` to access the manual page. If no parameter is given, wmnut will try to access the UPS at "localhost" address. Otherwise try `wmnut -U upsname@hostname` or edit your `wmnutrc` files. Be sure to read the `HINTS` and `TODO` files too! Copyright and license --------------------- WMNut is Copyright (C) 2002 - 2020 by link:http://arnaud.quette.free.fr/contact.html[Arnaud Quette] WMNut is Copyright (C) 2021 - 2025 by the link:https://networkupstools.org[Network UPS Tools project] and hosted at https://github.com/networkupstools/wmnut repository wmnut 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Credits ------- WMNut is based on `wmapm` originally written by Chris D. Faulhaber and M.G. Henderson. Huge thanks to: - link:mailto:aquette.dev@gmail.com[Arnaud Quette] for the majority of initial development and maintenance of the WMNut project since 2002. - Russell Kroll for having initiated and driven the NUT project (link:http://www.networkupstools.org[Network UPS Tools]), until 2004. Note that Arnaud had also taken over NUT leadership since 2005 to 2020. - Bill Richter, Laszlo Hazy and David Butts for their support in beta test and improvement of WMNut, - Martijm Pieterse and Antoine Nulle for a great (and somewhat standardized) interface which Arnaud used as a template (`wmmon.app` and `wmgeneral`), - Luca Filipozzi for WMNut Debian package creation, later maintained by Arnaud, available at link:http://packages.debian.org/wmnut[Debian website]. Help ---- We are interested in having feedback about how WMNut runs on other platforms (BSD, Solaris, ...) and searching for packagers on those platforms. If you have nice suggestions, ideas, whatever, that are not on TODO list, feel free to post issues and pull requests at https://github.com/networkupstools/wmnut/releases You can also try the NUT community support channels, as detailed at https://networkupstools.org/support.html FAQ --- (How) Does WMNut support multiple UPS monitoring? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Yes, WMNut can monitor up to 9 UPSs since release 0.1. Take a look at `HINTS` file and manual page for more details about using this feature. Can I set the initial size of WMNut? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ No, WMNut is limited to 64*64. I'm not running WindowMaker nor AfterStep. How can I run WMNut in windowed mode (i.e. not having transparent background !)? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Try running `wmnut -w`. See below for a screenshot. I can't compile WMNut ("undefined reference to `upslogx'", "upsfetch.h/o not found" or "upsclient.h/o not found") or WMNut doesn't work! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ There is always lots of improvements in both NUT and WMNut... To solve your problem, you should upgrade to the most current release of NUT and WMNut, and the problem should disappear -- it was solved in the past. Screenshots ----------- For a larger collection of screenshots from WMNut v0.71 (with added support for many more NUT `ups.status` values) please see link:images/wmnut-pr.pdf[] Withdrawn mode ~~~~~~~~~~~~~~ image:images/wmnut-0_09w.jpg[] Windowed mode (-w) ~~~~~~~~~~~~~~~~~~ image:images/wmnut-0_09win.jpg[] Windowed mode (-w) under KDE (Plastik) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ image:images/wmnut-0_60kde.jpg[] wmnut-0.72/TODO000066400000000000000000000031731505630336300133140ustar00rootroot00000000000000TODO list for WMNUT -------------------------------------------------------------- Note: WMNut is no more evolving, though still maintained. This means that the TODO list items below will probably never get implemented. Planned for 0.80.0 * Status overview (9 R/G/B/none LED) between arrows and panel Planned for 0.90.0 * Page 0 dedicated as a "launcher" page (to call wmnut configuration GUI, or external application) Planned for 0.95.0 * wmnut configuration GUI to ease user configuration, Planned for 1.0.0 * Above and below features, no bugs and no user request pending. Not scheduled yet or backgrounded: * autoconf for getopt: EOF (Solaris) vs. -1 (HP-UX, AIX) * Derive a gkrellm applet (or include an option) * Validate and enhance other platforms support (FreeBSD, NetBSD, Solaris and other NUT supported platforms), and other window managers support * Add an option to choose between battery load in bargraph or with a battery (asapm style) or Themability (skins !) * Nice logo. * Background color option * Enlarge border in windowed mode to facilitate window moving * consider creating /var/run/wmnut.pid (for fixing multi instance pb) * Add setitimer to flush_expose() to deal with no X11 events Abandoned features * Derive a gnome / kde applet (or include an option). This is part of other projects. * dynamically reread rcfiles files on SIGUSR1 Your feedback is greatly appreciated! If you have nice suggestions, ideas, code, patches, whatever, that aren't on this list, feel free to post them to https://github.com/networkupstools/wmnut/issues If you don't let us know... how are we supposed to know? ;-) wmnut-0.72/autogen.sh000077500000000000000000000012201505630336300146140ustar00rootroot00000000000000#!/bin/sh # Pre-configure step for WMNut if (command -v pkg-config) >/dev/null 2>/dev/null ; then NUTVER="`pkg-config --modversion libupsclient`" case "$NUTVER" in [01].*|2.[01234567].*) echo "WARNING: pkg-config finds older NUT ($NUTVER) libraries than required by this WMNut release. You may get build warnings, or have to pass custom ones with configure options!" >&2 echo "===========" >&2 ;; "") echo "WARNING: pkg-config did not find NUT libraries. You may have to pass custom ones with configure options!" >&2 echo "===========" >&2 ;; esac fi autoreconf -i wmnut-0.72/configure.ac000066400000000000000000000150221505630336300151060ustar00rootroot00000000000000dnl ==================================================================== dnl | WMNut: configure.ac | dnl ==================================================================== AC_INIT([wmnut],[0.72],[https://github.com/networkupstools/wmnut/issues]) AC_CANONICAL_HOST AC_CANONICAL_TARGET AC_CONFIG_SRCDIR(src/wmnut.c) AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) dnl Checks for programs. AC_PROG_INSTALL AC_PROG_CC dnl AC_SUBST(VERSION) dnl dnl ISODATE="`date +%Y-%m-%d`" dnl AC_SUBST(ISODATE) dnl FIXME: ...or check if a newer C standard is enabled AC_MSG_CHECKING([whether we build in C99/GNU99 mode]) AS_CASE(["${CC}${CFLAGS}"], [*99*], [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no) AC_MSG_WARN([If your build fails due to standard system header method and type names, or ISO C90 warnings, make sure you build in C99 mode (or newer) e.g. by passing '-std=gnu99' to GCC/CLANG]) ]) dnl dnl Specify paths to look for libraries and headers dnl =============================================== AC_ARG_WITH(libs-from, [ --with-libs-from pass compiler flags to look for libraries], [lib_search_path="$withval $lib_search_path"]) AC_ARG_WITH(incs-from, [ --with-incs-from pass compiler flags to look for header files], [inc_search_path="$withval $inc_search_path"]) dnl =========================== dnl Checks for standard header files. dnl =========================== AC_HEADER_SYS_WAIT AC_CHECK_HEADER([limits.h], [AC_DEFINE([HAVE_LIMITS_H], [1], [Define to 1 if you have .])]) AC_CHECK_HEADER([stdlib.h], [AC_DEFINE([HAVE_STDLIB_H], [1], [Define to 1 if you have .])]) AC_CHECK_DECLS(realpath, [], [], [#ifdef HAVE_LIMITS_H # include #endif #ifdef HAVE_STDLIB_H # include #endif ]) AC_CHECK_HEADERS(unistd.h stdio.h string.h signal.h ctype.h stdarg.h sys/time.h time.h X11/X.h X11/Xlib.h X11/xpm.h X11/extensions/shape.h X11/Xatom.h) dnl =========================== dnl Checks for standard library functions. dnl =========================== dnl AC_FUNC_MALLOC AC_CHECK_FUNCS(usleep snprintf strdup) dnl =========================== dnl check for getopt specifics. dnl =========================== AC_CHECK_LIB(gnugetopt, getopt_long) AC_CHECK_HEADERS(getopt.h) AC_CHECK_FUNCS(getopt_long) dnl =========================================== dnl Stuff that uses X dnl =========================================== AC_PATH_XTRA X_LIBRARY_PATH="$x_libraries" XCFLAGS="$X_CFLAGS" XLFLAGS="$X_LIBS" XLIBS="-lX11 $X_EXTRA_LIBS" lib_search_path="$lib_search_path $XLFLAGS" inc_search_path="$inc_search_path $XCFLAGS" AC_SUBST(X_LIBRARY_PATH) dnl XBell Extension dnl =============== dnl AC_CHECK_LIB(X11, XBell, [XLIBS="$XLIBS -lX11"], dnl [echo "The XBell extension stuff could not be found in the X client libraries" dnl exit 1], dnl $X_LIBS $X_EXTRA_LIBS -lX11) dnl Shape extension dnl =============== AC_CHECK_LIB(Xext, XShapeCombineMask, [XLIBS="$XLIBS -lXext"], [echo "The shape extension stuff could not be found in the X client libraries" exit 1], $X_LIBS $X_EXTRA_LIBS -lX11) dnl XPM library dnl =========== AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData, [XLIBS="$XLIBS -lXpm"], [echo "The libXpm library was not found, but is necessary to build this library" exit 1], $X_LIBS $X_EXTRA_LIBS -lX11) AC_SUBST(XCFLAGS) AC_SUBST(XLFLAGS) AC_SUBST(XLIBS) AC_SUBST(X_EXTRA_LIBS) dnl =============================================== dnl End of stuff that uses X dnl =============================================== dnl ========= dnl Debugging dnl ========= AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging [default=no]],, enable_debug=no) if test x"$enable_debug" = xyes; then DBGFLAGS="-Wall -g -pedantic" dnl Avoid "-ansi": it requires C89 which the modern system dnl headers are not compatible with generally dnl DBGFLAGS="$DBGFLAGS -ansi" fi AC_ARG_ENABLE(Werror, [ --enable-Werror make compiler warnings fatal [default=no]],, enable_Werror=no) if test x"$enable_Werror" = xyes; then DBGFLAGS="$DBGFLAGS -Werror" fi AC_SUBST([DBGFLAGS]) dnl =============== dnl Dockapp library dnl =============== dnl AC_CHECK_LIB(libdockapp, DAInitialize, [DOCKLIBS="$DOCKLIBS -ldockapp"], dnl [echo "The libdockapp library was not found, but is necessary to build this library" dnl exit 1], dnl $DOCKLIBS -ldockapp) dnl AC_SUBST(DOCKLIBS) AC_HEADER_MAJOR AC_FUNC_ALLOCA AC_STRUCT_TM AC_STRUCT_ST_BLOCKS dnl =============================================== dnl Checks for NUT client library dnl =============================================== dnl If you really must build against older NUT, tweak the version here dnl (perhaps 2.4.0+ may do) -- beware the build warnings and possible dnl data type incompatibility however! See project commit history to dnl maybe revert the changes (done in 2023) needed for the modern NUT. dnl It may be easier to just take wmnut-0.67 or an older release then. PKG_CHECK_MODULES(NUT, libupsclient >= 2.8.0) NUT_HEADER="$NUT_CFLAGS" NUT_LIB="$NUT_LIBS" NUT_VERSION="" AC_MSG_CHECKING([for precise NUT version we are building against]) AS_IF([test x"$PKG_CONFIG" != x], [ NUT_VERSION="`$PKG_CONFIG --modversion libupsclient`" || NUT_VERSION="" ]) AS_IF([test x"$NUT_VERSION" = x], [AC_MSG_RESULT([could not determine]) AC_DEFINE_UNQUOTED([HAVE_NUT_VERSION], [0], [Do we know the precise NUT version WMNut was built against?]) ], [AC_MSG_RESULT([${NUT_VERSION}]) AC_DEFINE_UNQUOTED([NUT_VERSION], ["${NUT_VERSION}"], [Precise NUT version WMNut was built against]) AC_DEFINE_UNQUOTED([HAVE_NUT_VERSION], [1], [Do we know the precise NUT version WMNut was built against?]) ] ) dnl NOTE: `upscli_str_contains_token()` is expected since NUT v2.8.3 myCFLAGS="$CFLAGS" myLIBS="$LIBS" CFLAGS="$NUT_CFLAGS" LIBS="$NUT_LIBS" AC_CHECK_FUNCS(upscli_strerror upscli_str_contains_token) CFLAGS="$myCFLAGS" LIBS="$myLIBS" dnl Checks for typedefs, structures, and compiler characteristics. dnl ============================= dnl Checks for library functions. dnl ============================= LIBRARY_SEARCH_PATH="$lib_search_path" HEADER_SEARCH_PATH="$inc_search_path" AC_SUBST(LIBRARY_SEARCH_PATH) AC_SUBST(HEADER_SEARCH_PATH) AC_SUBST(NUT_HEADER) AC_SUBST(NUT_LIB) AC_SUBST(NUT_VERSION) dnl =========================== dnl Checks for non-standard library functions (might come from libs/headers found above). dnl =========================== AC_CHECK_FUNCS(xcalloc xmalloc) AC_CONFIG_FILES([ Makefile src/Makefile doc/Makefile icons/Makefile contrib/Makefile contrib/wmnut-mdk.spec contrib/wmnut.spec contrib/wmnut.ebuild ]) AC_OUTPUT wmnut-0.72/contrib/000077500000000000000000000000001505630336300142605ustar00rootroot00000000000000wmnut-0.72/contrib/.gitignore000066400000000000000000000000601505630336300162440ustar00rootroot00000000000000Makefile wmnut-mdk.spec wmnut.ebuild wmnut.spec wmnut-0.72/contrib/Makefile.am000066400000000000000000000001731505630336300163150ustar00rootroot00000000000000EXTRA_DIST = README $(desktop_DATA) # The desktop files desktopdir = $(datadir)/applications desktop_DATA = wmnut.desktop wmnut-0.72/contrib/README000066400000000000000000000006361505630336300151450ustar00rootroot00000000000000*** Packaging scripts for various OS 1) Usage note: -------------- You need to call configure, from the top level directory, to generate an updated version of your packaging script. 2) Existing packaging scripts: ------------------------------ * Mandrake GNU/Linux: wmnut-mdk.spec * Other RPM based: wmnut.spec * Gentoo Linux (basic and not tested): wmnut.ebuild author: Arnaud Quette wmnut-0.72/contrib/wmnut-mdk.spec.in000066400000000000000000000055601505630336300174720ustar00rootroot00000000000000%define name wmnut %define version @VERSION@ %define release 1mdk %define summary A wmaker dock app that displays UPS statistics from NUT's upsd. Name: %{name} Summary: %{summary} Version: %{version} Release: %{release} License: GPL URL: http://wmnut.mgeups.org/ Source: http://wmnut.mgeups.org/files/%{name}-%{version}.tar.bz2 Group: Graphical desktop/WindowMaker BuildRequires: nut-devel >= 2.0.0 BuildRequires: XFree86-devel BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot %description A wmaker dock app that displays UPS statistics from NUT's upsd. WMNUT monitors UPS statistics through the NUT (Network UPS Tools, www.networkupstools.org) framework on Linux and other systems. This information, presented in a nice visual format, can be invaluable on stations using an UPS. %prep [ -d %buildroot ] && rm -rf %buildroot %setup -q %build %configure %make %install %makeinstall %{__strip} %buildroot/%{_bindir}/* install -D -m 644 icons/%{name}-mdk-16.png %buildroot%{_miconsdir}/%{name}.png install -D -m 644 icons/%{name}-mdk-32.png %buildroot%{_iconsdir}/%{name}.png install -D -m 644 icons/%{name}-mdk-48.png %buildroot%{_liconsdir}/%{name}.png install -m 755 -d %buildroot%{_menudir} cat << EOF > %buildroot%{_menudir}/%{name} ?package(%{name}):command="%{_bindir}/%{name}" icon="%{name}.png"\\ needs="wmaker" section="Applications/Monitoring" \\ title="WMNut" longtitle="UPS monitoring in a dockapp" EOF cat << EOF > %buildroot%{_menudir}/%{name}-kde ?package(%{name}):command="%{_bindir}/%{name} -w" icon="%{name}.png"\\ needs="kde" section="Applications/Monitoring" \\ title="WMNut" longtitle="UPS monitoring in a dockapp" EOF cat << EOF > %buildroot%{_menudir}/%{name}-gnome ?package(%{name}):command="%{_bindir}/%{name} -w" icon="%{name}.png"\\ needs="gnome" section="Applications/Monitoring" \\ title="WMNut" longtitle="UPS monitoring in a dockapp" EOF %clean rm -rf %buildroot %post %{update_menus} %postun %{clean_menus} %files %defattr (-,root,root) %doc AUTHORS BUGS ChangeLog COPYING INSTALL NEWS README TODO wmnutrc %_bindir/wmnut %_menudir/wmnut* %_iconsdir/* %_mandir/man1/wmnut.1.bz2 %changelog * Wed Jan 05 2005 Arnaud Quette 0.61-1mdk - re integrate the official Mandrake .spec and update it - install the default wmnutrc in /etc - update NUT URL - provide a sample wmnutrc for users monitoring non localhost UPS or more than one unit * Tue Nov 25 2003 Marcel Pol 0.60-3mdk - buildrequires * Fri Nov 21 2003 Arnaud de Lorbeau 0.60-2mdk - Add menu for kde and gnome * Thu Nov 20 2003 Arnaud de Lorbeau 0.60-1mdk - Initial mdk contrib - Work on spec * Fri Oct 17 2003 Arnaud Quette 0.59-1mdk - Initial packaging. wmnut-0.72/contrib/wmnut.desktop000066400000000000000000000004361505630336300170300ustar00rootroot00000000000000[Desktop Entry] Version=1.0 Type=Application Terminal=false Icon[fr_FR]=wmnut Name[fr_FR]=WMNut Exec=wmnut -w Name=WMNut Icon=wmnut Categories=System;Monitor Keywords=dockapp;monitor;UPS;NUT;window maker Comment=Monitor multiple UPSs statistics through the Network UPS Tools framework. wmnut-0.72/contrib/wmnut.ebuild.in000066400000000000000000000011121505630336300172200ustar00rootroot00000000000000# WMNut ebuild script for Gentoo Linux # Copyright (c) 2003 Arnaud Quette arnaud.quette@free.fr # Distributed under the terms of the GNU General Public License v2 S=${WORKDIR}/${P} DESCRIPTION="WMNut is a wmaker dock app that displays UPS statistics from NUT's upsd." SRC_URI="http://wmnut.tuxfamily.org/files/${P}.tar.bz2" HOMEPAGE="http://wmnut.tuxfamily.org/" KEYWORDS="x86 sparc " LICENSE="GPL-2" SLOT="0" DEPEND="virtual/x11" src_compile() { econf || die "configure failed" emake || die "parallel make failed" } src_install () { einstall || die "make install failed" } wmnut-0.72/contrib/wmnut.spec.in000066400000000000000000000037361505630336300167240ustar00rootroot00000000000000# wmnut.spec # # Copyright (c) 2003 Arnaud Quette arnaud.quette@free.fr # %define name wmnut %define version @VERSION@ %define release 1 %define manifest %{_builddir}/%{name}-%{version}-%{release}.manifest Name: %{name} Version: %{version} Release: %{release} Copyright: GPL Group: Application/Misc Source: http://wmnut.tuxfamily.org/files/%{name}-%{version}.tar.bz2 BuildRoot: /var/tmp/%{name}-%{version} Packager: Arnaud Quette arnaud.quette@free.fr URL: http://wmnut.tuxfamily.org/ # optional items #Vendor: Arnaud Quette #Distribution: #Icon: #URL: # # source + patches Source: %{name}-%{version}.tar.gz #Source1: #Patch: #Patch1: # RPM info #Provides: #Requires: #Conflicts: #Prereq: #Prefix: /usr Summary: A wmaker dock app that displays UPS statistics from NUT's upsd %description A wmaker dock app that displays UPS statistics from NUT's upsd WMNUT monitors UPS statistics through the NUT (Network UPS Tools, www.exploits.org/nut) framework on Linux and other systems. This information, presented in a nice visual format, can be invaluable on stations using an UPS. %prep rm -rf $RPM_BUILD_ROOT %setup -q #%patch0 -p1 %build ./configure --prefix=/usr # %configure make %install # make DESTDIR=$RPM_BUILD_ROOT install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT %makeinstall # __os_install_post is implicitly expanded after the # %install section... do it now, and then disable it, # so all work is done before building manifest. %{?__os_install_post} %define __os_install_post %{nil} # build the file list automagically into %{manifest} cd $RPM_BUILD_ROOT rm -f %{manifest} find . -type d \ | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' >> %{manifest} find . -type f \ | sed 's,^\.,\%attr(-\,root\,root) ,' >> %{manifest} find . -type l \ | sed 's,^\.,\%attr(-\,root\,root) ,' >> %{manifest} #%pre #%post #%preun #%postun %clean rm -f %{manifest} rm -rf $RPM_BUILD_ROOT %files -f %{manifest} %defattr(-,root,root) #%doc README #%docdir #%config %changelog wmnut-0.72/doc/000077500000000000000000000000001505630336300133655ustar00rootroot00000000000000wmnut-0.72/doc/.gitignore000066400000000000000000000000111505630336300153450ustar00rootroot00000000000000Makefile wmnut-0.72/doc/Makefile.am000066400000000000000000000000571505630336300154230ustar00rootroot00000000000000 man_MANS = wmnut.1 EXTRA_DIST = $(man_MANS) wmnut-0.72/doc/wmnut.1000066400000000000000000000044541505630336300146300ustar00rootroot00000000000000.TH WMNUT 1 "01 June 2012" .SH NAME WMNUT \- Dockable UPS Monitor .SH SYNOPSIS .B wmnut [\-A T1 T2] [\-b BlinkRate] [\-B BeepVolume] [\-C CriticalLevel] [\-d display] [\-h] [\-l] [\-L LowLevel] [\-U upsname] [\-v] [\-V] [\-w] .SH DESCRIPTION .PP WMNUT is an UPS Monitor. It is used to visually display and interpret details of up to 9 UPSs status via NUT \- Network UPS Tools framework. .PP WMNUT is dockable using WindowMaker and AfterStep window\-managers; under other window\-managers, WMNUT should be used with "\-w" option to appear as a nicely\-sized 64x64 application with a background. .PP WMNUT provides the following information: .TP \- Status of power supply (Blinking Red/Yellow/Green colored meter/battery), .TP \- Percentage of battery remaining (numeric and meter), .TP \- Load level percentage on output (numeric, if available), .TP \- Runtime to empty, ie time left to battery depletion (MM:SS), .TP \- Communication status with UPS (Blinking Red/Green "C"). .SH OPTIONS .TP .B \-A Send messages to users terminals when Low and critical. T1 is seconds between messages when Low. T2 is seconds between messages when Critical. .TP .B \-b Blink rate for red LED. (0 for no blinking.) .TP .B \-B Beep at Critical Level. Volume is between \-100% to 100%. This function has been disabled, at least temporarily. .TP .B \-C Define level at which red LED turns on. .TP .B \-d Use alternate display. .TP .B \-h Display help screen. .TP .B \-l Use a low\-color pixmap to conserve colors on 8\-bit displays. .TP .B \-L Define level at which yellow LED turns on. CriticalLevel takes precedence if LowLevel Define upsname ([upsname@]hostname, default is localhost). You can use up to 9 call to \-U to monitor multiple UPSs. .TP .B \-v Print version (includes important WMNUT info). .TP .B \-V Verbose mode : display NUT available feature and base value. .TP .B \-w Windowed mode (opposite to native withdrawn mode for Window Maker). .SH BUGS None are known .SH AUTHOR Arnaud Quette .PP Maintained since 2021 by the Network UPS Tools project. wmnut-0.72/icons/000077500000000000000000000000001505630336300137335ustar00rootroot00000000000000wmnut-0.72/icons/.gitignore000066400000000000000000000000111505630336300157130ustar00rootroot00000000000000Makefile wmnut-0.72/icons/Makefile.am000066400000000000000000000001471505630336300157710ustar00rootroot00000000000000EXTRA_DIST = $(appicon_DATA) appicondir=$(datadir)/icons/hicolor/scalable/apps appicon_DATA=wmnut.svg wmnut-0.72/icons/README000066400000000000000000000000441505630336300146110ustar00rootroot00000000000000Icons for desktop and menu entries. wmnut-0.72/icons/wmnut.svg000066400000000000000000000363241505630336300156360ustar00rootroot00000000000000 image/svg+xml wmnut-0.72/images/000077500000000000000000000000001505630336300140655ustar00rootroot00000000000000wmnut-0.72/images/WMnut_desc.png000066400000000000000000000412371505630336300166520ustar00rootroot00000000000000‰PNG  IHDRFDíDdgAMA± üabKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIMEÒ /îëTâ IDATxœí½yœ]U•/¾öpæ;ÕœTaPp¡mÛVZ†€ QH‚ *2¯ÛöµŸ¶ûéîö!¶º™D[ H Á–VBDE@ !CÍUw<ó~¸ÜÜáÔ­ª[U·B}?õIÎÝgïµ×Y{¯a¯³Ï9HJ ­€”!Ô|µ&ëOµÓ–=´9{‹Ø€Z¥Ò•Xœ¸‹XÄ|ÏÑE}Ž0ær¾zYÄBÁ¬¨t“hŸ¹XÉÉ íÑ´I-ÚÁ·fuæ·R¥«”ïùÄeöâ— •WÑÌH ÔšµL£~k‰×fb*/¢0«3VÖÒoR¯`=ÒœfºÛ/—âѵÏüÒöKá,¢…˜•À;ÒÛò$žêTnÛ);só7½K›R0¿è™ßâ˜-/]×!WVùðªò*·V®Pëù£ƒè¸²r¹fUÛJûR—Ÿ™ÄD¹.'¦U%ÏÍ÷[Ûi£+Zļ£U ±)ô8—*S¡ÑÏÚƒæÏ6ú û*y­úE%µ‘E<åøËo^ SíwÒ+ZÄ|AJ‰1nÉ‚«yÌOÆ»vÚÕ½æYšš“’­ròšÑÉ2b(Çi²ßZY !b{‹£<(ãøÑ™ñø³uÇ´U¨;—æó&V„&£Í¹\`7¹ ®®«ŒWÚø)5íkœ3k¸QŽ}„Óv˜³*Ïiߤ¨{!´½ÁÊTÝZ%[ÓY“c3aO“Z4]7/ÕELŠ&“/ãªSå³²uËËó¡QJ(Òšºuš¼¢–y阼QmÚ‰-9bè7R˜f¸j‰«k³êjN£àbzfk²ZD b&jm„U™©©õðUþ¿ª£ºñZ•žG Ѿ™àò¿²ÍÛè¹»/ yéÚ³µÆê=ã!÷MíÖž­Û/TŒM3?ërÏs]¶]WLùTû­½„òT€E¼xÊBTNË* 7ÿ³ òôX#®*MF݃ºõËÄg7ð®‹)©DÝòòq݃ÚÂæ)7ߪIÊ“®ˆšäjªýN•Ô~ºs½‘ÕŽïù¡I1“åϤmU˜ÿôØ´1{ËÅI²Ö”4™QkU¿‹h„øuÒ³u˧·zŠ÷Þ“6/'ó*ÑLÛ¬Ò1˜áÔo~…ÜZ›=¥•ù"ê¢ÅøêJx&·6dEB®²U3.nKXÄ~Ž˜E2”P“ªº¨Ò‹XÄë˜Rb¹å½ÄôÞFï·¦1!æf-b¿A3fÿ\K—“0‡).¹[Ò° ‹úµª¯R[ðw¥Gˆ­:ß¼Ö7Óª®&-zná±ÇûÚ×¾6ÃÞ:f¾²Ñ]¢IK궪»Á£å†#†ó)a¼ã}cLÃFwög~/ª6ûÒÌì±mûãÿ¸ïûããã×_=!dJl¼uÍfo¹å–7þò—¿Ôu½ÉVµƒÒÌ}àÉwkµ[œU»ta¡êª~F¯û¨üÙèTmÛº%Mv]ÛiTRwãn%~ðƒDsôŒ3Î(•Jñ•÷{ÔŠkÛ¶m_üâ-ËŠfï~ðƒÚVug¸¢’ÚLT QÛ¨¤ÊO4â*þl£cJÞ<5Õëi7T]B¨jÄŒY­Œâ‰7ß¼îxGUf¥–ì–-[ºººàøãŒaà-…­[·žsÎ9Qä‚:õÔS}ôÑF&²ê>H&5åUˆz©4Í“’B¸VUhdú›Ÿlå’úvÄPYˆ7oµu侊TYczZÄv·Š`UÛI}õK/½tØa‡ÀŠ+žþùI…°ƒs~ï½÷~àˆÄ¨iÚÅ_üÜsÏÅ·jÒŽ7SJmk5yRóQY³*”ˆé(îXD“j`üHL###'žx"d2™Ÿþô§­%¾ P*•n¸á†C=4Ræ®®®¯~õ«M†-3WéFÏ6ÖE-² ’J7â¹²÷I+/ªtk£ÒÓÖvÇqÎ=÷\PåöÛoŸ.k {÷îýÊW¾’Éd¢I|Øa‡ÝxãŽã4O¡ŽUZÛZ+Ÿš‰—®[az^ºŠ«FôãÙXTé6E4®œó¿ù›¿‰fö׿þu!„R¶8 h’!)¹xóx2„äBò©vòì³Ï®]»VUÕè’?øÁnÚ´i6q’I?ŵt|åºÎ³®J—ßÍ\—ZÙ MÊÀ¢J/xÜxãQZè /ô}WFª"¤äR )¤dr_52Ò?QþYyŠ¿ñ'd(“R¼YÄåëªÈÅÄëú)kÿä¾ +{¯0“Cñãÿø#ùH”.¦”žwÞyO=õÔL„Ö(‘ÑÌÙæ)Wéd¹¤ö \§êÖf„ÚÆô^Ù¤ ~÷Ø[?üá?ýéO—ìÒ=›6º®»¬·ßÍÛvÎ1­¤Rã…œBX ÈÐó…b,¥TA% ‰ˆD€8Ãn(8㸞’b!aœ @HB‚cD(ã(BÕŒh>_ÌdR®ëú¾ošf©TÒ)Ñ%ô}0ç¢QK§RÊP`×÷Tªp†§”þá…ç7nÜXõß÷ïºë®o}ë[Ï?ÿ<$“É‹/¾øª«®Z±bE[mÉjfþ Фö‡­&oœ~úé?ûÙÏN?ó4Dp2™œ§ ¥L£äyÏ„PJdè‹0@’©XjªBL…P•ÙpLrHÎÀªª¤ ‚\úÌ H% À c¡\"a.m×A( ŒÆ4\JI55ŸÏË骦¨Eºðw'åòåË_yå¥X&ÁB<òÈ#²B­ÆÇÇo¾ùæo¼qhh–/_~å•W~îsŸ+/¡[ˆ6Ñ癣‹°è¥Û•æµÝ»^|åc££›ï}ÖÙÙ]r=!5iyž‡˜ Œ)„a‘.EQÑÂLñPHPÆ\ Î91H RJpƘjiœ‡À! BD0޹D’sDɱ¡H¥®ë¦R  ×u"’P—sÀ”ò]OWTϵӖ966–H¦³…üÎ;„<·½òÊ¿þë¿Þ~ûíŽãÀqÇ÷¥/}é¼óÎSeª™žç3y†gJm½t»£r8<àÀ§ûŒJTa+“±Ý’˘TH©à’SLL("*±®` ªzL DÇXUP‘+‰@È÷…*ª@aE(8Æ’*,ô’s!@ˆ!BPˆ(ðü@€i#¾m»ªJ½IŒ8 Ý€cÌ5EçG¡´p&Ó™Íåz:»÷ìõ\ûì³Îzøá‡…ãÓN;í¯ÿú¯?üáO[ ³Ýª¦a &ÕášSÒÿE•nwT´k{:U Í´mûîM÷yRè&õ€Õ à$!  @ $`@%B¥@1 TR@KAAH‰‘É„@$Æ„Œ1US… ß÷Âi&Æ*w|¨ ìˆcŽ9f÷À^ÛsÍîNÛ¶¿~uÜ££ TŸç uŵ¨Ò ã‰tÊL'GŠ#œÚ$­œyÁYªe ¼¼{Ï3¯d·Ø¶Ã¬s¤ªI0â!ó¸ºÖ±lÙqï:zÉ!1‚víØ±ý¹ßïÞÞT©®˜*ÅsÍJ`D…Sâ%ɹDE©T8 z–.=éÏþÌL[AÉqGG‘ÒéÌ’·½ãà·Õ“î€Æòïmßûû_tvu çr9‚!iãc¹Ð÷ç[~û?UzAO@7õ×ö … ‹/Z{ó÷nµLË/þíþ÷­×ÝÒmuù> +[pÕ}.ÓV—úÂO[ùÉ[ÿõß2©„Ï|%i|ð/>ú³ŸüTNت®»nÉw2ÌáÂÈùk>³ñžXºf;ÎÛŽ;æ¨w}ßßí:pùGÎGS®½èžÿüvÈå±Ç¼wý]÷¨¡TU}Âv/úì…{û Œ±eéaRX"êH€EO<›Xðo5yKøå™R¤XHý::ÒÜs—õõýÇÍÿÑÑÓ‰"9RÊû†:ŠÐª+® Å“•wÞŽ%l"°¸*¾â CÉÁ”R7 BÎÇ#˜z‰Ç‡F®ë Œ‰¡A.0 ª¨&PCÓ­\Þvý°ä¸¾€@Vu/d¥9¦ d”]CBâ€8ZŒ«ç‹^z¡’@pIƒaÛ¶’‹%Þ»cïŠ|uHõ”ÞÞƒ°j3D—®xÉ)y–‚‰¦e†™LéLôI†n©04Ê‹EÄc(U53ô|Í0)¢K:z ~‰Rºë·/çwŽôRsïx©7ÕmP«0>ªgR¶¨ºeZ ¢«8aA*Qð˜‘ÎÈ¢Í,=  Á€#„É@E=ÛXTé… @… ˆ„éêBés~ؽ|I6›ïéééQ:‡² ?}ñ%£V:kûç_üîûwßyû¿ØJ)~°¬ÐgÛÿø²®¨Èõ×£TÕL#‘îφ¶¿²#C|+ÓIÎçzÓøàÝ¿ñÎd"Ó…LTåw¿{LŒŒ=þ‹'O?o•?ZÐ-‹¤»~ö‹ÿ–H  °” K¹ïnÐEÌï…$!É„’w5'°€ŽIÞ—v¸Õ¿tÌ.­ùËÏŒ ŽºÙ‚ÁQ‡€¿ûŸþàÎCº2n»íî[n3º{Ž>öèRPÀºð… p銀5L …è<C×™oÉ’þt¦³¯¯/!²ŒP'{F†Æ ¹žyš$´T,b!í×vÿÉN¢uuvìq?Þôí<¶uóÏøþ†w½ãhRJH€àˆ3"8BC7+Î2½ôƒ¡«n©Ó-$ì}myÞ<øÀyÿ)i-±î[ß^ÖÕKäØÅîîTª»ûùñ1ÿµW»HËìíL»Â Kžç ,xç‘÷ßwOR*V"51’g®k&3R3Ý]và ØÙ üÐûŽ<ꨟ޿ŽI`XønšznbœtwF¶m L,ÃdÙ¼N‰WwÐCÞ–N¦°$A$¸Þk6Ñz,ªôB‚DP†R¨Ôw}‚æð±g·YžÜü?¿â>Ë0Eú¾'Ä’—SÅxúé'9ò]¿ßücØ3˜èè`. ïF&0]·Ì.òÙž%lÇf2aXIW„»‡fŒ'RÝ#°’<)z%¥§#,Lh½ ÆÎá=VÒB”šš”pÉ e1·¤i H€$à‰ÅµôlcQ¥F ÙžÎ.¢¨…\V#øðþƒ†ö ÿáÕt*a{%K1 ÕE–Éì‘G112’2“Ý–jšJ.7òÐúu—]uùîñ1¢é!óº÷Þƒ–ôíy©XRÓé”´ÙÑGþÚàðî,æGVÔuý·O>ñÊžUEÐٕټi㟾 X³,Ëcró÷' þùæ/Y»Ê›H¤Òžn=úàÝ„s,±Ä p)0PäâZzÖ±ø$ÖB‚øÞë¢Ü»aƒ©’MÜ{ÐAËÍ„Qô¬*\ «Œ ‰prJT)!DÐ0õxÈ\bÒ€ B¨„€jó0$„H„AB¡* }É0 ‘bH)U,˜©ãqÆ9¦ ÈP š fb)„ªÆ9W¥oŒB~ß=ÎùäÇ/Ü™ sõ¬b1=¶À@0F$@ÀB)R!E%gH¡fÑõ­TGÉöSÉN$ˆ®èœsE!Žg§ÓI¿XìM$€w bxA`œ/õš ¿TìL$¨%JÈ‹b±7‘ŠÅ®DBe,I¹… òËMçóK Ý ¼„d1ߟ°xa¢7Aôp<……KH"`R€¤ )Lñ‰¢EL‹*½ÀÀ¹À•L2ÀqBîIŒtk¤à$»—íÉvööŽd©Ç UÅÈe‹=#ƒ£½]K&Ç;­Q XwÆ }™Þñ±%KF‡ÆÓ‰ŽÐu¬—Æ‹}™îñ±%ýãƒÙN+Ílß FT>¶wxiç’ÜÀx·™a6S©‘Ϲ=KG†³=ý»‡¬„êy9 K@2úþ@¤@rÑEÏ6UzaA¡#! @Ã4ç1Ÿ(ÒµÎÞ Ÿ'zú‡ ®ÖÑ5îúR5|PôΞ¬Ç=KÇŠž‘éÎÙ¡¤Fª•é-¸<ÕÓ•gP(Fˆ5³£'ïñd÷’±¢gdz²N(3@ªÙÑSpyº{éxÁ3Ó=”º‘êÍ:"Ù½|´ª™Ž¬›ULÁQ(cXH"rɸdó-Àý‹é±…‚bÎ…ËóE bTáHí>ð í»öª¦)0*1cI™0̼S2t ‚I3)“™¦^*•,Ëâ\rÎaŸrÇ4 !@†ŒdIŽdô¦±ryDIi©B.o¦À–Ã×3\†Š$2†=ª’HH$©‹w¥g‹^zAS ÎóXDUR]‡s‚Þ»ì/Î[[õS—\QeÕ%WÈT×)gK{úÿü¼59¤¬ú•y¤¬ú•"Ýõ'g«ô.ÿóóVçòéË®Ì#åS—^õFyÿGW½^?‹•O^zEmyD‡§ºN9ë\«ï€SÏ[;Áñª/\‘mÕ%—ý´Ug„rÄ"0p @!„¤„Ť÷좕*]û®Óº?cN5_³6Ú3áHàAˆ˜ÖA|¬%—¬È:ÌS-Ð’£ž€TWh(OufØš%ôäÇ!Ý=!©Ct™î·ਖГƒ.ƒt÷¸ ÖDªëÍrCº{è>åZzÈ•k(Ù5ÂE`&ÀJ û 2‚呯uœr‰$’K  HA¤D€ß¢+鹜“­ ¼} 7æzj¿áÚèˆeâµV –ÈŸkÄp8ék=XÀ„Ï(¦†nÑB†—‡X¬c+FÒ fÊ%EZI ¶R §\P@OøDPž¤Q3³O9R±‘*—{ €žpTžx½ÜH¹èr¬‚‘Å é4˜–K˜¦CPˆ96†Åë;º…Ĩ½-m¥ä[þr•¹œ“­¼k?ò:«×ÓâíãØ'¹‰ˆ (¤˜“À)¦‘kFô„ P b¥@€'˜©’/@MøRu#¾d 1\O‚bº¾¤f|Éb8®hXNM߀¨i$Á—Œ# ¦í‡€I‘… àc (Jƒ5E`„("A ¹À˜‚h9×¢™ïN·¶»Yê¥õé±)}b»Jç«ü|•¦ÅŸ­K¼¶\Öû’;ƸªI|/³F¶oßr„€*(Ò€ ð™Sr%Õ\×…  ”‚Žã€aB@JU× B3×¶AÓ(!À¹¦éÀ˜¢(À¹S*¦QL€s]7ê–›ÚåŒÛv Ô×ËUC ª©Å\øÈTu]L‰Œà _f@B „Ú<}Óhþ4´=Ö칺yo•¯bùÓdµ +¿\K¹êãÒ•Qz¹Iù‹Þ•DdÍçcËœ´ðªãË 0cì©§žºîºëV®\Ù×ݢ!aàR§$¡j*gH%…‘!à~O€|󀚆]ȃF&Ɔ@„) Y`µ´b~ t2162ìH韈ÊK…ñºå…â8dl| ¢3Ü¥ µTÈæ»wsS:–Ã{‚BV¡úèàå8 I!eˆ$“s€N å™0«úÓõÌ1[7±b¬Ý”Üxâ—åBˆª~뮽Q®¬<óÔ²×|¹mÛO>ùä–-[žxâ‰'Ÿ|Ò¶í×+‰$ €3‚€Tböè€,Œ½myÏã£CJà€Wê5 ¶s›…N·pè}†!´ÛÝ)• îÔ 'wè}ç‡ ´A8]é)–§t6°S' ˜û®·úË>Ú©Þ¡=½?-u™=D`„C’#à„ƒ(Úð½ðQ™ñ©råpÌ´˜è¯UÖaVöxWéCÙ1V×Ö,—4²1šÖÌkÍ'%^Éç/°ÇÇÇ·nݺeË–-[¶<óÌ3a–¹zûÛß~òÉ'Ÿ|òɧ|ðäÿùïÿaŒ=ðÀCã?yìç½ííùtä‘¿ß± T=ÙÑY,ÙšfØ%7•Hgsã@Q2™,:¶®¨žçj‰$¥ØžÈÁÉDjå¥Ä¬Xén§T¤à†îÞž>H›zqÈ¥!U%ºoÃÝ+?~&atxŒsÎe0—R⇾vnÇLȺs»| ³³¬›‹À»ù;UeÄ[¬F±·¬‡æ‰Ïž‹†W½k×® 6\zé¥GuTOOÏÊ•+¯»îºè‹'œp—¾ô¥ûî»oxxø…^¸õÖ[W¯^}ÀŠâx(B‚€bnPnï ïZ–T/_}NñµW.þÄ™(7ö¥Ï¬f£gœøÞ>]úésŠ{¶_ü‰Ó¡0úŵ糑=§ŸøÞn_ú©sß,¿ðÓldÏxo†/ýÔ'ªÊO?é„:õG÷ž~Ò{èê¸ü ØÈè_­]œ¿¿â*ÍA§Ÿr*å Ä%b 9ŽþG¨ýÒMÆØâo¸”’uS_UmgÏaÌ…—®,‰1Te‰4o#›éöÕÕªà¼.¨ ¨Z¸dzñÅ£ˆzË–-;wî,—†ñ¾÷½/òÆïÿû“ÉdÝæ7ßzBhÓ=›B~ú“ÿ>òG1ƈ¡—JŠnLêZÂu=K·Xêº^(å] X¨ëºç¸ºi„a¨iZ±XÔu=ªãúŽ®ë,মçŠ9]׃0ÔuÝq<Ó4ÃÐ×u½P(èºÕw<Û0Œ0äªnæ y)05mY…ìžtZ!TAL`„ø=woXyúÇe Ç‹’“N«$9KhföÊ}sºÍD ñN»…˜­Œw•TémåqYUU k›Ozö•otP›Ü®EÕ°ÍDŸ¥”œógŸ}vË–-?þøÖ­[GGGËg;::N<ñÄSN9åä“O~Ï{ÞSþTzc‚Œ Á˜`®ë ,æÜÔT¸n>›²R¡[òŠŽžI$½¸^>›6mûvIëÈP¦¨åº.Ëg;,#´ ¬d+é´zÉ„^òü _ÊX™À)ùvAO§UÆRÛ®rÙtÒ Ç/ÙF’ˆPCã®äÅB§‘Àœû¾/)GrCžR¶ßÃÒMëÚIÕháŸOm­oh„Ö«ô¤†gÒð£y5ŽÑá©rU‹Zé7?$žçEù­-[¶<ùä“Åb±|jÙ²eüà#oüÎw¾³*¡2)}é‡TADÀ€ Åà E!š(éº.Ž Õ);{»&&&°¦dm×J§³iWŒ„ÇAµ2£ÙR—iùnVU KQÌ[1MÉå'´„Fä¾¢¨TSCb$ƪ‘wJ™L¦PòARà•È ½d2)±,yv¾ttu…¾¯¨DˆbMWtÇ-*мiéÏ>šÍ*‡ÔÈ÷Öæj»«õ1-Çxl#æâ[.—Iû˜¶Ùlö¿øE¤Æ¿þõ¯ƒ (|ÛÛÞvò8äC¦G?‚©i‚qƘÀ ìi‡•4W*õ°œ1æÛ¥½EL”,ãÉeËdzXÁ¹\ª§w¤d'‰R>o¨úx¡tà’e~±$õ…Øspow¡”Í„°"@(êz!„¨úÒ¥K_-–´Žd$Cž—¸ªŒ:%Ç ºzº[qØ«;·'­t*iìÙølb>ðŽw¾“å³v©¤#Œ$F©p¬J¢a‚Òdg†#¢™»ó®éVg×ÐháOÎüsM!ÝÝÝ7ßt+µLšD<‘XñΣ_Ù»7òÝÛ^MhdùA74Ó IDAT‡¢©Š&à¶ßãÝL¥v9ݨy婨re*g–2ds¤Ò–ÊP϶M‰ò¤¹ñfNI¸¯¾úêc=öÄO<ñÄÛ¶m+—ëº~ 'D:|â‰'¦R©æiV!†g7p…ˆ† Œtê¨wÿìŽ×þò³—¬»s}Èþ‡Råc;ã'>²æÒ«nºý{ét*__sÁw÷v=ÙqÌû>°aÓƒçŸþ¦|ás«?³á®ï÷|è Û^êÖ”îÎn×—X Ì ’BDE$$ªVðò:¦šj2?H+J‰‡E5A¬÷}MSB‚]¢„FÊJ%‡vlëïï7ºzFF=ÏéêîÐ5sxhˆùð\`âÒÏîöï~WØ¥ƒû—¬ûöÍ<þ=Ì- ÏE Ì[Šlxx¸Ñw­›A•—n!ZKsž×Ò1ëŠy×çF<¬^½úå—_¾ùæ›}ßÃÐó<ÆXy³×lã¦ÿ Dá!šj¨ªH¥¥ìøùg­¼gãýŽ]„?rÖÊ{ï¾÷Ýï>öå?<›,ß{âölß–L%Fò£}áÒ›o¹éòK¿ðý›oÉæ‹ªATÄì_ZD8)@‚ä ’Ôs\œè~≛v ®üÓl[¿ì”Ô#ß~ÔîmÛUMTùüç/¾å†>wáÚ;¿÷‘¡A@ 9`ÅAÛ_z–-[67‚ª‚Üw·æ40ó;šñ”[…¹¼aßl~å=úª MRn”¥h‰˜ѹúꫯ¾úêòÏ0 ƒ ‚À÷ý ~F¶ òlmͨBUMß÷]7 TÕäxa¼Ðµ‹¢ËzztŠ„kƒï@Ȉ®iÂ'çfGyàR„CA",f'rƒ{/ÿëÿõý;¾wñE«¿wÛ-­=Ó½î`ÁGF4D¤@RJ.qp$C$ˆŽqÞ³i"…%£/ý@<Ó™±í¢=6~XÿÒgT¥”Ï]¸vÍMÿríå—\²~Ýí—}îâu·Þâ• †F÷î„О={f>.mˆv*#ÌEà1®¼_»=«%©üæ3aSý ³wÓè%7Üðãûx0oÛÏýñ•Lo¯ÑÑyú'ÎýÏuë2]+Wžm»¾eY6l Dñ}ÿ¢ /òB¯hž|ügc¯íîL&mæ%†a|ìÏ>òóÿ¤˜ï^šÎ÷§’c#£DÓ sŽi^µ!cDÒul¥F¬\¹òÑ»7„ž_”ä3Ÿÿˆ`÷k»^þãK#C’ M! !XðÕŸZuÇ÷¿g)dýºu'½ÿS%ù\!àmöÈôlçŸç¾ßY÷Òµê³ù¦\¡¶j.¾‘¦Õm^™r¯›´l$ÙÚû[bŠ™(|ó »è ¥ÞÞ>^z¦óCF†‡XG {xïݽ^€4uƒO SMK©úú[oÄ”¤;Ò^v,ƒe qœRupÏ®ŸþUap/.m ®b0(–H BbI0G)Xb)„ï¸AP(¹oþ‘,æûR™°`o¾û.Ä9 |†–„$ ˜ƒ ¾}ý·2‰gž¥ ®tBUH>—#¤÷xÃ|¬òf¯ßùYK×]9×ÝãÌËB©uûui¾rŒÙƒ˜ŒýÜL ×v;;»Xº|ûŽ]¡m'(V«º`˜Øój2™,ŽøËÓiß÷T†%!Žë°4š$_ Ì×8ëÓÔÒÀž †¤•R¬P?Ô2zæ¡ÀL \„ $¶ «?•ÈízµK%pz5:º{§FˆJ`Œ±Ž$ Œ°¡* Ã0ô]¯½J@²Ð÷J™éÄ¢}bãYŬ[Í&…Øhs,ª@£¶‘ã­mXij=ü¤±C¼†×ít€²‹…ááÁdÂÌj¥-Såܘ0±ìJXKR)Dñ}äÚ …ZPècæQXð”©{¥RBÓ‚|ÇÇq|ß§#$`„¤‚@  )à> ýN]ëÐTÉRvDáþ²Žt_2Ñ©+‘„ûà;º 0ƒbæ»{w½ÚÛÙ!yˆ¥H$Éd‚39¯ýI UwV–wƒ5ª3gÖdÖ½t“ó>&Ÿù¶Øø8J­šo>KèìêB$–í8/>ÿ¼D‚1QrK¡¤i!„縖eI)¦ãÅÑU‰¤‚QRH… CÁóˆf‹ÅîDGú%f'L>TU A$À )‘–c2é…ØÔ5K€IEÕ ßó(„&ðÆ i@¡i!$aZ¹\n|<€frOxö}úªÊU }Òª[¹r¡7n`.ïª «[¡QÛæEP•Çš´~£§,ãóyÞ^{íUÃ0òù¬¦)ŸûüÅžç)ªªišç;,‚spUU#ý ÂŒ5ZrŠHp= gX×r¶£'“,KÕmÛv¸—N™$™ï‡œK„B) @†HJι¢ŽÍtMq‰L&U²9ŽÔ–„ „8cLÁ˜À# ]½pÀ³¿û½¾°> SwíÖH««Vj{|åÖbÖïº0iˆ;ÛÔ1y¬ºAuí]Êf¤y÷3¸<“JHÉ'²c‰„)%GXæò€)!1­¡ŠP²=Ï qé‡Ò÷Óºž2-Ì¥Bh&F LE }ŽU©î9!A„’"MÁ Á! Å„ LÁ”º¾/„0 CUUL©ø\2‰Ñ¤ P†nà–\ÇöÜP ÀT"b&R~Èó%›¨ÚsÏÿQéë鯽¢6Ùì“­B# µêŠÐë±ILÛ…—ñ†É–©U1 ªx¦V-Ë–²R'9çIµzRËÒ†!„(*9xÉÁ?üÑf„ÀJ&K¥HŒ1,˲mĺa¸ž X(k‡„lû«¯Ú\‚B(pAàÚD‰p^þ¶{$c”ÂØXN%Iª|‰f‚–H!!£ŒI‰4Í ý@Uu骪ñ‘Ñ)¡jbÏ»•ŒÐˆIgEŒï^Âu†˜£ŒwÌ»Dâc˜ºO®Ä0ÍGàñËö„¦›B!Ñž½ƒ „ܳgÏ’%K\×^„â8 ¢ëŠãøRJ¬‘ë®ýæ™qêßüÕ_ç&²‡ùνÙ\ײåE¼@ͤ½B!Í ƒP !×)¨„rE†³¹Í©T E÷ŠvFKÑ;yW ~Ð’ƒ^ضml<«› `d¦ë;R"Ó0@±XTUUqýõן{îy'œpB(|/ Dû »ÖÔ½{Z[X•âÚVÍüºmkû æa÷Ø”êL#³Õ¨Iݤú¤®»Ýàº.!DQJ)!$ ÃgŸ}VJ)„˜˜˜@% ªhaº®›Hšà·ÝvÛñǼkxx8ä’Q’éé³™Ô“(ƒ|…¼óÈw ýæ9,¤ï»š¡+ Ý5¶+uP§¸Z§±'»«{iOJŒÒ©pÌ5ja¤zNð‡çžÏÆK¥‚aŠ¢,,•J’‹®®.×uÃ0¼ñÆßûÞ÷Úv±³³3Æ ÃšoùU£<ÜUn f»AU…ÊÂ*ÄD‚ú9Úëyé–kÔTåÕæú ªª2Æ¢÷+!cÅbÑqœŽŽMÓ Ã`Œ}Ö™›6mr%'„вw×®C:8‘HÙ~àx~&‘"ž ‰DÉc‡~è®§~í .¸‹5šsrZŸfÄÙŸcLJùÙÏ~¶¯¯oxx¸¿¿_J™H$<Ç ®íضpD©‰lѰІ˜Bˆ …R>~èõä‚1¤ãUšÏú Vƒ—pA Þ·9)Sá8S¹ ,ôý‚”¥,‘ÔBK—.µm»¯¯ï‚ Ö|ç;ßAq)E€b±(%‚°î}évÄió0CægéÚçÈKO‰ûÙÈ6“·œÁùBeF ¼£äÿUW]¥ªêðð0är¹HÏEI¥,Œ±aša¨ªî{¡ä€ =cÙ±˜/]ù©Þεç­þËÕˆHœ‚0¨F/YÒ¿gûÈD.‹)1,]€°Ý’zŠªFŒe³Y)åð𰪪W^yeWW—¦icÇqEQU•Â9?ÿüóxàÏóŠÀ뢧S{ÞfÃzMé¶v;#r}åå4!Ä0 ˲ŠÅâõ×_a°téREQ<Ï+ ù¼],9ç!Îy&“xýÓ°š¦YÉ„‘Ð’iÓLh§œrʦ;6ÝöÍÿÔTS¨XôW,½ô77ÿ¯}êÒ‡ ¨€,du¤‰ž,zÜU•¥K—€aAÜpà ¥RÉsÜ|6í& Fˆ†!BhÆ gŸ}vooïêÕ«#ÝžOiNSšNs¬ÞoÞoÙPv.ÑHÈÍ ?Ú˜…ŠrN„ \×U¥££ãþûï?÷Üs P(är¹¾¾>MS(ņa¨ªø¼X*õu-É b¤2Ì„¡jŠx.âžgx°›eKz—ýç ß_sÉEž´C:::‚’÷­oÝ -*¨çóìD>ðYGG§FðÈȈä|ß¿ÿþû¥”¾ïG¦‡ÒÑÑÁ9çœ@"‘ø‡ø‡{î¹ç׿þõúõëׯ_ŸJ¥Î8ãŒO~ò“ûØÇfõ5Oó8½ç¸ß7½ô<Ú•Fh6"´„™F£Û䨇a¨ëzôR„è®ë¦ÓiJi†Š¢d³ÙuëÖuvvÚ¶H$\×ea(˜H˜ºä"`̲¬ ðtJgI]C,H¨jÒ2ß÷}[Z†çH§ß»ùßôØM?}üÆŸ=øO›ù×ÿ^ê®úŠÌQØO89™´:Mª†¶ãØvÂ2lÛîêêºãŽ;r¹œªªaRJ¥”œs)%c c ŠvéË_þò¯~õ«íÛ·_{íµÇ|±X¼ë®»Î:묾¾¾Õ«W?ôÐCÍÄäÓ¨ÐB½jf³ã<¢~àÝîºÝ¢†–¬Þ§=Yõ«_}ñ‹_ìïïÉd2‰D"r×étú•W^Ñ4-“ÉŒŒŒpÀBˆþçFéºç#Ãpt|ÄÐT…bæÙ¡”¡¦U“ò7¿ü…›Ï«ˆ&~ôÀ_ÑÅpu˶¬¼ž(ÉbÂ,š0"0Øóâî$I-éêņё‘L&E¹æškàÀ<óÈȈªªÑ˜×ì7®îàƒþò—¿üôÓOoß¾ý›ßüæñÇ_(îºë®•+Wöõõ­]»ö¡‡ò}¿v;`“cÑÌ`M[[’ä›=+Ðv¯¬»-¬ÝÔ»³ÄáÎ;ïºë®;î¸ã¥—^ŠJ®¿þúÁÁÁM›6¥R©_ÿú××\sÍÕW_mÛ¶¦i¾ïGÒëííÍf³Œ1Bˆ¦¨¾ëüö7¿ùÜ%Ÿ ¦5š+rÈá~Á— ÉÏösÂM lVÊŽH,£\ERàœ„$’;y§§§¯+æóEÆ‚T&ù—­ùÎw¿;¸w8®L&“Ëå":::lÛ~ê©§ÞýîwBcÐx*ïØ±ãž{î¹çž{~ó›ßD%étúŒ3Î8ï¼ó>úÑjš6U!Ïåœi«ù9‰JÏ=¯1;=÷”·VîOªu>Ÿ¿÷Þ{×­[·eË–HK—.=ÿüó׬Y³iÓ&ÆØÖ­[‹ÅâºuëlÛN§ÓŒ±èÒàà išÅb±¿¿ïÞ½===HBÄÙçžCTíîûîªºŽ¯rJ&ˆÇœn†tÄ®»†ÆU)¹$"O` ”½=K^{uOGGׇ>ô!ß÷·ný¹z®g/ë_1<<¼téÒd2é8βeË¢Ô·¢(Û¶mëîî>õÔSs¹\´ìŸtp·oß~ï½÷nܸñ™gž‰JÒéô™gžùÉO~²¬Û3”üL(´µ#ÞBÔ.¬–ƒ–w<)ÚDúµ)†˜GAÊuʧ¦ôdcìÇ?þñwÜ-)À²¬³Î:kÍš5ùÈG!ðo|CQ”[o½Õ0ŒB¡ÐÓÓCE¥R)UU]× F)UUµP(`Œ Mwœ—¬à;:»wîÞsð³¼'±UPU‚[ˆÀ£ÌÐSA(WˆäŽÀ2”B"œ+ÙDÑÃ@&ͤB`>Âb¢O&-×÷|ß§”𦆡mÛŠ¢†A‘Rær9Œ1Æ8ºå֌إ”‘ßÞ¸qãoûÛ¨0N¯\¹2Ê¥Eé·IG­6VŸùdž¶×‰ŸK3äêÍ^êÒªbú­à9cPwã~å\i$«©ŠÑuݾ¾¾b±ˆ1þÓ?ýÓ5kÖ|âŸ(•62ßøÆ7J¥Òï~÷»_|ñÈ#\²d ç¼X,F{ȾïwttŒŒŒp&{z»Šù"н´»h—¤·à`Wj¦1¢°b¾³33á(7‰ D0 À€ÀÀ$ÁŠB¨^Ì—¸ãõvuŽ õte²¥\gOçèø¥!äº.ç<‘HAP¾AÕÛÛ;66&¥Œö·MUþÛ¶m‹bòH·UUêè蘴aí¯–Ìä*"Sò=ñs©%¨ÿ½eTó7jðK)H,BȰ’¶ã !0’𦰠‚sxýmbåN“Éd¡P€7^ö¬(J†ªªFj?—á^ŒJÇO¨q­rõ1β\¡RW§ôah`ʨJ•a‹Ñg¨JU«FÝÅ‹©ö&ÕŠ&ßL&Y“N„ø†Mò#¥ŒV¤¥R)ºë;>>E.—‹Â0”RF;·¤`B0Çq‚€mºoSg¦K0‰0ùüWŒär\&x1ôíè²Ç¸Ï_ÿ ç\Á¹ …xøG?J&-.ÂDÒ¼ùÖ›l×ñ …RVušÏ磒ˆ½(%Ý‘j‰>O‰È¤«î,­ì%Þ.O›á*[S‰JßÛh’Ç SÖäuê6zËgUåJ†¢Vµg« õXYXU¡VÔ½¨ZR1¨­_Õo]Êñ—P>[[­LµÕîÝ»Ï>ûìˆÃã?þ7¿ùÍT:{ýo|||ÕªU‘ÓN;mpppjLÏ9ªfZù ™YZ®‰ºRàS?" ñsiÒ ÍÌá†*Ï_­Â4Ó°,—ʰ§I “V®b)FÛ'å3¦ríÀÄ w²Ñj âÕ›1öoÿöoQŽ-•JÝpà ‘“o\J^U´aÆÎÎNèêêÚ¸qã´Xž#ÔSå¿M6Ÿáä©ë±bJU¨*Ügݧ©ÒÍÏcY…Vr¯ºu§iüÅ׳F?ãù¯Ûo|_1 §ÝiKðôÓO¿ç=ï‰ø?çœsöìÙ3Eoªtäª#ìÝ»÷ÔSOÈ^pÁ-ä¹…¨«ÒUF¹<ÓjçLÝãÚŸSeiÒi\·ëòaR6껾ÿ5˜*…FÜL•róÊÃÓ6«,Œõ§Ñi“¨kþ …ÂUW]ÝÊ^±â€‡~Xî«–uèTü5ÓéÍ7ßlY,_¾ü‘G™áR¢µˆ¬ºuê–7SÒ¹s¶ì“›éw®ýÆBDÌmáô!©Êæ÷ÝwßòåË€Rúå/©T*¼^§u*á•W^9ñÄ#svùå——J¥F,Í%šï·¬OfnúUz¿Âk¯½vÆgDVüýïô¦Á&1•~3 gŒ]sÍ5ªª"„?üð_þò—ûÐl?is,ªôþŒ)éC†×]w]ôº¯L&sÓM7E· ¦ÐÝ´T:³Ï>{ôÑGÆø«_ýjù–Õ>ôÕ;­Z¦-ªôFYIž|òÉc=6š «V­hšÄTâìXxž÷·û·Ñêý¸ãŽ{î¹çZCwSÄ¢J/lär¹Ë/¿<úðÈ¡‡ºy󿩵oJGxâ‰'=ôPÐ4íÚk¯v›,b˜vP³¨Ò Ñxß}÷ÝÑVpEQ¾ò•¯Ø¶=ß|I)e±X¼ä’K¢›.'Ÿ|òöíÛ監)©÷¢J/HìØ±£|gø¤“N*G¹í³^ý¯ÿú¯þþ~H&“·ÝvÛ|³³À0“q\Té† ®¹æÓ4 ££ãÛßþvkƒÛFâãããŸúÔ§"»sÚi§Ma…ÿÖCí¶ÓicQ¥žxâ‰(± \pÁÐÐPË»hõâz!m Ý?°ªt¼©kÒÎÍÓMŒ>awÉ%—Di°Ã;ìÑGmmG³Š}ìc‘%:ÿüó«6¶Ïb¡.Úœ½Zì‡*=CÌÙ6³ƒ2:µ~ýú¾¾>PUõïÿþï£oè,,DH£ÛæÑÒùæhj¨£vÖóýA¥«nÐÏpÿÍŒV]ëö»mÛ¶~ô£Ñ¥rÊ)/¼ðÂló6«Ø¶mÛI'm ½ì²ËZ•¢ofÈfuXÛJüJCìƒ,1˜½|ÒÈ¿}ßÿ§ú§èk8]]]ßýîw‘m«ùè#^×\sMô¢ÏÃ?|ëÖ­åSUU ËÇPƒ9à|aa‹£îpBÅXUÇÐàñšÚù¶ªN#³Ru¶üXߤÓññÇ?òÈ##o¶fÍš‘‘‘©J¦Íñ»ßýî]ïzBþîïþ®ri3ªVà­gqÁbaËbÒ±œtìëªÖë¯øip¶ʵæ£I¶ÇÇÇ/¾øâ¨ùGñØc5ª¹ÐáûþW¾ò•hé±Çûûßÿ¾ù¶uDZêg¼Ž)l¦í¤FyÑv M uZûN™ÊÇÜ›¡P¦Óèì¤JóŠ•¶×­[×ÓÓš¦}ýë_¾µÐQ9µxëÖ­‡vLqiü8Njmkkb:jOM.£}9kÍxé Ÿ”BŒJ—Qõ²ÄÚ7U™†F–Â÷ýÃ?>üá¿ôÒKñ×µ?¡T*Mui3Z:i…*Ï,kfˤ}µ'ö;÷+ßÌAîûFÅ™¼c8æì¤¯}­|¹¼ñúÛ2cš?þøã;wî\»vm åý<òÈE]400ðïÿþïW\qE|嘗iוmåÛ³«^w[>–ͽ»v&oü´;“"^Kë¾Þ5¾y“ggòæçöŸs)e©Tºúꫯ½öÚIßpŽj^p_yª®J×Ê¿òu¿uG­Q×m>víÎ_3ˆ±Ùµg¡Bëê–Ç·j¦ßryUGå RÊhX#Ê‹(£®óœ’!žÔøÂ¾cS¹Q×1~î±?¨t3h+¡/b&¨kI«¬gU‚£.…Fž9ÆRWUnOÝY0*=mœ´a»i{»ñ³ß IÁNIþm8X F¥[Ž©Æl ^NˆE@ã¥Ù‚À~¨ÒÍëÉ‚sà‹ˆÁâ`EØUjFw~î‚6ù‹€…f,ðäUæñæ&>çYõs†¤y~±°0íόΠÚZ¥'½WÑÚîšžFûOêVÆ/ªôl`ÉçÖVƒ¶4ÖmxÇÌuãŸfî@Ì{àÔþûöÌû(—Ù€Ú~‘pIDATyUõ¶óÒe%¬=¨:¡vûgUåЖaÒT±ß\È”€öEíÙi ¤åº77«¼Ðyì»L*h'VÌ×ê+éÄP«ÜX¦\.©ÝozUYÔÝyZU­j?c£­"”·”J×î«[ÚÆQÏ/Ú]¥›A£ù=¥y_Vݪ­T½V«v#Õˆu÷Æl`,“jd&Þ:h¤®UÆ:Þ’Ö]¦Õq¨‘y#úU,5Úy>—h_•nÒâV)@£ñk~çÐÔ9mµüTÚ‚ÚSsÆØ‚@]¥*/¾bäÓÈ\€cÜHKãíx-µª{¾B†öUéø ¹îò¸Ñ:žÚ 1“$j3©”i¦ý 1–ºI£?ÕSµ=NÃÌ×Hµ¯JÇ nx-ªëz¼YbcJ¹ÍºÑDU8]—ÛFKî·b‡Ï¹ªÓʶ»ùbIø´ã§ŠŸCæ[ªÑ’×sO•+¦‡ÛáŸ×˜±‹Õ èÉk¹§Ê•ÓCíðÏëÌ ÍØÃë&Þã=?Fîj‡tò­®þX’~-8éâ§Ðùãw5CºyV×,I?œtñSè|ËbõCz2Zîiò¥tÐû|3úó61z¡½-w4ùRºh}¾ýy›¶0úÎÞã=?VnJ—”ÒR¶p¤ 'âÓŽž*}˜÷Ñü CüõOôSÙ¥-ìÛK§$µîËdÊ•ðè}žýy™UöP=Uýö–¨QRÉ•‡çêU†zÍ}è¶‘Þ(m5݆– ’²BL˜ÚÁ1GNó¨¥,(†V\J»ç9@3',wÌmi]¡)[‹BÚŽRg¼©Û1'p r76¾4µ:hK12³Îç‡o¼ƒ Ï»pTCÏß÷“±Ý ]júÄ—í¥na¥Uùx(Àh›;ålwRm:N¤ßî±z@&þÞÇSS4¶™qM•nñ •‘@|ùçéÆöL0?Îoø ~×Xy! Mõz€…fI-÷U¶ãßìv–Äu/6¥7o´ÛùÞ]ªV©`öe<ÉQJr¤æ)Lž€u9ŽÀì’>&l1„¨[HXº¦3'ÝÓo¶Ðy;O6³µ˜qç ŽßW«‹<©T-’|õì"½.Ú»––Ž‚¢®¥MT<û®Ô²–É.€¹þ$’9¶»« :•'SvkÏQÂÏ8×´[áÆ–¤,]J…$Áö›­˜Rc+ú«Ú UÊêêé¨éèÔê3¸I|ç@ .ä>³¾Éóÿß;¶íÄ•e=EBÔû".Ó8”Be Wçi`îÚwùO3´«Ú-)y.—ïRêRR•ëSH ö^ Aò²£å±“ÎÔ^TëyŸ³Ú¥KQ'jÊ€9ù=,”S—©iRÓaO:úÛ@Ͳ z“ëkÖb‹šº­—*)ëVËM-1Ú’ZÖòÝRŠƒ9b\P€‘Ó{Tb,8€šÕ:jÎŒ·ŠUm¸÷ì=,[VBq5‹^]ŒaEw6§hÛn‘캠¨@v+ ¢!0wgˆ³gÀ1í:Œ3(ËOPS%ƒŸv>Væ ù†Û/?ûbÖ»1]Ýs_é¼èi+›§[II«B–•,•f,ÄeQÛ/;ÏKON“+–-=íñ•G,Z÷÷ïo=j¯_Ô¾ÐinV—WSGQF—W‘ :ÁY3ùvƒôöWíZ¥ú—A}çRo’’⊠vz3~¤úØñ-)yN¥7®¢’¥ŠªY IžÉÀ“ê~vç±6&jþa”!Š”-/¸ûŽÔ>‡â–†‘ð6€ §§[:Q?ÿÙwmnut-0.72/images/wmnut-0_09win.jpg000066400000000000000000000047511505630336300171330ustar00rootroot00000000000000ÿØÿàJFIFHHÿþCreated with The GIMPÿÛC    $.' ",#(7),01444'9=82<.342ÿÛC  2!!22222222222222222222222222222222222222222222222222ÿÀWB"ÿÄÿÄI !1"AQc#6BRat‘”•¡²Ó2UVbqƒ³ÑÒ34TsÔð5Cu‚“´ÄÿÄÿÄ,!1AaqÑð"Q‘¡Á2B±ñÿÚ ?â± [*i ¶ÀN JÎÔ¡$æEu6‹ªð!½¿ÓfýNÚâà±i†¦aïTÓ,4W;XfY„¾QÊ$¦è%±]xUcíé`Pÿ èÍþ›Pÿ èÍþ›>ê`¦Y©}À’oÀRƒ—ØTi^šÚ#/m(qì ¦ÒËjMI¡US{Ž}ð<•á•€uCþ7£7úm$:ÖáŠZ›`­¶OhElH­)M ³hè7"&+Ã`êÕríwó­ì·—KV†…Xv` aRHÐâ§#ãÈù¬QiŽn¸•1p•õ3T$·+¦9†YuÖ!Ò‡(&¬Àñ]ñÙô±)‚‚[±d.ãD±@«ä•C¥)ýåjóˆwŠ%ÐóNŠ´¡Àx4áOï:Ø&MI&™ò X·ËÛ¢Y8‹†…y‰J–Ò¡™ Q}±xÒ+Jñ¥Ž±Ï~g>’ßçgÄÇC쬅÷Ko¾j $Ö­MàF YSó‰Ã7J'A䪻ʹŒ!û)æ6fàž©–<ðí ë÷æsé-þv:Ç=ùœúK§fm>yÄ LœHRJ”Ë`]ª¾F`PéÉizá<*ormw»bZ@Hº*ªÕ°r>Ê›:‚jé3’ª¢ìß]" ’Ï’ ¤Ê5D·—¶Ã29ãoD8e í°ø@†õ¾•WårkÍ'hÃ-ÍËÈqE Z@…*7âÎÞ„Îr—mù؇[j()q”œÆ¿%³c»Aß+^ÿÛûjTë÷æsé-þv:Ç=ùœúK¯éÛwñçibëªk}¤©4­.¶yEŸlÒ£âQ3\|k®¹ël†î &ªÄ©ÝH5ÜΙŸ:饨F²—âÎAËÑ.°ên¸ÒÊšƒB ÊÅ®O{¡™yS¾ù±lMìÁõCl¶Í¾€ Ú[ H:T2£d­…]ì­°+R·/¨ù€èâsÒŽ§ÆH~çðUhß“CµunîbR¤w¸ôáÍ'Îz5TIbލ’¥Ztš”õë™Y3ßN;ŒýÏàªÞb^MçðâYêZ<„¨©eKºnVªÕP¨x6¢ Ý´ìG^QI)F÷ëçËiIɪÜÄ©w~öªOO«În•G&«s¥ÝûÚ©¯8}ºT]ž5ëׯD²¤„ª¤-(o{½ÎâsNéYZ´ÑÆž[n4¶Ô EW•G>N&¹kyM9N)ø´3¥Si:v¿]p=95[˜•.ïÞÕIã‰õyÃíÒ¢èäÕnbT»¿{U'Ž'Õç·J‹«Ó¯A³5²–ÁuMÜL’/nïW.M*>Ë,'9~Ö­*Tô…ÁɪÜÄ©w~öªOO«În•u;"ù‰ƒž>oUضoNaãÁlÚâÛ«‰ŠBßBÖ¥,¯A’yB¨*&µ­µ[2[0sl%4Q‹ FiJ¥ãžB§HM.‚qm©7v¾ÎQÀŸ†ºyúœž{Ý ËÊ÷Í‹Þèf^Tï¾lZw©rÐ겸Vc¤²(GeFd㬠2Æ.–T¢¢¢´D%zž‹3ìQ?Bõ«_ÕZý®Êÿ!Ïú/ZäÊ v½¾’ÅbbI›Äím‚0œ-,^_-k@­i@MTÒbÅd#šµ%’´W²a²÷QˆJî_¦äA‰)9žøxè°Îv\ ”všWÌvï÷w×?ñ3l’r•¾4«ÍšNêÿ¾›4UГ›‹·‘ß_6W諟ò¯ãÙ„°ÈæéYƒÙ¬¥Ö™¾¡yÇu ‰®f€S3¥Qb³…CAL *ÚuAÇŠÕGÆ@P“–DÐé{"jm°ÙH–b¦o<Âï¶©Ô´ƒ‚ÿ=ÃÃ_´æxÚZuÜål9zò¶|Lé֔斗ž|­Ÿ~Åô!¿Z5ýU½± ÖÑÜ…Ь']RbÐõ~X@4ydW¶p¤Úˆ)ÜNÔH]“9ƒ„_ꇖ m-’ÝR¡ßV™'ZŠÔR¢Ìwø¬Ëù^ôU¨‹Ì¢K#ƒÏ{¡™yS¾ù±b{Ý ËÊ÷Í‹+ÔêÐèR®Ùøi<1 -Æ¡ÚÐô!trê²RHÒ¢£< §ì§c‡”z Å‹6=Ç0’³Ùd²†eá„,¸–„­!DUw—¨®´ÊÇf{+àË=R‡bÅŒ{ƒðìÏe|gªQðí#{w³Œ¦ãOA6‚´¬¥¹hHR“[¤€Þt©¥t±bÆ=Á‡y[²þQêt|+JÞÚlà ­¨w`áµ,CKð¯ZVêixëËbÅŒ{ƒó–ÍŸn&sû*¼Ó±- ¥* ‰;,Y?ÿÙwmnut-0.72/images/wmnut-0_60kde.jpg000066400000000000000000000065201505630336300170720ustar00rootroot00000000000000ÿØÿàJFIFKKÿÛC  !"$"$ÿÛCÿÀ[H"ÿÄÿÄN !"1Aa237Q‘³#$BCDVctu¢ÃÑSTUbq‚’”¡±ÒÓ%'4RW•²ÔÿÄÿÄ0!1AQaq‘¡±Áð"2Ñ3áñÿÚ ?cw¥RÉ=Õ€‡—Èeo%0:ÐÈZÔT„©\Jó&Ò_ᆠ²‰UÝz¨!m@¶R´ŸÒ€ABÓO(²òv±I%ª ÖÑ&Ô»ÎÛÍO˜Ê3Ô!Ûꄬ֠³åòV¿§è7*M²q)#1(ÌtíâmÒn¶ÔH:j›r¥Ðt¤–íï+0¥ªeâ§:+Ì~¿«Û§šzÕW „æ >1ëZo8ËhJÝTÖ]'þש4Ê 9‡åÌD­ö‚¥—5õÄ+ °¬p𓦵¦´³î þ’Þá÷~ÉÅžŒÜ{¶V ºâ¦>áå­iÅoP—[?wövì¯q­1îݽ[ÏÔíЄºÙû¿³°çe{ivíêÞ~§n!«”€ 2Ë/zÿºAÛ›©JK„Là£áåÄ#ÏIopû¿FäâÏFn=Û+]qS pòÖ´â´t.5é*Ìr°¨¶Óu„¨¨‹®„wº›IÂ]lýßÙØs²½Æ´Ç»võo?S·BëgîþÎÕî5¦=Û·«yúºqfà™Üç˜ÎAôÖk“uf”ÇÅÒ NºÊËyâ›Dº €Ü ;‰yõ)˜HŒä¤¶б®„á"˜¹$h9™M8Ù½×5àÌMáiJl„‚ä8éÂG?kçg u³÷gaÎÊ÷ÓíÛÕ¼ýNÝ$nD££ïÕÌ‹Þ37‰Ô ˜Ó9κøj~­zèº+l}éìZ Ó’y ºÑëU-C’ IÈã;Ç^§3[ü‹ÅNÐ>B×ÚX±"ñS´µö–-¥³¿uôo³OOZs{üXìóæ¡èÙ·)ÜùÚåò˜&‰JPÞAÉÆk…nŸÀå×Tõeïñc³Ïš‡£fܵtaqÝhWáàÚ~4¡ÀÀ(ÍRÈúÈ!tJ–iä*>ÔY—NáŒüêë¥4ÔÈ1ú1Ÿ÷†”òñäîütÊÊ÷­{ÍÛã|eiÕ‹€„¼y;¿2²½ë^óvøÁ_ÙZubàzÌ ÞZKRèU¡o Lýh(2’ÛEXÎcŒEÚ”Ò„({Ah¸8xg®Û‹0ðŠˆe*pê+ 8q*‡CäI4$#‘P0²úLoqã§¾õ˜Ø³XÞÜÃÎxrìAåKÂ^<ߎ™Y^õ¯y»|`¯€ì­:±p—'wã¦VW½kÞnß+à;+N¬\«,@ÁP5¦´Mz‡šÊ¦íåN>ûÖ‹›:Ùϧò§á/NïÇL¬¯z׼ݾ0WÀvVX¸$nDÏ}¿W2r'P†™Xož#_ä_mD²œC`K™’øFÚLjTÊf«­0—Q@ЏMEA¨ÄM¤®ËÍí>è=Ó iù¼+m¯¿9èî€'M(¥B‰ ¶Ü¯qI•™ÝÇ^cß":R¶&ÙN¤¡qÇÊyŒu0&·©Š |…¯´±bEâ§h!kí,Yýø«¯ «¯³OOZs{üXìóæ¡èÙ¶=*ÙõÒ‰•ÂDËî¾Ó¢àÝa ‡}©tBÐëe ¥iP¢ m°Þÿ;<ù¨z6mZŸÆ^˜ †H¢®tqsd]™^«U¡;“8–Ú(C‹PƒÏóˆVCѼzŸ:ÓdHý*¤»³ëªÂ›7ciP©qx¸˜ÚEhNª\HI&€N‚Õ„«c*HRcoJ’EA Q~émVXûñW;gQQO8ûïC—uÅ-j2hÂTIÔ’u$Ûž®HÅ"E±8ÀÀ®õ|CCÙÕÈØ4€â‚}ùÔn], ¯8þ®?ä×ãw«ö•ÿÉe!XÙ TKP°®Þçßya¶šo–µ@I'@«284¶ˆøç’œÅ<Ô#j@(SÈlæœKo˜ 늃[[nVWªk©¾tHtü=7l™yÌR™·Ï„Ö•¥³|èl&dƼû)uß„¼H&Lyä##8TÌ-Áºqm©èµ´ˆÖ‹l? óÍ)HQB‚Vˆ"•QI" A³éMÏ»÷~o̲pãN¶¢•¡B.0…5AF^˜ý]Ø«ãÜ$Ùs¹N4§E­=!…n"€6²5(¿4’„¾c…hH™«$‹ÅNÐ>B×ÚX±"ñS´µö–-¹³¿uô}šzzÔ¤úY2˜ìÆàt|¾.3.Tœy ©Ì5mªVƒJÐù­Y7Rk–ÃHºw‰¦˜a¨v[fa6mm´%HJ_”ô[.º»Q¿ð·fWyãi¸F’„$"‰ƒKI÷XÚ/¸ï2>ë.l_ÜƒŽºÕÂñÃ=*üÅÕ›3ÜR.”õo²ÉTDTÊ 6VÒÚR‚yHÅÅŠiSh¸}˜ÀágfJ §HiN^ëj¯u¢ü+Žó#î±Ých¿ ã¼Èû¬ÎtdGq½mX|*ÕÜÆþ.{öfݳ™^Ïš–L¡fP;3y¨¨GûeÇ« Р¤šH4 htµ3ºÆÑ~Çy‘÷Xî±´_…qÞd}ÖMs—ŸG:Ðv'+a†MÕ¼C RP–#&l'‰jqG o%5+Z”h:ü”òÍÔš7nŒýåC>ÜCIˆŽš¼Øqµ…¡E |¥TRRhA ÷XÚ/¸ï2>ëÖ6‹ð®;̺Çé®rñ®ùôs­n Y2—l¦þô„¾.2¼쩼TÌ­*5¥GžÅ± Ù´ûûv&pÑW–-æ\„p- JW 祋Z‡”¥ÌIÇ ­M›¼[Â8×ÿÙwmnut-0.72/images/wmnut-pr.pdf000066400000000000000000001752201505630336300163600ustar00rootroot00000000000000%PDF-1.7 %äüöß 2 0 obj <> stream xœ•VËn1 ¼û+tîA!)QÀ0à'ÐÞè!è©/ @Z$—þ~‡’×YÛ›MÃBvE‡äˆ2yvOŽy’â´ª—¬®Dö%±{þ¾øüÁýîø<ÿ\lŽ ¦äI]ÎÁ×RÝñ›»;°cqÇKb|„ER¬ O™ UZ㻡-žw´§˜ˆñ'hÇquüµØ÷7¡ªu©²ç«P-ÖŠË’•)g.\[xͺâlû™7,´áÖVÄæ•ê’w+–ºä=Á 2ª ñåøiŽEÎ>L²° =#Ä«–o3ÁzQ À‰rY›×h±øè’Èdm¸ŠJZUF¶ˆ»žèú ùÿ#iJS Ÿi«S 7ôzçæÝB½©µ¹ ï)µ®M´öœJHkÉ3²*.fšŠ0ç¡ÉëD¥»¢(¢Î‰ó<µ&µ-v×Rz'$šnÚÓöeN†à å]=@Ç\(y’7¢VãÝõ:ÉÚÎêºl‡¤©‡yÓxÛó^Â[õI&ÏÓSBÖ2¥ÊsLÙtÙÎ42{Ì+ :ä 'á©R¢‡u¾‡øL^µx= æãü¼¥9©L±œhÙ½ÁsÓ­d+{p%Š½é §½Ðº“öæÀ¦ÀCϤgÈm¢‰u‡»Fm¶ÁS¸Îdš0(j~WžæRnï’‡~Þ­;ŒÄØO6Ù˜œìp¹\4g•tie˜K|,æ{÷„á³Ã nÙhñ‚aëC­£{oCK;QÍš\¾>.î>>F·ûãN€À€{Ä5›°Ÿø)`y´wÚƒý-ÀàÐu˜Œ¢ƒ_€n*žø¥†–l¸.àBK/²z2ÀèaŒŸc8{×Õä x¶ïxy„‡r¸±ÖÆî£òµ‹µÁÙìU›C\Áa”€ž˜×¹|Wô^Ê×ùE_ΰ^ðc\k'8Cº.žžùõúeûå3xt<¦K†ŽObúQ'ºQÍRá=se¾€b[bG’¾ŒäLMN™’'8¹€Ç{ª'fWµ —…ƒR‡^ðþQj)P endstream endobj 3 0 obj 795 endobj 13 0 obj <> stream xœí›[l×ǃP˜Ê ¸H#=bÆŒg½—1&`ìµ×Æ6|Yß¸Ø€× …ê(·:’pÝV@ V-†´ÐBh*RRš›ÈQÄC*¥‰Z’VÙ§JU¢VÊcûÖÿÌÙ=;»3;;¶¡i²=úË:sæ›ñ÷›ó3ßÌœUÖ¬W\¨R[—ÓâéØ`UUç`Žh»§sPéÜPÙ±!¾k°ª#céíòv ‘ö¡ªÎU]C§kHßìò@¦FÔ«º‡¼ao2ËÛ½Ù¨lÄÞ™Ñ ?±¹.[y/ˆ-¾ÇÀôd³í”´Ìö Pvc¸Î®]ȤžÎ”»ŽßmÃ^Ù> 6v,¶/nh—Bk¤&6¶‹ †ŒÊb]$Bkt›¤E"-9 ¥*ú sÚ‰š:$(¤«ÂPªÒ­1Ôa–dH4dÔ;¥¦.üMoš ôóão'Ì*š»—4wW4wIÍÙ‚%»`Ñ,v.ÄüWUj(§Å²9§TW–qi–æ˜TÐ [è;Ø—””pEVš››Š`GÝSdeÿþýÿg§ìÂÀáˆø=¼\'OöœòCuüžã{‘ ›hœ¬Í™Õ~õZnxÌ| ®á1´c¯K+»P¤V È̆höµÙå#哇ÿå½ÑÙ/ýž9û6ÑHÑÜØ (^ŸTS+Ö·H mŠ?€qY³ù™™_3Í|á:3ú’¸¢Q·YшºÞ’cƒ£6?ƒ3زœ}»Ø!øè}÷ìè>B!â’!Å.÷6(gŸdö]b\¾Î¥.cÚ7Ík4Í;ÍœLˆ!M· i¨£%צ}Çâ ¶ì€E_ƒ=Ó‰u2À1 ò‘ ]sbÑ…‹Œÿe6Ã&±Ë½ÞòP=³uÿ'Þ§Æb`)Ó¼–«mÉqÃ|BëyR6µ-8gpÉ^°X)î!»M¿ »Íx¿×ì‹'ÏŽP'“gÉËïÍ|õ‹y{ÎÒ‰Ó)f .ü/*l¢»Rn¸°±-âÒLÿÎ’mræð’ý¸JºM} êhɵÙvÇâ Y졼ìdæ·ÎóÀLMž¯~1ã·Ÿõ‹OP'‘ÉõmŸñø©YQ\d*l¢»Rì.lìÙ]ÌáymL÷7ìdæ·ÎóèßÔä¹ç,ÀËÖ>Œ:‰LnGlÖøÍ²–D6ш])v6öì.æð¼6¦{A†=ódV§‰ •Ã<_Ç;ÍRè­ÄÍXÎkcù§Ö¼ø4·A§£ëó{Œà§“ð=g·¹ÇÝsöP;zŸæ6Çw`GwÐIøÛÉÞqŸeè-À*ìroã±ysx^Ó½ÀÄžÝï^?$µRU…–‚3>"Á<ÇæŒ —6ÖB³œ9\ÏŸÄ^—6ùØùå!zßaº†–‚³‡ 0ϱ9ãÂ¥µÐl'g×óŸšZìui“cgfë༺ö’PDt4™+Ćf&Bõrg·ÿ‹ÎÞÔ‘Ã>kÕº²š•@s`ŸÑ¶ fèwt:º•od Å–p¡gØÉõÁxÇ`>*ß,ÈŠÁ^ æÏ4¶Ñ¿À´>|‹9§%-¶óXN`ÛNqߺbe·½å¶í­í[WÒ¹M)e BŒçƒ²œ©(BLáƒ9Z#ÄVòAŸ ±5|P•£«…ج‘£=Bl\!Gû„بQbóÁZ9ºNˆ=ÅWÊÑ Bìi£2$ÄöðÁ:9ºQˆ=gT6 ±½|°^Ž ±ýF%"ÄòÁ  ±˜^Œ »büÊ ÜvÆøAY‹ ›bü² ÜÂ1¾:(×F…æÊjTXã½A¹2*,‰ñJPÆÈ%ÖÌ.…:ÍìqŽK2LX3…KV2arI «b¼‡Kî`ÂËÅøV.y˜ 7ˆñ1.ù*nãÏpÉ×™p«žK¾É„W‹ñ\ò]&Ü.ÆÌ%o1aMŒá’w˜p‡‘K~Ä„;Åø1.ùG£ò2—üî㧸ä_˜p·sÉ$‹?‰s·“Ìš°øtœûu’i ‹Ûãܱ$Ó׏§’ÌʰØç“LMX|(Î5$X¬ˆs‹“LeX´}wQÔìÅË.6v-{QÇ|¨xû='§-*v ìsŠ´ß‹ÝóÈå,«IR¦¢ð …Õ<’ºD «$$u‰aV[&!©Kìfµ: I]â$«…$$u‰Ÿ²Z“„¤.qŽÕš%$u‰_²Ú* I]â2«µHH꯳Z«„¤.q•ÕÚ$$u‰ß±Új I]â-£rO¼Çjí’ºD‚Õ4 IÝk ¶U“Ô'ØP{’ºçl½&!©{8Á.×$$u½ v©&!©«K°>MBR'%XE“¬Ï `¯hî4÷;’X𪊒©xd€«Ù,ÀÕ*Ù,ÀU¯‚làªOA pÕoTšŒJ­ p5  ‰xªÒbTêd€§*mF¥^¯ªš*HYÛÓM¯ ›x@U͆4ɯ*ÈfîSd³÷ª ²Ù¥FÙ,À« €{TÅú beß(Ïò|,Óo¬ß‘JTàc¼”Íì9ãàWY¶M’è»÷ïH%Ƴ VÒ¤lö¬~G< (ôÝûw¤”®¨Š™½¢¹ËÌ^º9¸aeç†ÇÈ÷JÛ¯¥4aÈ·ËcY3iþ´ê¾ÐôÛüu€Hÿêjx¨¯Ûyáú¼±Ó¶d ºaÞþNí°¦Ây¹ ´å‚¨L!ø­ƒ\¹a2.èÆý`'SZÈâIT¦üÓg/è†CÌ[W‚e[ž]ôÌæqáfp>ö)Ç|A7Œy>+·áú¶“µXÖ•`3‡÷ÜEÏL O3æ1á—/­Ý¶qCÒÝ¿é°ÌÁ £ß»³ØwÄÈZ,ëJ°y£‡ î¢g¦ †§ó˜ð|7êÛqýu7ò/$spÆ}Úã}jkãó±;÷ü»Ü¸¡³7Ù³[WzÓKç°Ë“ž`aCgÚéļM¿?q"ÅîØïÝp`·®ð§‡;ìò¤'XØÐ™v:1o3ÞŸ=ŸbwïÝ0سæ:ó’x‡ôÀ}c]c輦?›â/ꙩ~à‘TŠ…©¾o;&ŸL`[~âàF‘?¿/)âç÷bf÷jýPË—/o/²rüøñ–‘g/üêúõëoY¹sçNýÆí?:|üÐøÏŽŸO:5¿úæI"ì¢"6gR‚R‡GM`ÓГ&reX¦þ—EĆnÆìl²ŒOO:}6¥Ú®kBש‰Tåô„¯g“¿w³¿G—¯gØß ôŽø{"/ãêõjC®€šVu¿ý‚¤=÷Œ ~NYM]µì¸,Æ^k’QTÑ–ϯ ,¨T§,1ØNQY ¨)Q%¯æ+C™^©Î’'¥i‰šÛ˜Ú‰øl™v©U“{Üüùó«ª|“ÕâÅâÂ… EQôÔ­"»È»Œ¹Ïe¡oa_è«™3gÎ’%òdÝ®¬T-ZT^^¾¤EÏçwî|ôãïNV.\Ú·oßåË—ŸýôîÝ»=~üåH$rãÆ Lžd¨zZIæ`}ß­êÍ—lOªøÛ öockwwøîÝä—_þÎÀ%—οûîááȱcÇ–¤Ù¿úêë·Þzç7våÒ¥K¸JçΣ-W®\¹víÚ¦M›***ÞxãC§Îè“[_þ×éäAÌ,ó»UQ4I ‹"ùÄïÜB”eÊ®¦ØÛ;Àá \¢îÁU8 ·mqÕ”••ŽŽ.Y.ÈŽó ñÛ¶m›{;yvóOÿrÞí*Á²I†!K;œ[ˆb<Ÿa7î\ìpÃmgöŠBìÐ4mîܹëׯw`ÇÄ= 1ïæ»èGà|TRB×-Ç9Î,´P›ËóæýsæÌxú‰Ã`×ïeìpÃm8ïÄÞœ7æI¨ã Åûð¤Øã–N´»qM¨MޱÎÞ§ßÍÙ‰ÏpÞünbž„:. v¼Ú?âkœ.;æ'v=iqÅç­Áobïaæ|ßÊNCýtqdŸ ã=÷5‹Ý;|‡˜'-æëcËŽœÍ ;ÁÏ ~Ê.·Ø³cºàyþÁtÅ~ìÈ·ó-næy‚ƒQlÙ>œ=ûáòr§~µU˜ëÌì@ˆy¢6³ÏŽ·‰]»vá(wìgIÊñîfž'8˜Ä¬w4€ßi¼‡ô{\Àñgf@Ì7è {ž˜'ø¸\^¯· ;$ýÆ“ü™Âx§¿O± u+{`-žÂ2¹;œ‚ÜÂît£ÁïÌîÅÓ¨1ÿLà$Ô­ýŽØx´¬ìo³fQc¯;vk¨»ykð;³ûŒgÌ©±£Ç ²u¼cNø¿gÌ0±·ú"Ù­¡>©˜7ããš§Jv7ó<ÐгuzeH‹yž§-4Û¡ìäÜ®ZC={騨îÏ>K¾òÊÏ»+'NœˆÇã]]]ôGÞ€xhþ=uÎZÏôŠó„½­££óÎ?¼ÿþ-8—\:OÂ8ó¥==½‡©©YV溂PZZjf'ýN<4ÿŽ>gн`ßâ_»•†††£G_ˆDFàŒ{ÏÉôö•ë£[Ù‰º‹/îÞ½{t’eïÞ½|ðí÷õ;ߟˆ>v•Ç_¾|ÎOÖm”óçÏ·m{ì•«ï$nMGcGOö±#'–ÛÓ;¡Ãá·ÇŽŽÖnU×n}úè¸åÛÙºejÌ9¿®ÿeð> endstream endobj 14 0 obj 3914 endobj 15 0 obj <> stream xœíÁ1 õOm O þŒ endstream endobj 16 0 obj 30 endobj 12 0 obj <> stream xœíœlÔæÇAQ±n«H ¬ÚÔ8äî’’\ 1$\rIJ¡p—ƒAKÈ´ ´å§;mù8­ºÑ ÊZ•©Ð±ÒV` šø£›ºVí¦Þ?ûcëÕþèŸûs_û½¼çØw>_Ê yõ(zü¾Íó±Ÿ÷ñsök8Ž+gmÏž=Ÿ\¿É{paµÀäˆð;y¹F.ô€ò5üÏ^æ~ñ:l¢³P›,GV+ø¥Ý\¬ß¾£)±~ôcÔ§\ )R“^æ6CdÚåi³{fÄçgw$¦½ñæôT°‰NÊåÇM) HÕbm£T׬Cè+k˜µ/í{Ͼ#¤èµ+LßbU½iSUÝìqØ`¯µ/âÃÁoÔìEàâr‘¨ÁŽëîŽ ˆ‹[©L ù·A5»j ³û<{ðC°›Pj%Ó²¦¸e•}GHqÿIæ¸!6h¦Mƒ=N›–UØGp_qâ*NÚ¦ºûâ~Àó67‚g¹âã<Ëkð«‚#ÂIªœzì³¢w¿+Þyš¦e$O¤L(üCT°‰N ¥}ða“µ‰ó«˜ÎÞ©ö:2öÔ=ç8E¦Mm#tô8m6ìž8‚p’çÝYŒéTùîw“÷¯)¿ù : H.ºqòs'¦´&pz©`Jƒû°Éî#cç´±e~ ž+ÔIžwgu\ÙtªÜyÔ%ÝÏ@'ÉmÒ§ Ü(ilGPQÁ&:1”÷a“ÜGÆÎicËüp’ÃiõBÅ#«ßÕ9NKzãð3sÚ¸þQÜÈTn`§ .7.z.êR+æiÊsð,·³» ŽëN Pcš{€ãBД{¿ƒ²Ñ„ï ù·)Íê>2vN[æÏ .—i‘‚åʼyèÉ«ØÙˆ{FuLŸ6îFKGÆ6‹œU[0êÓ&+8¿ ÞbغàBO^Åî"öŒê˜>mÜ–4ŽŒm9Õõi“ó¥¨iUqMËÔ†v2qè ²+Ć–BùoŸÿ›ã÷8(¦,y²¤b!¸<À'7¯®8.7.:”{K1‚æ'P¸¦àää`Žc‚ƒʽ¥Asƒ;BaLCWŒî‚ÿ~lð¬‰ËÏYsÚ}×àYoUŽxÎz»ïš\#'žô—-e­ ïâõr"&è{,%.èûøpXN$]7•U a»Î/ Ë ¡Wç«Â²–Öè|eX^”":_–«Âb…e5!Tê|YXž›×y%,cÂ’yš <Éq)†‰ˆbFQ¸Ô\&R*&Ã\Jc"ª˜lçR›˜È1¹žK`"ub²ŸK½ËDÅä‹\ê"i“¯p©˜ÈR1¹—K}ÊDZÄä«\ê&ÑÄäA.u›‰,“¯s©/˜H«˜<Ì¥þb)ǸÔ_™H›˜<Á¥þÎDVˆÉ$—J1‘ˆøË$w+Å,‹ˆÛ’ÜoSLcDܘ䧘úˆød’ÛšbFÄæ$·*ÅTDÄ'’\]Š FÄ9Iî±37"z<ˆ˜GàÆ8ÿd|||üAGµf°¬&IEá …ÕJ%”mF#«…$”mFŒÕ*%”mÆV«‘P¶ÇY­ABÙfüŠÕI(ÛŒ3¬¶XBÙf¼ÃjK$”mÆVk”P¶Y­IBÙf|ÈjÍÊ6ã÷¬¶TBÙf|l)ûxã3Vk‘P¶«iʶ÷ ¶I“P¶ lCË”m¯l­&¡l{Æ`hʶƒ¯I(Ûj 6 I(Û$ƒU4ÉýûÂŽ°ª¢d”RÔj©‚bÔê<Å*¨Õ2Å*¨Õ€‚ÔjÐRYJµ j5¤ FuZi´”Ôi¥ÙRjeÀªªMAEÚ2¤h¦‚bÔ!UA±Ú IAUA± ꀪ Xu™ª Xo)(VA=ÏÂu©ª¸_8ÀŸ„—x¾F–é›ÐDI¼ÎËa98¨?dÙfI¢ÏÌEçYƒ•4)8®5¨CŠBŸ™? JXµ¢*¹ÀÇO›¿×ŽüÔmœlÊjEæ­Äð÷ÃÖbåJÇõ>± æ~â—y™>¿ŠxWŪz±Aóx]âá†óÒÒîÌ{¨áo¸†­ÅÊ=”>Žë rAÍýŒ7³|¢³—xW™¾7˜ã†Ç 27œ¯býä­bÖwš´*È5TêZµhê¿ÑÒÚþTŸˆùnÔòÐ\KóÚ•âþ“Y_›æuà >ôÙcµƒ÷B è!kö Œ æÝ¯o|¹a3ÎëÆ˜ƒ“é²|Êb~ôàyÝÈêîEYÃb,Ç=¬}:øY › |Ä¡ž× 'xt#Yå^”UÛ™wˆ–®Ôe¨#½Ïž_=­>’Å mµéÆÀ 5]n8Á7édY”{QVqß¼Cô°t¥î(CéÔ`ÏâFm N¾éFî5]nŒùÙZô\à^s<÷7r»WÓ“æ1T:”NaCóêhB=ËþhÜóŠçu#¸{9=Ý×c¨t(†æÕÑ„z–9þÒÙ4¸çÏë†ܾÝ£ð_¥¸×´ûiö—›ø =“Ø»žM×QHìÑH8™xv}ááÆÄ”{íÈOÝÆ9ø‚ ZÆY;räÀ¯\¹ruœµÛ·o|ÿÀ›ûNAö î?1ˆ¿ææq"¢BlNí£r’ÞÅÚk›–œ²É S,Ëô¿åbC7õl6ÃŒOî?y:-ÚoÊ )'ÓÊÉÁþCǃík!öX°#êè ¶Ç!HÌ’µ`1€#°¤ £=ÁŽs¯Žž‘h<Љ£ñ`‡¥GÓCAÓØì šöæ(lBѵ3¡F!K¬#˜–8&:Ë£ Œ†¬C–N$Ôiwö;Á®u!鳿ÓìWÍÑ$Ø9$Ö&D`$¼v!ìîþœbú ™g/jï¡ý!ë̤O)9·Q9µN ©÷P‚¯Iy§Iól ¹ìê A:m,C¼júä`¯uÇ9±F±¯µKFLðésC3æª#1ÜB¡ÌPÔ´P%§LWB–dzx¥|˜”¦eƈõšEë[fØú‰ðÃÅ6¤º¤|VùÂéÓ§Ï›(T{Lœ9s¦(Š¥5KÈeUVÉÜå63PIÀg*~øáÇ— u{î\eÖ¬Y³gÏ–¡ÞÞŸùåBåí·ÏïÞ½ûÂ… [ö2ghGR³X¼ËM©]bÍÖ¸R»xÑ¢Å}tµP·oÜø£®¿:00pæs»víÿñÇÿ~ûmꫯþæG¾þúÎ;ÿ8räX<¿víR%™žeuM¤ÿôÓk±Xüðáøü‡~üøãOÞÏÖΟ?ožŸ3ghÏ|pùòå5kÖÌ™3çÒ¥KûOœ2³Y4gÈcpòóÊ.ö§4äS>úÕ·8¾ ¸šo&à †3p‰ºWá0ÜΊƒÒ¥¤¤¤¯¯//8‚ÒnÆ ^àqÀÉcp€Û¿§s<¥!ŸòÑï¼¼Åñ˜ nݤ<Àá*†Û£ß»w¯¦i<òÈÊ•+=À1ép{B¨ûúôÕúªqêÕ©îïûXÂ~8¸yÛò‡«pnÃù€“ÇæÃywÌç'ŽSçq®vöêÇ|ò?'ƒ~âJBÝ'8œwǼ78ðICÍ|Îqç“lÏÞ ŸôïIjœžã^sœ‚vGÌ{ƒ#?ð<ÿÐCù? pÔÒõF?Y}Tà Íå]y’›±gfø-78îÛ·oÇ.þÀO“rsÜOV%8ng!ÏÛ™±ß‹½Á ;NTYYY^pü6 Z¿§à̘Ïñ¢oŠŠß,¦_s<Ôß™ÆÎÁNíÜóÞàeøi%ÿàÀÉ[½ÀÆq;+óîŽðBÁiÌ{ƒ¬ŸãRæ­^ˆÍpð¦`WÿüszÅWnznÏ]nOm~à(¸páœ/Ôm´³gÏ¢€¥˜+-ðþƒÇ­ž[£; Çî·ú „º×«Ýë·pírk¸Ü´u:ŽoÊ;/-{v ¤Õ.›¶¶Y²|ÓÖeϾ` l¾`I?•ÖÞþºx_Ȫ¦Â±ÍVÏ6tÚmÒŠ¿½¦,³þ.ߜѱo›¹{æPÚ,YÑ» ÒïCåVÞµ¾>Þ×jÒ]Ú6C¶[éA¶¥77÷¯°dhÓ”–g¶þ“êÈÐ endstream endobj 17 0 obj 3549 endobj 18 0 obj <> stream xœíÁ  ÷Om7 àÐé endstream endobj 19 0 obj 30 endobj 11 0 obj <> stream xœí›klTdžAVØ ®%›ȶص׻ޛmÄà]ãØÞ]c{mŒñ®/P0Ž’©¸WâÒÄR±“TjE*BJs©$Q…ÔVJ©NÔ†Ÿ­"5IU¤¨Rö™sfç\÷,Æ d3zµš3óÍñ÷Ì|3gÎÅî–n·¬òæ ,ã‰ly‰(”°Bž©ˆöˆbåLäÊÝÈä‰Òª–ܘ7ôƘz+¢Ð&I1¨—œ$ÖSƒ=ÎFÏëaªhíeòË>¥hóÖ^ïúM’¨¥ŠÈHb?ˆì*©ðyTÈàå‘n™ø_é{ej±7(>úà“v‹ ‘gt*poëf _î.ú‰Ã Jvˆ.¾GbõèË#.kzIfß) à„‘Ž£‡ˆã÷ Úä‰Jbì¿U‡½¼©ÓŠ,[Ó´¬¶Énq†›¡&G-Í,#j†P¨…ˆ²'+Q),eÈ UåLu'&*¥’2uP UD”“ÊAEóQg] ¿ò¡`@Îß(ÌJë[Ëê[KëcÎúh©R°Ì]¼t^î"Èö*JU¢9\˜G¤0ÎSh¡ ´Jaì`?þü‚,KõõõE°#ïɲtàÀïÙ9{IoIÁ±&û^»«Æ•é9]ÖØ‡\ðäO¹pˆÂLmtά¶?ÞUÐ?&6$êC9j-ÚhÙÝ·sȶÛ6¦×'‹3‡ÿÅí ^ømêO\8D!G³bƒäöúœÕ««œµn%Žå5¶ÍÏåú•ØÊ9qÝ6ú‚ceˆØ¬ !OJT6hµù9œA—๯å‚Ýq0ø}ëì>FáÀD#E•u$€çöì´í¿”{ì*ð Wp¹­©/¿©Gl屺é7›p3ò(QÛ4õ -ΠËXŒ5ØSƒXã8fiIl“*V]èdü-Ñ ‡(D•uRòèjÛÐ9'ßåÆŽ@•­¾«`UƒÊ ñ„ÚóH6«Ðg°Èž6i)î#»Î¸g »Î|¿ßìË2gG¨³ÅsþK¿Ïyõ³ü½S|¡ÆrŠU“ ‹ ‡(D•ä†Ýä¨Zi‹ÌßrPµ†Ï?pá^"6«G‰ÚfËA´ÅìaCv¶òk×y`J‹ç«ŸÍýÍ?çýâ#äYdtlûÔéyÑt2Qˆ*‰Ý‚>»…5ÜÐF¸Xag+¿vÇøJ‹çÞ)€uýy™ÛÌ›¸UÔІèâÂ! Q%±[°Ñg·°†Úׂ»ólUç.“u~Vç;ߥðK‰•¹lh£ù£Ú}ðùÞƒŽ¡7÷Ðàç‹ð}g×¹ÆÝwö°‚£Ï÷6Ç”7aÇpðEøádÜÇ{~ Ð UÖm<º1oa 7´®»rܽ~¾þ8ý•îŠ ”¤ÍˆøˆLqUÍ ‹6ÚÄw;ª5œìzv¢Ö¢»}E˜_wrk[†’´ÑCLPˆk¬j^X´Ñ&¾ÛQ­ádÿS½ µmŒØ1wrÖõä×4Í·±IÄg“˜a6|gRR¹ÂÜí0öºˆŠ}ÞÚ EÕÍ„}ncÌ0ît =2ß.È=$]vÆ…‘5agýƒùŽÉ|d¾]{H”=MÌ#žylc|©½/x“¸§e%ºë˜*°u—¸‡.iÙu¯_ªÀÖ½´=tIÞÛ䥞UÊb¾k™û»kKdw†£";ßû}×2g lwlŽõŽïÙ%öPö²;B‘¬eÏê˜g︫÷´ˆ«ß̸ƒ}a–Ž{¶³‹ûyùñãž)­]—Y«#öÜ›¹Îf§È^ZÇ?~ü®eÖ¸îºMØ7•”|V÷óÊù𫹹NçƒØ÷3£óÎ:ŸcÄp»”Xݘ‰ìÙ“ûÚìew*׺ìIÚµ.{w»+XzÇ¡|{¢øÌ¸J:æ5eFIû´0õ²¾j%ó®:V†áf‡ñË7´×wûã]©w[Ê·fŠÀŒ«¤óh^Og”´O‰SiÄG˜‡pÕ6ú‚íÔM›ñK77´ìýcì}¥îÛR¾a0ªòh¾™_­ZOü€øv€‰¼u¥’ïvN\Ï;Ãÿ–øB6­:ìš»€”?ªžDæ‚æìiÝ0‰yí—`Š`3¨âgç…•ï„Øï9æÓºA×yÅÞ¦ c+ûKû%XNÿÞ´UüÌüƒáÆ<üâªU BëuÜhî%nLܲHfâ÷Vûö#ì[,í—`ù£GÓVñ3ó†góXð|7V7¡ÿ‰Æ’™¸¡Ã>ãù~o߯±›Íwã*+nö:}ví—Þ¼ëLª<ò ¾ÒÎ$æuÆý铻鸧uÄ]û…?onRå‘XØð•v&1¯3ߟ?/±›Î÷´nPvÅZ'~o²=°¾Ñ~co%aygß9xèþùÔRß¹MÚba©ïØŠÅ'Øš 1q#Ëïß˲øþ=›Ù½ÍqL¨+V4eYoHŽL]øåõë×ßʲtûöíÕ›¶>{tüðÄÏMœƒOL>=‰_rxŠ U\ÌæÜ!®ÓÔ„¶šÄ!Õ9A“jQKéoiÄløá=…ñ™ÉÃg¦$© x9Ñ$ÑéI)sfÒ×Öçoßìo#òµõûÛö¤¿-ùÖ÷Sm†˜fíýL>*/~;’þö$iÕžô1u$|íP¿¿#áo§ù©ÊOŒI‰ŸØ“ZØ:’Áø@°c @EÏ@,qNVv  6@hž)§Æñ¤?>àï @¬P)“ò ©€üqYôìTìgÈ¢¾¶ÜPĽþéÀD -ÉË´s¤^eÝÛA¨}´I>ÉmXeUÆ  H‡Èžû;“(.àÈÈA©ÐjìèZ‹¶´IJîæÎ%…åÅåÁ{–cMcDf±;(‰¸ UèP¥JìîJ…<’Ër„š)HÂjZ,”3Ù•ª‚U²k\aaaE…/S-[æX²d‰ÃáðÔ¬eƒ»Ô»Ü6Ëi‰o9c_â«^¸paY™+S·ËËÝK—.-...k ûù‘‘'>üp:S]¸piÿþý—/_Þyè8™­íIwM½c–“{õZ:sîÕõuuõo¼ñV¦nߺõ‡#G~211á¢ìûö¾{÷Ÿ~zç£þjE<==ý·ññ—‰Ä7°x²©ê­]ÇvÚç-kÛ6Û%_¨‘²'½¡u­­ë§§ï|þùWp.Ytþwnô÷'^|ñÅ2™ý‹/î¾ùæÛ¿ÖK—.]B/½üò˼äÊ•+×®]ëëë+--}ýõן>G·ŽüaÓÙ˜(ñÙNÀínt:åÿIJ#önTdJìŒàp.q÷à*†Ûº8ØÕŽŽ–­]Ÿ–çÁÆoË–-fìñvö8ìâ¿þ©žíçjnîm6+bïÄìôÊeÂWá0Ü6g/MÇ~ðàÁæææE‹uww›°câš…˜·ò»M@}U·ö?#O|QXø¯9s˜x‰XKØ+Ùɵ̄®Âa¸ çÍØë cž…:Î0‡& ìý±ƒîëß¾óï¦Âh³}é,»»ïðׯ]c™ÿ~8ýe…ì™7okQQË•bï Wssvæ3œ×¿•˜g¡Ž´ÂŽ€Æ“¾Pì@8ðÑ à5‘A?ˆìÿ˜;øÏÛíbÌ[d‡óÚàØÛl ¨eç¡>GN¦ì“|¾«³è=Ãgìà>ÀAÊ„PgÁ/²3ï²¥ù7›ïœá«‚Ÿ³»ôÙ±\ØíöGyÄû°c¿˜o°²ÎsöT¨ó৤d:Ðà×a7Vv¦YëDv D\¨Eöè±ã2±{÷n´²Æ>ŶܘïVÖyÎÎC?#E'°à×eÇ5.`zÙñb7ˆy†îòz½iÙq#é§w^ð'£už‡:~í:ÿ÷œœ©üüM%%œ=Ð…»°ÔÞÆ„ÎA×°›]ãxð›³{q7JןÌÖye`ó±JuóZc׆ºõ˜×¿9»ÞcfÄ® l^"ViØ×ù;iÙµ¡žQÌ‹øè@q©4a·²Îãbk¦°±ï> stream xœíÁ‚ ÿ¯nH@ðh0 endstream endobj 22 0 obj 29 endobj 10 0 obj <> stream xœíœmlÅlj,|•cǵää”ȶ¼çœïÝŽCìØç³ãúr/~í»³ïœ6)¤® ¨!Tyu¥@ 8‰ÔØÐ5!*¢¥PP ª"µ•(H ¨%[ñõû±ÿ™Ù›}½=¿€ƒ3úËÚ›Ý{æ·ÏóÌìû¼±1ÏÞÑÆè>üU4ÂÕ%òưWl;œm0™5õÄǸ¼qù(_|œo0ÑØHyc²|±´/žö'2´r\>Š'1ÎåK¦üÉ´mâø›¡‰|ÉŒ7‘b H›>Ô¤¼É”‘DûDQ>Æ !JEÉE)Æ |‰4©¡ÝgÒC ½Kp„9Š(Å ±–ò^¡wà -öš^ˆ(è…#ÒBØ;Æóý ¦å–E;BN‚΢Ë1­'°>Rh™Q‹Î (Ì®¯™ÔQc꺫9.B€ÍJPîÀçcãBßSJ÷E,”€P–ûKù·*½ ÅÕÕüÉ ™ƒB‰Ë°Ô`mPX1å¢kýA ù:cºRE€t–^Y/ç”Îg pHC}¾wXêˆÕïî­oïu…÷ºÂQ©£Wj§¢õDQH‚:öѬÆÅj4 Ë䄚z¦Î˜ 5PÉÐ^ª˜(•DE·ã®Îþ*…äüøgB³†Hrk$ÙI¸"ñµxŒãòM[JË7@ޝU•TšÝÇŠJ"UãJ•*l –Wqi\MXVVV½ÆJ$ñ* /Tz×X9qâ„'z žá5êRuÕÏT39:Ý­îbOî~¨ÕùƒŸUÿä\øˆÊbÛœ¹©Åù½‘êÉÃâD“‡Q½6ÛˆذÈ!xB×úî¸í`Z}}m®¶(èHíÀÔúçþàXø+>¢’÷ÑN?àjÙ%µu»Ú{<Áj¤í­Ž‰§JNýV<*9{Ã1ýœ´³ƒ´ÙÙmR£iƒ£&žÂDùÑAå¿+)&18ÀìCÀeÝ‘"q.Öeì²ßÊÇŸp¿ZþÌà@:Ø´ÝÑ›©ê„ª_p¼øŽ’6á(¶Q£mÓ;Žcq MN@¯qõ!Y[Ý €1ër]"­qc8°ãKÅføˆJì²ß†Ô<Ôæøþ‰νÏK¡mŽÈHõ®nâ õç‘ÛìêÆ±8C± }w–‚',7Ol¬‘ÜÞ®^9a 0ÕQÀRn٠úyÕÑžÞ‘„‘‚€øR.|D%vÉöØhcX¤m;C‡ÊœÔdþ²Wà0ÀEÚ´uc5Ú6NâXœAA¹—©›B`ã…~t@å”ûêçë~ÿŸÒ_Œmæ´Õƒ×=v¾4>ì\øˆJì’!Øhc ÁFæ7m#Œ "Ü|YC`ã…~tÀ—SîѨù!¶™ÓV?:S:w«¦»ŽÇ…¨Ä.‚6Æld~Ó6Âbà J8°±€Ï”¸,F‡Í |Úà ;ñnÚF÷¥ Bc\•Ù.pà“%¸œÁŒ€—ÆOÝËÁ`ˆ\nä9MŒRXþÀ'K €´`ˆ§î{‚ò¬r\ë þ OV®`³ÇçCMÁ ‘|1"ffMÈØl£/|ú¤ÉüdB5þöÚlÃ!xbò“@ çŽ0¶ÊÛ“è#j nˆ¦":Ð13kBÆf}áÓ'Mæ'ª–]Øk³MAˆ¯’=ãU­½eá~h<âÄ Ö†OuêšwXÛ¿ … ?²–:c¥]ûjZF- ¬ëÉ <ngÀÆ7Û£EBÚë ®µ 9 °ñÍöh…‘iBp€«s·ÇGõ7#÷bá<ñT½.1ꓞÆç óá=Wè<¼©ÑC0þ4>o82Þs…Ìè+N8,Uæ´*‹¾mSuΧ{·[!Á^÷§]á¸O/¿m«wRŸ¤õªû„ŽûÒRGlÍBð#'܇8[ “r…×®'u tá‡vÚ¼JlþšÂ!å¥ÏZ]€P±V=¬ü¿ÁG×¹ÔáÀŸ®ò†ö=Å5ã,ÿ Üu©!ŒûÉúÏTC$.zvúmÛØíO“G„Àè!¤ëêžv:[ÝîÕ2ç_É{2íï#kù49Þ(/ïq¹VƒÏ/ç†a8ÈëœÓ®N•'À@ äñ¬7^Épà«" ÂÚ)‚¼à¹¡kíB`kþINP'ƵSOHëãÚ)tžñ'¡´+¢‚ànjÉ¿ÍQ¿'R­¯3ß%ŸG÷®¶¨¢™_̰m'³¦J;;¤pT2Ída†A3Op~o$ÿ^OýÆPµ¾Î|—|Ý[û¢ŠþYw~YËÐ!f!LuL?çxñ‡ù G 3ÊA ¡zò0{{køî˜Ï@Ìvyu«UÅÍö µ!¾õ`"ï ©…díÓÙU‡/ðï_O4C6€ »õÈfc—WqÔ°õ™ØXD\è_{Ù2Ch\Ð :cœ0 ‡¥C`é5lÙ*6K‡PÐ á`ú…v*?4ÙÅ¿B ;‹·Í ,: šAªÐ_H%3.õŒ±zð [ê¦_hW2y´à.þ|÷ÃÃDí¶]ë;ú ̈¦ˆs·æëô,Ì`9ÁÏø’ ‘¤ £3l©›~¡]Õô™‚»øWðUÜK   f´õâB3Ì×éY˜ÁG_BaÉ9aq¿e0ƒ`•ÌwÙ1ƒÎåß 6tCÐ/Èç0-vy•´Œ6ÿüó$á÷[_~ùÕÛoÿñ5£rõêUp{饗xÍ믿~ýúõL&ÓÐÐðæ›ož>‰dÂÁ, c¯ Øm (ýÓ'}iu»•_¡åÅ^‹šd= À˜Ä̓©0fvÓ¤šššééiyø„®¾‚pBL)8`a( {Mâo? Ÿ>éËÓNç_ØR:ðY@€©0f[CàÃ_C!'OžŒF£6lµ€€ Ňp°ó³nC³ÕÕ½WVö¯’’…ª*l³Õ# - ÀT ³a¼6dÓp`Q€S=@‹ “‹†·ÇE?«»CͿ׭û{i)w aÌ ¬!0›a¼>.òž Ì -ÂEÚ€XhÊ:–¬©áÉ…ƒM0^b80míêwT|WGÁJ±„0Ïs‚öAù» 1 àðp{C€¼FÎ CV9C`4q‘OŒúw·1ä§ÓùàƒÚ‚p0·G8tÛ@`ª¶öÆúõè&.7ÜÞ–'„{š‡ $Fº€ŽˆY]3:0ß1‚€QæÉ'ŸÄáö ,°é=r‚ýÑ>à€¢›è¬­œ&CdÈrˆ!  èˆ8¾@0 Æý~A¸Ÿ Òû>f?'ˆ®^Äèî à0?Y²€ãÑ‘€aN ¬†HÖü¸)¦Éjq¸oœ'øíAÐG!6Ñ5 }\XCÐ[Ý%B°3cô‡÷‡³!裠'XAxM‰ 1ÁZ@°?:ðÕ³Þb °`ª> !°{(‡ùôÓ»/¿ü«Y{åܹs/^L$|ˆd5™*þú^³Ì¦¨.A@80=±Xüöí¿½ÿþŸ` L²i> stream xœíÁ€þ¯î ? endstream endobj 25 0 obj 28 endobj 9 0 obj <> stream xœí›[lTÇÇAVƒeÉe²-Κe×{3æVß–Åv¼ø‚½‹16öîšZbKM¸„T`°+\0‰1ˆÄEhˆÒ¤©¸T¨òC+EDªUáµÊCÔûØÿÌœ3;{fÏÙ³¾€ÁýeÍ™ùÎÙïwæ›ï̹ص³}Cxkg;änØë6y‹(´°F^)iìÅÚ™È&•«q/“»‘víÜËùŽž&¦Î’FhŸª&¨“¤©£¤ ö8=NSSIs'“›Xv¥ŠîÞÜéÙµOµÔé$â‹È:é¨9x‰Æ»¡¡]C&n—4t¤¬x(5ðÁËéèÙpCB#ê JÇëiîV©µsÂ¥QgOª ÏCZj·6 ú±ÖÆWå•Nކ¼JmLá%htÔÜDœºSÐ>w£*†L¨›Ó ¯«ªww:‚a¥º^©¢¢•uDaHªwÑMÖâ`-:Õ 9 ®i{ƒ S©•íÐNªQ*…ŠÖÛ›ðWÛ Èññ·‘ fÅ¡æõ¡æâP“#ÔXœªe9«l/U¹Tºise.QŠqnŠV ÊhªüyVB¡{ž•þþþWíÂË.¹¨³(ÿl>“ý„ÝYîÌöPÎÍåö_þ6ÿ7¿çÂ&³µIsä@™ý­¶üØqG¢Ø´£×¢ Gvù]ŽZHm6¦V& ³¢†Û…­=+ÎÿÙví\ØD#'²bƒâòxeÛ”ŠGUËçG‹²©ÜÖýÞ’3w„– aë;¯l­&6[«Q'-:ìÕýŽ "ƒ7ç9@V&ð‚cmƒÅœWB\ ]ÖmPÀ›ÓqØvêvÎÙÏ@Mp›lõ]yõâŽPÞ‘1Û‡•`˜Øè£EoSß}qŒY '‡¬Ü ^„º`QÓ>]@"„pJñ¢6ш.ë6¤es…íý‹.>âÆŠ£-Ô–¿­Fç†x@ù8ªÍ¶ì‹#˜#g,²ó3ˆœf”ßtä4sùÕ!#žY\þÁ_—Üù!ïÄ5žr‘‘(0qð\ØD#ºÔ_·`“¶(·Ú¢o/?pZ——÷ßB0à䛊ÔÑ¢·9pûâæÈ,‡Ëtj¼óÃâ?ýgÙg¨³ðË\üÎ¥e=8¥\ØD#ºTd 6é‘-dcC!«› ³.glŒ¦šO\oAÛ¯Pgá—hpÙè“‚š„6ш.Ù‚Mzd ÙØÐFÈê™åg¾á2ÉØ³:—ù¢‚_¬ÌSCéGùê Ô|)‚!Æ@ñºi„ót:ãÈi.R³ƒŒ±æKðb:› ãäótúú"O³ðd. ]ÖmÜiÛB66´²ºÙéññ”âð•ºJJÐ’±"RcÜíb¶Ô¿E¹ðʼn.“åJÇaôZ´Ñ!Û·ù…#§ªDhÉXCœÃy1[ê‚ߢ\øâD—Ér¥lz-Úè1/–Ôvä•×/¶° ÂgŠXa6|!QTºÅÜÛ9XDäe;ö”ýD&È‹ëº`†QÆc QyµþO¡ˆÈ ãh‚ÌN æ2&2¨QyµþO¡˜6‚–0Ftòýu,bú’S“.zÓf­×®ˆ)ù¤‹Þ´×¦×®$÷i:Þ´JO‘}Ðî¬tÊÈ|aö¦U.çÛžÛ”]ÊòòUY@^@ž . / Ï(2‚7Ç+ÅUµÙí5hÏyœã;ddþïM«T:Áë ¸dä}EEïÛíåNç\YÏþ¼ŸåäÔ9s!zg²bØ_ðú]®¹³Øó§, χ2Ÿ‘²ä“ÿÔw )_(w©Ç‘ÞÐeUä'oÉ—Ñ·2᪲µZ †ãW&n$W_oµ%ß菉9JùBɸK=Žô6«"?_M~r}›yWm}çm>¶¿x2q#¹ÆŽaoèÒ¾ä×w£.·ôåžø2ÑzáÊŧèLä=#õ|s2üEÞ‘1þ[â+ÈŒn˜ÜV$ݰÐåÖ-ìë5T¦áò+KnÆݘAd6ÍÑÂ>áCe >}äŒnÈ-ª”Q]ü€bð[ù$ÕyÊÑ$rä ûXHþTiIìDÆ.~@þmê4©»pã¶Õ»Ò¸î$nŒ>±édâFùÐ ûXHþT)¯o(c? ÿ6ušÔ ^P§q£¢§¸aü¥“‰38—§ö­µ²Ù\6î²â†Œ,BÌO”I—[K•°á9s:f”ß½¨"›ŽrF7ddùCq¾—I—[K•°á9s:f.¿SE6ËÝß<ʱ‘ò…’åõ†üͶ•‚DÍ^ß»éâõdÒÞýkuE„¤9ˆÄ’Œ^é¿ LܘϷó§ÌOäúyVFFF¾šgebbâÌèUh`t|àÒ8þ’Í™®œåb6WÏp]‚Ô]è^ãØ¤º*h\/j©þ–$fÃ7ÓÙ¤Œ]S¥3àíDãD—ÆÕÊØ¸¯¥ÛÛóµÆý­ _KòîŠQuC¾Önj€JŒÉKåÁßHÂך {µ&¼L‘¸·Šù"q_+­GÔ.1&->bOzaã$Ñž@¤ÇOE@,qL4–FzÐë§;úiÉ¥ÆÑ„/Úã۽߱FM¤=JÚ¤·òE5ÑMÐ1RQŒZn7ñ*æ'ç-îoIðv?='êÉdg5B`½zêH=Ámx@Si”°À€œÍaß i@=-Øk?q6h/ö¥»$Õ³zC`ÊR*ë*«]UÜÀe¨Ÿ¹üTÉ»«4EnU«5)Õaê\©®_-´3ÙS%t$•–”x³ÕºuÊš5kEq—ï`C¹Ö³É6ËewC^ã-[¹råúõÎlÝÞ°ÁµvíÚÂÂÂo¾™ÌVŸ|rûÔ©SwïÞ=|晉­ WyH™åâªØAgeÜUÚ¾=ôùç_eëö“'üÝèèè‹ÿûþûçÏžýËŠ¾ývrròß##Äãñ‡" ²i詪ezùiFþŽV£pVÅ[]G‘žêÚææ]““Ïüñ¿p.Ytþë¯Æbñ .üôÓ‹/¿ü˧éÊíÛ·qN®_¿Î[îÝ»÷àÁƒ®®®âââû÷ï\ºJòU$7Øcgv+$J|râóù*++ƒZÙ¼y³•ŽP‘ë2xá \âîÁU8 ·Óâ`RPPÐ××g‚ŒÝ·lÙràÀ3äh2{ì dñ?¿tONÀ2000¦•D"a¥%‰L/=&ÈpÃí©!Ÿ>}:¯Zµª½½Ý“ ¶•ÆÄ¨bxxøèÑ£7nÜèííå-½´444È-2¹™ ÃU8 ·á|VÈ,ž±ã"Z, DzBæ¤b…ÛË-Iä¹ ›#3Ÿá¼á&È,žqº¬ #ªÑ„·ú¥ “5†%d8/G¸2çEZ1EçsYÿ#ݳn#dËMVVVµ.‘ìvûÒ¥K-!k`v•Œm„ŒyÍ“•Ü¢"ëJwgH_"2"æ^#däùcÇŽÁØò5¶ Æ\¶’±‘Íø%InáȸHùM/R"2"^aMæ2Ìpr<OFdÜÁùè½ܘõ¹¬ó·á>(¹1A†ó@yÍ‘unŽìÁm M)Ö‘1‚‘HäÊ•+Y!{¬!Ëñl™G¸9²—ÞÜe…Œy Þ;wîd‰\ëÛψ,dzuäOµ“ž ²•Œ‰‰tÔ«dcÖÂÓ2·[82»á5A†«r<ËÈß}÷ü£>±V.^¼xùò妦&~‘b7é@fމÿ!«ûàÁ=½B›!×544NLüóÑ£¿Á¸dÑy´@:[V¶©Àr)**ÊÍÍ‘Ù(3ÇÄÿƒÖ}Ö2Èû}mûQ©ªª:wn8OÀëž³Ôä[·n?~¼/ËròäɧOŸòQn?ôNÿ,—½½ïBehhwë¸ ÌÖm”›7oþ; \% endstream endobj 26 0 obj 3003 endobj 27 0 obj <> stream xœíÁ1 õOm O €³‡ endstream endobj 28 0 obj 30 endobj 8 0 obj <> stream xœí[[lSG.B` Q$/+ˆ8Á!¾„pÉæb’4÷‹,K ± $Ò¶´ ”®€<„d!4N"A @%.jÅ® U·—„‹V<ìJH¤"¯«>TûÀã>î73Çãñ9ÇÇã„,!ø×'kÎ?ÿŒÿïÌ?ÿŒÏ¯)«¶ûjí¾Å[­”QЂ@¼µô’iìL£O-5z†­uvÀGC¡¶µu"ì -×Û·6à3z)þñYϳœòƵå9å öòúœ(g,·ü_‘I¡Ñè.—eÄgÆa™€¤QXß$ÉK˼–ìw²­§¬ ¶£¶ÜâÜT{ÈÝTlûýŸ¬ü3.¡LÕÆ gO¡íí6k{—Ø ½ zÔJÚ@n‡½ÒŽ–G†¥·—®­N‰/^Ý^zúo– ÿäÀ%”œ‹Œ ñ'ßi/,RJ*ìeU—ec±e×G O~.6~mé<­lñ›-^”‰FcƒV»>B¬s0ÍøKÈ*u ˜‚/ÆWž,ˆ¹­”×s0j¨’·!þeì8d9~-ãÔ—àKˆx6ZªwfUïY]£–á ÅWCl|5(C£µ©Þ¶èuvM Sq.˜"°QËnxW~ÜFt.šáJTÉÛͦËžo½Ë÷Ky›µ¨Bã†Ø¡¾Õ¦¨mÑC"²IEïöK$k0²ó—¬Áœ}d½,Å-ùäï ¯?Ï:z§S$=¤LtÎK(Q¥~¯„¡(¶X—ìíÑdÚ%'®"p[ˆMIÊÐhmöö -zHD–åg}6/5Å]¾à¯ÿ^|ù1Ê,جþ} ÞY\ÆmäÀ%”¨RÉJØ“•È´ m„ŒmH–åg}6ƪ)îè0]Õö”Y°Yô-ŽÜ[UÑŒ€áÀ%”¨RÉJØ“•È´ m„Œͽ|GÁa’guÎòíOø2ó1¡Ñ—‚/ßT`X1¸‰ï4‰gž*_:Yƒ¥çe“ÅøòM˜bښŠç©òu$;Cá‰ZTÉÛ䆱D¦Mh#dìØWä»xÒ°» ë×C“´ ö€±Fl‹™Pê’6záÛ M¦%‡P+iÃŶÙÇ—ƒŒ²Fp&iAìQ ·ÅL¨ uI½ðm†&Ó’Gaj%m¸ þVîÈ*®^âkfϱÀlø– »`³¹ŸsSàùâm¿]Uøp1!» j'Ì0²V . ¯Úñé'‚±3!Ënæ,&,ø¢ðªŸŽèÃ!ÊÃ#^šMõë+†ÉG«†yéuÃeE«†+Îë(üáÃ|+„³m}¶ÜÒ¸_p|[5ß cVË”EiRÒdç[!MvŽø–&›&›&›&«#ËŸ¡ÍñBNYej­úlöš¸ç‡üÚ|+”æ‚©Ã÷üðÝììm¶âÜܹ²§Í½1˜~™‘Qe·Ï…X}™£0Ƙ‚©Ûá˜+á7›aœ–´¤åõ’\Oaìézüsû¸s;‰«Ô~tï¼RsC÷,ö2wÃæ!\U¶x_’ø±¿¹¶·ÛbïMâßÈÄÛI\¥ö£{›™’èŸmÆ^Ó2᪥ó´exÂ’ø…޹Öö.ö¶Ëð]_©UåéN¯‰/æä…?šŸZ3wvÔCr6cð묮Qþ]âë<7ô[蔪ò¢ƒ ;Ç…Â4âYÿBÊ ÁXÆ™“eÓvŒ …iÄóÌÉʸÁÃX€'.~Tñ~ÄP—9„™ˆì´ÃXÆ «;B£?À³°ýhÒ*Þ?9Ã0FZ^½¡h©·ÉÀšwˆ‘{–ç’ºa=ÐÇŽÐèðduö'­âýðÓ˜3 c¤e0_7JªqÉ Îÿ$ucæsvzg‰‘5›³‰«$Ýàöúƒ²üæ˜TåEÓ lx>œIŒìûgU²¦#+ã'«?ÍíMªò¢i6<Î$Œ æìÇWT²¦sVÆ ñ±Éº,¿sПI–$aöâ;nQŽ%äÖýêÞ Ù¿ $«ñgãgîFZÒ2—¥úM’oß$99ôFÆ{GÆñI.‡ÎŒp0›ó'9Fµ m5ŽKŠóƵ –êwéÀløeŸ‘Mœñèxïè®'' ÊqWó.gs»«%èn ¹šƒ€³©bàjÙE PhgpRäãÓrµ„H«–“Át¶í.ÐÕBË~µÊEŒ‰ÆEìI-lÜþ'öøÃn Ú±DŸPøÃ¨uÓ†nZfp¨q ä „]­»ÝSFAô¢÷Ú0àR•aðbE0¾z}BÚÝäŽÝÍ!®wÓ»¡ÞFv?ý„¦ÓOo)‡¸ £ì‰¢ @XÀ€Üæ-Ün ¹@ÌW”£G½!hµdqh-ÚÒ&+Öy¦ ¥´š‘Ba…ã‚8âW7ELcsÄ!OÅŠ(o õ<¨x«Wz[<„*ˆõë©bÍeåÊ•Š¢äocÃ÷ëü–Y–•ÎŒìJgá²eËÖ®ÍMÕíuë?ü0™*>ûìÚñãÇoܸqèä™q-!Gq¹2Ëâ(ÙFg_ÐQR¾ukùW_}›ªÛ÷îýãÅ‹ÿþôÓÔãÇOeðäÉää䳡¡O‚Áà;wâØtË/«d«¶þ ƒu[K¢kJâôVQ²¡|oeccÓääÔÏ?ÿÎÀ%Iç¿ÿþÎ/¿¼øæ›ï¾0’k×®E"‘‹/rÍÍ›7oß¾½sçΜœœ[·nõŽœ'É„ì1/ûÙ"B|šár¹JKK}rKØ‹d=*Ù*FLá \âîÁU8 · é ™EÃÍ›7ïݻ׌l €,{Ì ²â”4O3àoo靖Àöqdé‚bB®Âa¸*ÙžžžšššåË—o߾݄,&–„±Ìß1^`188Ø‘L`KØÇ“%KŒ Y¸ ‡á6œ—$Ë¢MÞ¢"A¶=%²àâñxп8p lÎ;ç÷û7mÚ#ë'«ª9Yæ3ºÒdz!Y½¸E2dÞ@ÈéM,œ™˜˜èë‹ýO£Íõë×Á7 ‰a,IÎëãYO–Gï[Q1%;Îç¬öÁ‚ѳeNÞ>{6522†¡Áp8¬Ñ\¹r…}#ŒãælÀlÎr²Œ¯&žõd1Çm6Û¢E‹¤ÈŽ‚,ö®ã ™l,’…·ÃÃcMMMÏŸOi4OŸ>Õ’õU´&IP"YP1»êÉ"{>|frd/°í+æ¬L6Ö“Eáǧ"‘1æÉ²XzܦKH@D\7 ç, pCòóó“’Åï,ýRš³%%¥==}Á`8QáÒ¥+—/_îî«ãdÝmø ÛT˜…ó  2MDVÏædóñc& y² tGÍÒ“/GV½2dy<›“uÒŸ`)‘Å%ÝQ0›x²•®Ö`R²úè•!ûE4žÅ„fBV&cÑÄR’tGÁ–|‘edÙoR²pU½"YdƒO?½4$'gÏžEælhhàKûù ²Ì%ñßššãy3ÆŒlU]]ý£Gÿº{÷>œK’ÎcÄûûOn\%-ÙÙÙ™™™"Y6²Ì%ñ¸šƒ/ƒìnWÛnÊÊʃÁœ‘÷~õêÕ#GŽt¦(ÇŽ{øð!ÙíÞ;1Ëò»Ž÷A@¡¿¿¿¦Ïœ9“ªÛßMÜŸ6º†Ù®SÃTó`&½™6Ð5q·íñ´íéˆèš<ˆÇ}A×IíþCõ"|Ð@QwàƒÚýR €Ë)º8êv•;ÝtWSÚÞA5ÝPŠ6Ôãó A-ý¬ëˆ•Ѷ4õ€BEãÁnÀìĪ u7ØYOky“†à0ýät«—]ìòY%7 endstream endobj 29 0 obj 2941 endobj 30 0 obj <> stream xœíÁ1 õOm ? àaŠ endstream endobj 31 0 obj 29 endobj 7 0 obj <> stream xœí\]lTÇBñVÆÆµ´°…Ú–ïÚË®÷Ϙ±ñ®ãzñ®Ö6Æ»k0®’©øu%ã4`@ &i!… V¤ D4 Lˆ*Ú*J¤’¨ /}¨òõ!}ì73wggïÝ{÷®±Èfôi5wæÌøœïžsfîŸí›{ì«‚[ðëhÙêhÁá–TôhÊ«êe¨¢Ú·Ú8œá>g¿[ÔÆ¾ªpŸ#Ü›ûAŸCîêÐïɨ 8[ªÖþªÖ>%Úú‰íÍ]’¯¥|Csy}³Õ¿ÙêJ¾f©ž‚VÊ ‚€ø6ÐCÖbe- øå ™PÑÎÐÐbür¥ØLÑ"ÂJ!QÐzÈÚÆoâP óã7ıŠ@ke µ"¶B 4¶È,_™W°0}§(¢P´¨ ‹R„‹RP( £@* ösÂ@}£òóóÍ9VÀðŽQ„'œ  Å‘cåСC7oü#$ R(ë+333Xö[lµ¶lg¶=UkyæWæç~ÃC4f+“ffoåÝæè¸8 :Žvô”ÑbÀî±[7Ya¸éž‰aɵ%¥ñÒ¬H€¥CK^û³éÜß8pˆFn »Óe­Y/Õ5Zë›ìnZ¤5µ¦Á—ùƒ8XüêuÓØkÒ:‘YçC´(d0jðeÌÊÀ‘˜_ð^Z$˜à ÆÀ©d¶H³]ÆeP`~AïnÓÁKÇÞ Ä:ïSó@qs¯8(?m:9+ùƒDÆD-J™æ^ŒÅ óLÆyÉZkƒùˆ -{ËÂý ï…¿püEQ ‡hD—qÒòTiÛ¡'NÜæÂ’gµ)Ðm^ߨPCœP=,³¾c1CV d,j[æ‘4>° ØaÒäùfàe <{àü,Áæ¿ñ—Åï~U¼ÿOæH¹È9:üE¢]²2dÒiõ:SçhþÈaEžÏ?t®®ˆL]#êhQÊŒÆXÌ d ´µÜ¯É[ÔkŒ•ì»_-úÓò~÷êÌW͑틞?•á8D#ºd ȤgÀ@ž×”Ö ÎÀÍL °ÕA½à\Ë vÿ9˜_Òý,êÌWÍ;'ò¦ï”4¶Ãß8pˆFtÉ IÏ€<¯)#¬JQÀ2?ßqè¬ šøÞ†/7Fb\SFõG ³)™µƒ¾#‚À ´ÌwÐpà‰zÞH³.þà |Gó‘ tÀ©á‰ú1eÀÑÒ+ù[æñʈ/j Ë¸Œ#mÈóš2Âz‘Â@¨WéN7ÏNVwµ½ª -+" 𠄆˜‡‘bPF]øI‘çÉ®©w7z Êè3`Yëç+TA}+ DKÆŠ¨'‚¶ˆyX)eÔ…ï‘yžìšjÖ£× Œ>ˆ©Å›z‹k›óýí,¸x”‰&Ã÷3eÕkõ•‹|]î“Z ämÜRRó4 Ôa`QÓÄàp¸*߯9s(: 0ëp–u`,! €T¾_sæP2D<œ{;Î5ŒU_e<Ž%±'ì+WeBu–S¸zÚøØ-Ò®t WO»>vEŽ‚P?Ý%ï”&nûüÐ*Ce– ‹mƒMÁ@U¨ßê‰ ðÝã­rÆlz`’Ú$‘?2Àðå0³„É×’³ ÜœÍõ(  ôYý9íŽp¯rWüˆ(ü2`…9í9Î@c@¼.HÜü|Ä+õ›²5a)˜-°­ œ­}èüæç­²Áóí^{FúËÊ^±Xjm¶Ge?¿ ×ˆ‚Ö>E€ùï4Y­‚«ÏgE# ªZû­ )>€³ó=vû£â½ mý°È@î”$sš’R3aî­L˜;%±ö[) ؼ5Éç/©OvR^uÓî’çQ=Tͪ¨ïR&_6X½ŽiU¥u>É”´ é¨ÁPì,¿èN>ƒK}º—òª›v—<êÁzVE}§:ùÂIç(ÓªšÆ^3œ5i?ÔQC‹stœ=cMû„—o3´ºª÷EÅÇÁ¬ ••MX,l6u…ËðGâÓ ò¤˜jHÞGzõzñøiþ·Ä‡ÈÕÐd@uM‘ÔÊ@—#áha/I¢¢ðÃ3fó“©M’Ô5ê§3zjÂÕX8XŠ@ {q…~7 dT#ÁÀ€V¨ßyKq?.>¿)Š÷N³b`ÎQQÄj8`MÝš#ÛÙ[gêwÞG÷gìâóó×§Õ-(Z­êŠš, ¥«×/ñµ¥Q#ØGÔ˜¾cÒ~eNGƒÖvN°·ÎÔï¼Mfìâóó×§Õc½v»º¢f‹Ì iÔ¨kÆY jh¿2§£F≊‡Î¿Èj-ÐËÚ]FÔHäÁІô ¨ßç4êt9I2<?L¤ñNÈ èú@F522 þ‚O¢ÓåH$aÈðlü0Q&¼r^f@7dT#¹4¤dBñ“MEÆý/êoŒ,ìm Ý!£ž\ºvÈ3,‘íHJIWW}J££†°æôÕ±³} 2·ï8Ûûs¶~g°¶víÚæ+Çg 4ÆGÏ]øýõë×oäX¹wïc ®ûK“ÇN¿ydú,ptzæè©ü’Ó èâ`2gpœä!tÔ )Î ˜Q‚JÊK&Ã'ÒɤŸž9zúœ …o'˜!85#WNÏŒOtµîŽAw;«=êîˆy:âîöàj‹R LƱŽ(ƒ‹Â‰ßHÜÝ'£:â.†HÌÕDÝ‘˜»ƒÖ#r—›“7‘'½ñDâÞÎ!odÈCAg ’˜Õ‘!ôzè@­3x:©pgÜÝ9äîö¬1ÒÞIÚ½¤wpw&@ÆÌŒ2ÃE0Ôíš JF=„Ƙ§=ÎÛ=”"™[Fr„ØîŠP&I=ÎeÞª;‰i ´$ôwwÅ=@§`TÂp¯ÌF ƒC{1–IBfÀìZáY»l•gù*ïœ!mhf–¢²Üî•ÁìšXf÷P$[,öê8d,O@ò©91É×¼\hg°¤BèòªP½²úiWb?°lÙ²ª*W¶(/—V¬X!Ếv#;Ñ+kL \V¸Ö0V¸j ++mÙª½j•}åÊ•¥¥¥6—Ñ]ÙH® FGùé§÷³Å… —øì³ÁçŸß¿ÿ_Ç¿‹Ånݺ…ËBØY¿‰í7Ô÷vÌ;´6íY—¯‰2wú6µ¶¶Ý¿ÿàë¯ÿ e ’Aå?úèV4{ýõ×±ºÛ£• ¾ùæÛ?¼ùÇtåÒ¥K„±·Þâ-W®\¹víÚÀÀ@EEÅÕ«Wž:KR_$­Øí}vq'B}I]Äï¼´>ø^™&ÆÌ‡2P‰«U¡0ÔNköB%%%ccc`Ë_寶Œ `6lGFFôèŒ`€ÝÞâ•iï#©‹ø­ŸÖG„ºÆé0U¡0ÔÎÌ@[´"‡ƒK—.íééÑa‰Õ Q`äûè´g?í÷žù7ò±¸øÍbþ?1(dÕÓaªBa¨ å33ÐŒæü˜ç Z 03Zß}£eÑ¿åý#;a BV}˜ÎP^"XÂt¢€9?È4ÂBÀÛwù柘_2R‹ƒ @yu8¨h7þTÍwþ'E—ž”·t´Ÿ)ˆÎ?‡·§eÌÀ|Þ"çN½<À`$(ÂAÁ€­1=H&‹åÉ'Ÿ4ÄÀi0€};¢ ÑøZóÙ¿:8ÑðvC>àoªîÊ E` Ó¸ÀÀ]ÆÀOÒ1€eïÞ½kŒslëŽ<`|-ÀÙgÿîÖÁFXj(øÉjèÑ] E` —r%QÀHuN§3#¸DuÓ«9he<ˆžÅZàoòtã¢&¹#ÒaÊÃÑ| ôVCú 8qK³ÓÜà^‘q?à4Æ€ÚùÓ2€}¬V¨ÃAŸ½z}HŒì þMî®XFÔÎ?‡(I™b:ÕaÀøZPÖW6‡üؾPUíü DYŒïûâ‹o¿ýÛãÆÊ‰'Μ9‡ùjÈîQ€ÙŸ…oØo¿deo:Œ¦––н{¿}ûc(• *Ï\Zf #J£ ¨½½cròXM͚嬬¬¨¨Hd€ù€ìÏÂÿ1P¼5 »»‡Q©¯¯Ÿšz5‹Cãš³´&3‰>Ý34¼c—Š/^Ü·oßX–åÀŸ|ò ÷žÏZà²u× `@erròòåËP>[µQΟ?O® "Ѧ‘ç.\yõ‡ÁøÔIÆÀø±“´åîÃM¨3üîøÔ´§{›·{Ûž©iÕ»©øXhTÌOðÎ{WÁÀê-ÛžynóŽÝ@HÄÎÃ-;_ܼã% TpøÅ8Ght¼>6æ¡û´ Ñ]´eEBø%ØL[v%ë&Ó3 ¦hÝøccØVwmóÅÆB´— ïöÒ_>Éùp×x+Eâ ùÙÿêç¦ endstream endobj 32 0 obj 3569 endobj 33 0 obj <> stream xœíÁ‚ ÿ¯nH@¼: endstream endobj 34 0 obj 29 endobj 6 0 obj <> stream xœí›mlS×Ç©Pñ2¤€K"®ScÇöuˆMÒ¼9$vB ÛI€BÈÔ–Ö@aâ5“¬ %€4’vƒŠ6Ñ ¨²B+^ šºI-•F«µ|ìÔÕ>ôã>îι>>¾o¾N’£¿¬sÏyîÍó»ç9Ï=÷%®úö…uk\õíî†vWýštµ‰ÚkÔ¸Ž©”Jh_ëJJ4àò„:bg-ÅŇ ˜ì»íÎ g¶Çt>_aßø›‚—Ç…M4fk£sd¹ýŶ‚hBÜ‘(š@;z-ÚhÙ]²Ë±ÊdÛ]ÓÌ+3‹âEYáÃÿ¢–®™oþÍ6ò.l¢‘£Y±Aqy¼ŽòeÒòjGeË'£EZ\aÛðÆôƒw„¦µõ½)- ›¥ÔI‹Ê{mxGHg¿ÅØžûA.Ø¥‰ àÀÇè[gÇð1 ©ª‘‹‘¢Ëº Às×m·í;Ÿ{øð —±­výìÚuâŽÐìÄIÛñ›R°ŽØëPG‹Ú¦vöÅtǰk°§±Â pÌ#ÒâP§*V]8Éø[¢6ш.ë6¤åùå¶žýÓŽÝàÆ’¼ÈVÕV°¬Zå†x@íq›eÕØG°Èž±h)"»Î¸Ovùþ°Ù¯fÏŽPgÉ3çíO¦¿ÿíìÝ#_ÛSÞ„ÃÁ“ðSÀ>ÎÂ/Z¡Ëº[7æ-äpCáZ`ÄÎóO_|pM*">Z0Ä«šm´…¯vT9œ¬ÖmG¯E#v~ýâþðImR=Ä©@‹˜cµçÇŠ¶ðÕŽ*‡“õOù2ôZ´1bGx°å Ö-l‚ð™"Vø’F«OJÑÞ¿„]²fÂΖ4w½âýדRtÙFÖ„Ìw½;<†E—]óbZVíz©'®hÙuó˜*°uSÜW´ìº×/U`ë^Úž¸’dÏO=«L>ŠyÚ*]Åö~»s…Ó„]7³= •S¶6iµ$²_bŸœì7'/ûµ)öÉË>kò²çMâqŸÌì¦ëùdzRR¹*»½úí¹7su“q·ò„ꉬ¬pÜåw™°wï±Û+œÎÇe>¡ëùtv€_ÊÍ­q8‡À~˜ 1¸ìr=.±úc~ò”)ö)öŸÚ—G]t®ïþòÔ;Žô·'i€w)Çß3=§Ççð•¹JKÉß*-E=õ²~ÑRæ!\•–¤`düòÅÄ -»ýŶԻ­ô·fi€w)Çß³\û’`neÉßò•¡žúH#ÒË<„«¶¾7mÇoÚŒ_º™¸¡³ž&ØûJÝ·¥|Á`ÔåÖ|39¶×UüµrqÙñ³ˆ¼u¥’ïvŽŽÎNœäK|!›Ñ +÷2),t¹“!ö¹ *c~ήý>ÊÌ Á8£ÁÎRZØÇ“¨Œ!øÇÏžÑ “˜×~ –l]üÈÚ7YccsÌgtC‡=¼™}‹¥ýlztwÆ.~dþÁð8c ¿hѲ™Õ:nÔu7†nÙŒ?$3qC‡}k?ûKû%Øì¾Œ]üÈüƒáqÆ<>À¯ãÆòZœâ†ñ‡d&nLÄ|wŽéÛx#v³ùnÜeÅ v»æKo~êLºÜÂK[žiÇó:ãþê1…ÝtÜ3ºaÂîÔ|áÏw7ér /my¦OÌëÌ÷=gvÓùžÑ -»øI¼ÉòÀúFû½•‚ôޏ›®oQO¥úÖ-Ê ©>¼É'Øš 1qcê^fŠý§öåQÆŽ µdÉ’ÚIVÁ>röO£££W'Y¹{÷.Ø_<4ôûƒC§¡CCÇN ã—lgB³9}ë¤ìB÷Æ&ÕiAÃjQKåoiÄløf¿žMšñÉáC'G© x;Ñ0щa¥rr8q丯eƒ¯™ÈÛõµÄä–¸¯9yWG©6@ÌÆ ³–(“—ʃßpÜ×'{µÄ½LᘷŠúÂ1_ ­‡•.1&->bOza#‡ãþH—?Ü%SÑ#Keá.ôÊtG™Ö™ä5ŽÄ}‘._k· ±Æ¤H{„´ûIoä‹$E7!oóz@“!‹bøÚvC÷¢291¹9ÎÛezr”³ÊNo˜P{Ãô’zœÛ°3àOª,B `@NHÒs_k\†"NÙ¯œìÕ vœÚ‹}é.)öyò’9 å¹ ýc–´¢–1¢2×åWÄ \†šã’©R-vWYšÜŠæ&%ê(HL ÔÎÚ™ìéºü•Í/û®qsæÌ)-õf« ¤yóæI’ä®x î|ÏbÛ—yÞÅŒ}ž·ÛÑ–={ìŸ}fSéÒ¥\à§±Ó+— ;\…Ãp{œì¨««›5kV{{» ;& ®Yˆy+ÿ±«;â?z´@¥O>Éùæ›é##³Q‡Ì(;¹–™°ÃU8 ·áüØØY¨ãÓh±À3;bC @U;Z¾ûî™/¾˜Á€°‡ÉÕÜœù çµÁo……:N v¼?÷>;À7o.äŸÅ¼Ev8¯ þtöŸkÙy¨OKSöa>ßÕYŒŸá‹¡Ž¨Flë²ãœœ·(ó=b6ß9;ÃWFv¤ »Ýþì³ÏZb? v¬·óÕÖó<À»ºŠFGg‚ƒ‹Ø¶4îÁš²Ö ¹Nd@ÄD-°ßþ™;.;wîÄ^ÖØGØ’óÝzžÇˆøà-Í÷ ¹ÆÉ¦×8‘/Ð"»î¸3|œ.Ç“‘7’>zç¬Ïw1ž³ÈóÁ¹ ·!©µ ;œ‚®a7»Æñà7g÷àn”柱±óHÈx}÷Xc׆ºõ˜×¿9»—ÞcŽ“ÝʺÎ\åked׆zV1/â㊩҄Ýzžïì,faìΦ€Ý€›°ÃUm¨°ç'»¾úêÁ»ïþaÐZ9vìØ©S§B¡¿Æ±§`g_•çù·"Y‘ê±#æ{MCCãÝ»ÿ¼qãS8—,:ÏÂ8óùÍÍ-‡ËËZ.ÅÅÅùùù";wæ!F_•çù7Bƒ½Û×ÖJeeå‘#Gc±8œ±î9K_Œ½{K/nèÎ;·k×®¾,ËÞ½{ïܹÃǽ}ë+û'¸¬Ýö*Ø!T.\¸ç³uåÌ™3XÛœ½x ¿ãyàIÙ‡Ó–Ûã; Éî·G†ä¶[ÏŽ#Cš]n§ëS¡Qu|¢÷>¸¼jãËõ[¶C¢¶¾¢jØúZý–שPÁæëT ®ÆÞDe¬O¦k­Ñm´eE•ñÛKTO¶¥êØ7DvO•USï(ëú®¬µ'ëk¤½|—Ð6h'ýåÙ¡lnK4Q%7‰j_z ÷_^*YŸÜ›ÇôijœË‰ûÒŸŽ êVž—²'ÆÊR=)ˆ3ìî‡ÚzR]\ÚÕÚCÕ¾ ßT©l ÔM~ÓÛ}…<*§ÈIÅéiQ±+þóºÐ•‚M:Ìž'w{ù³eØ“–.æ9†OQùU¸4ìü˜é¤ j#$ݘ®žEí´± »Pýû§r endstream endobj 35 0 obj 3378 endobj 36 0 obj <> stream xœíÁ‚ ÿ¯nH@ü4 endstream endobj 37 0 obj 29 endobj 5 0 obj <> stream xœíœ_lS×ÇAq—˜D‘ ,X¹ÆŽíëš°ü3! 1$ÛdŒl–V0¦uH”MáO²)¤-¡"•„vªDŠV±©P±ÒNüWÅÃ6UTZè&xÙÃÔ‡j<îqßsÏõÉɽ¾×Çv2B’£¯¢ãs~÷ø÷¹çw~÷ؾ7eõme mÎàVg0$5¶I Š”JQ’ Æ­DÊKÚâ¤-Õ PÓNµi› •+R+› ­Š¶ñr*’)õvç¦üM¾ä ÈøøÛN³ò¦ík›¶—7u8›ÚË9å[‹ ËÿUÅŠ4-º—Ë‹‰¦OÓrNi 8Ø^ñ,°²‘¯8l§mTöcvW­+Ó¡\/×ÚòkÛÏßfÂK4fj“bä@•}K—-ÖËHëE;zm²[v;[œ µ<´P^/\“X“5Ü^î.|çO–ñ¿0á%‘ˆ ŠÛësVm”êš ­n¿ŒiC­eï›y§~Ïå½uÃr試‘ØÔ4¢NZ468jï›G¯õV KÛ$*ð‚s-ŽŒÉ¢ÎKMíL]â6(àµî>l9>a=ý ¨ N`ƒ¥mOIÛnþ@¨¤÷‚åÜ)"6ÁêhÑÚ´íÆ±G#fÈSSVë/BÝÐÑñª& B8¥x Þ /ш.qÒòreÿ‰%go3cI^oiê²mlÖ¸Á¨GµÙØŒc1‚9rÚ¢w~‘SÌò|GN±–Ÿ2♦Á‚wÿœ÷Ñ“’cã,å"1"Q`áà-˜ðèRßKÀ&e‘Ö×X¢ zNj²qÁ‰ËœbS׌:Z´6='q,F0G¦9\Ÿ±A§¦Áž,ýã¿ó÷u~¶ÈkKß8ŸßÞSÊ„—hD—ú^6©‘²±¡ —ÕMi×gl̦šƒ·´ëuÔiøÙ äÜ-mîD1á%Ñ¥¾—€MjdllhÃeu†Ló3Û‡0™dìY]ËlSÁ. "ëÔÐFïjr÷j¶Ác¢x=J„³t:ãÈ).R³ƒŒ¹f[ðb9› ãä³túâ"çXX2× ]â6ž”- m¸¬®Avyý,¥8ý•îŠ ´¤­ðÔ˜wD;Ÿ-5Á/h£/ls¢ÉÆd»²û0zm4Èöê »pX¶ƒ-i+¼cˆs8ÏgKMð Úè Ûœh²1Ù®TmD¯ ë"¯ewIm[A°“.¶Rø µa Geµ¹·s°ðÈù›TZõC™ /mÝ3Ì2¦Êóõ?‹Â#SÌ£ 2=-XËXÈ FåùúŸE1 l- `Ì&èô[ô±ðéKŸš4Ñ›2k½p…¿Hé/@šèMymzáÊÔ×}É/:æ[¥Ûa°»ê]zd¶1›o•Q›å©EÚ!-"/"Ï«Ê"ò"ò\ðpyyF‘Ù7xs¼RÞÐ’ÙQvë«3äÔ#³oðæ[¥Þ^wÀ­G~Õáø•Ý^ërÍ•½ñìï±Áû‰ÕÚêtÎ…èÉŠq`c~Á+»Ýs% g?°NYD^e!#»USßüOÿMaÚJÆ]ê8º_è2*õ.WÈé ¸I¶Á_ÔwHº˜™I—~#dû–®©ßw¦ÿr4í%ã.uÝï°•»ýŽÕ oQÇ_ÔŸZ,Tèbf&]úqŒm±^ú ]ÊßÙõݨˣ»sÿ1Q¼ŒÚl@ÀÄu;¨kLŸI—G™_ÔY;Œ ‘uò).O2ÐBï^C%‹gȬ’Q—'hy}Íš/ QÑDø "ÓeŽz *YDxîÈt™£¼ FEáúÀÖߪD~¹N×Åäƒ_ä–Tä|¯°AÞÈÞë픥íbãðÁÏb^‹yÞ,¤¿U)/v,mÝ›š{`?.,Z_³…½×oË*Òv±qÀ˜>° Л…ô·*•LÛÅd÷¦æØO^z)äò°÷Yùý´]lÌlúÀÎy-gw¯µ rvkY“±Í;é¼þb6_&]ždƆ Kݹ6›&¶ß`óeÒåIflذÔ6cëogΛty’6,uçØl1²ýsÞ¤Ë“ÌØ°a©Û(°ù[¬M6âû ý=Û"™VdS‘v¿‘r@ òÂ)‹È ¡TWW·-°rãÆ› ¬ô¼wjä"Ô?2Ö~ ÉËsTèb¢6O1‡ÔC”£ÆðRÑENcZ)–ê{éDmØËT6ÓŒ/Œõ_W¥1`íDcDçÇhÅß¹òuÆüá¸Nø;ãoGLÑ^Ȧ¨Ä¨|мøIøÃ rT8ᣊÄ}a(æÄýa¥Q»üĘ´ø‰=é…I¢ÝH·¬HXbL4VFºÑ++ÊJJŽ*ÆÑ„?Úíß¹O†hcR¤=JÚ¤·òG“ÚÙ ÐQR^”Zßn(âUL&ç-.w&X»¬œõdÒ³!°¾ˆrêH=Ál(x ©Ê(a9I‡ý;2å(’¤õ´à¨}@ÆÙPzq¬rHR+ÖÉ+ײ–TßFÑPYé¨bnC­pËŠ¦ZìîÊiò¨Z™”ÔRüKm+¹v*ûtq]V¬XQQáËTeeÒªU«$lãk7Ó©\íÝ`™å²Ê·"¯òU-_¾|íZW¦n¯[ç^½zõÁƒ?ûê«ÉLõá‡Ç¿råÊáSCd%†îÚ&i–‹»n³²*ãM›š>ýôf¦nß½ûåÀÀoúúúŸ=ûï7ß<}ôèï"úúëÉÉÉ¿Çoݺ…4H—¡·¡…^èù›]Umk§Í®ø[ä„·±eûö““O¿ýö?p. :ÿÅ·b±8¿ûîÙgŸ}þqª211122réÒ%ÖrõêÕëׯïÙ³§¼¼üÚµkýç/’|‰Ã zÃ'½›——þ›}áf1zªÈ¹•"ƒÎÀ%æ\…Ãp;%Îððpii©92Çö¬§§Ç 9‡€Loë2ÿäWÊoNô…dÉèÙ%‚¬\zLá*†ÛÙ!ŸÂYÁù•Ï>pC|-óA›AƶÊ]øX4µ1A†ó@àyÍ‘5nŽìÅÇ@%¥d‡Ìæ=íuÙ+†¬gqdáæÈ>åÃ]ŽÈ"»/o°Å¿3žYÏâÈ'#œOz&ÈâÛñŠ#‹ÿÉdú×®êãYƒÜÛ{ôñã§ï¿ÿÁ°X9{öìèèhGG»HÑé@VC”{BVUô æqÚìŠØ¹uÛ¶ö‡ÿzûö=8—§AÛÙ<]Uµ¡T¸8Žââb™Î²¢ÜsЪÖ×h§ÍyŸ¿k* CCoÅã 8#î9MMgΜ¹|ùòÑ£GeXúúú> stream xœíÁ  ÷Om7 àÌå endstream endobj 40 0 obj 30 endobj 4 0 obj <> stream xœíœ_lS×Ç‹¢ÆSšE X a'Žÿ ¡bÇ$iÛ!±BB°Ðt%djG lâo&ºJ©„¶+mbSKÅúg¢5ñ°MU+VSyÙÃÔ‡j}Üã¾çœ{Ïýãëë$N¡îÑWÖ¹çüîÉïsÎïœ{îõuœÝƒNYu];XÆÞ)òQ(a… {´FÛ‰1Õ÷ 3¹ˆåˆRôôža÷ö]’¨¥Š(“Ä~ÙURáó¨—Áëƒ2;ñ¿><$ ËÔboP|ôÀ9&í$"ÏèTàîžÝ¾Ü9\"õ‡;”ÊØ!ºø.yˆÕ£/¸®é%™}'¤,T€F:Ž."Ž?,h—+"‰±üöºÎ~[ ¼~kçú–N{°Ûì²:m-T4³ž¨ ²An"zÈJì¬D¥ ”! ªÊ™ZÃv(HTC%eZ¡nª°(;•Šæ#öÖ(>åCÁ€´ÏÌjB=µ¡žšPÔŠÔ(ËÒÕk‹KWB–eU9•ªDsXVN¤0.W¨LPV¥0v°/))©,° …Š`GÞU`騱c?²söêáêÊS•LÖÃVG³#×66[ŸøUåÓ¿áÂ! sµÑiÙßh}| 21%žH”˜B9jMÚhÙ>§½ÝdË Ó#7Y—Z—>ü_×7úÈ‹¶\þQÈÑÌØ 9Ý{ãfÛ–6{K‡ÓëC‰mc³e÷óE'~/ž½pË2ù¢mS€Øl OJT68k÷óhA—à¥,»-lc8ð1úæÙ1|ŒÂ†+ˆ,FŠ*ó6H/Úo9z­ôÔ›À'\þ–ΑŠÎ!ñD¨bê‚å܇¶`± v!µMçÎE ºì€ÅXƒ==ˆÍ€cd"­ŽîRÅ*¢ Œ¿%šá…¨2oCJÝbÙs졳pc›oƒ%4P¹¹M冨 ¶ÉfsÎE &Ù³&-ŲëŒ{Á°ëÌ÷¥f_Ÿ;;B-ž%/ý¥è¯+_æ 5–S¬*˜\ø[\8D!ª$7LØè&Û†M–øDÉøqÕ^rì*½Dl¶´!µÍøqœ‹ìÁŒìlå×®óÀ”Ï7¾^ñ§ÿÿösäYdVÆž\ñÌùâÈ(:™ ‡(D•ÄnÂFŸÝÄžÑF¸˜ag+¿vÇøJ‹çá˯øò,2+÷NÏ}TÕÖ‹èâÂ! Q%±›°Ñg7±†g´®iv9æÙªÎ76\ë|^ç;ߥðK‰™¹œÑFóGµû:àó½ CŸ ÜEƒŸ/ÂKήs[rö ‚£Ï÷6Ç”7`ÇpðEøÁd/á½ ¿h…*ó6.ݘ7±†g´®»rÜÝ^¾þؽ Îúz”d͈øˆLqUÍ “6ÚÄw;ª5œì†ö£Ö¤M&vkS_wJ[z€†’¬ÑCLPˆk¬j^˜´Ñ&¾ÛQ­ádÿÓ¸µ&m2±cîµU4w–{Ù$â³IÌ0¾3©nh2vû>L„½5¬b/Þ¶£ªñ1 °¯èÆƒŽ¡GæûY@Òeg\YvÖ?˜ï˜ìÀGæûY@¢ìYbñÌcã Lí}Áƒ˜Ä=-+Ñ]ÇT­»Ä=pIË®{ýR¶î¥íKòÞ¦<ý¬R~óCËŒV[§­Ž­‘ÝŒˆì|ï÷CË\¬´Ü³Ø¶Û~d—Ø…Ën „ –½ c>X¸ã®ÞÓÞ'®.ϸƒ½¬@ǽÐÙÅý¼üøñ>ÏÔ´´çvÖ´µôÃR{—]d¯ EÄqçh™­€;ýNö]ÕÕ¿´Z›Žûež×ý¼r¾üÍÒÒ»ý~ì¥Ìèż½U1îq€ûœÎû%VóóQ‘½paßV¸ìvåZW8I»ÖN¢ã®`wøÓßq(¿=Q¼–¹JjGó5eNiÜÐ^ß­¤¿ÛR~k¦x,s•ÔŽæëéœÒ2¸¡e¯LL±ï+u¿-å†LU.Í;“âW«æÓ2¸¡Ã®¹ Hûc¢ŠJØë‚È, ø—Á|°³9ˆöò$2 þepà æµo‚‘¯ø³Uñ–Å€4óž°š=ÿnÐu^±·©Œ=ÉÞÅÒ¾ V”8œµŠ·Ì_^`Ìçß :î= ö½Óì],í›`“3Y«xËü…áÆ|þÝÐa_ôD[Ø»ñjöü»AØ[õÙµozó®3¨rÉ ,løJ»˜u>n°kßðç§T¹ä6|¥]Ì:Ÿ?7(»b­_‰7ؘßÀhß±7“–Á¿¯-àû÷BfwwÅnoSSSg¥ÙÙÙ¶ÔÄå+¿»uëÖ»–îܹ³eדÏÍÌžœ{ùÄÜ%èäÜüÉóóø$‡ç˜PÅÅl.à:I§Ð³æqHuIмZÔRú[1~8­g£0¾0òÂeI*^N4Ot~^Ê\˜÷ôŽxûv{{‰<½ o_Ò×—òö&!ÏöÕnˆÙx`Ö—`òP¹ñKyûR䬾”‡)–ôôA o,éí£ù˜Tå%ƤÄKìI-l|±”?>êú¨h Äm¢°!6ŠZ=ÑGóL¾85ާ¼ñQoÿ˜b…²Hyœ”ûIí(äË¢‡`§`‚!‹bøÚòŒ"î%|¤“¾Þ/÷ÑΑz•uoŒP{b´I>ÅmXøe5Ä  H‡Èž{ûS>(.àÈÈ~©pÖØÑ-´çÒSÒuvõ¯ñ5­ªó­®ó/X¶­Œ™ÕN¿$ną̀UNUºÄêlPÈ%iµ,[ ‹‚$mÎÕB9“U)¡Ê¯Q»Æ­Zµª¾Þ“«Ö¯·­Y³Æf³¹š·±Á]ëÞhÉsZãÙÈØ×xËÊÊjk¹º]Wç\»víºuëjÛÈ~~bâçŸ}v7W]¹ríèѣׯ_ßâ4™­})gsÈ–çäܲÎܤsK¨µ5ôöÛïæêöGýuzú×sssÊ~äÈÉï¾ûßW_ÝûüóšÑ_ܽ{÷_³³/%“ÉÛ·ocñdSÕÝÒÎvâÈ’¶õ©~…½°ä tPö”;ÐÞÓ³ýîÝ{ß|ó_8—L:ÿþû·‰ä™3gjeöo¿ýîwÞûƒ^ºvízé•W^á%7nܸyóæÈÈHMMÍ[o½uòü%²¸Å’ð‡½|ËÞµ¥}¨¢Mâ/•2ýd ì~‰½ƒ±ÎÀ%î\…Ãp[»šªªªÉÉÉÚmÛ³²£lüÆÇÇØãIìì¥k°‹?ýÓ}¨¢Mâ/Ô2ýT°Ó+—;\…ÃpÛ˜½&ûñãÇ»ººV®\988hÀŽ ˆkbÞÌ/vuG\÷—‰%ï–}YTñrÿ? ”\Ë Øá*†ÛpÞˆ=”1æY¨£…‡h2ÁžX0{¦_"£dÅ¿Wÿ£˜a‘«¹1;óÎkƒßL̳PGšaGÀûã)O`éÙ^5^Å'>‹y“ìp^ü{¯¥ì§ZvêÉÉ}žÏwÜZ›‚êE^ïá¹êˆjĶ.;úà¼Dšïq£ùÎÙ¾*ø9»£MŸË…Õj}øá‡M±_;öÛˆù6óë<ÀÙ¿Ô±mj܃ ýYÖ:‘j‘ý'zì¸L:P\* ØÍ¯óÕÃÕ ø·Q`g7àìpUêØË§¦}ùå½W_}mÖ\:{öìÅ‹£Ñ(¿Æ±§`—¢Wø=µ¤ø„êWØ K4æ{G8¹sçï|ð1œK&ga,Ç|yooßÌÌ©ÆÆU¦Suuuyy¹ÈÎÆ]Š^áwô’6lRý {ìcÞ1dZZZNŸ~!™LÁóž³å ì ŽŽ=5º«W¯:th2ÇtäÈ‘O?ý”ûàÞgŽå9íÜ÷ °CÈÌÌÌ\¿~Îçê6Ò믿Þ1þô•o¾÷áÇ‹ÑÔésŒ}êÔ9ZòÉâ48ý“©Ós¾=þ=NÏiNùD©…BUûDvŒµ?ñt÷Sû¡ˆ¨½ÏF©Â{Ÿí~ê9*dpøÕWdbª%9é£{­­‰}´ä E•"øœ ꦟá}é<Î’ÓÓ- ¥ê™8““Ø×5ôï $'#´–ŸÝ¤Ÿ¼‘Òᾩ*ù7_‡Ê'ÈOîMÈãú45Å姼ʧ£‚Ƥç¥ì‰±ô€TOô17c1Ìò~h`OºŠ+N«ú÷P¥Ec€ŸÂUjØ‘O¡ðÿbçÓ endstream endobj 41 0 obj 3329 endobj 42 0 obj <> stream xœíÁ1 õOm O xˆ endstream endobj 43 0 obj 30 endobj 45 0 obj <> stream xœµ’OK1ÅïùsöÎL’IK¡i7 ·Â‚ñdÕS•öâ×w’õOQQA$„Ùß¼}/ Z‚'s´È B–c€äÉ&!8ÞšË3x˜ Ç{S&CÄV¡(h)e˜v°¨Ä0Ý] HÈ”‘8a刅œî´«C¬ºF*ºBZ·7J»ö˜=£ÒW˜uTÙ-% > stream xœíœ{lÇÇAV|‘±q-®PÛòmî|/cÄÆ>Æñùîü¸³?¸;üÀ¸  „T¼+ñ(`@*&iC ±Z‘ ˆhB"žI„ÔTJ©$jß­"5j¥üÙ?û™½¹ÙÝ»½õƒ$p}ušùí2óÙùýfvg¥i…j‰w-~­¾õV×ʵ.™¨½JþN¦r*¡|½%&Ñ€Ëè²ð»’v•º¬Î˜pØ Y‰º¬RU— n«_Ry ÇÖ¼*oî.oîRª¥"Ýol7ÕúŠW5×4šÝMf·×TÛhª¡¢™b"/d‚j›ˆè!+1³…ÜR†\PQÎTç3Cn¢*)S5QùD™©LT4ï7×ð; Èõñëg‚Y‰§¹ÔÓ\â ˜=þ…ê[pJöÂÅ™Ùó!Ãwª\*E‰ê0'—Hfœ+SŽ ”råüôg¥kZ„/NÌÊÊÊO³äñxú††W´Gથ€€Bkš¥ýû÷ß¼}¯©Û¼ýÛˆ;È!uåÍg2î1–U•MõâeÏU7ý"ÿÅ_qá…SµIpeW¥ñ…Žüð˜x"Qx å¨Õi#‡°U„`qZÌkÌè»áiÞõy…ÑÂ)q@G Ûzçø“áÂ'\8D!ï£$‹Ín®\iª®7×4XN”˜–U6¼”qð÷â‰PÆñ†‘¦µÄfE-ò¤Daƒ³6¼„+È!ÜõÈ €@öÛÙ€`ò™˜@0ôCÀ eÝ1yü\¬Ë¨ÒoƒÙ£†}—³^ÒA×2CcO^c§x"”7vÖpúŽÉí%6n/ò(QÚ4vâ\\A1šd1½ÆÝ„øm­*8H².ºÃØñŠf8D!ªôÛ’çª ÷Ï9u››œK žŽü•õŠfˆT_G²YYsq%„þR&uwfB‚‘ð Àø† &Ì6„÷bЧ^ÀBnÖ«d¼õUÞž <¼##Áñrá…¨’Ú£Ã&a2-]a gõPDþ¬ý—0`€‹ØT×#¥Mÿœ‹+$€à__ìN ÍêÙý•Bî[_Íýã¿2ûòlÐææn=“éïv.¢U6‰!èˆüIm„„C¸©›/Ô³î¸r÷\‚ŽAäÙ Íß|8sünA}+Qˆ* ‚›ÄtDþ¤6 "BÀì@ ÄÜÍ|¥Ä¥1;<Ö˜À—=|ÒãïImTÿ(pçžoPY8ðņC2Vêa<|â’„„ÓŸbÌ'œŸ¸s‡íV7],år½EE‡ÆUee<w`^ðtd¼ÛËýÝf·_„p.?ÿ‘ÁÐb2ñLÂÀøäfDä}ÂÀè$µi áÎ=ï qS­/m!ÜŒAHgwˆAè2»Ó|$`ÅØ©X6§„m€`„œt ?B ÊÁ°J¼“í5›yFÏK•ï>S2ÝÓÕlÍ]%¿8°NFÇ] Ïèy½öeš†FÕº‹Š^6«ðÈÛq~J2½EÆÃƲUe ¾¡Ñòæ.EL«ÙÙ ð‚ØžÂS’9l̾“möšüB·¹N60@À /ˆí)<%™Ue `qY›·ÛZºK<Bú¤ØH V§7„Á$&Ècú$Ɇv¨cú$i$l³!0zdÔ¯M±]9þn K¬$b‹ þOðeÆôZŸß]•¦µ&·W½—¤Q¿ŽjËXÁG!(Ö ê—̆خÛŒÅ$VÔ ±å%ÿ'ø‚szâ+½: #' §ï¨w5ªâ×Q}< „0œ_c‹Û ùò}¾AÀÙc–¯Elg–F¾E{`qÁóæõì³<*‚‰z=;îàí"ßûßUŒG>Ü7™yî#ïôøÇäIÝa6”xš“A`[Ï|Šä›õåK«—®xÁ[fåó#F…îþì¸Cuc¦¿—|ï§ú| xÐ&ïôøÇäÉÜ¡ #! !YLPW‰1A1;ÌÔÔÍÐRþIwFB]b˜ çÕ¶.]ÉGªØÜ­=Øì€ŽóibFî0Ý‘ÀftœO ÝƤ°pà1Ul§Øì€[ϧ‰¹Ãtc›pëù4‘ÐüCtv¨“Fq÷¿Èç«>L#Ê1Ïw·§!¾›ŒY 8€›®þCªTýi† Bz¿OBkOiz¿OàÙ¡µ;Í!ø¡¥Ûæ Áõ–/_Þ˜féäÉ“ÒSdKw}tøÂÅßݸqã½4K<à#¡º{`Ç‘“‡Æ}püU›-ZdÂj¹j5»Ý‹mË 9-²/cÙ+srrJK˦Úì%K,‹/.,,,³;íþõðôÒzòì0<üóO?}8U]¼xyß¾}“““£n‹Zª<¦Çœ,Õ«é0ŽXª=uužwÞyoªÍ¾{÷ãÇ9>>þÚ›—6m„2 aïÞCß~û¿/¿|ôÙgÓ£Ï?øðáßOž|5‰Üºu !—¹³­f [Š$xO»º-ÙÂ~JÉ^Û@!Dmµkš›[>|ôõ×ÿAcÐ$ÿý[ápä•W^aO‘ŽÖpi Â7ß|ûî»7ÿ(]¾|™p{í5^råÊ•ëׯ÷ôô”””\»víЙó$#hÛ­`¢2Â{ø#žÓbi0›cp–BlƒX„à’ 40 €Æ I¼yh*Œf'ì–I### æÄÒÕ-)!à‚XRö÷÷kAE @`»€`þö“¼˜9Âöѯ«ÙÙ6ôˆ}* ƒ@'> h*Œf§„€Å¦¿’T8àõzçÏŸ¿nÝ: pRLyp“Ž?ëÆýEï>ÈÊ:žŸ¯-ØÀÒ'¼¸£ÈT¨MEƒÑl4^ORw`^€KÍ¡I„ð” ×ñÔ›¿ffTÅÞHA2¿kC`mFãÕ~!BlALˆh¸ó Õ¾à Eíµ³áŸsç‚ÃËF£è:! ñj¿H¡Õó5îsbI Š÷Qñm‹þ|S`Jþ=gÄ¥˜ÒŠ ã ð 5„²úÄ[ŒFã3Ï<£ ÂY@ÀÚîP¯gv˜wCE{ŠÀ(B@Ð1ª î¶ìdžM³Ì®]»pº>Øò1AÏì0C˜"šS¤]@GÄù]aÄ´Ùl)!àyÖAŸûаY ÿÈȸ—×ÛÝgž}â‹% h<º HAkŠä~¡ Á†‡b¬ôC@×R®”`£˜"mú ¨½ ™;`¡›ÌÔ~¡ ÁNu§·8åJ‰ÙÈ!¬q´GRBP{ÁôÜAä¤b€Õ€ gvÀ¤)/åJ‰‰}a+B`/4  ©j/H¡™@3wÛýÅ^ý7'õ¥S§N;w.ð)’½ÖÖTñ¯ï%…†ßÒL/Qw`|>ÿƒ¹}ûƒ&él<Øñ‘ЦîÛÚÚväÈÑÊÊeºSQQQnn®ÖTñÿa´t…⫪@èstô!SSSsìØñH$ŠÆèo9 qñ)2~~]oßÐ0ž+/]º´{÷î‘)¦½{÷~øá‡|$¬Û¼uÿcNë·l™#GŽLNN¢ñSm6Òo¼AK;íÁpCÿ‹¯\ÅáL4vì4ƒ0vô4-¹?³ jœ~ìØ¸³c£«cãÎcãªSîËuO(T\ŸèÍ·¯y‡FaéÚ¾5›^l…ü¢6oPù6ooÚA… wPqáA¬&2⤫¸Uá-´d' E…üø&j¢¿¾-ñ<Î ÓãW@&@Õ<¼rGF°b¬hßXñÓZ~ n+|œþò‹ì”·Œ5Sʼn·?×ÙO^ž‰ìTNA.ò@DÞ“ÐwÂQ.G(ê¿ãÔ'½õe/À¥×¼‰$½ñ–ÌØðfyÔ±1^Å¢Uí©ú⢣‚ŸÂªX õ‘_UùÿU¢† endstream endobj 49 0 obj 3901 endobj 50 0 obj <> stream xœíÁ  ÷Om7 x2è endstream endobj 51 0 obj 30 endobj 47 0 obj <> stream xœíœmpGšÇ“¢‚¶Œ€£N …3*l1²ÞŒ ã7aË’¬7cË–,ƒm|0˜äŽ—à«sà²|w1Ù»dBÝVrE’â6Y*1$»Eݾg«–ݺ]Ü«­Ú­û÷ñþÝ=jµf¤ñ؆͋Óõ/UOÏ3£~~ÓO?=š±å¶.9OûEm °JWA9ƒxEG¢ÊÉR+Cݼ’¯Èì© &‰BÉÊp’´ÀžÎÎîæªlïœaØ$¡^*zQÛëŠ$‰˜%QÒNª\£Žç|䛢×b‹è&**GDd“JÍ¡í7æºÂL=ERõ…œþÂë`·Šs“r€eo¾èá‚À¡²íj:™è Í5í9 ÛÛ‚]YÄ—Ê`·à~O–€H†¢@à.SDνô¹ñ \nW{Ÿ‚" *O°$UnÒ>«£CNáXÈ^zõ¨È Šœ†Ã(¿1ñ—^_'GÑ#(Iã"Iƒ‚p (Ú q ‡m­R}°¬¶µ¬®ÕÞÐfoHõ­R­” ªo#¢›¬ÅÎZTjP*䄪v¦Æ j *§R*PUP”J¢¢õ½1ŒÏì¦`@ÎÏÌÊýíþörØî•«ÔC倣̛¶¬6¯ƒLV­§Rµh6×®'Ê3^Ÿ§µ‚4È×ÚoþUEsÄí%ê8¶¤¤Ä²ÂŠßïÝÕ‘vEz¶®à€vç +gÏžýà£{mƒÇ0{|Í!@9¸Èç`ë±Y^´0YŸ³:j‹=¿ãÉë¡¿±<ý\ØDãbm œÙWmÝ×iIMˆ¥&ÐŽ½mò9uµ÷Šd¯lo¶Ã}Ó}Óšw×líߺ(ðek,³æ¥ÿ4]û16ÑÈÝ4bƒ"»ÜöêÝÒž&{]‹ìñ¢EÚQcê{vÕ ÿ.­ºxÛ4ö’´«žØìªG´¨lpTß³8C>‡»¡£J¾ÈróÛfp‚ F…q¸¬Ì#Éâb^c—q@0w›ÎÜ0¿x (ˆ¾¦ÖÞ ­ÝâІ‰«¦ËsRC€Ø4PG‹Ú¦µÇâ ªñÐ6tÌÉ›à8Æ8ä.n)ż¶…“ªñŒøø^Ñ ›hÄ.ã6¤åÉ=¦ƒg{å#n,y·›ü–ÝMªnˆ'ÔžG±ÙÝ„cq5‡ApHésX°h=zˆ Œ‡GÀ!@9È_`懇Íá}ž/‚ÊÏáÀ&á’oÝYõæï6ôøÑ+«CÀçÂ&±Ká`À¦0¹ ¨S8‡Œq`D›/pÝ•Iø¹k€PÚyu6z-#“«§ï–6E1¹°‰FìR8°)ÌÁ@.(j#ä‘Ë„C6.Xvà‹(.|ñHç¾"â)ÉHìµÑ|)á0w/xø˜;Ú'kÖÕ@Á×Q Å 8i€ðÉü¡s(7‡ácžåÐÇ£‚¯£S„\&>™I9´Ññà vK Á‡xŸÅS‰VØeÜÆY0. ä‚¢6BN9%BÝêñàòð¹Ëî©’++Ѳ`ED‚`çjUì´Ñ¾²Rå²ÖêÇ^ƒ6ùŽy¢)-ëΞËÌuíp- VÄÞ"Là‘8W«bÇ ¶ð••*µVõnì5h“Ïa¼ ÄÚªæî 5­% Qt<úÄ ³á« [ÕN}¾€…åÍàÐ8¹¿÷HA‡Õ{÷—V?7u8<ÞÒ 3Œ  T>_§–P²ë‡¢˜¸â:+̘€•Ïש% ‡âcž\w¸¬½gù2Üo†zÊ4ó¤vT þ‚Óã—®ä8DÓZs¢jðL—_º’‹ãàà %é:j=ç±Ù&­ÖZ‡#W‘m“²µÖéÈTÛ&Ÿ²Öº™ZÛd›µÖçÈì³MöXk«™¨mrÄZ»Ë‘‰Û&Çh¥Ã6yÔZ»Û°bÑô©¨8†Ž»£éÊPÒÞ9ÌX,ó&SD’rÙ2¿ÍqJ3µ–ù€)â“f¢–ùSd§4sÐ2?eŠÔI3–ù7M‘&iæYËüÛ¦H³4ó·–ù÷L‘}RÁiös¬ˆÈïCã®hêk9õ+˜ÃܽÀáã.R}pÅrø€rpÇVúü pè±7¬ðñ0îŽa=Ù­ZW¯<Ç\±>p°ƒÃÚ•<¾æ ppÇS•ŒƒXCΙÍ»=W‘­s²9à´c19×dxíXLÎ¥Ìv,&çN™5v,&ç.› v,&çþÉh´c19÷š9à·ùg •ò¥^ƒ«½§ÜÇÒðÝ'˹ŠÓ>§Œ5 ø*e¬¨Áç’±¢Ÿ[ÆB|Zi¤•Ý@ðye#?ëý9+*mÃã9$m¶ç­Ö‡ƒ?ËþŠT26ë¤ÕQëPq{í=ªùn™Í-v;6ñ©LZÍsf{À®â÷I{cÞxÀH¯,óg_‘J­dŸ¬â9îK¤]‘d¹?,rX9%;Ž{ã”ÃÞ•Íáð o¬ŸÌùóäÊ)J\ g9äÏ“+§(ãadÂïwažôçqày¶¦ÆÑ¼¯ÂY퓲ùvÕU¶´Ø½ôÉ/>Q%¦Í»"háÆK(¹¼ï«–vÕK í“)]¹óhžD«8G&<‰ 8¨Ö|ÝõüóÖï¾÷—r7yšÃtäï=·n™áÌð‰ú~db‚±ê[ЗPrëÀ}¦±—L—ç´O*uvåΣy3AÍa´0¾¿xÑrÿ§kjºv[²/Î].ƒË¸úɤ {U‚ãlTàuÞã%pÈݤ&V]¼½aâªöɵÎ.§æ•]ñIz‡"ãAäÀ¼æò]ÎìPAK&³õöí5¨,!@rŠ¿r£ÿ6{¤Žö†**ªQÖÕŒ›:Ð@ÊdùØ#u´°wwQQHþxèÕáðÛß®ºvmáwî”pÅB†‹; ç€]Þô>>…>ÿ•*püáÄE ‡¼d8}Wû yÿðÌÍÕ3?Ðy9¿Ó^4.F‡¾r{AÎ}{àiKÄÉ“#Æç>ØÅSêÔËßTqÀx8q±§uu(C^2Ô¼HÞ?œùAiâÎËüöbqÑÆÆC¸(í8çU¾Xn\hºap~XðO<„¸ÀüÐWÞX˜2øšúÈÖí»µ_k>TÄ‹ÎòlxâXV\,u<°|ßyâ(džìÐ〠…và±Ï§ÑY–/`ÃDzâb©óËO”ÈMybio¬ßMCîHŠªb6n˜ÅRLn*>ãýžX?9*ÖïfЧÝ1(剧=1Z+»<Ę´xˆ=Ù o¼ß—Èøâ/=±Ä9ÑXÏ`¯—è¥u&o‚'úqA=pÇ˳"í Òî#{3'‘Ý„è.…œM1÷E1Úö¢"]My Ì´7ÚÏÛ½”B˜¡Žî8åIêý܆ÑðeU• €ÀÉzáéè÷B Áµ¬û>…Ž ¢{q,=$'… ã :6{wnÜæÝ´Í·dIµ­Ì_T6É>EÜ@.ª²—*×b•«òäT´)+©>@JKõ­›„v&k¾„]>ª¶T=UîfXÞܸqce¥{±*+“6oÞ,I’³f/»è[\;L¸lvï`6»«×®][QáXl··m“·lÙ²uëV‡ÛëD}E¹¿ýëŸÿüÁbõÆ7Μ9sóæÍñ.èŽõË5~éyÏ^:žÓòc£ÿ½÷Þ_l·ïÞýáääßMOO¿öë-‡Ž2ÊáôéóŸ}ö¿ùÍü§Ÿþʈ~ùËü÷¥KßJ§Ó~ø!&aÚ®ºf¶JßNW´7Vlñ¿¨â®o¡ú]õÍíí‘æÿð‡ÿEgÐ%ƒÿþ÷?L¥Ò/¿ü2»ß$¢©Š,‡?ýé³ï}ïƒï*7nÜ ô^{·¼õÖ[ï¾ûnoooyyù;ï¼sþÊ«dbŒ§Ñ7ö26»aµ*õ¿T=þЗê¶| ‡ÆÐt‰w]E‡Ñí‚î`UZZ:66Æ9 QVì,ÈçÄ‚sppPC" {9$áÏT¡ cSüÇÕã}©nÛ š u8 «è0º½ ‡½¿@N,_ˆÃ¹sçÀºu뺺ºt8 `‘’¿FÇU†ƒwî”hŸƒ¨ÄÎç@ò£tF·Ñù9ø:)Ѹ`ဳ=F‹©Eq€› ΰùÅ/V •ò_0‡8ÉûúXŸÑym€ˆÂGÀ!ƒd§,Ö…/Ñï®ø~ÿûÇ‚?:dqa:¯ "¢¦µ¡åÀÃá±lÑå0ËçÕ¯X\ä¯M³Åá| âÆÊüЛ8†B ÈiGSa˜j¬VëOrÒ×yqøF!H=Ï<ó Î`ŒÃ5v €ùÁH¾X&äM¯nÞ9À8"&ý|Ï(ŠÄCŒ.—kA¸ùõÐ;Dôí¡Ïìñ"ÿ)¼¸9Ê­£t8 ópA„ ËA/oòÑçàÂ4»Œs€w .¢øC4~—1ÚpЉ ¬„‹Å…6@ô9¸é}ñ¢8°¦úâUÍžŽô‚´áPl> stream xœíÁ  ÷Om7 àÏð endstream endobj 54 0 obj 31 endobj 56 0 obj <> stream xœÝ{k`×±ð™ÝÕË’¬]yõ²´F˜—ñ /Æ6æ`¨ –°lìÛÂмŠs$…¦! y6mÜ|47¥´ÁÉ%i›8-éã¦iÈ-i“&iœ[ÒÜÞæá¦4M^³g%Y&$ýz¿ï×·°ÚsæÌœ3gfΜ9³ëdïÎ6b!ý„%rkW,1ý²2‰ò BÀÞº+)-ZãX€åaB˜ÿhOlëºÿß®8G7HˆapÛökÚ»\oý7!–Bf':ÚbñÕ³#¥„,zû˜Û€ÝÊ5BóXŸÒÑ•üâ_í_{ës°~j{Okì9‡8†õ±ïŠ}1QÍmc©¹ëRw¬«íã~Çúõ„˜û=}É8¹ñWŒ¨í‰Þ¶Äªû·>GÈJìŸ=„0ÀêeÁ¢^­3,§ÓŒ¦<³Åšoã{èpºÜžBï$Ÿ? MN)ž:múŒ™%³JËÊ+Èÿo—îVâ ºEÄFôwÂÅ#r!c蝹ñ_eÕØ'ÿ/¹0j{ÉÃdÜJ^%W¦H˜t’ɽž%/!T½Âd9J|F·ÇÈIl×ð¢ä6u&—¼Âär‚ütÂ(aÒE®C^'¯Âlòs4•ò!Éä9ìõC„]~©®˜|üi§ÅöèkäkÌA²‚9‹•ûÔ¦œáÉ)òlÁž“8Ï[³3^ø©No&7àïzÒAva™^ºE~KLcÁYÝ@V!KÈöŠÀƒlꯉ<ˆ2}–ÂÊ3†Fö*æ †½+·“mxÇçÎÜÊ.ù ýÓ»Xa[LL—jeæ›ò S9vŽBòȆ±‘ llåØ_ؘÒ͵p“t‹¸ç?o ýí\R“±·•딸nµîaÔÖ#„ÈË6oŠ4ohZ¿nmxÍêËW­\±¼qYC}ÝÒÚ%rÍâE \V=ÞܪÙåe¥³¦O›Z<%8¹(àÞ–o5癌½Žc ³¤DëSl±$4Ä‚õÁXcé,©ÞÝQW:«>ØMI1)…nj°±‘‚‚±”•RSñËGS2b¶_„)k˜rxi!Y¨”R/Ô¥“°im3–o­ F¤Ô{´|9-sSiÅŠ•¢"¤ \©ÜJõ©†]ê£È#7ç- .mË+EŽç™±hÆRjz0q¦/Z`¦×_vœ!F«:,δ>O…×6××y‹Š"¥³–§òƒu´‰,¥]¦ôKSÚ¥Ô©²NJÇg øÊIžl–XâÁxìŠæCÚlý7§„’ÔŒ`]jƵgÝ8ó¶Ô¬`]}ªDíuåºì8+LJ„”®˜JþJp:Á÷Þ‰¥!úbþ¯D-¦˜¥)X×\¤^Þ”õ A©á@ô@ìäXÿÖ Ä·X$êQÜ$ÜŒ]œ{ê 7Õð•HŠvÀe‘ôÔÖ­L¬ÝÜœbФŽBðM°h¾·HÈâ„?«™ XP8(á¢"U OÊd+VRýk›µºD¶z#ryI$ÅDÕ–¡L‹cƒÚÒŸiÉ’Gƒ¨Û•뛤¸âåñ`=Jü`,Õ¿­ë*U1A>•ÿ‘·(xÀ.HÕåŠ+!WËãRJ7…„T¹h7*ÉžVò?Òïyq€©‚]ªb7j?õÁúhúÿ®7v ¡ K4ChjNÉuXciÕ¯(GŠXÖYG•™*&Rb°6«]•­úÎõÍ”$M–—¦H´5M•*¯§ëJª?­ÓXPû ®m~’„Ɔϑ¼'Bd‰Ô©ÈÎ¥heSë4ÇÛS¨7Žë®]jö¥äj8ln‹¨f‡š1ì¥Æ¡¶ÒÔ¼r}påÚMÍóÓŒh jw\qýEÝ›½Z7h€)c±Qjf¼lyH XÖ.Äß”¡Øˆ7§PÕpkJÍà%ld#5Cªo«Kã©õ êTsZÚ˜éM¯V±Ÿ¥Þ¢H‘v•Îb°YJŒFU¨™&tSØ`Dû\ÚHAª,ݪÑKÍÁ¶`$Ø!¥äp³:7UœÕ67á’” î=À¿§j*‚Nåÿv)2×4ö®®O·Š˜‰“Ì•ýÄ¢,‚Ë-²-± ßÔÉçˆjd7HnرcË•¤¦„¸kJ;TW !!4»x{¨Ò.ðLp2ÃòEx‚¿PüÊÞþí«xç7/1·A¬RRÊò¬’b”*¿ƒÉ°–€Wy[y†9¦|KyT9ª<W¢ñl£»ãâò¹¢À ·›Lùú|‡¨#6ÁÖ12kÊ·ä·D ;q w0ì€\yåŽ^•ËP¨D !wúÊò+„T–§U9 B—£¨jž€UàöÂÏÅ.<7¨Ì;v îfãÞ/¬ª*û@öiöüPå¢S ÕT×hª‡p¥=D ¨¬ ÁiSK@(šÂR‘P$Õê~Á±cìûµRâÌkpU@–ÊÝ`&\][pþ%{å™WóGÏ (ñ‡Fßà?V¾Aç²IYÅtà9Z “d 1ås&Î^`%:/©©™è›œ.G0Usìsç9òoÃÝ;~òfgÇï~ví¡¥ð¾rAyþÌ’¦Î¿ÃÚÞ‡5_ÕÔðšò:}#ó+ö92Dä9E±ÐJD2c¦µˆu¹üáˆ×ųæpÄÀ:ûgBb&DgBx&H3áÑ™Ð2ÖÌ„ŒöЩ QU§ÙK{"Qœ³ªwí†ËWß¹©&ƯòÙßÙ[÷ðµs|Eu­ ×ßx¡«<\W½º°²léF:çSÊ݈ž~™<-/?ßPÀ².7g1[“Ál ÖFˆóA7¤Ð绡ܭN!koš+UÙ·WWVªâÕMžZ%«P‘Ž#(ˆ8UȰ:ÚrÝ m5¿ùÍ‚ŠËÖ÷‰½Û˜;K§½ürÓèž%µü·êDÒ8ö.»ƒ}í±˜tÉ5‚±¸˜“,ÇâñprÞäµ·C&…#6! 0Vˆ1ÏiàPæâGß? Z¦< °€~¿7½9©²¶WS§£J<͵+ÇÿW:ªëŸ†Âæ,†¨šƒÒ¶A°j.òÁ!†*ç΃—î¿}§¢ôÿóò{o]¶"¾~òü‡€ì½©å¶ºÖJöÙ/ýËè~Oé–^po¹n ËÝ»¢|ç AÅÏé¶t§nuŽ%øc§û«ƒ|]n'Ü`—“5­x–uÈ{8â°Y›€3uˆ.à\èÄ]pÈLÂQ„] »`È) ЪäÞÄ#‚¨¹˜=‡ê2Z¨_É:Rèæ©‰4SÌX"5>';¾-^'—Î’åY¥rÞ7ÏÀ~(áÞÔêòùË<¥¥Vò”¢m­F]®Æµâ$Qy¡ 3;uN—Ûh G,FÞ)²âÚëÄ@b14–àÝ0â†ÓnpC¿þ¨ZTƒË2½%Ëp(7Þ(· $ÐE¢º,S»cWÏ>¶I™÷ÇWo˜W²>©œû_ß¹c{õ”ðç?”O.W:Î<^DKš•öUÎK¦áÁF†oÈc³ÊË]¢¾p±o>™nµ’©A×W(š–Ô²Uራ¤$OçäØ<6O¤áˆÄ •áˆ0i°jáp-ô×B²âµÐT uµ0§¦Ô‚X \- ×™ZªD>B‘÷MDÖ0I-œ«…³ùÔDäø§ú¬ÎE=’AÊ›ûBvH™âHµÀðtØ‘Zy²ÊåiÊeŠNéR¢¢µPA‘'îH-—Þí/Þ»vL¸r³Q$úC7JŸª¶$g‘Ò…š5Ëi?„ŠpÑŠ¨{j¤óÊ j^ÚZ]ó\'‹ ¸H]¹h s¡r.]ЪûdÛô冶q.8ï½sç~sèçÑêÕßøÆŸ*NÞ\:£a™rxfÕõýÿú¸r¢kó–ŽÎ­QfïCÛö þ}ÉÎ6ìêªÚV_pEÕc+^½ÿ[^OÉ¡•¶WËSz*6®¼žÙyÞý;z÷íû¢êcgàz¿×HÖÊ¥‚Á‹Ã©0&˜|À2"Ï[ÃÞf°ä¡ÛÍs´8!àÙ ;r6vÕ…B¸@…Œ»¥¢À=a²Þ0³ºCˆ¹·ä²Ê/W~S©Ý½즅/,dŸSº½ÎÑÚÌêÜYyMÿ‘0®ÑäÍA&‘[åM[¡Ñasøü‚®Çð “õx,v»3±óÝÚˆÅ9䇔üpÈý~Hø!ꇰˆãCöC…$?ð~¡xˆ”Qö¸9äèÛ]žq<šçÑf&¢‚+éúU·$8õW4g*p‹öl›{¸¢â[_{þ—Ï@§rOGÜq¼j?p_Ønž({t}¨´¯ƒ9râ>Uå¸Ðß¹N"Cò ¤ Àm¶X nƒÏ?ÉŽL²`ÅéFù;vÄdùu–?⇳~8åd†óC5Vû!釸šüPç‡9~˜â/mF©0¹2AIœöCV\YxîZhÙqÑZÙ¡©\Ð|žSB¹g«´pPËéý Õ®šuŽ @Ýåß»ìÚë{•«oX»aÓÞ=ÊU;v€…ΪþêÍ£w«&À4¯oñd}5CŠ”Ul eã"Ed¿¼Öoãìv—;Ï•79貋¸‰^«ŽX>¯Á»6Âx탵ÉAè BuE†ƒ0DëÑ È9eŒE²ÓUç˜^ê¡qËΙí§X6fu…ã1ršÓt† Í—ô½Wƒ‘™yëòÁç~óüŽvýEÞÍÄoسsuäª l»§tÞ”YŸü÷Ê'ÎÆ :7»zèûE£1¤×$±¢‰<$'tæ<“㢞pVŽ3f8e†A31Ãa3ì3CÒ q3L1ƒhΌޖb2ãvl†¨ÂfÍ0d†”h•7žHFhñrÑ&¸ÂôV<ÁOŽGó…òУî¸ÐРêNǸÕ}Ö‹kø öî³wÉ-Änå8“Ýärë œ9mÃ3ë"VÞi1áÞëÀÍuØ Ct»Åí·z˜î´ÚLh˜—pC”S™­XƒHnç|¢ÁŽ«3t‘.Uw[1öÕðJ]Íõ° Õ×oÿ*„v+ï—=U3òEðƒåX€yÇSzá~OéªiÕ 2¨F§ÖblÎÄö&¢Ë'ùö‚óè¾eœfÂiS;Êg¢éÙª©Ò¸YPweP¢fT`ÁË¡Ñ+½K¹ê¼þÿâì—ñwø,Pž{É`>µ·JÛÔ<ÏzÔƒøñDºØÁó^«@ï´Š‚]°ê¹€Ä£Òñê5q&*ÄЂJ@Ïá™_äì¼§%HH K郊æDÇÏ¢…þêvJùÎIü¨>GoPý Ý N@y~ôå1K/ŒÜq#\}»òŒr3äÝõýï?q³Já2ë£?¸éÇSGÿË[Ŭ‚î»qôÇûÓçlý[8/7¹Q¶ç»\v V ‹veµ³…ëɱå¹&k£Õ¬w &³šccŒXg̬ËÎõF´8‡Þ>\§ a¨R…0P5…ñ!-iÛE¨$“áªÎ  Òë±(7Çe5ë¥UÙ-AÅ‘NuÁ ¼ýÇŽr7ž1›ëâØ U…ç·ÒúlmÝ̆=h"î'uÄFìÐ"(äÛ0jµòÔxŽ-­ùB~4bàõ:Îbàl`k‰äýœgE8#Â)E8"Âaö‰!.B“u"ÌaŠ¢œÿ,~õçäbsgH&%€‡Dè!!BXY„ $x†)ÒEkÄOgâ'$/™9¾èü­å!3»†š Õ^–ÝíÔÎU·]LõÒôDZÀÁ ʲ{áçOÃkGG>¸täf8øøU•º3||Þ¨î°W¹ëÝ©í®±·t)ôõùäòA ƒf•§Ó™×i£3 KÊ7°f¶ …‡ðð({xXÃC 6Æxx“‡ d †h}€‡(a ­àáýuûŠÕ§<Óæj”}À_…1±ÑnµYÃ¥°€39m6¯ž3›ÌácräÚGvÉÍç—”hë½$wÁ§óqª™˜5kI¯}oFDì;ÊÆ^UnT¾×UÊH½áñÓ7ºíÊÇPUŠ .WŽ;JKy¸nÇõîU>Ÿå¨R¦Ú3ö®îi”Hþ"ûót6Q':œŒ1Ã%«U´å¡)…#‚Á–o6«qÕ^l0³@8g“êœ0Å ¼8'œs Ñ;aŸ’´µ‚"¡À¸šh¼\¨gi#uF ²yÚ‚±uÔ áLðÓôD0 »[(ð’'¾´…M ´Õ@NMªg Ãë ©N]М17/„ÒR弫ÿëíÊ÷{à™Þü}Ó¾|?´wˆÌöÑÃ쵪G÷3m£÷07ªbÔòþhoãþâ#OÉ×QôXóóM“?à+ G|DĊ˃§E—£€at:a]DÇdöN^ÛN‡éš Ûf˜î¢tÿ ÐfmwMd6ØÓ™]w ž+–ÿID4L̃LLƒ4ÿ­F˃<¼eï%¾û+PÉ~ÔQ6ca6²åX:’>K·“ç¹·c‹bY0áÁƒa,VÂé¸ïFLºdüt›Yüsp× Efç6¥ÙG™ÊF8ÚG•íšïó( ìÇh³“à÷ò˜`)p[Ü~c+g7ûÜ‚%cG¾ÖFX2)é‡v?lôã‡i êŒ~â‡'üðeš~Ònµ~¨¤é'Ñz?t|ä‡_ûáG~xÌGüp‡öQìvš¬j Ø“ñ`L“UçüðŠÊƒ~x8ƒß뇭~X—InMõƒ3ƒŸåcpbÿákÜÌÿˆbg¹9œé]þB.?S(?jîpÄÃ4a¦1t8Ó{œÎUëýE`´”Z6Õ¶Æ6?3›]ËÄm®·åŸÜ{?_Û5+³) «'àœ4ÄäôÛ»Å0o‚÷ƒ|æ§«W•æÍi^>O¹? ƒ‡•î„-[•Û—D“Jƒýù¨ká®{Ù]µ=Ìꊽ°ù[‡VhçcõÊcìs$8qåÞ(èÌDG\nc~8bä]¶SKã »!L³:ÚK•aú^e(“Ò9”“Õ‘3™ŸRP8'¤¥ˆréµ|F†¿W^,³-Ÿ’UNf?çlQæ½’!“”Çš}Li<óÊ+¯ÿú·ƒ_ºiïÎÝ7îë‡×Aùóûþö—W~ôÔðïx*K`ìw§š«!=r=10à¶YyxN6|–òX-#ÀÙÑI×hþ9œIŽ çøç¬ëÎÝÿsÞ2e÷JÉöPš…·äªëgÜlÂ'›C¹è ¤luãÞWððÇnºÿ‰­ßþ¦²úåÑç<ŸÀ»ÿ#›úÖWG÷ßN©Í$”¿ü5ÊdÚö;¸'ÐsÝ‘3‡çx €G ÚqÎ0)1ð"ãZ‹æŽ[ͲÜ݇ds—>Õõæ¾E2éç æ©E0zõ…¢´SA:w ô¥¢05(1¿Úq²ç·g¶÷è¿uIåc%пoǦH¯r¡a¼õ7WÑþsîÒOžô” OóŽ@í¶„½×ïlxLÝô“&‘éÓKK‹,l¨rvY82Û6½h’`)-) G¶‡G¯7™Äu?M})Q¬¾”Ø‚!˜‚)!p†@‚Bp6gBð“ ÁÝ!؇ .O ‚Ž‘ â`’!C0‡6cÛ¹¼‚¡¤hûB¥»Ðpø Úéœ ÁwBpˆ¢]‚!2cÌ×A4M™1DJy–RA?/—ä´{)íYÊ“¢ :<Žj e-´åóS“;ó‹}xˤ#È„™ +tqúfü­ })álÈ‘Ï>óMLÃÊGäú¾Ë_¬¹FÙð•Âúú‡p«R{pÆ潷*wï†6ZrÙœê’ZåO™·3Ç0˜åæ.ɾ¬‰øF=Ù—5™ïP¸·u«ðü°X.X“‡õLòéó["$Ll^žžóà±^ ~’“ùæª&”û¦†“Ú·y•®5W‹–-¨ŸîÍU¿Ãѳzå)å0læ—Fôµþ†'£ÊØ»{·÷ß/Ñ¿.B+Ȱ ZCÊkß+)WþCù±òºò‹ye?Sž«É|[4}œ‹œ“vÚí¢€ñ”^4³·@¢‘¡G`J`é‹P“NÐÒùLF7ã¾=pć=Ðï¤âà<0â³8CáŒz Éu8íSÈ’ìË`«ì HiÕçhÖ‡kåg[ §´Å -úܷΚçõ†*õ[iéEw1n~ðŽ”¿¸®®jÑ:8’)ËkfùÉ™—ÏOˆRAPž[ý…•ªWÐ}+ÛÀÎÓ5Q}Få¿sz3K®I¬@„ÉÁ´.Q­ú|6ÿ‘ͪRYn•ø Ýœ#þqm¢€“TºŸ¥Í9U©éä =CÛ²C­¤=fÙyž’ÉèZ£4Ó~³V՟Êfw6Tñ%?½¤ÎþA›ú¡!}¿SŽÊËÄ%®þWã’¹óôs9§–Š.¾Àè¸+基´nŽV®/³ïÜüdéêù ‡O .™;sÃÄjú]ÕØÝNôo&ôp«ärH¬¢Õíq9Z"..q±<ú_Þðv♺Ÿa x á¡jHæíANtLŠ‚jFÙšw.R?ÂQ^RÞüâ·>úãèÇÐíÊ¿*ßV&;vŒy<0ùüuF˜Ì>§<® *)åa.çÙÕÊs°‡ú‘Y²[ŽÙlìãNã´¢vdI[ãÇÛO­ØóYæ~?sT÷ñÂ\ù»ÓÉz½®‚<Î7ÉéõxÈxJa l<²˜ àõçƒs>ø¾öù 郸J|iøÕg}pƧ|0èƒÃ›WæÐ|‡Â7S‘ŸÏÀ±¯&Ôeà—ý‰vtćr†šãƒ)ƒø€ñÁ°NÓïYûé'­¸yJ>à}¢UžâM0Ú–K¹¡Ï¶èÜ/?s>Øue$^€ªžðµ§ÔÏ(éVòÖC}ë®Ëkg—N®¨™óÉ'Ï+ÜA¶yö´ÚÓÃ/\çHÜÿ@Ó…Š0–ÔÞÉqê_æCûy`ƒ4=|Ñæqé£þÿyn@ÍÓm¹2'#<žŸ›p2dJW(7DቻÀú»àŠMb:#·›9H³qêßA3žûŠŸvV·Øþ•´¿ÁýYÝé_Žÿ…¥Ò  W•úºL„t†"¥ž|!‹ýYæl}5}]Ft?%Mx/à~O0GÉŠôsë#ML5Ù[I#>Kð¹š#¤Ûf`9Œår¼‹°m>½¯EÚbÝF²ÀàÃ>°µÌõ‘/c;Á{Ž#âí²Ÿ >En/iǧïÕ´­iYü• }“ZÇñ6â½Uåy^cÕpãsYA€føˆ¹‚ù*ó»˜MqS¸kuè>Òo×bè5¼b\a¼Þ´Øt4Ï77ï¬9lþ‘¥É:ËúX~8ÿCÛ—lGù_ ë„Çì íß+øqŠøÇ÷œ‡ÿíò»þÓ}’Jn6Y‚q•æÙyRNП1?f‚0µÕÝYùnÌÊscºÌiO—YŒË»ÒeqnI—uÄJîM—õÄF¾•.ȵd0]6ÊÒe®ßÚt9º!œ.›É$æéì_З1¿M—­¤Š5¦Ëù¤]¤rÏ©ù{ŒýBº DâØt™!ù\0]fÉ\nvºÌ!ζtYG ¹›Óe=ñsßL— ä÷Lºl$Óu'Òe™¤{-]Îc^×ý-]6“ùÆ_¥Ër…Éœ.[ÉU¦ÌXùdŽé¥ºÎmÉÎkÛâR<–ŒI­=‰kz;·u$¥é­3¤ÊŠÙÒ²žžmÛÛ¤¥=½‰žÞX²³§»,oéÅh•Ò:ì¢1–œ%-ïn-[Õ¹µMÕַõv¶¯kÛ¶s{¬wI_k[w¼­W*•.Ƹ¸¾±­·O­T–Í.›3Þx1ngŸ“’½±x[W¬÷j©§}"Ro۶ξd[/;»¥ eëˤp,ÙÖ”bÝq©)K¸¦½½³µ[Ûz“1DîIv §Wíìíì‹w¶ª£õ•e'#õɶ]mÒå±d²­¯§»6Ö‡c!gMÝ=}³¤Ý­ÒîXŸoëëÜÖ[¯‘&ÒHØùtw÷ìÂ.wµÍB¾Û{Ûú::»·I}ê”ÓÔR²#–T'ÝÕ–ìílmß~ ª¬+T[QG»;“8pW[Ÿ´ºm·´®§+Ö}´LceÓŽ2•:»½=»(¥}­½mmÝ8X,ÛÚ¹½3‰½uÄzc­(1[gk• BJĺKëwöö$ÚÓ/,[5Žˆ jÒìëÙ¾ GV±»ÛÚâêˆÈö®¶íH„oïé¹ZO{O/2Ov”æpÞÞÓDÒ)ãÄQZ=­;»T=¡˜“æb­½=Ø–ØKb/]}eÉdâ²òòÝ»w—ÅÒªiEÍ”aÏåŸ×–¼&Ñ–ÖG¯ÚK×öU¨þnUu;©~ÕI¬_¾JZ“@ù4 sRa–”±ÌÙe³ÓC ;ɾ²¾Îíe=½ÛÊ×4¬"u¤“lÃ;‰÷µ¤Ä‰„w ë1,µ’’ ×^ŠÕP‰LGè |V’ tXZ†X=ؾé%²˽H¥þÆh¿=¤›”‘<Úòù½Ubi]š‹FJ= KË‘¾{X…t[±5·_‰¬§Nt³*å6²ùˆ!d éCª6ĉS ‰”âýúøGíi©/ÛR‰|ÍÆ{Î%)ÿQ¿Ø“D%¤-*§]”û«ÖƒtŸ' ñÚ¨öú°¥Öâ´Wµï ˆ±žb…)¥*‰$­›b5]bÄ58b;Ò·RMf0[iߪEh=÷`¹#-Ó«PÞ½”ƒ8¥ËÌ­Gþ´.më)w»è˜—S¸Zï£mµXïKÏK“Y墡ª,v#'긴£òŒSjÕÆºÓ”[Ñê¤ÏGJÓÆÒzé¦cìJs©ÒÌJË»þöÑq»q ‰ò§iyâØ•SŒJ]Ót¶&)n+·ã¿kÒ«¬ ¥¢µ5½ŽvÓUÙ‘žqíW"«ñ¹›ZEÕ[wÑdªãq©hvÓž¶S‰Ò&°ÜCg‘‘c)Õ:“6Ê©ZŠÑ•¿)¶Ó±5Þ:¨uĨnÛÒºNÒdäOÏTå:A!¥¤žÚ…ºÞÛÒ2ýú‰U—ìQ“`®mª:ÙNùíËé»›rÏÎQ“¶Šµ==’6ãíÔ]ÕO;µ7M¢qÚ[égȼÊ&™µ‡rÇšÆ5ÛêAÚTÚzÒ¬9ù)ÉŨ|{Òt ê•’i^ºèúè ˜ —a`YŽÜ©ÿʨ殚Öôš)Kó\þ?¦SùJP æ®Þ,/]Èãªôêïήº9ë7£‰õèƒVQ‘HÛOCZrÒE=¨«æbŸ9›ú̉³Ð¬±ëIÊO•eÃ6l_ƒ#¬"éXœŒíG–.q7…—l…6ÐÛH @”¬†²–E ãSƶZ|.źú,ƒE¤ñ!|1Ö"|úÎþÖà½ïÛðæðÖ0*£Ÿåéz)Ög!Å‹ø ôV¡5UŸ+°ÞˆÏeégÂëñYŸ®/Ç:>I j¢„þ>œ|†GáÅQFaÏyŸ‡þ}ÈüydFàÑ‘gF˜5´|ðèlÅ`ûŒä=þ½ð{Ñ÷ï ¼§Ï³½ ò'~? J²í¤¤úÐEõQ"(Q´:ào‰Ú†•zKQÔÆH¥îKwG‰µZpoùßR” > endstream endobj 57 0 obj 11848 endobj 58 0 obj <> endobj 59 0 obj <> stream xœ]“ËnÛ0E÷ú .ÓE q¬‡9¼HÔéÈí ¨%–þûðÎeZ  ‡Ã™Ñ!1L›ýv?Kúî§îàsÆÞ»ëtó3GwÆÄŠé‡n‰+ýï.휤¡öp¿.î²OÓf“¤?ÃÞuñwóðÜOG÷-IøÞùa<›‡_Í!¬·yþã.n\L–ÔµéÝ)ôykçïíÅ¥Zõ¸ïÃö°ÜCÉ¿„ûìŒèÚR¥›zwÛÎùv<»d“eµÙìvuâÆþ¿½|Í’ã©ûÝújCj–IVå|^‘_Á9¹ä'pI.Àû¬Ákåj~"çàgåÒ‚_ÈÚ§!kþ–\_Y+àãø–ÍÈp³ô¯àoé_ÂÓÒ¿Ò|ú ¾eé_ÀÇÒ¿@Kÿ| ¦¿à,ýsÍ¡Oý5ý_ÀôÏqFKÿ¢Ó¿Âýý+œQè_jœþ‚>ýá,ô/á#Ñ_ãÑgú—8—пÄY$úÃYèŸÃGà/™ÅJCƽIô×>ôÇûGí*ú—:`q’0jx _#lº›÷a|õÁèÜbb‡Ñý}Só4£JŸ…ÛÐ endstream endobj 60 0 obj <> endobj 61 0 obj <> endobj 62 0 obj << /Font 61 0 R /XObject<> /ProcSet[/PDF/Text/ImageC/ImageI/ImageB] >> endobj 1 0 obj <> endobj 44 0 obj <> endobj 55 0 obj <> endobj 63 0 obj <> endobj 64 0 obj < /Producer /CreationDate(D:20241021144416+02'00')>> endobj xref 0 65 0000000000 65535 f 0000061982 00000 n 0000000019 00000 n 0000000885 00000 n 0000035428 00000 n 0000032117 00000 n 0000028316 00000 n 0000024324 00000 n 0000020960 00000 n 0000017533 00000 n 0000013369 00000 n 0000009218 00000 n 0000005244 00000 n 0000000905 00000 n 0000004994 00000 n 0000005016 00000 n 0000005224 00000 n 0000008968 00000 n 0000008990 00000 n 0000009198 00000 n 0000013120 00000 n 0000013142 00000 n 0000013349 00000 n 0000017285 00000 n 0000017307 00000 n 0000017513 00000 n 0000020710 00000 n 0000020732 00000 n 0000020940 00000 n 0000024075 00000 n 0000024097 00000 n 0000024304 00000 n 0000028067 00000 n 0000028089 00000 n 0000028296 00000 n 0000031868 00000 n 0000031890 00000 n 0000032097 00000 n 0000035178 00000 n 0000035200 00000 n 0000035408 00000 n 0000038931 00000 n 0000038953 00000 n 0000039161 00000 n 0000062107 00000 n 0000039181 00000 n 0000039567 00000 n 0000043914 00000 n 0000039588 00000 n 0000043664 00000 n 0000043686 00000 n 0000043894 00000 n 0000048461 00000 n 0000048483 00000 n 0000048692 00000 n 0000062234 00000 n 0000048712 00000 n 0000060647 00000 n 0000060670 00000 n 0000060867 00000 n 0000061373 00000 n 0000061726 00000 n 0000061759 00000 n 0000062367 00000 n 0000062465 00000 n trailer < ] /DocChecksum /EA2FDC8B7E8F8B9D28738438B5FD8AD6 >> startxref 62640 %%EOF wmnut-0.72/src/000077500000000000000000000000001505630336300134075ustar00rootroot00000000000000wmnut-0.72/src/.gitignore000066400000000000000000000000741505630336300154000ustar00rootroot00000000000000.deps Makefile compat.o rcfiles.o wmgeneral.o wmnut wmnut.o wmnut-0.72/src/Makefile.am000066400000000000000000000007261505630336300154500ustar00rootroot00000000000000bin_PROGRAMS = wmnut wmnut_SOURCES = \ wmnut.c \ wmnut-common.h \ wmnut.h \ wmgeneral.c \ wmgeneral.h \ compat.c \ rcfiles.c \ wmnut_mask.xbm \ wmnut_master_LowColor.xpm \ wmnut_master.xpm AM_CFLAGS = \ @HEADER_SEARCH_PATH@ \ @NUT_HEADER@ \ @XCFLAGS@ \ @DBGFLAGS@ \ @CFLAGS@ wmnut_LDADD = \ @LIBRARY_SEARCH_PATH@ \ @XLIBS@ \ @XLFLAGS@ \ @NUT_LIB@ INSTALL_PROGRAM = \ @INSTALL_PROGRAM@ \ $(AM_INSTALL_PROGRAM_FLAGS) clean-local: rm -rf .deps wmnut-0.72/src/compat.c000066400000000000000000000021421505630336300150350ustar00rootroot00000000000000/* compat.c - xstrdup compatibility for wmnut Copyright (C) 2001 Russell Kroll 2022 - 2024 Jim Klimov 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include static const char *oom_msg = "Out of memory"; char *xstrdup(const char *string) { char *p = strdup(string); if (p == NULL) { fprintf(stderr, "%s", oom_msg); exit(1); } return p; } wmnut-0.72/src/rcfiles.c000066400000000000000000000237151505630336300152120ustar00rootroot00000000000000/* * rcfiles.c: useful functions to deal with parameters from rc files * or command line * * Copyright (C) * 2002 - 2012 Arnaud Quette * 2022 - 2025 Jim Klimov * * 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, 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 (see the file COPYING); if not, write to the * Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * */ #include "wmnut-common.h" /* includes config.h */ #include "wmgeneral.h" #ifdef HAVE_GETOPT_LONG # include #endif #if (defined HAVE_REALPATH) && HAVE_REALPATH # ifdef HAVE_LIMITS_H # include # endif # ifdef HAVE_STDLIB_H # include # endif #endif /*******************************************************************************\ |* AddRcKey | \*******************************************************************************/ void AddRcKey(rckeys *key, const char *label, int type, void *var) { if (label != NULL) { #if (defined HAVE_XMALLOC) && HAVE_XMALLOC key->label = (char *)xmalloc(strlen(label) + 1); #else key->label = (char *)malloc(strlen(label) + 1); #endif /* HAVE_XMALLOC */ strcpy(key->label, label); } else key->label = NULL; key->type = type; switch(type) { case TYPE_STRING : key->var.str = (char *)var; break; case TYPE_BOOL: case TYPE_INT: key->var.integer = (int *)var; break; case TYPE_FLOAT: key->var.floater = (float *)var; break; case TYPE_NULL: break; } } /*******************************************************************************\ |* FreeRcKeyData | \*******************************************************************************/ void FreeRcKeyData(rckeys *key) { if (!key) return; if (key->label) { free(key->label); key->label = NULL; } if (key->type == TYPE_STRING && key->var.str) { free(key->var.str); key->var.str = NULL; } } /*******************************************************************************\ |* FreeRcKeys | \*******************************************************************************/ void FreeRcKeys(rckeys *keys) { /* NOTE: Assumes it accepts an array to free() its elements; * if this array itself is dynamic, caller should free() it */ int keynum; if (!keys) return; for (keynum = 0; keys[keynum].type != TYPE_NULL; keynum++) { FreeRcKeyData(&keys[keynum]); } } /*******************************************************************************\ |* ParseRCFile | \*******************************************************************************/ void ParseRCFile(const char *filename, rckeys *keys) { char *p, *tmp; char temp[128]; char *tokens = " =\t\n#"; FILE *fp; int key; fp = fopen(filename, "r"); if (fp) { #ifdef DEBUG printf("Opening rc file %s\n", filename); #endif while (fgets(temp, sizeof(temp), fp)) { if (temp[0] != '#') { key = 0; while (key >= 0 && keys[key].label) { if ((p = strstr(&temp[0], keys[key].label))) { /* jump to "=" */ p += strlen(keys[key].label); /* suppress tokens before value */ p += strspn(p, tokens); /* suppress tokens after value */ tmp = strpbrk(p, tokens); *tmp = '\0'; #ifdef DEBUG printf("Parameter -> %s%s\tValue -> %s\n", keys[key].label, ((strlen(keys[key].label) <12)?"\t\t":"\t"), p); #endif switch(keys[key].type) { case TYPE_STRING: #if (defined HAVE_XMALLOC) && HAVE_XMALLOC if (keys[key].var.str != NULL) free(keys[key].var.str); keys[key].var.str = (char *)xmalloc(strlen(p) + 1); strncpy(keys[key].var.str, p, strlen(p)); #endif /* HAVE_XMALLOC */ if (!strcmp(keys[key].label, "UPS")) AddHost(p); break; case TYPE_BOOL: *keys[key].var.boolean = strncmp(p, "on", 2) == 0; break; case TYPE_INT: *keys[key].var.integer = atoi(p); break; case TYPE_FLOAT: *keys[key].var.floater = atof(p); break; } key = -1; } else key++; } } } fclose(fp); } } /*******************************************************************************\ |* LoadRCFile | \*******************************************************************************/ void LoadRCFile(rckeys *keys) { char home_file[NUT_PATH_MAX]; char *p; #ifdef DEBUG printf("Loading rc files\n"); #endif ParseRCFile(MAINRC_FILE, keys); p = getenv("HOME"); home_file[0] = '\0'; if (p) { #if (defined HAVE_REALPATH) && HAVE_REALPATH char resolved_path[NUT_PATH_MAX]; if (realpath(p, resolved_path)) { p = resolved_path; } else { fprintf(stderr, "Invalid or unsafe HOME directory: %s\n", p); p = NULL; } if (p) #endif /* Sanity-check that HOME dir is absolute, does not have * any escape chars and/or dot-dot upstaging */ if (p[0] == '/' && (strcmp(p, "/../") || strcmp(p, "\\"))) { snprintf(home_file, sizeof(home_file), "%s/%s", p, RC_FILE); ParseRCFile(home_file, keys); } else { fprintf(stderr, "Invalid or unsafe HOME directory: %s\n", p); } } } /*******************************************************************************\ |* ParseCMDLine() \*******************************************************************************/ void ParseCMDLine(int argc, char *argv[]) { char *p; int c; #if 0 char *cmdline; int i; #endif #ifdef HAVE_GETOPT_LONG static struct option long_options[] = { {"alarmint",required_argument,NULL,'A'}, {"blinkrate",required_argument,NULL,'b'}, {"beepvol",required_argument,NULL,'B'}, {"criticalevel",required_argument,NULL,'C'}, {"display",required_argument,NULL,'d'}, {"help",no_argument,NULL,'h'}, {"lowcolor",no_argument,NULL,'l'}, {"lowlevel",required_argument,NULL,'L'}, {"upsname",required_argument,NULL,'U'}, {"version",no_argument,NULL,'v'}, {"verbose",no_argument,NULL,'V'}, {"windowed",no_argument,NULL,'w'}, {0, 0, 0, 0} }; #define GETOPTFUNC(x,y,z) getopt_long(x,y,"-" z, long_options, NULL) #define GETOPTENDCHAR -1 #else /* ! HAVE_GETOPT_LONG */ #define GETOPTFUNC(x,y,z) getopt(x,y,z) #define GETOPTENDCHAR EOF #endif /* ! HAVE_GETOPT_LONG */ while(1) { if ((c=GETOPTFUNC (argc, argv, "A:b:B:C:d:hlL:U:vVw")) == GETOPTENDCHAR) break; switch (c) { case 'A': Alert = 1; printf ("option A : valeur %s\n", optarg); p = strchr(optarg, ','); if (p != NULL) *p = '\0'; LAlertRate = atof(optarg); CAlertRate = atof(p+1); printf ("option A : valeur LAlertRate = %f(%s), CAlertRate = %f(%s)\n", LAlertRate, optarg, CAlertRate, (p+1)); break; case 'b': BlinkRate = atof(optarg); break; case 'C': CriticalLevel = atoi(optarg); break; case 'L': LowLevel = atoi(optarg); break; case 'l': UseLowColorPixmap = 1; break; case 'V': Verbose = 1; break; case 'v': printf("\nThis is wmnut version: %s\n", VERSION); #if (defined HAVE_NUT_VERSION) && (HAVE_NUT_VERSION) printf("Built against NUT version: %s\n", NUT_VERSION); #endif printf("\nCopyright 2001-2016 Arnaud Quette\n"); printf("Copyright 2021-2025 by the Network UPS Tools project\n"); printf("Support at: %s\n", PACKAGE_BUGREPORT); printf("\nComplete documentation for WMNUT should be found on this system using\n"); printf("`man wmnut' or `wmnut -h'. If you have access to the Internet, point your\n"); printf("browser at https://github.com/networkupstools/wmnut - the WMNUT Repository.\n\n"); /* Previously http://wmnut.mgeops.org, now defunct; last cached at * http://web.archive.org/web/20111003175836/http://wmnut.mgeops.org/ */ exit(1); case 'w': WithDrawn = 0; /* not in default withdrawn mode, so in windowed mode */ break; case 'B': Beep = 1; Volume = atoi(optarg); break; case 'U': AddHost(optarg); break; case 'h': default: printf("\n%s version: %s\n", PACKAGE, VERSION); #if (defined HAVE_NUT_VERSION) && (HAVE_NUT_VERSION) printf("Built against NUT version: %s\n", NUT_VERSION); #endif printf("\nUsage: %s [arguments]\n\n", PACKAGE_NAME); printf("-A \tSend messages to users terminals when Low and critical.\n"); printf(" \tT1 is seconds between messages when Low.\n"); printf(" \tT2 is seconds between messages when Critical.\n"); printf("-b \tBlink rate for red LED. (0 for no blinking.)\n"); printf("-B \tBeep at Critical Level with Volume (between -100%% to 100%%).\n"); printf("-C \tDefine level at which red LED turns on (CriticalLevel).\n"); printf("-d \tUse alternate display.\n"); printf("-h\t\tDisplay this help screen.\n"); printf("-l\t\tUse a low-color pixmap to conserve colors on 8-bit displays.\n"); printf("-L \tDefine level at which yellow LED turns on.\n"); printf(" \tCriticalLevel takes precedence if LowLevel < CriticalLevel.\n"); printf("-U \tDefine upsname ([upsname@]hostname, default is localhost)\n"); printf("-v \t\tPrint version (includes important WMNUT info).\n"); printf("-V \t\tVerbose mode : display NUT available features and base value.\n"); printf("-w \t\tWindowed mode (opposite to native Window Maker withdrawn mode).\n\n"); exit (1); } } } wmnut-0.72/src/wmgeneral.c000066400000000000000000000341321505630336300155370ustar00rootroot00000000000000/* Best viewed with vim5, using ts=4 wmgeneral was taken from wmppp. It has a lot of routines which most of the wm* programs use. ------------------------------------------------------------ Author: Martijn Pieterse (pieterse@xs4all.nl) --- CHANGES: --- 02/05/1998 (Martijn Pieterse, pieterse@xs4all.nl) * changed the read_rc_file to parse_rcfile, as suggested by Marcelo E. Magallon * debugged the parse_rc file. 30/04/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Ripped similar code from all the wm* programs, and put them in a single file. 12/08/2024 (Jim Klimov, jimklimov+nut@gmail.com) * Addressed modern compiler warnings, coding style */ #include #include #include #include #include #include #include #include #include #include #include "wmgeneral.h" extern int Verbose; extern char *upshost; /* extern rckeys *wmnut_keys; */ char *wname; /*****************/ /* X11 Variables */ /*****************/ Window Root; int screen; int x_fd; int d_depth; XSizeHints mysizehints; XWMHints mywmhints; Pixel back_pix, fore_pix; char *Geometry = ""; Window iconwin, rootwin; GC NormalGC; XpmIcon wmgen; Pixmap pixmask; Atom wm_delete_window; Atom wm_protocols; Display *display; /*****************/ /* Mouse Regions */ /*****************/ typedef struct { int enable; int top; int bottom; int left; int right; } MOUSE_REGION; #define MAX_MOUSE_REGION (8) MOUSE_REGION mouse_region[MAX_MOUSE_REGION]; /***********************/ /* Function Prototypes */ /***********************/ static void GetXPM(XpmIcon *, char **); static Pixel GetColor(char *); void RedrawWindow(void); void AddMouseRegion(int, int, int, int, int); int CheckMouseRegion(int, int); void CheckX11Events(void); /*******************************************************************************\ |* SetRootWindowName *| \*******************************************************************************/ void SetRootWindowName(char *name) { char *fullname = NULL; if (strcmp(name, wname)) { fullname = (char *)malloc(strlen(name) + strlen(wname) + 3); if (fullname != NULL) { sprintf(fullname, "%s:%s", wname, name); XStoreName(display, rootwin, fullname); XSetIconName(display, rootwin, fullname); free(fullname); } else { XStoreName(display, rootwin, wname); XSetIconName(display, rootwin, wname); } } XMapWindow(display, rootwin); /* XStoreName(display, rootwin, wname); XSetIconName(display, rootwin, wname); */ } /*******************************************************************************\ |* GetXPM *| \*******************************************************************************/ static void GetXPM(XpmIcon *icon, char *pixmap_bytes[]) { XWindowAttributes attributes; int err; /* For the colormap */ XGetWindowAttributes(display, Root, &attributes); icon->attributes.valuemask |= (XpmReturnPixels | XpmReturnExtensions); err = XpmCreatePixmapFromData(display, Root, pixmap_bytes, &(icon->pixmap), &(icon->mask), &(icon->attributes)); if (err != XpmSuccess) { fprintf(stderr, "Not enough free colorcells.\n"); exit(1); } } /*******************************************************************************\ |* GetColor *| \*******************************************************************************/ static Pixel GetColor(char *name) { XColor color; XWindowAttributes attributes; if (name != NULL) { XGetWindowAttributes(display, Root, &attributes); color.pixel = 0; if (!XParseColor(display, attributes.colormap, name, &color)) { fprintf(stderr, "wm.app: can't parse %s.\n", name); } else if (!XAllocColor(display, attributes.colormap, &color)) { fprintf(stderr, "wm.app: can't allocate %s.\n", name); } return color.pixel; } else { fprintf(stderr,"GetColor:name is null\n"); return (-1); } } /*******************************************************************************\ |* flush_expose *| \*******************************************************************************/ static int flush_expose(Window w) { XEvent dummy; int i = 0; while (XCheckTypedWindowEvent(display, w, Expose, &dummy)) i++; return i; } /*******************************************************************************\ |* RedrawWindow *| \*******************************************************************************/ void RedrawWindow(void) { flush_expose(iconwin); XCopyArea(display, wmgen.pixmap, iconwin, NormalGC, 0,0, wmgen.attributes.width, wmgen.attributes.height, 0,0); flush_expose(rootwin); XCopyArea(display, wmgen.pixmap, rootwin, NormalGC, 0,0, wmgen.attributes.width, wmgen.attributes.height, 0,0); } /*******************************************************************************\ |* RedrawWindowXY *| \*******************************************************************************/ void RedrawWindowXY(int x, int y) { flush_expose(iconwin); XCopyArea(display, wmgen.pixmap, iconwin, NormalGC, x,y, wmgen.attributes.width, wmgen.attributes.height, 0,0); flush_expose(rootwin); XCopyArea(display, wmgen.pixmap, rootwin, NormalGC, x,y, wmgen.attributes.width, wmgen.attributes.height, 0,0); } /*******************************************************************************\ |* AddMouseRegion *| \*******************************************************************************/ void AddMouseRegion(int index, int left, int top, int right, int bottom) { if (index < MAX_MOUSE_REGION) { mouse_region[index].enable = 1; mouse_region[index].top = top; mouse_region[index].left = left; mouse_region[index].bottom = bottom; mouse_region[index].right = right; } } /*******************************************************************************\ |* CheckMouseRegion *| \*******************************************************************************/ int CheckMouseRegion(int x, int y) { int i; int found; found = 0; for (i=0; i= mouse_region[i].left && y <= mouse_region[i].bottom && y >= mouse_region[i].top ) found = 1; } if (!found) return -1; return (i-1); } /*******************************************************************************\ |* copyXPMArea *| \*******************************************************************************/ void copyXPMArea(int x, int y, int sx, int sy, int dx, int dy) { XCopyArea(display, wmgen.pixmap, wmgen.pixmap, NormalGC, x, y, sx, sy, dx, dy); } /*******************************************************************************\ |* copyXBMArea *| \*******************************************************************************/ void copyXBMArea(int x, int y, int sx, int sy, int dx, int dy) { XCopyArea(display, wmgen.mask, wmgen.pixmap, NormalGC, x, y, sx, sy, dx, dy); } /*******************************************************************************\ |* setMaskXY *| \*******************************************************************************/ void setMaskXY(int x, int y) { XShapeCombineMask(display, rootwin, ShapeBounding, x, y, pixmask, ShapeSet); XShapeCombineMask(display, iconwin, ShapeBounding, x, y, pixmask, ShapeSet); } /*******************************************************************************\ |* openXwindow *| \*******************************************************************************/ void openXwindow(int argc, char *argv[], char *pixmap_bytes[], char *pixmask_bits, int pixmask_width, int pixmask_height, int withdrawn ) { unsigned int borderwidth = 0; XClassHint classHint; char *display_name = NULL; XTextProperty name; XGCValues gcv; unsigned long gcm; #if 0 Status status; #endif int dummy = 0, i; wname = PACKAGE; for (i = 1; argv[i]; i++) { if ((!strcmp(argv[i], "-display")) || (!strcmp(argv[i], "-d"))) display_name = argv[i+1]; } if (!(display = XOpenDisplay(display_name))) { fprintf(stderr, "%s: can't open display %s\n", wname, XDisplayName(display_name)); exit(1); } if ( !withdrawn ) borderwidth = 5; screen = DefaultScreen(display); Root = RootWindow(display, screen); d_depth = DefaultDepth(display, screen); x_fd = XConnectionNumber(display); /* Convert XPM to XImage */ GetXPM(&wmgen, pixmap_bytes); /* Create a window to hold the stuff */ mysizehints.flags = USSize | USPosition; mysizehints.x = 0; mysizehints.y = 0; back_pix = GetColor("white"); fore_pix = GetColor("black"); XWMGeometry(display, screen, Geometry, NULL, borderwidth, &mysizehints, &mysizehints.x, &mysizehints.y, &mysizehints.width, &mysizehints.height, &dummy); mysizehints.min_width = mysizehints.max_width = mysizehints.width = 64; mysizehints.min_height = mysizehints.max_height = mysizehints.height = 64; mysizehints.flags |= PMinSize|PMaxSize; rootwin = XCreateSimpleWindow( display, Root, mysizehints.x, mysizehints.y, mysizehints.width, mysizehints.height, borderwidth, fore_pix, back_pix); iconwin = XCreateSimpleWindow( display, rootwin, mysizehints.x, mysizehints.y, mysizehints.width, mysizehints.height, borderwidth, fore_pix, back_pix); /* Activate hints */ XSetWMNormalHints(display, rootwin, &mysizehints); XSetWMNormalHints(display, iconwin, &mysizehints); /* new AQ */ classHint.res_name = wname; classHint.res_class = wname; XSetClassHint(display, rootwin, &classHint); XSelectInput( display, rootwin, ButtonPressMask | ExposureMask | ButtonReleaseMask | /*PointerMotionMask |*/ StructureNotifyMask); XSelectInput( display, iconwin, ButtonPressMask | ExposureMask | ButtonReleaseMask | /*PointerMotionMask |*/ StructureNotifyMask); /* if (XStringListToTextProperty(&fullname, 1, &name) == 0) { */ if (XStringListToTextProperty(&wname, 1, &name) == 0) { fprintf(stderr, "%s: can't allocate window name\n", wname); exit(1); } XSetWMName(display, rootwin, &name); if ( !withdrawn ) { XSetWMIconName(display, rootwin, &name); SetRootWindowName(wname); } /* Create GC for drawing */ gcm = GCForeground | GCBackground | GCGraphicsExposures; gcv.foreground = fore_pix; gcv.background = back_pix; gcv.graphics_exposures = 0; NormalGC = XCreateGC(display, Root, gcm, &gcv); /* ONLYSHAPE ON */ if ( withdrawn ) { pixmask = XCreateBitmapFromData( display, rootwin, pixmask_bits, pixmask_width, pixmask_height); XShapeCombineMask(display, rootwin, ShapeBounding, 0, 0, pixmask, ShapeSet); XShapeCombineMask(display, iconwin, ShapeBounding, 0, 0, pixmask, ShapeSet); } /* ONLYSHAPE OFF */ mywmhints.initial_state = withdrawn ? WithdrawnState : NormalState; mywmhints.icon_window = iconwin; mywmhints.flags = StateHint | IconWindowHint; if ( withdrawn ) { mywmhints.window_group = rootwin; mywmhints.flags |= WindowGroupHint | IconPositionHint; mywmhints.icon_x = mysizehints.x; mywmhints.icon_y = mysizehints.y; } XSetWMHints(display, rootwin, &mywmhints); XSetCommand(display, rootwin, argv, argc); /* Set up the event for quitting the window */ wm_delete_window = XInternAtom( display, "WM_DELETE_WINDOW", /* atom_name */ False /* only_if_exists */ ); wm_protocols = XInternAtom( display, "WM_PROTOCOLS", /* atom_name */ False /* only_if_exists */ ); #if 0 status = #endif XSetWMProtocols(display, rootwin, &wm_delete_window, 1); #if 0 status = #endif XSetWMProtocols(display, iconwin, &wm_delete_window, 1); XMapWindow(display, rootwin); } /* * This function clears up all X related * stuff and exits. It is called in case * of emergencies too. */ void Cleanup(void) { /* do not clean on FreeBSD ! */ #ifndef FreeBSD if ( display ) { XCloseDisplay(display); } #endif /* Free all mallocs */ CleanHosts(); exit(0); } /* * This checks for X11 events. We distinguish the following: * - request to repaint the window * - request to quit (Close button) * - mouse request (click) */ void CheckX11Events(void) { XEvent Event; while (XPending(display)) { XNextEvent(display, &Event); switch(Event.type) { case Expose: RedrawWindow(); break; case ButtonPress: pressEvent(&Event.xbutton); break; case ButtonRelease: break; case ClientMessage: if ((Event.xclient.message_type == wm_protocols) && ((Atom)Event.xclient.data.l[0] == wm_delete_window) ) Cleanup(); break; } } } /* * This routine handles button presses. Pressing the '<|' button * invokes 'previous UPS' to change the monitored UPS (if multiple) * pressing the '|>' button invokes 'next UPS'... * */ void pressEvent(XButtonEvent *xev){ int x = xev->x; int y = xev->y; if (x>=5 && y>=48 && x<=17 && y<=58) { /* * look if multiple hosts are monitored */ /* * Standby Call. * * Draw button as 'pushed'. Redraw window to show it. * Call 'nut -S' to standby. Sleep for 2 seconds so that * the button doesnt immediately redraw back to unpressed * before the 'nut -S' takes effect. */ copyXPMArea(5, 106, 13, 11, 5, 48); RedrawWindow(); GetPrevHost(); /* system("nut -S"); */ } else if (x>=46 && y>=48 && x<=58 && y<=58) { /* * Suspend Call. * * Draw button as 'pushed'. Redraw window to show it. * Call 'nut -s' to suspend. Sleep for 2 seconds so that * the button doesnt immediately redraw back to unpressed * before the 'nut -s' takes effect. */ copyXPMArea(21, 106, 13, 11, 46, 48); RedrawWindow(); GetNextHost(); /* system("nut -s"); */ } /* usleep(2000000L); */ usleep(500L); return; } wmnut-0.72/src/wmgeneral.h000066400000000000000000000060101505630336300155360ustar00rootroot00000000000000#ifndef WMGENERAL_H_INCLUDED #define WMGENERAL_H_INCLUDED #ifdef HAVE_CONFIG_H /* Generated without include header guards */ # ifndef CONFIG_H_INCLUDED # include "config.h" # ifndef CONFIG_H_INCLUDED # define CONFIG_H_INCLUDED # endif /* CONFIG_H_INCLUDED */ # endif /* CONFIG_H_INCLUDED */ #endif /* HAVE_CONFIG_H */ /* X11 includes */ #include #include #include /***********/ /* Defines */ /***********/ /* Configuration files */ #define MAINRC_FILE "/etc/wmnutrc" #define RC_FILE ".wmnutrc" #define MAX_MOUSE_REGION (8) #define TYPE_NULL 0 #define TYPE_INT 1 #define TYPE_FLOAT 2 #define TYPE_STRING 3 #define TYPE_BOOL 4 /************/ /* Typedefs */ /************/ union var { int *integer; float *floater; char *str; int *boolean; }; typedef struct { /*const*/ char *label; int type; union var var; }rckeys; typedef struct { Pixmap pixmap; Pixmap mask; XpmAttributes attributes; } XpmIcon; /*******************/ /* Global variable */ /*******************/ extern Display *display; /***********************/ /* Function Prototypes */ /***********************/ extern void CleanHosts(void); extern int AddHost(char *hostname); extern void GetFirstHost(void); extern int GetNextHost(void); extern int GetPrevHost(void); void AddMouseRegion(int index, int left, int top, int right, int bottom); int CheckMouseRegion(int x, int y); void SetWindowName(char *name); void openXwindow(int argc, char *argv[], char **, char *, int, int, int withdrawn); void RedrawWindow(void); void RedrawWindowXY(int x, int y); void CheckX11Events(void); void pressEvent(XButtonEvent *xev); void copyXPMArea(int, int, int, int, int, int); void copyXBMArea(int, int, int, int, int, int); void setMaskXY(int, int); void AddRcKey(rckeys *key, const char *label, int type, void *var); void FreeRcKeyData(rckeys *key); void FreeRcKeys(rckeys *key); /* Free an array starting from given element and up to TYPE_NULL entry */ void ParseRCFile(const char *filename, rckeys *keys); void ParseCMDLine(int argc, char *argv[]); void LoadRCFile(rckeys *keys); void ReloadRCFile(void); /************/ /* Datadefs */ /************/ extern int Alert; /* Controls whether alert is sent to * all users via wall: Off by default */ /* base parameters */ extern char *upshost; extern int Verbose; /* 1 for verbose mode : displays NUT * available features and base values */ extern int CriticalLevel; extern int LowLevel; extern float BlinkRate; /* blinks per second */ extern float UpdateRate; /* Number of updates per second */ extern int Beep; /* Controls beeping when you get to * CriticalLevel: Off by default */ extern int Volume; /* ring bell at 50% volume */ extern int UseLowColorPixmap; /* Use a lower number of colors for the * poor saps on 8-bit displays */ extern float LAlertRate; /* send alert every 5 minutes when Low */ extern float CAlertRate; /* send alert every 2 minutes when Critical */ extern int WithDrawn; /* start in withdrawn shape (for WindowMaker) */ #endif /* WMGENERAL_H_INCLUDED */ wmnut-0.72/src/wmnut-common.h000066400000000000000000000051531505630336300162240ustar00rootroot00000000000000/* * wmnut-common.h -- Header file for WMNUT with common includes and definitions * * Copyright (C) * 2002 - 2012 Arnaud Quette * 2022 - 2025 Jim Klimov * 2024 desertwitch * * 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, 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 (see the file COPYING); if not, write to the * Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * */ #ifndef WMNUT_COMMON_H_INCLUDED #define WMNUT_COMMON_H_INCLUDED #ifdef HAVE_CONFIG_H /* May be generated without include header guards */ # ifndef CONFIG_H_INCLUDED # include "config.h" # ifndef CONFIG_H_INCLUDED # define CONFIG_H_INCLUDED # endif /* CONFIG_H_INCLUDED */ # endif /* CONFIG_H_INCLUDED */ #endif /* HAVE_CONFIG_H */ /* standard system includes */ #ifdef FreeBSD # include # include #endif #include #include #include #include #include #if HAVE_LIMITS_H # include #endif /* nut and wmnut includes */ #include #if defined HAVE_UPSCLI_STR_CONTAINS_TOKEN && HAVE_UPSCLI_STR_CONTAINS_TOKEN # define STR_CONTAINS_TOKEN(haystack, needle) upscli_str_contains_token(haystack, needle) #else # define STR_CONTAINS_TOKEN(haystack, needle) strstr(haystack, needle) #endif #define SMALLBUF 256 #define LARGEBUF 1024 /* Portable max path length, may be or not be defined in NUT headers too */ #ifndef NUT_PATH_MAX # define NUT_PATH_MAX SMALLBUF # if (defined(PATH_MAX)) && PATH_MAX > NUT_PATH_MAX # undef NUT_PATH_MAX # define NUT_PATH_MAX PATH_MAX # endif # if (defined(MAX_PATH)) && MAX_PATH > NUT_PATH_MAX /* PATH_MAX is the POSIX equivalent for Microsoft's MAX_PATH */ # undef NUT_PATH_MAX # define NUT_PATH_MAX MAX_PATH # endif # if (defined(UNIX_PATH_MAX)) && UNIX_PATH_MAX > NUT_PATH_MAX # undef NUT_PATH_MAX # define NUT_PATH_MAX UNIX_PATH_MAX # endif # if (defined(MAXPATHLEN)) && MAXPATHLEN > NUT_PATH_MAX # undef NUT_PATH_MAX # define NUT_PATH_MAX MAXPATHLEN # endif #endif /* !NUT_PATH_MAX */ #endif /* WMNUT_H_COMMON_INCLUDED */ wmnut-0.72/src/wmnut.c000066400000000000000000000567601505630336300147430ustar00rootroot00000000000000/* * wmnut.c -- core implementation of WMNUT * * Copyright (C) * 2002 - 2012 Arnaud Quette * 2022 - 2025 Jim Klimov * 2024 desertwitch * * based on wmapm originally written by * Chris D. Faulhaber . Version 3.0 * and extensively modified version of version 2.0 * by Michael G. Henderson . * * 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, 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 (see the file COPYING); if not, write to the * Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * */ #include "wmnut.h" /* includes wmnut-common.h and config.h */ #include /* For size_t, may require C99+ */ void ParseCMDLine(int argc, char *argv[]); void InitHosts(void); int AddHost(char *hostname); void GetFirstHost(void); int GetNextHost(void); int GetPrevHost(void); void InitCom(void); /* base parameters */ /* Controls whether alert is sent to all users via wall: Off by default */ int Alert = 0; char *upshost = NULL; /* 1 for verbose mode : displays NUT available features and base values */ int Verbose = 0; int CriticalLevel = 10; int LowLevel = 40; float BlinkRate = 3.0; /* blinks per second */ float UpdateRate = 0.8; /* Number of updates per second */ /* Controls beeping when you get to CriticalLevel: Off by default */ int Beep = 0; int Volume = 50; /* ring bell at 50% volume */ /* Use a lower number of colors for the poor saps on 8-bit displays */ int UseLowColorPixmap = 0; float LAlertRate = 300.0; /* send alert every 5 minutes when Low */ float CAlertRate = 120.0; /* send alert every 2 minutes when Critical */ int WithDrawn = 1; /* start in withdrawn shape (for WindowMaker) */ #define RETRY_COUNT 10 int TryCount = 0; /* UPS currently monitored */ ups_info *CurHost; /* List of all UPSs monitored */ nut_info Hosts; #define WMNUT_KEYS_AMOUNT 13 /* This many fields are populated in main() below */ rckeys wmnut_keys[WMNUT_KEYS_AMOUNT]; /* Debug macros */ #define DEBUGOUT(...) { if (Verbose) fprintf(stdout, __VA_ARGS__); } #define DEBUGERR(...) { if (Verbose) fprintf(stderr, __VA_ARGS__); } /* Set and clear UPS status flags */ void setflag(int *val, int flag) { *val |= flag; } void clearflag(int *val, int flag) { *val ^= (*val & flag); } int flag_isset(int num, int flag) { return ((num & flag) == flag); } /* * Get a variable from the UPS ********************************************************* */ int get_ups_var (char *variable, char *value) { int retcode; size_t numq, numa; const char *query[4]; char **answer; DEBUGOUT("Trying to get variable: %s (on %s)\n", variable, CurHost->upsname); query[0] = "VAR"; query[1] = CurHost->upsname; query[2] = variable; numq = 3; if ((retcode = upscli_get(&CurHost->connexion, numq, query, &numa, &answer)) < 0) { /* if ((retcode = upscli_getvar(&CurHost->connexion, CurHost->upsname, variable, value, SMALLBUF)) < 0) { */ DEBUGERR("Error: %s (%s)\n", upscli_strerror(&CurHost->connexion), variable); /* should cover driver and upsd disconnection */ if (CurHost->connexion.upserror == UPSCLI_ERR_DATASTALE) CurHost->comm_status = COM_LOST; if ((CurHost->connexion.upserror == UPSCLI_ERR_READ) || (CurHost->connexion.upserror == UPSCLI_ERR_INVALIDARG)) { CurHost->comm_status = COM_LOST; InitCom(); } if (CurHost->connexion.upserror == UPSCLI_ERR_VARNOTSUPP) retcode = VARNOTSUPP; /* return retcode; */ } else { retcode = OK; strcpy(value, answer[3]); DEBUGOUT("Var: %s = %s\n", variable, value); CurHost->comm_status = COM_OK; } return retcode; } void get_ups_info(void) { char value[SMALLBUF]; int retVal; size_t numa; /* Get UPS status */ if (get_ups_var ("ups.status", value) > NOK) { if (STR_CONTAINS_TOKEN(value, "OL")) { clearflag(&CurHost->ups_status, ST_ONBATT); } if (STR_CONTAINS_TOKEN(value, "OB")) { clearflag(&CurHost->ups_status, ST_ONLINE); } for (numa = 0; numa < sizeof(ups_status_flags) / sizeof(ups_status_flags[0]); numa++) { if (STR_CONTAINS_TOKEN(value, ups_status_flags[numa].status)) setflag(&CurHost->ups_status, ups_status_flags[numa].flag); else clearflag(&CurHost->ups_status, ups_status_flags[numa].flag); } } else { CurHost->ups_status = 0; } /* Get battery charge level */ if ((CurHost->battery_runtime != VARNOTSUPP) || (TryCount >= RETRY_COUNT) ) { retVal = get_ups_var ("battery.charge", value); if (retVal == OK) CurHost->battery_percentage = atoi(value); else CurHost->battery_percentage = retVal; } /* Get runtime to empty */ if ((CurHost->battery_runtime != VARNOTSUPP) || (TryCount >= RETRY_COUNT) ) { retVal = get_ups_var ("battery.runtime", value); if (retVal == OK) CurHost->battery_runtime = atoi(value); else CurHost->battery_runtime = retVal; } /* Get Battery load level */ if ((CurHost->battery_load != VARNOTSUPP) || (TryCount >= RETRY_COUNT) ) { retVal = get_ups_var ("ups.load", value); if (retVal == OK) CurHost->battery_load = atoi(value); else CurHost->battery_load = retVal; } if (TryCount >= RETRY_COUNT) TryCount = 0; else TryCount++; return; } static void exit_cleanup(void) { FreeRcKeys(wmnut_keys); } int main(int argc, char *argv[]) { int time_left, hour_left, min_left; int i, m, n, nMax, k, Toggle = OFF; int batt_load, batt_perc, yoffset; #if 0 int mMax, retVal; long int r, rMax, s, sMax; char *v, *ptr; #endif /* ignore upsd stop and don't crash (thanks to Russell Kroll) */ signal(SIGPIPE, SIG_IGN); /* Set default values */ BlinkRate = 3.0; UpdateRate = 1.0 / 1.25; /* Multiple hosts setup */ Hosts.curhosts_number = Hosts.hosts_number = 0; /* Create default parameters table */ AddRcKey(&wmnut_keys[0], "UPS", TYPE_STRING, upshost); AddRcKey(&wmnut_keys[1], "LAlertRate", TYPE_FLOAT, &LAlertRate); AddRcKey(&wmnut_keys[2], "CAlertRate", TYPE_FLOAT, &CAlertRate); AddRcKey(&wmnut_keys[3], "Alert", TYPE_BOOL, &Alert); AddRcKey(&wmnut_keys[4], "BlinkRate", TYPE_FLOAT, &BlinkRate); AddRcKey(&wmnut_keys[5], "Beep", TYPE_BOOL, &Beep); AddRcKey(&wmnut_keys[6], "Volume", TYPE_INT, &Volume); AddRcKey(&wmnut_keys[7], "LowLevel", TYPE_INT, &LowLevel); AddRcKey(&wmnut_keys[8], "CriticalLevel", TYPE_INT, &CriticalLevel); AddRcKey(&wmnut_keys[9], "UseLowColorPixmap", TYPE_BOOL, &UseLowColorPixmap); AddRcKey(&wmnut_keys[10], "Verbose", TYPE_BOOL, &Verbose); AddRcKey(&wmnut_keys[11], "WithDrawn", TYPE_BOOL, &WithDrawn); AddRcKey(&wmnut_keys[12], NULL, TYPE_NULL, NULL); atexit(exit_cleanup); /* Initialise host structure */ InitHosts(); /* Parse rcfile command arguments. * First, try with /etc/wmnutrc else * (if not exists), try ~/.wmnutrc * Note that the 2nd override the 1st */ LoadRCFile(wmnut_keys); /* Parse any command line arguments. * Note that it overrides RCFiles params */ ParseCMDLine(argc, argv); for (i = 0; i < (WMNUT_KEYS_AMOUNT - 1); i++ ) { switch (wmnut_keys[i].type) { case TYPE_STRING : DEBUGOUT("%s = %s\n", wmnut_keys[i].label, wmnut_keys[i].var.str); break; case TYPE_BOOL: case TYPE_INT: DEBUGOUT("%s = %i\n", wmnut_keys[i].label, (int) *wmnut_keys[i].var.integer); break; case TYPE_FLOAT: DEBUGOUT("%s = %f\n", wmnut_keys[i].label, (float) *wmnut_keys[i].var.floater); break; case TYPE_NULL: DEBUGOUT("wmnut_keys[%d] is a sentinel entry (TYPE_NULL)", i); break; } } /* original basic setup */ BlinkRate = (BlinkRate >= 0.0) ? BlinkRate : -1.0*BlinkRate; UpdateRate = (UpdateRate >= 0.0) ? UpdateRate : -1.0*UpdateRate; nMax = (int)( 1.0e6/(2.0*UpdateRate*DELAY) ); #if 0 mMax = (BlinkRate > 0.0) ? (int)( 1.0e6/(2.0*BlinkRate*DELAY) ) : nMax; rMax = (int)( LAlertRate*1.0e6/(2.0*DELAY) ); sMax = (int)( CAlertRate*1.0e6/(2.0*DELAY) ); #endif /* if no UPS after rcfiles and cmd line, try with localhost */ if (Hosts.hosts_number == 0) AddHost("localhost"); if (Hosts.hosts_number == 0) { fputs("No UPS available.\n" "Please check that your system or user wmnutrc file has UPS=... entries.\n", stderr); exit(EXIT_FAILURE); } /* Check NUT daemon availability on all host(s) */ InitCom(); /* Monitor 1rst host by default */ GetFirstHost(); /* Open display */ if (UseLowColorPixmap) openXwindow(argc, argv, wmnut_master_LowColor, (char*)wmnut_mask_bits, wmnut_mask_width, wmnut_mask_height, WithDrawn); else openXwindow(argc, argv, wmnut_master, (char*)wmnut_mask_bits, wmnut_mask_width, wmnut_mask_height, WithDrawn); /* Loop until we die... */ n = m = 32000; #if 0 r = rMax+1; s = sMax+1; #endif while(1) { /* Only process nut info only every nMax cycles of this * loop. We run it faster to catch the xevents like button * presses and expose events, etc... * * DELAY is set at 0.00625 seconds, so process nut info * every 1.25 seconds... */ if (n > nMax){ n = 0; /* * Invert toggle (for blinking). */ Toggle = (Toggle == OFF) ? ON : OFF; get_ups_info(); /* * Reset any previous offsets. */ yoffset = 0; /* * Assign internal variables (for display elements) */ batt_load = CurHost->battery_load; batt_perc = CurHost->battery_percentage; /* * Repaint buttons. */ copyXPMArea(42, 106, 13, 11, 5, 48); copyXPMArea(57, 106, 13, 11, 46, 48); /* * Repaint host number. */ copyXPMArea((CurHost->hostnumber) * 7 + 5, 93, 7, 9, 22, 49); /* * Check communication status. */ copyXPMArea(110, 6, 5, 7, 6, 7); /* erase zone */ if ((int)(CurHost->comm_status) == COM_LOST) { /* * Communication Status: COM_LOST. */ DEBUGERR("Communication lost with UPS %s\n", CurHost->hostname); if (Toggle||(BlinkRate == 0.0)) copyXPMArea(98, 6, 5, 7, 6, 7); /* blink red C */ CurHost->ups_status = 0; /* clear flags */ } else { /* * Communication Status: COM_OK. */ copyXPMArea(104, 6, 5, 7, 6, 7); } /* * Paste up the "Time Left". This time means (format HH:MM) : * * Time left before battery drains to 0% * If not supported (RUNTIME feature) --:-- */ copyXPMArea(83, 93, 41, 9, 15, 7); /* erase zone */ if (CurHost->battery_runtime >= 0) { /* convert in minutes */ time_left = CurHost->battery_runtime / 60; hour_left = time_left / 60; min_left = time_left % 60; /* Show 10's (hour) */ copyXPMArea( (hour_left / 10) * 7 + 5, 93, 7, 9, 21, 7); /* Show 1's (hour) */ copyXPMArea((hour_left % 10) * 7 + 5, 93, 7, 9, 29, 7); /* colon */ copyXPMArea(76, 93, 2, 9, 38, 7); /* Show 10's (min) */ copyXPMArea((min_left / 10) * 7 + 5, 93, 7, 9, 42, 7); /* Show 1's (min) */ copyXPMArea((min_left % 10) * 7 + 5, 93, 7, 9, 50, 7); } else { /* Show --:-- */ copyXPMArea(83, 106, 41, 9, 15, 7); } /* * Do Battery Load. */ copyXPMArea(75, 81, 21, 7, 36, 34); /* erase zone */ yoffset = 0; /* Reset offset to be safe */ if (flag_isset(CurHost->ups_status, ST_OVERLOAD)) { yoffset = -11; /* Set offset for red text */ } else { yoffset = 0; /* No offset for regular text */ } if (CurHost->battery_load >= 0) { /* If overloaded, normalize display to 100% */ if (batt_load > 100) { batt_load = 100; } /* blink load if UPS is overloaded (red) */ if (!flag_isset(CurHost->ups_status, ST_OVERLOAD) || Toggle || (BlinkRate == 0.0)) { if (batt_load == 100) { copyXPMArea(15, 81 + yoffset, 1, 7, 37, 34); /* Show 100's */ copyXPMArea( 5, 81 + yoffset, 5, 7, 39, 34); /* Show 10's */ copyXPMArea( 5, 81 + yoffset, 5, 7, 45, 34); /* Show 1's */ copyXPMArea(64, 81 + yoffset, 5, 7, 51, 34); /* Show '%' */ } else { if (batt_load >= 10) copyXPMArea((batt_load / 10) * 6 + 5, 81 + yoffset, 5, 7, 39, 34); /* Show 10's */ copyXPMArea((batt_load % 10) * 6 + 5, 81 + yoffset, 5, 7, 45, 34); /* Show 1's */ copyXPMArea(64, 81 + yoffset, 5, 7, 51, 34); /* Show '%' */ } } } /* * Do AVR Status (TRIM and BOOST) */ copyXPMArea(77, 74, 12, 4, 7, 16); /* erase zone */ if (flag_isset(CurHost->ups_status, ST_TRIM) || flag_isset(CurHost->ups_status, ST_BOOST)) { if (Toggle || (BlinkRate == 0.0)) copyXPMArea(92, 74, 12, 4, 7, 16); /* blink avr */ } /* * Do Alarm Status */ copyXPMArea(45, 133, 7, 7, 28, 34); /* erase zone */ if (flag_isset(CurHost->ups_status, ST_ALARM)) { if (Toggle || (BlinkRate == 0.0)) copyXPMArea(35, 133, 7, 7, 28, 34); /* blink alarm */ } /* * Do Battery Status */ copyXPMArea(99, 20, 12, 7, 30, 50); /* erase zone */ yoffset = 0; /* Reset offset to be safe */ if (flag_isset(CurHost->ups_status, ST_FSD)) { /* * UPS is shutting down, I.e. has become critical */ if (Toggle||(BlinkRate == 0.0)) copyXPMArea(6, 132, 12, 7, 30, 50); /* blink FSD */ } else if (flag_isset(CurHost->ups_status, ST_CAL)) { /* * UPS in calibration, I.e. testing the batteries */ if (Toggle||(BlinkRate == 0.0)) copyXPMArea(108, 64, 12, 7, 30, 50); /* blink gray battery for CAL */ } else if (flag_isset(CurHost->ups_status, ST_OFF)) { /* * UPS is offline. I.e. we are not protected. */ copyXPMArea(21, 132, 12, 7, 30, 50); /* show OFF */ } else if (flag_isset(CurHost->ups_status, ST_BYPASS)) { /* * UPS on bypass. I.e. we are not protected. */ copyXPMArea(92, 64, 12, 7, 30, 50); /* red plug for BYPASS */ } else if (flag_isset(CurHost->ups_status, ST_ONLINE)) { /* * UPS on-line. I.e. we are "plugged-in". */ if (flag_isset(CurHost->ups_status, ST_REPLBATT)) { if (Toggle||(BlinkRate == 0.0)) copyXPMArea(114, 20, 12, 7, 30, 50); /* blink dead battery for OL+RB */ } else if (flag_isset(CurHost->ups_status, ST_TRIM) || flag_isset(CurHost->ups_status, ST_BOOST)) copyXPMArea(77, 64, 12, 7, 30, 50); /* yellow plug for OL+AVR */ else copyXPMArea(68, 6, 12, 7, 30, 50); /* green plug for OL */ } else { /* * UPS not on-line. I.e. we are "on battery". */ if (CurHost->battery_percentage <= CriticalLevel || flag_isset(CurHost->ups_status, ST_LOWBATT)) { /* * Battery Status: Critical and discharging. */ yoffset = -11; /* Set offset for red text */ if (Toggle||(BlinkRate == 0.0)) copyXPMArea(83, 20, 12, 7, 30, 50); /* blink red battery */ } else if (CurHost->battery_percentage <= LowLevel) { /* * Battery Status: Low and discharging. */ yoffset = 41; /* Set offset for yellow text */ if (Toggle||(BlinkRate == 0.0)) copyXPMArea(69, 20, 12, 7, 30, 50); /* blink yellow battery */ } else { /* * Battery Status: Good and discharging. */ yoffset = 0; /* No offset for regular text */ if (Toggle||(BlinkRate == 0.0)) copyXPMArea(83, 6, 12, 7, 30, 50); /* blink green battery */ } } /* * If overcharged, normalize displays to 100%. */ if (CurHost->battery_percentage > 100) { batt_perc = 100; } /* * Do Battery Percentage */ copyXPMArea(75, 81, 21, 7, 6, 34); /* erase zone */ /* blink battery perc red if critical or status LB and not OL/CAL */ if (CurHost->battery_percentage >= 0 && (!( (CurHost->battery_percentage <= CriticalLevel || flag_isset(CurHost->ups_status, ST_LOWBATT)) && !flag_isset(CurHost->ups_status, ST_ONLINE) && !flag_isset(CurHost->ups_status, ST_CAL)) || Toggle || (BlinkRate == 0.0)) ) { /* displays battery percent bis */ if (batt_perc == 100){ copyXPMArea(15, 81 + yoffset, 1, 7, 7, 34); /* Show 100's */ copyXPMArea( 5, 81 + yoffset, 5, 7, 9, 34); /* Show 10's */ copyXPMArea( 5, 81 + yoffset, 5, 7, 15, 34); /* Show 1's */ copyXPMArea(64, 81 + yoffset, 5, 7, 21, 34); /* Show '%' */ } else { if (batt_perc >= 10) copyXPMArea((batt_perc / 10) * 6 + 5, 81 + yoffset, 5, 7, 9, 34); /* Show 10's */ copyXPMArea((batt_perc % 10) * 6 + 5, 81 + yoffset, 5, 7, 15, 34); /* Show 1's */ copyXPMArea(64, 81 + yoffset, 5, 7, 21, 34); /* Show '%' */ } } /* * Do Show Battery Charge Meter */ copyXPMArea(66, 31, 49, 9, 7, 21); /* erase zone */ if (CurHost->battery_percentage >= 0) { k = batt_perc * 49 / 100; if (flag_isset(CurHost->ups_status, ST_ONLINE)) { /* Show standard battery charge meter when OL */ copyXPMArea(66, 42, k, 9, 7, 21); if (k%2) copyXPMArea(66+k-1, 52, 1, 9, 7+k-1, 21); else copyXPMArea(66+k, 52, 1, 9, 7+k, 21); } else { /* Show colorful battery charge meter when not OL */ if (k%2) copyXPMArea(66, 52, k, 9, 7, 21); else copyXPMArea(66, 52, k-1, 9, 7, 21); } } } else { /* Update the counter. When it hits nMax, we will * process nut information again */ ++n; } /* Process any pending X events */ CheckX11Events(); /* Redraw and wait for next update */ RedrawWindow(); usleep(DELAY); } } void InitCom(void) { int ret; char vars[LARGEBUF]; size_t i, numq, numa; const char *query[4]; char **answer; memset(vars, 0, sizeof(vars)); /* * Check NUT daemon availability on host(s) */ GetFirstHost(); for ( i = 1; i <= Hosts.hosts_number ; i++ ) { /* Close existing com, to re-connect below? if ( &CurHost->connexion) upscli_disconnect ( &Hosts.Ups_list[i - 1]->connexion ); */ if (upscli_connect(&CurHost->connexion, CurHost->hostname, CurHost->port, UPSCLI_CONN_TRYSSL) < 0 ) { fprintf(stderr, "Error: %s\n", upscli_strerror(&CurHost->connexion)); } else { DEBUGERR("Communication established with UPS %s\n", CurHost->hostname); CurHost->comm_status = COM_OK; } query[0] = "VAR"; query[1] = CurHost->upsname; numq = 2; if ((ret = upscli_list_start(&CurHost->connexion, numq, query)) < 0) /* if (upscli_getlist(&CurHost->connexion, CurHost->upsname, UPSCLI_LIST_VARS, vars, sizeof(vars)) < 0) */ { DEBUGERR("Unable to get variable list for %s - %s\n", CurHost->upsname, upscli_strerror(&CurHost->connexion)); } else { DEBUGERR("Got variables list for %s@%s\n", CurHost->upsname, CurHost->hostname); CurHost->comm_status = COM_OK; CurHost->ups_status = 0; /* FIXME: LIST VAR seems to be necessary here (otherwise, * we got an "Error: Protocol error" => check why */ ret = upscli_list_next(&CurHost->connexion, numq, query, &numa, &answer); while (ret == 1) { /* VAR */ if (numa < 4) { DEBUGERR("Error: insufficient data " "(got %zu args, need at least 4)\n", numa); /* return EXIT_FAILURE; */ } DEBUGERR("%s: %s\n", answer[2], answer[3]); ret = upscli_list_next(&CurHost->connexion, numq, query, &numa, &answer); } } /* FIXME: With code commented away, we might in fact * have no vars because we do not fetch any */ if (strlen(vars) == 0) { DEBUGERR("%s", "No data available check your configuration (ups.conf)\n"); } GetNextHost(); } } /* init monitored UPS internal data, assume struct memory contains stack garbage */ void InitHosts(void) { size_t i; for ( i = 1 ; i <= MAX_HOSTS_NUMBER ; i++ ) { Hosts.Ups_list[i - 1] = NULL; } Hosts.hosts_number = 0; Hosts.curhosts_number = 0; } /* Clean all monitored UPS internal data */ void CleanHosts(void) { size_t i; for ( i = 1 ; i <= Hosts.hosts_number ; i++ ) { upscli_disconnect ( &Hosts.Ups_list[i - 1]->connexion ); if ( Hosts.Ups_list[i - 1] != NULL ) { if ( Hosts.Ups_list[i - 1]->upsname ) free ( Hosts.Ups_list[i - 1]->upsname ); if ( Hosts.Ups_list[i - 1]->hostname ) free ( Hosts.Ups_list[i - 1]->hostname ); free ( Hosts.Ups_list[i - 1] ); Hosts.Ups_list[i - 1] = NULL; } } Hosts.hosts_number = 0; Hosts.curhosts_number = 0; } /* Add an UPS to be monitored * return 1 on success, 0 on failure (hostname already exist, ...) */ int AddHost(char *hostname) { int nbHosts, ret; const char *query[4]; size_t numq, numa; char **answer; char newhostname[LARGEBUF]; UPSCONN_t ups; DEBUGOUT("AddHost(%s)\n", hostname); if (Hosts.hosts_number < MAX_HOSTS_NUMBER) { /* CurHost = Hosts.Ups_list[nbHosts - 1]; */ /* UPS auto discovery mode : */ if (strchr(hostname, '@') == NULL) { /* Connect to host at default port... */ if (upscli_connect(&ups, hostname, 3493, UPSCLI_CONN_TRYSSL) < 0) return 0; /* ... and retrieve UPS list */ query[0] = "UPS"; numq = 1; ret = upscli_list_start(&ups, numq, query); if (ret < 0) { return 0; /* FIXME: check for an old upsd */ } ret = upscli_list_next(&ups, numq, query, &numa, &answer); while (ret == 1) { /* UPS "" */ if (numa < 3) { fprintf(stderr, "Error: insufficient data " "(got %zu args, need at least 4)\n", numa); return 0; } DEBUGOUT("%s: %s\n", hostname, answer[1]); snprintf(newhostname, sizeof(newhostname), "%s@%s", answer[1], hostname); if (AddHost(newhostname)) { /* break; */ newhostname[0] = '\0'; } ret = upscli_list_next(&ups, numq, query, &numa, &answer); } /* if (&ups) */ /* { */ upscli_disconnect ( &ups ); /* } */ return 1; } Hosts.hosts_number++; nbHosts = Hosts.hosts_number; #if (defined HAVE_XMALLOC) && HAVE_XMALLOC Hosts.Ups_list[nbHosts - 1] = (ups_info *)xmalloc(sizeof(ups_info)); #else Hosts.Ups_list[nbHosts - 1] = (ups_info *)malloc(sizeof(ups_info)); #endif /* HAVE_XMALLOC */ if (Hosts.Ups_list[nbHosts - 1] == NULL) return 0; upscli_splitname(hostname, &Hosts.Ups_list[nbHosts - 1]->upsname, &Hosts.Ups_list[nbHosts - 1]->hostname, &Hosts.Ups_list[nbHosts - 1]->port); Hosts.Ups_list[nbHosts - 1]->hostnumber = nbHosts; Hosts.Ups_list[nbHosts - 1]->ups_status = -1; Hosts.Ups_list[nbHosts - 1]->comm_status = COM_LOST; Hosts.Ups_list[nbHosts - 1]->battery_percentage = -1; Hosts.Ups_list[nbHosts - 1]->battery_load = -1; Hosts.Ups_list[nbHosts - 1]->battery_runtime = -1; return 1; } else fprintf(stderr, "Error: Maximum number (%d) of monitored hosts reached", MAX_HOSTS_NUMBER); return 0; } void GetFirstHost(void) { Hosts.curhosts_number = 1; /* align to tab */ CurHost = Hosts.Ups_list[Hosts.curhosts_number - 1]; DEBUGOUT("(First) Monitored host : %d (%s)\n", Hosts.curhosts_number, CurHost->upsname); } int GetNextHost(void) { if (Hosts.curhosts_number < Hosts.hosts_number) Hosts.curhosts_number++; else /* loop from last to first */ Hosts.curhosts_number = 1; /* align to tab */ CurHost = Hosts.Ups_list[Hosts.curhosts_number - 1]; DEBUGOUT("(Next) Monitored host : %d (%s)\n", Hosts.curhosts_number, CurHost->upsname); return Hosts.curhosts_number; } int GetPrevHost(void) { if (Hosts.curhosts_number > 1) Hosts.curhosts_number--; else /* loop from first to last */ Hosts.curhosts_number = Hosts.hosts_number; /* align to tab */ CurHost = Hosts.Ups_list[Hosts.curhosts_number - 1]; DEBUGOUT("(Prev) Monitored host : %d (%s)\n", Hosts.curhosts_number, CurHost->hostname); return Hosts.curhosts_number; } wmnut-0.72/src/wmnut.h000066400000000000000000000071151505630336300147360ustar00rootroot00000000000000/* * wmnut.h -- Header file for WMNUT * * Copyright (C) * 2002 - 2012 Arnaud Quette * 2022 - 2025 Jim Klimov * 2024 desertwitch * * 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, 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 (see the file COPYING); if not, write to the * Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * */ #ifndef WMNUT_H_INCLUDED #define WMNUT_H_INCLUDED #include "wmnut-common.h" #include "wmgeneral.h" /* X11 includes */ #include #include /* pixmaps */ #include "wmnut_master.xpm" #include "wmnut_master_LowColor.xpm" #include "wmnut_mask.xbm" #define DELAY 10000L /* Delay between refreshes (in microseconds) */ /* Communication status definition */ #define COM_LOST 0 #define COM_OK 1 #define COM_NONE -1 #define COM_UDP 0 #define COM_TCP 1 /* 0 for UDP, 1 for TCP, -1 for not init'ed */ /* General codes definition */ #define VARNOTSUPP -2 #define NOK -1 #define OK 1 #define OFF 0 #define ON 1 /* UPS status flags definition */ #define ST_ONLINE (1 << 0) /* UPS is on line */ #define ST_ONBATT (1 << 1) /* UPS is on battery */ #define ST_LOWBATT (1 << 2) /* UPS is on low battery */ #define ST_FSD (1 << 3) /* UPS is shutting down */ #define ST_REPLBATT (1 << 4) /* UPS battery needs replacement */ #define ST_CAL (1 << 5) /* UPS is calibrating */ #define ST_OFF (1 << 6) /* UPS is (administratively) offline */ #define ST_BYPASS (1 << 7) /* UPS is on bypass */ #define ST_OVERLOAD (1 << 8) /* UPS is overloaded */ #define ST_TRIM (1 << 9) /* UPS is trimming */ #define ST_BOOST (1 << 10) /* UPS is boosting */ #define ST_ALARM (1 << 11) /* UPS has active alarm(s) */ /* structure to map UPS status to UPS status flags */ struct { const char *status; int flag; } ups_status_flags[] = { {"OL", ST_ONLINE}, {"OB", ST_ONBATT}, {"LB", ST_LOWBATT}, {"FSD", ST_FSD}, {"RB", ST_REPLBATT}, {"CAL", ST_CAL}, {"OFF", ST_OFF}, {"BYPASS", ST_BYPASS}, {"OVER", ST_OVERLOAD}, {"TRIM", ST_TRIM}, {"BOOST", ST_BOOST}, {"ALARM", ST_ALARM}, }; /* structure to monitor an UPS unit */ typedef struct ups_info { int hostnumber; char *upsname; char *hostname; UPSCONN_t connexion; uint16_t port; int ups_status; /* -1 if not init'ed */ int comm_status; /* -1 if not init'ed, -2 if not available */ int battery_percentage; /* -1 if not init'ed, -2 if not available */ int battery_load; /* -1 if not init'ed, -2 if not available */ int battery_runtime; /* -1 if not init'ed, -2 if not available */ } ups_info; /* * struct to monitor multiple hosts */ #define MAX_HOSTS_NUMBER 9 /* For 1-based end-user widget count, single non-zero digit */ typedef struct nut_info { int hosts_number; /* total number of hosts */ int curhosts_number; /* number of the currently displayed host */ ups_info *Ups_list[MAX_HOSTS_NUMBER]; /* list of monitored UPSs (from 1 to 9) */ } nut_info; #endif /* WMNUT_H_INCLUDED */ wmnut-0.72/src/wmnut_mask.xbm000066400000000000000000000052531505630336300163110ustar00rootroot00000000000000#define wmnut_mask_width 64 #define wmnut_mask_height 64 static unsigned char wmnut_mask_bits[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff, 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff, 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff, 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff, 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0, 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f, 0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff, 0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff, 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff, 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff, 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff, 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0, 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f, 0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff, 0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff, 0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff, 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff, 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff, 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff, 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0, 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7, 0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff, 0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff, 0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7, 0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff, 0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0, 0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f,0xf0,0xff,0xe7,0xff,0xff,0xe7,0xff,0x0f, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00}; wmnut-0.72/src/wmnut_master.xpm000066400000000000000000000471171505630336300166740ustar00rootroot00000000000000/* XPM */ static char * wmnut_master[] = { "129 144 43 1", " c #708090", ". c #000000", "+ c #282828", "@ c #D3D3D3", "# c #00E500", "$ c #E90000", "% c #00445A", "& c #00B0EA", "* c #006B8E", "= c #E9E900", "- c #F7F7FF", "; c #00FF00", "> c #888888", ", c #A8A8A8", "' c #B2B2B2", ") c #FF0000", "! c #FF2600", "~ c #FF4C00", "{ c #FF7200", "] c #FF9800", "^ c #FFBD00", "/ c #FFC500", "( c #FFCD00", "_ c #FFD500", ": c #FFDD00", "< c #FFE500", "[ c #FFEA00", "} c #FFEF00", "| c #FFF400", "1 c #FFFA00", "2 c #FFFF00", "3 c #DFFF00", "4 c #BFFF00", "5 c #9FFF00", "6 c #7FFF00", "7 c #5FFF00", "8 c #3FFF00", "9 c #1FFF00", "0 c #FFFFFF", "a c #3C0000", "b c #4C3C00", "c c #003900", "d c #48484A", " ", " ", " ", " ", " ........................................................ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ ++++++++++++++++++++++++++++++ ++++++++++++++++++++ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ +++++++#####+++++##########+++ ++$$$+++###+++%%%+++ ", " .++###++++++++++++&&&&++++&&&&+++++++++&&&&++++&&&&++++@ ++++++#++++###+++#++++++++#+++ +$+++$+#+++#+%+++%++ ", " .+#+++#++++++++++&++++&++&++++&+++*&++&++++&++&++++&+++@ ++++++#++++#+++++#++++++++##++ +$+++++#+++++%++++++ ", " .+#++++++++++&+++&++++&++&++++&+++*&++&++++&++&++++&+++@ ++++###++++#+++++#++++++++##++ +$+++++#+++++%++++++ ", " .+#++++++++++&+++&++++&++&++++&+++++++&++++&++&++++&+++@ +++#++#++++###+++#++++++++##++ +$+++++#+++++%++++++ ", " .+#++++++++&&&&&+*%%%%*++*%%%%*+++++++*%%%%*++*%%%%*+++@ +++#+++#####+++++#++++++++#+++ +$+++$+#+++#+%+++%++ ", " .+#+++#++++++&+++&++++&++&++++&+++++++&++++&++&++++&+++@ +++#+++++++++++++##########+++ ++$$$+++###+++%%%+++ ", " .++###+++++++&+++&++++&++&++++&+++*&++&++++&++&++++&+++@ ++++++++++++++++++++++++++++++ ++++++++++++++++++++ ", " .++++++++++++++++&++++&++&++++&+++*&++&++++&++&++++&+++@ ++++++++++++++++++++++++++++++ ", " .+++++++++++++++++&&&&++++&&&&+++++++++&&&&++++&&&&++++@ ", " .++%%%+%+%+%+%+++++++++++++++++++++++++++++++++++++++++@ ", " .++%+%+%+%+%%+%++++++++++++++++++++++++++++++++++++++++@ ", " .++%%%+%+%+%+++++++++++++++++++++++++++++++++++++++++++@ ", " .++%+%++%++%+++++++++++++++++++++++++++++++++++++++++++@ ++++++++++++++++++++++++++++++ ++++++++++++++ ++++++++++++++ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ +++==========++++$$$$$$$$$$+++ ++%%%%%%%%%%++ ++$$$$$$$$$$++ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ +++=++++++++=++++$++++++++$+++ ++%++++++++%++ ++$-$$$-$-$$++ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ +++=++++++++==+++$++++++++$$++ ++%++++++++%%+ ++$$-$-$$-$$$+ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ +++=++++++++==+++$++++++++$$++ ++%++++++++%%+ ++$$$-$$$-$$$+ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ +++=++++++++==+++$++++++++$$++ ++%++++++++%%+ ++$$-$-$$$$$$+ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ +++=++++++++=++++$++++++++$+++ ++%++++++++%++ ++$-$$$-$-$$++ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ +++==========++++$$$$$$$$$$+++ ++%%%%%%%%%%++ ++$$$$$$$$$$++ ", " .++&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+++@ ++++++++++++++++++++++++++++++ ++++++++++++++ ++++++++++++++ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ ++++++++++++++++++++++++++++++ ++++++++++++++ ++++++++++++++ ", " .++$+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+;+++@ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++*++&&&+++&&&+++&++++++++++++++%++%%%+++%%%+++%++++++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++&+&+++&+&+++&+&+&+&+++++++++++%+%+++%+%+++%+%+%+%+++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++&+&+++&+&+++&++&+&++++++++++++%+%+++%+%+++%++%+%++++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++*+*%%%*+*%%%*+++&+++++++++++++%+%%%%%+%%%%%+++%+++++@ %+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+% ", " .++&+&+++&+&+++&++&+&++++++++++++%+%+++%+%+++%++%+%++++@ +++++++++++++++++++++++++++++++++++++++++++++++++ ", " .++&+&+++&+&+++&+&+&+&+++++++++++%+%+++%+%+++%+%+%+%+++@ $+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " .++&++&&&+++&&&+++++&++++++++++++%++%%%+++%%%+++++%++++@ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " .++++++++++++++++++++++++++++++++++++++++++++++++++++++@ &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " ............... ........................ ............... &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " .------------>@ .++++++++++++++++++++++@ +------------>@ &+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " .-,,,,,,,,,,'.@ .++&&&&++++++++++++++++@ +-',,,,,,,,,,.@ +++++++++++++++++++++++++++++++++++++++++++++++++ ", " .-,,,,,,.,,,'.@ .+&++++&+++++++++++++++@ +-',,,.,,,,,,.@ $+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " .-,,,,,..,,,'.@ .+&++++&+++++++++++++++@ +-',,,..,,,,,.@ ", " .-,,,,...,,,'.@ .+&++++&+++++++++++++++@ +-',,,...,,,,.@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " .-,,,....,,,'.@ .+*%%%%*+++++++++++++++@ +-',,,....,,,.@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " .-,,,,...,,,'.@ .+&++++&+++++++++++++++@ +-',,,...,,,,.@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " .-,,,,,..,,,'.@ .+&++++&+++++++++++++++@ +-',,,..,,,,,.@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " .-,,,,,,.,,,'.@ .+&++++&+++++++++++++++@ +-',,,.,,,,,,.@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " .-,,,,,,,,,,'.@ .++&&&&++++++++++++++++@ +-',,,,,,,,,,.@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " .>............@ .++++++++++++++++++++++@ +>............@ )+)+!+~+{+]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+; ", " @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@ +++++++++++++++++++++++++++++++++++++++++++++++++ ", " $+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+; ", " ", " ", " ++++++++++++++ ++++++++++++++ ++++++++++++++ ", " ++++++=====+++ ++++++$$$$$+++ ++,,,,,,,,,,++ ", " +++++=++++===+ +++++$++++$$$+ ++,++++++++,++ ", " +++++=++++=+++ +++++$++++$+++ ++,+0+++0++,,+ ", " +++===++++=+++ +++$$$++++$+++ ++,+-+0+-+0,,+ ", " ++=++=++++===+ ++$++$++++$$$+ ++,+-+-+-+-,,+ ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++=+++=====+++ ++$+++$$$$$+++ ++,++++++++,++ ", " ++)))+++%%%)+)))))+)))))+)%%%)+)))))+)))))+)))))+)))))+)))))++)+++++++ ++=+++++++++++ ++$+++++++++++ ++,,,,,,,,,,++ ", " +)+++)+%+++)+%+++)+%+++)+)+++)+)+++%+)+++%+%+++)+)+++)+)+++)+)+)+)++++ ++++++++++++++ ++++++++++++++ ++++++++++++++ ", " +)+++)+%+++)+%+++)+%+++)+)+++)+)+++%+)+++%+%+++)+)+++)+)+++)++)+)+++)+ ++++++++++++++ ", " +)%%%)++%%%)+)))))++))))+)))))+)))))+)))))++%%%)+)))))+)))))+++)++++++ ++++++++++++++ ++++++++++++++ ", " +)+++)+%+++)+)+++%+%+++)+%+++)+%+++)+)+++)+%+++)+)+++)+%+++)++)+)+++++ +%%%+%+%+%+%++ +&&&+&+&+&+&++ ", " +)+++)+%+++)+)+++%+%+++)+%+++)+%+++)+)+++)+%+++)+)+++)+%+++)+)+)+)++)+ +%+%+%+%+%%+%+ +&+&+&+&+&&+&+ ", " ++)))+++%%%)+)))))+)))))++%%%)+)))))+)))))++%%%)+)))))+)))))++++)+++++ +%%%+%+%+%++++ +&&&+&+&+&++++ ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +%+%++%++%++++ +&+&++&++&++++ ", " ++++++++++++++ ++++++++++++++ ", " ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++ +++++++++++++++++++++ ", " ++&&&+++%%%*+*&&&*+*&&&*+*%%%*+*&&&*+*&&&*+*&&&*+*&&&*+*&&&*++&+++++++ +%++%%%+++%%%+++%++++ +%++%%%+++%%%++++++++ ", " +&+++&+%+++&+%+++&+%+++&+&+++&+&+++%+&+++%+%+++&+&+++&+&+++&+&+&+&++++ +%+%+++%+%+++%+%+%+%+ +%+%+++%+%+++%+++++++ ", " +&+++&+%+++&+%+++&+%+++&+&+++&+&+++%+&+++%+%+++&+&+++&+&+++&++&+&+++&+ +%+%+++%+%+++%++%+%++ +%+%+++%+%+++%+++++++ ", " +*%%%*++%%%*+*&&&*++&&&*+*&&&*+*&&&*+*&&&*++%%%*+*&&&*+*&&&*+++&++++++ +%+%%%%%+%%%%%+++%+++ +%+%%%%%+%%%%%+++++++ ", " +&+++&+%+++&+&+++%+%+++&+%+++&+%+++&+&+++&+%+++&+&+++&+%+++&++&+&+++++ +%+%+++%+%+++%++%+%++ +%+%+++%+%+++%+++++++ ", " +&+++&+%+++&+&+++%+%+++&+%+++&+%+++&+&+++&+%+++&+&+++&+%+++&+&+&+&++&+ +%+%+++%+%+++%+%+%+%+ +%+%+++%+%+++%+++++++ ", " ++&&&+++%%%&+*&&&*+*&&&*++%%%*+*&&&*+*&&&*++%%%*+*&&&*+*&&&*++++&+++++ +%++%%%+++%%%+++++%++ +%++%%%+++%%%++++++++ ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++ +++++++++++++++++++++ ", " ", " ", " ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++&&&&+++%%%%*+*&&&&*+*&&&&*+*%%%%*+*&&&&*+*&&&&*+*&&&&*+*&&&&*+*&&&&*++++++ ++++++++&&&&++++&&&&+++++++++&&&&++++&&&&+++ ", " +&++++&+%++++&+%++++&+%++++&+&++++&+&++++%+&++++%+%++++&+&++++&+&++++&++*&++ +++++++&++++&++&++++&+++*&++&++++&++&++++&++ ", " +&++++&+%++++&+%++++&+%++++&+&++++&+&++++%+&++++%+%++++&+&++++&+&++++&++*&++ +++&+++&++++&++&++++&+++*&++&++++&++&++++&++ ", " +&++++&+%++++&+%++++&+%++++&+&++++&+&++++%+&++++%+%++++&+&++++&+&++++&++++++ +++&+++&++++&++&++++&+++++++&++++&++&++++&++ ", " +*%%%%*++%%%%*+*&&&&*+*&&&&*+*&&&&*+*&&&&*+*&&&&*++%%%%*+*&&&&*+*&&&&*++++++ +&&&&&+*%%%%*++*%%%%*+++++++*%%%%*++*%%%%*++ ", " +&++++&+%++++&+&++++%+%++++&+%++++&+%++++&+&++++&+%++++&+&++++&+%++++&++++++ +++&+++&++++&++&++++&+++++++&++++&++&++++&++ ", " +&++++&+%++++&+&++++%+%++++&+%++++&+%++++&+&++++&+%++++&+&++++&+%++++&++*&++ +++&+++&++++&++&++++&+++*&++&++++&++&++++&++ ", " +&++++&+%++++&+&++++%+%++++&+%++++&+%++++&+&++++&+%++++&+&++++&+%++++&++*&++ +++++++&++++&++&++++&+++*&++&++++&++&++++&++ ", " ++&&&&+++%%%%*+*&&&&*+*&&&&*++%%%%*+*&&&&*+*&&&&*++%%%%*+*&&&&*+*&&&&*++++++ ++++++++&&&&++++&&&&+++++++++&&&&++++&&&&+++ ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ", " ", " ++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " +............>+++............>++ +++------------>++------------>+ ++++++++%%%%++++%%%%+++++++++%%%%++++%%%%+++ ", " +.,,,,,,,,,,'-+++.',,,,,,,,,,-++ +++-,,,,,,,,,,'.++-',,,,,,,,,,.+ +++++++%++++%++%++++%+++*&++%++++%++%++++%++ ", " +.,,,,,,.,,,'-+++.',,,.,,,,,,-++ +++-,,,,,,.,,,'.++-',,,.,,,,,,.+ +++++++%++++%++%++++%+++*&++%++++%++%++++%++ ", " +.,,,,,..,,,'-+++.',,,..,,,,,-++ +++-,,,,,..,,,'.++-',,,..,,,,,.+ +++++++%++++%++%++++%+++++++%++++%++%++++%++ ", " +.,,,,...,,,'-+++.',,,...,,,,-++ +++-,,,,...,,,'.++-',,,...,,,,.+ +&&&&&+*&&&&*++*&&&&*+++++++*&&&&*++*&&&&*++ ", " +.,,,....,,,'-+++.',,,....,,,-++ +++-,,,....,,,'.++-',,,....,,,.+ +++++++%++++%++%++++%+++++++%++++%++%++++%++ ", " +.,,,,...,,,'-+++.',,,...,,,,-++ +++-,,,,...,,,'.++-',,,...,,,,.+ +++++++%++++%++%++++%+++*&++%++++%++%++++%++ ", " +.,,,,,..,,,'-+++.',,,..,,,,,-++ +++-,,,,,..,,,'.++-',,,..,,,,,.+ +++++++%++++%++%++++%+++*&++%++++%++%++++%++ ", " +.,,,,,,.,,,'-+++.',,,.,,,,,,-++ +++-,,,,,,.,,,'.++-',,,.,,,,,,.+ ++++++++%%%%++++%%%%+++++++++%%%%++++%%%%+++ ", " +.,,,,,,,,,,'-+++.',,,,,,,,,,-++ +++-,,,,,,,,,,'.++-',,,,,,,,,,.+ ++++++++++++++++++++++++++++++++++++++++++++ ", " +>------------+++>------------++ +++>............++>............+ ", " ++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++ ", " ++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++++++++++++++++++++++++++++++++++++++++++++ ", " ++++++++++++++++++++++++++++++++++++++++++++ ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++===+++%%%=+=====+=====+=%%%=+=====+=====+=====+=====+=====++=+++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " +=+++=+%+++=+%+++=+%+++=+=+++=+=+++%+=+++%+%+++=+=+++=+=+++=+=+=+=++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " +=+++=+%+++=+%+++=+%+++=+=+++=+=+++%+=+++%+%+++=+=+++=+=+++=++=+=+++=+ ++++aa++++bb++++cc++++++$$++++==++++##++++++ ", " +=%%%=++%%%=+=====++====+=====+=====+=====++%%%=+=====+=====+++=++++++ +++adaa++bdbb++cdcc++++$-$$++=-==++#-##+++++ ", " +=+++=+%+++=+=+++%+%+++=+%+++=+%+++=+=+++=+%+++=+=+++=+%+++=++=+=+++++ +++aaaa++bbbb++cccc++++$$$$++====++####+++++ ", " +=+++=+%+++=+=+++%+%+++=+%+++=+%+++=+=+++=+%+++=+=+++=+%+++=+=+=+=++=+ ++++aa++++bb++++cc++++++$$++++==++++##++++++ ", " ++===+++%%%=+=====+=====++%%%=+=====+=====++%%%=+=====+=====++++=+++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++++++++++++++++++++++++++++++++++++++++++++ ", " ++++++++++++++ ++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++))++))++)))+ ++,,,+,,,+,,,+ +++++++++ +++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++)++)++)+)+)+ ++,+,+,+++,+++ +++++++++ +++++++++ ++++++++++++++++++++++++++++++++++++++++++++ ", " ++)++)++++)+)+ ++,+,+,+++,+++ ++)+)+)++ +++++++++ ", " ++))++))++)+)+ ++,+,+,,,+,,,+ ++)+)+)++ +++++++++ ", " ++)+++++)+)+)+ ++,+,+,+++,+++ ++)+)+)++ +++++++++ ", " ++)++)++)+)+)+ ++,+,+,+++,+++ +++++++++ +++++++++ ", " ++)+++))++)))+ ++,,,+,+++,+++ ++)+)+)++ +++++++++ ", " ++++++++++++++ ++++++++++++++ +++++++++ +++++++++ ", " ++++++++++++++ ++++++++++++++ +++++++++ +++++++++ ", " ", " ", " "}; wmnut-0.72/src/wmnut_master_LowColor.xpm000066400000000000000000000462501505630336300205110ustar00rootroot00000000000000/* XPM */ static char * wmnut_master_LowColor[] = { "129 144 16 1", " c #000000", ". c #3B0100", "+ c #272826", "@ c #EC0001", "# c #2D3C00", "$ c #024458", "% c #FF1000", "& c #066B8F", "* c #6D8091", "= c #00B1EA", "- c #A8AAA7", "; c #34EF00", "> c #FFB400", ", c #D2D4D1", "' c #ECEA00", ") c #F7F7FF", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "**** *********************************************************************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******++++++++++++++++++++++++++++++*++++++++++++++++++++************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******+++++++;;;;;+++++;;;;;;;;;;+++*++@@@+++;;;+++$$$+++************", "**** ++;;;++++++++++++====++++====+++++++++====++++====++++,******++++++;++++;;;+++;++++++++;+++*+@+++@+;+++;+$+++$++************", "**** +;+++;++++++++++=++++=++=++++=+++&=++=++++=++=++++=+++,******++++++;++++;+++++;++++++++;;++*+@+++++;+++++$++++++************", "**** +;++++++++++=+++=++++=++=++++=+++&=++=++++=++=++++=+++,******++++;;;++++;+++++;++++++++;;++*+@+++++;+++++$++++++************", "**** +;++++++++++=+++=++++=++=++++=+++++++=++++=++=++++=+++,******+++;++;++++;;;+++;++++++++;;++*+@+++++;+++++$++++++************", "**** +;++++++++=====+&$$$$&++&$$$$&+++++++&$$$$&++&$$$$&+++,******+++;+++;;;;;+++++;++++++++;+++*+@+++@+;+++;+$+++$++************", "**** +;+++;++++++=+++=++++=++=++++=+++++++=++++=++=++++=+++,******+++;+++++++++++++;;;;;;;;;;+++*++@@@+++;;;+++$$$+++************", "**** ++;;;+++++++=+++=++++=++=++++=+++&=++=++++=++=++++=+++,******++++++++++++++++++++++++++++++*++++++++++++++++++++************", "**** ++++++++++++++++=++++=++=++++=+++&=++=++++=++=++++=+++,******++++++++++++++++++++++++++++++*********************************", "**** +++++++++++++++++====++++====+++++++++====++++====++++,*********************************************************************", "**** ++$$$+$+$+$+$+++++++++++++++++++++++++++++++++++++++++,*********************************************************************", "**** ++$+$+$+$+$$+$++++++++++++++++++++++++++++++++++++++++,*********************************************************************", "**** ++$$$+$+$+$+++++++++++++++++++++++++++++++++++++++++++,*********************************************************************", "**** ++$+$++$++$+++++++++++++++++++++++++++++++++++++++++++,******++++++++++++++++++++++++++++++*++++++++++++++*++++++++++++++***", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******+++''''''''''++++@@@@@@@@@@+++*++$$$$$$$$$$++*++@@@@@@@@@@++***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******+++'++++++++'++++@++++++++@+++*++$++++++++$++*++@)@@@)@)@@++***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******+++'++++++++''+++@++++++++@@++*++$++++++++$$+*++@@)@)@@)@@@+***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******+++'++++++++''+++@++++++++@@++*++$++++++++$$+*++@@@)@@@)@@@+***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******+++'++++++++''+++@++++++++@@++*++$++++++++$$+*++@@)@)@@@@@@+***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******+++'++++++++'++++@++++++++@+++*++$++++++++$++*++@)@@@)@)@@++***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******+++''''''''''++++@@@@@@@@@@+++*++$$$$$$$$$$++*++@@@@@@@@@@++***", "**** ++=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+++,******++++++++++++++++++++++++++++++*++++++++++++++*++++++++++++++***", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******++++++++++++++++++++++++++++++*++++++++++++++*++++++++++++++***", "**** ++@+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;+++,*********************************************************************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,*********************************************************************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++&++===+++===+++=++++++++++++++$++$$$+++$$$+++$++++++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++=+=+++=+=+++=+=+=+=+++++++++++$+$+++$+$+++$+$+$+$+++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++=+=+++=+=+++=++=+=++++++++++++$+$+++$+$+++$++$+$++++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++&+&$$$&+&$$$&+++=+++++++++++++$+$$$$$+$$$$$+++$+++++,******$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$+$**************", "**** ++=+=+++=+=+++=++=+=++++++++++++$+$+++$+$+++$++$+$++++,******+++++++++++++++++++++++++++++++++++++++++++++++++**************", "**** ++=+=+++=+=+++=+=+=+=+++++++++++$+$+++$+$+++$+$+$+$+++,******@+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "**** ++=++===+++===+++++=++++++++++++$++$$$+++$$$+++++$++++,*********************************************************************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,*********************************************************************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "**** ++++++++++++++++++++++++++++++++++++++++++++++++++++++,******=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "****,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,******=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "******************************************************************=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "******************************************************************=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "**** * * ******=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "**** ))))))))))))-,* ++++++++++++++++++++++,*+))))))))))))-,******=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "**** )----------- ,* ++====++++++++++++++++,*+)----------- ,******+++++++++++++++++++++++++++++++++++++++++++++++++**************", "**** )------ ---- ,* +=++++=+++++++++++++++,*+)---- ------ ,******@+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "**** )----- ---- ,* +=++++=+++++++++++++++,*+)---- ----- ,*********************************************************************", "**** )---- ---- ,* +=++++=+++++++++++++++,*+)---- ---- ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "**** )--- ---- ,* +&$$$$&+++++++++++++++,*+)---- --- ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "**** )---- ---- ,* +=++++=+++++++++++++++,*+)---- ---- ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "**** )----- ---- ,* +=++++=+++++++++++++++,*+)---- ----- ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "**** )------ ---- ,* +=++++=+++++++++++++++,*+)---- ------ ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "**** )----------- ,* ++====++++++++++++++++,*+)----------- ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "**** - ,* ++++++++++++++++++++++,*+- ,******%+%+%+%+%+>+>+>+>+>+'+'+'+'+'+'+'+'+'+;+;+;+;+;+;**************", "****,,,,,,,,,,,,,,,*,,,,,,,,,,,,,,,,,,,,,,,,*,,,,,,,,,,,,,,,******+++++++++++++++++++++++++++++++++++++++++++++++++**************", "******************************************************************@+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+;**************", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "****************************************************************************++++++++++++++*++++++++++++++*++++++++++++++*********", "****************************************************************************++++++'''''+++*++++++@@@@@+++*++----------++*********", "****************************************************************************+++++'++++'''+*+++++@++++@@@+*++-++++++++-++*********", "****************************************************************************+++++'++++'+++*+++++@++++@+++*++-+)+++)++--+*********", "****************************************************************************+++'''++++'+++*+++@@@++++@+++*++-+)+)+)+)--+*********", "****************************************************************************++'++'++++'''+*++@++@++++@@@+*++-+)+)+)+)--+*********", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++**++'+++'''''+++*++@+++@@@@@+++*++-++++++++-++*********", "****++%%%+++$$$%+%%%%%+%%%%%+%$$$%+%%%%%+%%%%%+%%%%%+%%%%%+%%%%%++%+++++++**++'+++++++++++*++@+++++++++++*++----------++*********", "****+%+++%+$+++%+$+++%+$+++%+%+++%+%+++$+%+++$+$+++%+%+++%+%+++%+%+%+%++++**++++++++++++++*++++++++++++++*++++++++++++++*********", "****+%+++%+$+++%+$+++%+$+++%+%+++%+%+++$+%+++$+$+++%+%+++%+%+++%++%+%+++%+********************************++++++++++++++*********", "****+%$$$%++$$$%+%%%%%++%%%%+%%%%%+%%%%%+%%%%%++$$$%+%%%%%+%%%%%+++%++++++**++++++++++++++*++++++++++++++************************", "****+%+++%+$+++%+%+++$+$+++%+$+++%+$+++%+%+++%+$+++%+%+++%+$+++%++%+%+++++**+$$$+$+$+$+$++*+===+=+=+=+=++************************", "****+%+++%+$+++%+%+++$+$+++%+$+++%+$+++%+%+++%+$+++%+%+++%+$+++%+%+%+%++%+**+$+$+$+$+$$+$+*+=+=+=+=+==+=+************************", "****++%%%+++$$$%+%%%%%+%%%%%++$$$%+%%%%%+%%%%%++$$$%+%%%%%+%%%%%++++%+++++**+$$$+$+$+$++++*+===+=+=+=++++************************", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++**+$+$++$++$++++*+=+=++=++=++++************************", "****************************************************************************++++++++++++++*++++++++++++++************************", "*********************************************************************************************************************************", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*+++++++++++++++++++++*+++++++++++++++++++++***********", "****++===+++$$$&+&===&+&===&+&$$$&+&===&+&===&+&===&+&===&+&===&++=+++++++*+$++$$$+++$$$+++$++++*+$++$$$+++$$$++++++++***********", "****+=+++=+$+++=+$+++=+$+++=+=+++=+=+++$+=+++$+$+++=+=+++=+=+++=+=+=+=++++*+$+$+++$+$+++$+$+$+$+*+$+$+++$+$+++$+++++++***********", "****+=+++=+$+++=+$+++=+$+++=+=+++=+=+++$+=+++$+$+++=+=+++=+=+++=++=+=+++=+*+$+$+++$+$+++$++$+$++*+$+$+++$+$+++$+++++++***********", "****+&$$$&++$$$&+&===&++===&+&===&+&===&+&===&++$$$&+&===&+&===&+++=++++++*+$+$$$$$+$$$$$+++$+++*+$+$$$$$+$$$$$+++++++***********", "****+=+++=+$+++=+=+++$+$+++=+$+++=+$+++=+=+++=+$+++=+=+++=+$+++=++=+=+++++*+$+$+++$+$+++$++$+$++*+$+$+++$+$+++$+++++++***********", "****+=+++=+$+++=+=+++$+$+++=+$+++=+$+++=+=+++=+$+++=+=+++=+$+++=+=+=+=++=+*+$+$+++$+$+++$+$+$+$+*+$+$+++$+$+++$+++++++***********", "****++===+++$$$=+&===&+&===&++$$$&+&===&+&===&++$$$&+&===&+&===&++++=+++++*+$++$$$+++$$$+++++$++*+$++$$$+++$$$++++++++***********", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*+++++++++++++++++++++*+++++++++++++++++++++***********", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++**++++++++++++++++++++++++++++++++++++++++++++***", "****++====+++$$$$&+&====&+&====&+&$$$$&+&====&+&====&+&====&+&====&+&====&++++++**++++++++====++++====+++++++++====++++====+++***", "****+=++++=+$++++=+$++++=+$++++=+=++++=+=++++$+=++++$+$++++=+=++++=+=++++=++&=++**+++++++=++++=++=++++=+++&=++=++++=++=++++=++***", "****+=++++=+$++++=+$++++=+$++++=+=++++=+=++++$+=++++$+$++++=+=++++=+=++++=++&=++**+++=+++=++++=++=++++=+++&=++=++++=++=++++=++***", "****+=++++=+$++++=+$++++=+$++++=+=++++=+=++++$+=++++$+$++++=+=++++=+=++++=++++++**+++=+++=++++=++=++++=+++++++=++++=++=++++=++***", "****+&$$$$&++$$$$&+&====&+&====&+&====&+&====&+&====&++$$$$&+&====&+&====&++++++**+=====+&$$$$&++&$$$$&+++++++&$$$$&++&$$$$&++***", "****+=++++=+$++++=+=++++$+$++++=+$++++=+$++++=+=++++=+$++++=+=++++=+$++++=++++++**+++=+++=++++=++=++++=+++++++=++++=++=++++=++***", "****+=++++=+$++++=+=++++$+$++++=+$++++=+$++++=+=++++=+$++++=+=++++=+$++++=++&=++**+++=+++=++++=++=++++=+++&=++=++++=++=++++=++***", "****+=++++=+$++++=+=++++$+$++++=+$++++=+$++++=+=++++=+$++++=+=++++=+$++++=++&=++**+++++++=++++=++=++++=+++&=++=++++=++=++++=++***", "****++====+++$$$$&+&====&+&====&++$$$$&+&====&+&====&++$$$$&+&====&+&====&++++++**++++++++====++++====+++++++++====++++====+++***", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++**++++++++++++++++++++++++++++++++++++++++++++***", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "****++++++++++++++++++++++++++++++++***++++++++++++++++++++++++++++++++***********++++++++++++++++++++++++++++++++++++++++++++***", "****+ -+++ -++***+++))))))))))))-++))))))))))))-+***********++++++++$$$$++++$$$$+++++++++$$$$++++$$$$+++***", "****+ -----------)+++ -----------)++***+++)----------- ++)----------- +***********+++++++$++++$++$++++$+++&=++$++++$++$++++$++***", "****+ ------ ----)+++ ---- ------)++***+++)------ ---- ++)---- ------ +***********+++++++$++++$++$++++$+++&=++$++++$++$++++$++***", "****+ ----- ----)+++ ---- -----)++***+++)----- ---- ++)---- ----- +***********+++++++$++++$++$++++$+++++++$++++$++$++++$++***", "****+ ---- ----)+++ ---- ----)++***+++)---- ---- ++)---- ---- +***********+=====+&====&++&====&+++++++&====&++&====&++***", "****+ --- ----)+++ ---- ---)++***+++)--- ---- ++)---- --- +***********+++++++$++++$++$++++$+++++++$++++$++$++++$++***", "****+ ---- ----)+++ ---- ----)++***+++)---- ---- ++)---- ---- +***********+++++++$++++$++$++++$+++&=++$++++$++$++++$++***", "****+ ----- ----)+++ ---- -----)++***+++)----- ---- ++)---- ----- +***********+++++++$++++$++$++++$+++&=++$++++$++$++++$++***", "****+ ------ ----)+++ ---- ------)++***+++)------ ---- ++)---- ------ +***********++++++++$$$$++++$$$$+++++++++$$$$++++$$$$+++***", "****+ -----------)+++ -----------)++***+++)----------- ++)----------- +***********++++++++++++++++++++++++++++++++++++++++++++***", "****+-))))))))))))+++-))))))))))))++***+++- ++- +**********************************************************", "****++++++++++++++++++++++++++++++++***++++++++++++++++++++++++++++++++**********************************************************", "****++++++++++++++++++++++++++++++++***++++++++++++++++++++++++++++++++***********++++++++++++++++++++++++++++++++++++++++++++***", "**********************************************************************************++++++++++++++++++++++++++++++++++++++++++++***", "**********************************************************************************++++++++++++++++++++++++++++++++++++++++++++***", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++********++++++++++++++++++++++++++++++++++++++++++++***", "****++'''+++$$$'+'''''+'''''+'$$$'+'''''+'''''+'''''+'''''+'''''++'+++++++********++++++++++++++++++++++++++++++++++++++++++++***", "****+'+++'+$+++'+$+++'+$+++'+'+++'+'+++$+'+++$+$+++'+'+++'+'+++'+'+'+'++++********++++++++++++++++++++++++++++++++++++++++++++***", "****+'+++'+$+++'+$+++'+$+++'+'+++'+'+++$+'+++$+$+++'+'+++'+'+++'++'+'+++'+********++++..++++##++++##++++++@@++++''++++;;++++++***", "****+'$$$'++$$$'+'''''++''''+'''''+'''''+'''''++$$$'+'''''+'''''+++'++++++********+++.+..++#+##++#+##++++@)@@++')''++;);;+++++***", "****+'+++'+$+++'+'+++$+$+++'+$+++'+$+++'+'+++'+$+++'+'+++'+$+++'++'+'+++++********+++....++####++####++++@@@@++''''++;;;;+++++***", "****+'+++'+$+++'+'+++$+$+++'+$+++'+$+++'+'+++'+$+++'+'+++'+$+++'+'+'+'++'+********++++..++++##++++##++++++@@++++''++++;;++++++***", "****++'''+++$$$'+'''''+'''''++$$$'+'''''+'''''++$$$'+'''''+'''''++++'+++++********++++++++++++++++++++++++++++++++++++++++++++***", "****++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++********++++++++++++++++++++++++++++++++++++++++++++***", "**********************************************************************************++++++++++++++++++++++++++++++++++++++++++++***", "****++++++++++++++*++++++++++++++*************************************************++++++++++++++++++++++++++++++++++++++++++++***", "****++%%++%%++%%%+*++---+---+---+*+++++++++*+++++++++*****************************++++++++++++++++++++++++++++++++++++++++++++***", "****++%++%++%+%+%+*++-+-+-+++-+++*+++++++++*+++++++++*****************************++++++++++++++++++++++++++++++++++++++++++++***", "****++%++%++++%+%+*++-+-+-+++-+++*++%+%+%++*+++++++++****************************************************************************", "****++%%++%%++%+%+*++-+-+---+---+*++%+%+%++*+++++++++****************************************************************************", "****++%+++++%+%+%+*++-+-+-+++-+++*++%+%+%++*+++++++++****************************************************************************", "****++%++%++%+%+%+*++-+-+-+++-+++*+++++++++*+++++++++****************************************************************************", "****++%+++%%++%%%+*++---+-+++-+++*++%+%+%++*+++++++++****************************************************************************", "****++++++++++++++*++++++++++++++*+++++++++*+++++++++****************************************************************************", "****++++++++++++++*++++++++++++++*+++++++++*+++++++++****************************************************************************", "*********************************************************************************************************************************", "*********************************************************************************************************************************", "*********************************************************************************************************************************"}; wmnut-0.72/wmnutrc000066400000000000000000000022771505630336300142520ustar00rootroot00000000000000# .wmnutrc # configuration file for wmnut, WindowMaker dock applet. # Define up to 9 upsnames ([upsname@]hostname, default is localhost) # Note that UPS(s) are automagically discovered from the hostname ###### # UPS=bar.com # UPS=foo2@bar.com # ... # UPS=foo9@bar.com # Verbose mode : display NUT available features and base value. Verbose=off # Windowed mode (opposite to native withdrawn mode for Window Maker). # Default start in withdrawn shape (for WindowMaker) WithDrawn=on # Send messages to users terminals when Low and critical. Alert=on # send alert every 5 minutes when Low LAlertRate=300 # send alert every 2 minutes when Critical CAlertRate=120 # Blink rate for battery and communication status. (0 for no blinking.) BlinkRate=3 # blinks per second # Controls beeping when you get to CriticalLevel Beep=off # Beep at Critical Level. Volume is between -100% to 100%. Volume=50 # Define battery levels at which red or yellow LED turns on. # CriticalLevel takes precedence if LowLevel