uControl/0040755000076500000240000000000007435006402011650 5ustar shanestaffuControl/CVS/0040755000076500000240000000000007435006402012303 5ustar shanestaffuControl/CVS/Entries0100644000076500000240000000115707435006402013640 0ustar shanestaff/ODHIDHack.cpp/1.1.1.1/Wed Feb 20 20:47:41 2002// /USB caps lock notes.rtf/1.1.1.1/Wed Feb 20 20:47:43 2002// /kextMain.c/1.1.1.1/Wed Feb 20 20:47:41 2002// /mkbindist.sh/1.1.1.1/Wed Feb 20 20:47:41 2002// /mkimage.sh/1.1.1.1/Wed Feb 20 20:47:41 2002// /oldReadme.rtf/1.1.1.1/Wed Feb 20 20:47:41 2002// /uControl Package.icns/1.1.1.1/Wed Feb 20 20:47:41 2002// /uControl.icns/1.1.1.1/Wed Feb 20 20:47:42 2002// /uControl.pmsp/1.1.1.1/Wed Feb 20 20:47:42 2002// /ucenv/1.1.1.1/Wed Feb 20 20:47:41 2002// D/.FBCLockFolder//// D/English.lproj//// D/IOKit//// D/perlish//// D/resources//// D/uControl//// D/uControl.pbproj//// uControl/CVS/Repository0100644000076500000240000000002707435005602014402 0ustar shanestaff/home/cvsroot/uControl uControl/CVS/Root0100644000076500000240000000001607435005602013144 0ustar shanestaff/home/cvsroot uControl/English.lproj/0040755000076500000240000000000007435006202014364 5ustar shanestaffuControl/English.lproj/CVS/0040755000076500000240000000000007435006202015017 5ustar shanestaffuControl/English.lproj/CVS/Entries0100644000076500000240000000007007435006202016345 0ustar shanestaff/InfoPlist.strings/1.1.1.1/Wed Feb 20 20:47:43 2002// D uControl/English.lproj/CVS/Repository0100644000076500000240000000004507435005603017121 0ustar shanestaff/home/cvsroot/uControl/English.lproj uControl/English.lproj/CVS/Root0100644000076500000240000000001607435005603015663 0ustar shanestaff/home/cvsroot uControl/English.lproj/InfoPlist.strings0100644000076500000240000000157507435005557017727 0ustar shanestaff CFBundleGetInfoString uControl version 1.0.1, Copyright 2001 Shane Celis CFBundleName uControl CFBundleShortVersionString uControl version 1.0.1 NSHumanReadableCopyright Copyright 2001 Shane Celis OSBundleLibraries com.apple.iokit.IOHIDSystem 1.1 com.apple.kernel.bsd 1.1 com.apple.kernel.iokit 1.1 com.apple.kernel.mach 1.1 uControl/IOKit/0040755000076500000240000000000007435006202012625 5ustar shanestaffuControl/IOKit/CVS/0040755000076500000240000000000007435006202013260 5ustar shanestaffuControl/IOKit/CVS/Entries0100644000076500000240000000006107435006202014606 0ustar shanestaff/Readme.rtf/1.1.1.1/Wed Feb 20 20:47:43 2002// D uControl/IOKit/CVS/Repository0100644000076500000240000000003507435005603015361 0ustar shanestaff/home/cvsroot/uControl/IOKit uControl/IOKit/CVS/Root0100644000076500000240000000001607435005603014124 0ustar shanestaff/home/cvsroot uControl/IOKit/Readme.rtf0100644000076500000240000000243007435005557014547 0ustar shanestaff{\rtf1\mac\ansicpg10000\cocoartf100 {\fonttbl\f0\fswiss\fcharset77 Helvetica;\f1\fswiss\fcharset77 Helvetica-Bold;} {\colortbl;\red255\green255\blue255;} \margl1440\margr1440\vieww9020\viewh12940\viewkind0 \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\fs20 \cf0 For more information about iJect for the new iBook please visit http://www.obdev.at/products/iject/\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 \ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs40 \cf0 Darwin IOKit Headers\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\b0\fs24 \cf0 \ You need the Darwin IOKit headers for your specific version of Mac OS X in order to compile iJect. Check out the appropriate version of xnu from the Darwin archive and replace this folder with Darwin's folder xnu/iokit/IOKit. You can then build as usual with ProjectBuilder or call pbxbuild from the commandline.\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 We cannot re-distribute the Darwin headers due to copyright issues...\ \ _________________________________________\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs18 \cf0 Copyright 2001, Heger, Schwarzott, Starkjohann & Tiefenbrunner OEG.} uControl/kextMain.c0100644000076500000240000000114107435005555013576 0ustar shanestaff/* * Name: kextMain.c * Project: uControl * Author: Christian Starkjohann (Modified by Shane Celis #include extern int ODHidInit(void); extern int ODHidExit(void); kern_return_t uControl_start (kmod_info_t * ki, void * d) { return ODHidInit() == 0 ? KERN_SUCCESS : KERN_FAILURE; } kern_return_t uControl_stop (kmod_info_t * ki, void * d) { return ODHidExit() == 0 ? KERN_SUCCESS : KERN_FAILURE; } uControl/mkbindist.sh0100644000076500000240000000100507435005555014171 0ustar shanestaff#!/bin/sh rm -rf BinaryDist pbxbuild echo "==========================================================================" echo "==========================================================================" echo "==========================================================================" mkdir BinaryDist mkdir BinaryDist/StartupItems cp -R uControl BinaryDist/StartupItems SRC=$(dirname $0) mv $SRC/build/uControl.kext BinaryDist/StartupItems/uControl cp Readme.rtf BinaryDist sh mkimage.sh uControl open BinaryDist uControl/mkimage.sh0100644000076500000240000000042307435005555013622 0ustar shanestaff#!/bin/sh volumeName="$1" if [ -z "$volumeName" ]; then volumeName=uControl fi image="$volumeName".dmg hdiutil create -megabytes 4 "$image" -layout NONE -zeroImage disk=`hdid -nomount "$image"` sudo newfs_hfs -v "$volumeName" "$disk" hdiutil eject "$disk" hdid "$image" uControl/ODHIDHack.cpp0100644000076500000240000002312107435005555013776 0ustar shanestaff/* * Name: ODHIDHack.cpp * Project: uControl * Author: Shane Celis * Based on Original work from iJect by Christian Starkjohann * Creation Date: 2001-07-23 * Tabsize: 4 * Copyright: GNU General Public License version 2.0 */ #ifdef __cplusplus extern "C" { #endif #include #include // uncomment this for a ridiculous amount of loggage //#define OD_DEBUG // uncomment this to disable any changing of the key strokes //#define LOG_ONLY 1 (doesn't work yet) // uncomment this for enter key to be mapped to command key #define ENTER_NO_MORE // uncomment this for an interesting twist //#define TWERQ /* flags */ #define CTRL_FLAG 0x40000 #define CAPS_FLAG 0x10000 #define CMD_FLAG 0x100000 #define SPACE_KEY 49 #define CTRL_KEY 59 #define CMD_KEY 55 #define CAPS_KEY 57 #define ENTER_KEY 52 #define KEY_DOWN 10 #define KEY_UP 11 #define KEY_MOD 12 #define NO_TRANS -1 extern int ODHidInit(void); extern int ODHidExit(void); #ifdef __cplusplus } #endif #include #include #include static void *oldVtable = NULL; static void *myVtable = NULL; class ODHIDHack : public IOHIDSystem { /* we must not declare anything which is not in our superclass * since we want to pose as our superclass. */ public: virtual void keyboardEvent(unsigned eventType, /* flags */ unsigned flags, /* keyCode */ unsigned key, /* charCode */ unsigned charCode, /* charSet */ unsigned charSet, /* originalCharCode */ unsigned origCharCode, /* originalCharSet */ unsigned origCharSet, /* keyboardType */ unsigned keyboardType, /* repeat */ bool repeat, /* atTime */ AbsoluteTime ts); virtual void keyboardSpecialEvent(unsigned eventType, /* flags */ unsigned flags, /* keyCode */ unsigned key, /* specialty */ unsigned flavor, /* guid */ UInt64 guid, /* repeat */ bool repeat, /* atTime */ AbsoluteTime ts); }; int ODHidInit(void) { IOHIDSystem *p; ODHIDHack *sub; if(oldVtable != NULL){ printf("module uControl already loaded!\n"); return 1; } if(myVtable == NULL){ sub = new ODHIDHack(); myVtable = *(void **)sub; sub->free(); } p = IOHIDSystem::instance(); oldVtable = *(void **)p; *(void **)p = myVtable; return 0; } int ODHidExit(void) { IOHIDSystem *p; if(oldVtable != NULL){ p = IOHIDSystem::instance(); if(*(void **)p != myVtable){ printf("Sorry, cannot unload uControl!\n"); return 1; } *(void **)p = oldVtable; oldVtable = NULL; } return 0; } static unsigned addFlags = 0; static unsigned cachedKeyboard = 0; static unsigned cachedFlavor = 0; #ifdef TWERQ static bool willTranslate = FALSE; static bool hasTranslated = FALSE; static unsigned int trans_length = 60; /** * Maps the keys (really a hash where the index serves as the key set) **/ static int trans[] = {41,37,40,38,5,4,44,47,43,46,NO_TRANS,45,35,31,34,32,17, 16,29,25,28,26,23,22,NO_TRANS,19,21,NO_TRANS,20,18, NO_TRANS,13,15,NO_TRANS,14,12,NO_TRANS,1,3,NO_TRANS,2,0, NO_TRANS,8,6,11,9,7,51,NO_TRANS,NO_TRANS,48,NO_TRANS, NO_TRANS,NO_TRANS,NO_TRANS,NO_TRANS,NO_TRANS,NO_TRANS, 36}; #endif /** * The capslock sequence of events looks like this from IO system: * * hid event type 12 flags 0x10000 key 57 kbdType 195 * * special event type 11 flags 0x10000 key 127 flavor 6 * * * special event type 11 flags 0x10000 key 127 flavor 6 * * hid event type 12 flags 0x0 key 57 kbdType 195 * * We want to make it look like this: * * * hid event type 12 flags 0x40000 key 59 kbdType 195 * * hid event type 12 flags 0x0 key 59 kbdType 195 **/ void ODHIDHack::keyboardEvent(unsigned eventType, /* flags */ unsigned flags, /* keyCode */ unsigned key, /* charCode */ unsigned charCode, /* charSet */ unsigned charSet, /* originalCharCode */ unsigned origCharCode, /* originalCharSet */ unsigned origCharSet, /* keyboardType */ unsigned keyboardType, /* repeat */ bool repeat, /* atTime */ AbsoluteTime ts) { #ifdef OD_DEBUG printf("caught hid event type %d flags 0x%x key %d kbdType %d\n", eventType, flags, key, keyboardType); #endif /* has the capslock key has been pressed? */ if (eventType == KEY_MOD && key == CAPS_KEY) { key = CTRL_KEY; /* flavor 6 is the kind the titanium comes with * flavor 4 seems to be the type for USB keyboards * keyboardType 195 seems to be the TiBooks internal keyboard * (cachedFlavor will not be set correctly until keyboardSpecialEvent * is called) */ if (cachedFlavor == 6 || keyboardType == 195) { /* make it look like the control key has been pressed instead */ if (flags & CAPS_FLAG) { /* capslock on */ addFlags |= CTRL_FLAG; } else if (addFlags & CTRL_FLAG) { /* capslock off (not the same as releasing capslock, mind you) */ addFlags ^= CTRL_FLAG; } } } #ifdef ENTER_NO_MORE /* */ if ((eventType == KEY_DOWN || eventType == KEY_UP) && key == ENTER_KEY) { if (eventType == KEY_DOWN) { addFlags |= CMD_FLAG; } else if (addFlags & CMD_FLAG) { /* remove command flag if it's there */ addFlags ^= CMD_FLAG; } eventType = KEY_MOD; key = CMD_KEY; } /* */ #endif /* wipe out capslock entirely */ if (flags & CAPS_FLAG) { flags ^= CAPS_FLAG; } flags |= addFlags; #ifdef TWERQ /* is space bar being held down to swap the map? */ if (key == SPACE_KEY && eventType == KEY_DOWN) { willTranslate = TRUE; return; /* don't send the space event yet */ /* swap map back */ } else if (key == SPACE_KEY && eventType == KEY_UP) { if (!hasTranslated) { /* send the key as down now */ IOHIDSystem::keyboardEvent(KEY_DOWN, flags, key, charCode, charSet, origCharCode, origCharSet, keyboardType, repeat, ts); } willTranslate = FALSE; hasTranslated = FALSE; } if (willTranslate && key < trans_length && trans[key] != NO_TRANS) { /* special handling for ctrl to return mapping */ if (key == CTRL_KEY && eventType == KEY_MOD) { eventType = ((flags & CTRL_FLAG) != 0 ? KEY_DOWN : KEY_UP); } key = trans[key]; if (eventType == KEY_DOWN) hasTranslated = TRUE; } #endif IOHIDSystem::keyboardEvent(eventType, flags, key, charCode, charSet, origCharCode, origCharSet, keyboardType, repeat, ts); cachedKeyboard = keyboardType; /* store keyboard type */ #ifdef OD_DEBUG printf("sent hid event type %d flags 0x%x key %d kbdType %d\n", eventType, flags, key, keyboardType); #endif } void ODHIDHack::keyboardSpecialEvent( unsigned eventType, /* flags */ unsigned flags, /* keyCode */ unsigned key, /* specialty */ unsigned flavor, /* guid */ UInt64 guid, /* repeat */ bool repeat, /* atTime */ AbsoluteTime ts) { #ifdef OD_DEBUG printf("special event type %d flags 0x%x key %d flavor %d\n", eventType, flags, key, flavor); #endif cachedFlavor = flavor; if (!repeat && ((key == 127 && flavor == 6) || (key == CAPS_KEY && flavor == 4))) { /* the following constants have been found by running with OD_DEBUG defined: */ /* try and catch the special capslock key event */ if (eventType == KEY_UP && key == 127 && flavor == 6) { /* eventType doesn't change to corresponding key state like flavor 4 */ /* change the addFlag state to the opposite of whatever it is currently */ if (addFlags & CTRL_FLAG) { addFlags ^= CTRL_FLAG; } else { addFlags |= CTRL_FLAG; } } else if (key == CAPS_KEY && flavor == 4) { if (eventType == KEY_DOWN) { // add CTRL_FLAG addFlags |= CTRL_FLAG; } else if (eventType == KEY_UP) { // remove CTRL_FLAG if (addFlags & CTRL_FLAG) addFlags ^= CTRL_FLAG; } } /* wipe out capslock entirely */ if (flags & CAPS_FLAG) { flags ^= CAPS_FLAG; } flags |= addFlags; #ifdef TWERQ /* send the control key released event, back through our method * (so translation works correctly) */ keyboardEvent(KEY_MOD, flags, CTRL_KEY, 0, 0, 0, 0, cachedKeyboard, FALSE, ts); #else IOHIDSystem::keyboardEvent(KEY_MOD, flags, CTRL_KEY, 0, 0, 0, 0, cachedKeyboard, FALSE, ts); #endif }else{ IOHIDSystem::keyboardSpecialEvent(eventType, flags, key, flavor, guid, repeat, ts); } } uControl/oldReadme.rtf0100644000076500000240000001752007435005555014273 0ustar shanestaff{\rtf1\mac\ansicpg10000\cocoartf100 {\fonttbl\f0\fswiss\fcharset77 Helvetica;\f1\fswiss\fcharset77 Helvetica-Bold;} {\colortbl;\red255\green255\blue255;} \margl1440\margr1440\vieww10000\viewh12840\viewkind0 \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\fs20 \cf0 For more information about uControl please visit http://www.gnufoo.org/macosx/ucontrol.html \fs24 \ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs40 \cf0 Welcome to uControl! \fs20 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\b0\fs24 \cf0 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs28 \cf0 What is it? \f0\b0\fs24 uControl maps your control key to it's rightfully intended place on your laptops keyboard; the place thats currently occupied by the oft-unused caps lock key. No more finger acrobatics are required for using control-intensive Unix applications. Caps lock functionality is still available by pressing the Apple modifier key in conjunction with the caps lock key.\ \ Bugs wise there still does seem to be some cases where uControl gets confused. I've noticed it consistently when my machine comes out of sleep and capslock is lit. I'm not sure what happens to the system and how my code is involved in that exactly, but I'm sure there are other cases. If you can consistently reproduce any of these cases, definitely shoot me an email and it might lead to a better fix. And hey if this utility just makes your life easier, by all means send me an email. It makes my day.\ \ For you touch typists, be sure to take a look at uControl's cousin Twerq. Twerq does the same thing as uControl, but with a little twist. The space bar acts as a shift when held and mirrors the keys. What good is that for? you might ask. It means one hand now has access to all the keys from home row. (Hey what are you doing with that other hand? [shakes head] Keep your mind out of the gutter folks. ;) For anyone with a disability this might be especially useful. For me, it means I don't have to bring back my mouse hand if I don't need to do any extended typing. Supposedly the first keyboard used this kind of corded technique so one hand would be free to use the exotic mouse device. There's a company that sells these sorts of keyboards (http://www.halfkeyboard.com). \ \ I've been waiting for something like this to come along ever since I got my first Terminal app running on my Titanium. It was inspired and modified from a piece of software developed by Objective Development called iJect (http://www.obdev.at/products/iject/). Unfortunately, you'll have to choose between uControl and iJect, since they're mutually incompatible at this time. Many thanks to them and especially Christian Starkjohann, not only for providing such wonderful support for Mac OS X, but for doing so with a free license where possible. :) You guys rock!\ \ \f1\b\fs28 Update: \fs40 \f0\b0\fs24 Well the new version of the kernel for 10.1 did indeed break uControl. Yes, the name has been changed. It seems there was another utility out there named iControl. They asked nicely and they had a right to it. \ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs32 \cf0 Installing uControl on Mac OS X \f0\b0\fs24 \ \fs8 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 To install uControl, please perform the following steps:\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 1. Remove any older versions of uControl ( and iJect (see below for how to do that). \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 2. Open a Finder window and go to the "Library" folder directly on your Mac OS X startup volume. (There are several folders named "Library". We mean the one in the root of the startup volume, \f1\b NOT \f0\b0 in the System folder!)\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 3a. If there is a folder named "StartupItems", drop the "uControl" folder into it. The uControl folder is in the "StartupItems" folder in the distributed disk image.\ 3b. If there is no such folder, drop the whole folder "StartupItems" from the distributed disk image directly into the "Library" folder.\ You should have created a directory hierarchy like this in any case:\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx1140\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 /Library/StartupItems/uControl\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 4. Restart the computer\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \cf0 \ After rebooting, your forlorn caps lock key will suddenly acquire a usefulness it should have rightfully had in the first place. :) \ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b \cf0 Note: \f0\b0 You need Administrator rights to install startup items, but you do not need to be the Unix super user "root". The user account which is created during installation of the operating system has administrator rights.\ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs32 \cf0 Removing uControl (formerly known as iControl) \f0\b0\fs24 \ \fs8 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 To remove uControl from your machine:\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 1. Delete the uControl and/or the iControl folder in /Library/StartupItems on your Mac OS X startup volume.\ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 2. Restart your computer.\ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs32 \cf0 Removing iJect \f0\b0\fs24 \ \fs8 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 To remove iJect from your machine:\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 1. Delete the iJect folder in /Library/StartupItems on your Mac OS X startup volume.\ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 2. Restart your computer.\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \cf0 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs32 \cf0 Known Bugs\ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs20 \cf0 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\b0\fs8 \cf0 \ \pard\tx360\tx2880\tx4320\tx5760\tx7200\li360\fi-360\ql\qnatural \fs24 \cf0 1. Holding the Apple modifier key doesn't restore caps lock functionality, if the caps lock key is currently lit. I am well aware of this issue, the workaround for the moment is to simply press the caps lock key again while holding the Apple modifier key. \ \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs32 \cf0 Troubleshooting \f0\b0\fs24 \ \fs8 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 uControl has been developed for Mac OS X 10.0. It is known to run on Mac OS X 10.0.0 up to 10.0.4 and probably runs on later versions, too. However, since it links to internal kernel structures, newer versions of the kernel may break uControl. \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs8 \cf0 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \fs24 \cf0 If your machine does not boot after installing uControl, hold the option (alt) key during booting and boot to Mac OS 9. You can remove uControl from Mac OS 9.\ \ NO WARRANTY EXPRESSED OR IMPLIED!!\ }uControl/perlish/0040755000076500000240000000000007435005603013320 5ustar shanestaffuControl/perlish/buildarray0100755000076500000240000000176107435005557015416 0ustar shanestaff#!/usr/bin/perl %codes = readHash('codes'); %trans = readHash('trans'); foreach $key (keys %trans) { $twist{$codes{$key}}=$codes{$trans{$key}}; } %twist = backAndForth(%twist); $max=max(keys %twist); foreach(0..$max) { # special condition for return key 36 $twist{$_} = 'NO_TRANS' if (!exists $twist{$_} || $_ == 36); print $twist{$_} . ','; } print "\ncount = ", scalar(keys %twist); print "\n"; #printHash(%twist); sub max { $max = 0; foreach (@_) { if ($max < $_) { $max = $_; } } return $max; } sub backAndForth { my %hash = @_; foreach(keys %hash) { $hash{$hash{$_}} = $_; } return %hash; } sub printHash { my %codes = @_; foreach(keys %codes) { print $_ . '=' . $codes{$_}, "\n"; } } sub readHash($) { my %hash; open(IN, shift) || die "broke $!\n"; while() { next if (/^\s*#/); if (/(\S+)=(\S+)/) { $hash{$1} = $2; } } return %hash; } uControl/perlish/codes0100644000076500000240000000052307435005557014345 0ustar shanestaffa=0 b=11 c=8 d=2 e=14 f=3 g=5 h=4 i=34 j=38 k=40 l=37 m=46 n=45 o=31 p=35 q=12 r=15 s=1 t=17 u=32 v=9 w=13 x=7 y=16 z=6 # #=36 (return) ,=43 .=47 ;=41 '=39 /=44 [=33 ]=30 1=18 2=19 3=20 4=21 5=23 6=22 7=26 8=28 9=25 0=29 -=27 ==24 #=51 (delete) #tab \t=48 #delete \d=51 \=42 `=50 #control ^=59 #return \r=36 #=2 (CRTL-d) # =49 (space bar) uControl/perlish/CVS/0040755000076500000240000000000007435005603013753 5ustar shanestaffuControl/perlish/CVS/Entries0100644000076500000240000000025707435005603015310 0ustar shanestaff/buildarray/1.1.1.1/Wed Feb 20 20:47:43 2002// /codes/1.1.1.1/Wed Feb 20 20:47:43 2002// /keyme/1.1.1.1/Wed Feb 20 20:47:43 2002// /trans/1.1.1.1/Wed Feb 20 20:47:43 2002// D uControl/perlish/CVS/Repository0100644000076500000240000000003707435005603016052 0ustar shanestaff/home/cvsroot/uControl/perlish uControl/perlish/CVS/Root0100644000076500000240000000001607435005603014613 0ustar shanestaff/home/cvsroot uControl/perlish/keyme0100755000076500000240000000066407435005557014373 0ustar shanestaff#!/usr/bin/perl $log = '/private/var/log/system.log'; while(1) { $pressed = <>; chomp($pressed); sleep 1; @lines = `tail -n 4 <( grep -v ' key 36 ' $log)`; %hash = (); foreach (@lines) { /key (\d+) /; $hash{$1}++; } $max = 0; foreach (keys %hash) { if ($hash{$_} > $max) { $max = $hash{$_}; $code = $_; } } print "$pressed=$code\n"; } uControl/perlish/trans0100644000076500000240000000013707435005557014400 0ustar shanestaffq=p w=o e=i r=u t=y a=; s=l d=k f=j g=h z=/ x=. c=, v=m b=n 1=0 2=9 3=8 4=7 5=6 \t=\d \r=^ '=` uControl/resources/0040755000076500000240000000000007435005603013664 5ustar shanestaffuControl/resources/CVS/0040755000076500000240000000000007435005603014317 5ustar shanestaffuControl/resources/CVS/Entries0100644000076500000240000000014107435005603015644 0ustar shanestaff/License.rtf/1.1.1.1/Wed Feb 20 20:47:43 2002// /ReadMe.rtf/1.1.1.1/Wed Feb 20 20:47:43 2002// D uControl/resources/CVS/Repository0100644000076500000240000000004107435005603016411 0ustar shanestaff/home/cvsroot/uControl/resources uControl/resources/CVS/Root0100644000076500000240000000001607435005603015157 0ustar shanestaff/home/cvsroot uControl/resources/License.rtf0100644000076500000240000004060007435005557015770 0ustar shanestaff{\rtf1\mac\ansicpg10000\cocoartf100 {\fonttbl\f0\fnil\fcharset77 LucidaGrande-Bold;\f1\fnil\fcharset77 LucidaGrande;\f2\fnil\fcharset77 AmericanTypewriter-Bold; \f3\fnil\fcharset77 AmericanTypewriter;} {\colortbl;\red255\green255\blue255;} \vieww9000\viewh9000\viewkind0 \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\b\fs24 \cf0 uControl \f1\b0 , along with its source code, documentation, and supplemental files are Copyright (c) 2002 Shane Celis. \f0\b uControl \f1\b0 is distributed under the GPL. If you did not receive source code along with this distribution, please write to shane (at) terraspring.com to obtain a copy.\ \ Visit uControl on the web at: \f0\b http://www.gnufoo.org/macosx/ucontrol.html \f1\b0 \ \ \ \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\qc \f2\b\fs26 \cf0 GNU GENERAL PUBLIC LICENSE\ Version 2, June 1991\ \f3\b0 \ Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA\ \ Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\ql\qnatural \cf0 \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\qc \f2\b \cf0 Preamble\ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\ql\qnatural \f3\b0 \cf0 \ 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.\ \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\qc \f2\b \cf0 GNU GENERAL PUBLIC LICENSE\ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\ql\qnatural \f3\b0 \cf0 \ 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.\ \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\qc \f2\b \cf0 NO WARRANTY\ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\ql\qnatural \f3\b0 \cf0 \ 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.\ \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li100\qc \f2\b \cf0 END OF TERMS AND CONDITIONS}uControl/resources/ReadMe.rtf0100644000076500000240000001724707435005557015556 0ustar shanestaff{\rtf1\mac\ansicpg10000\cocoartf100 {\fonttbl\f0\fswiss\fcharset77 Helvetica;\f1\fnil\fcharset77 LucidaGrande-Bold;\f2\fnil\fcharset77 LucidaGrande; } {\colortbl;\red255\green255\blue255;} \margl1440\margr1440\vieww9000\viewh9000\viewkind0 \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\fs22 \cf0 For more information about uControl please visit http://www.gnufoo.org/macosx/ucontrol.html\ \fs24 \ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\qc \f1\b\fs42 \cf0 MacOS X Stuff\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f2\b0\fs28 \cf0 \ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f0\fs26 \cf0 \ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f1\b\fs34 \cf0 Take Control!\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f2\b0\fs28 \cf0 \ Tired of hitting all the wrong modifier keys on your laptop to get that simple control sequence? Are you forced to drag a keyboard around with you that has the control key in the right place? The place that Apple mistakenly put the caps lock key. Take control back!\ \ uControl maps your control key to it's rightfully intended place on your laptops keyboard; the place thats currently occupied by the oft-unused caps lock key. No more finger acrobatics are required for using control-intensive Unix applications. Caps lock functionality is still available by pressing the Apple modifier key in conjunction with the caps lock key.\ \ uControl also remaps the enter key positioned right next to the spacebar to a command key, due to many user requests. Upon the next iteration of development, I plan to include a user definable remapping of special keys. Currently, the only way to acquire different remaps is by recompiling. :(\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f0 \cf0 \ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f1\b\fs34 \cf0 Known Problems\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f2\b0\fs28 \cf0 \ I know this utility works on TiBooks, but unfortunately that's the only machine I have to test it on. I hope some gracious soul will be kind enough to lend some time to provide me with a patch for whatever machine they're using if it doesn't work properly.\ \ \'a5 Some USB keyboards or other machines in general work a little differently and the capslock is remapped to control but is still sticky. (This has hopefully been \f1\b fixed \f2\b0 for most machines.)\ \'a5 If capslock is lit and you put the machine to sleep, when it comes out control key will be locked as if it were being pressed down. (Work around is simply press control key.)\ \ If you can consistently reproduce any of other cases that will invariably pop up, definitely shoot me an email and it might lead to a better fix. And hey, if this utility just makes your life easier, by all means send me an email. It makes my day.\ \ -shane (at) terraspring.com\ \ uControl software is licensed under the GPL, and was modified from sources available at \ul Objective Development\ \ulnone \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f1\b\fs34 \cf0 Installing uControl on Mac OS X\ \ \ \ Troubleshooting \f0\b0\fs24 \ \fs8 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f2\fs28 \cf0 uControl has been developed for Mac OS X 10.0. It is known to run on Mac OS X 10.0.0 up to 10.0.4 and probably runs on later versions, too. However, since it links to internal kernel structures, newer versions of the kernel may break uControl. \ \ If your machine does not boot after installing uControl, hold the option (alt) key during booting and boot to Mac OS 9. You can remove uControl from Mac OS 9. \f0\fs24 \ \ \f2\fs28 NO WARRANTY EXPRESSED OR IMPLIED!!\ \ \fs26 I've been waiting for something like this to come along ever since I got my first Terminal app running on my Titanium. It was inspired and modified from a piece of software developed by Objective Development called iJect (http://www.obdev.at/products/iject/). Unfortunately, you'll have to choose between uControl and iJect, since they're mutually incompatible at this time. Many thanks to them and especially Christian Starkjohann, not only for providing such wonderful support for Mac OS X, but for doing so with a free license where possible. :) You guys rock!\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \fs28 \cf0 \ --\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f0 \cf0 \ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f1\b\fs34 \cf0 Twerq!\ \pard\tx0\tx1120\tx2240\tx3360\tx4480\tx5600\tx6720\tx7840\tx8960\tx10080\tx11200\tx12320\tx13440\tx14560\tx15680\tx16800\tx17920\tx19040\tx20160\tx21280\tx22400\tx23520\tx24640\tx25760\tx26880\tx28000\tx29120\tx30240\tx31360\tx32480\tx33600\tx34720\ql\qnatural \f2\b0\fs28 \cf0 \ For you touch typists, be sure to take a look at uControl's cousin \ul Twerq\ulnone . Twerq does the same thing as uControl (same source actually), but with a little twist. The space bar acts as a shift when held and mirrors the keys. What good is that for? You might ask. Means one hand now has access to all the keys from home row. (Hey what are you doing with that other hand? [shakes head] Keep your mind out of the gutter folks. ;) For anyone with a disability this might be especially useful. For me, it means I don't have to bring back my mouse hand if I don't need to do any extended typing. Supposedly the first keyboard used this kind of corded technique so one hand would be free to use the exotic mouse device. There's a \ul company\ulnone that sells these sorts of keyboards.\ }uControl/ucenv0100644000076500000240000000166507435005555012730 0ustar shanestaff# env for uControl development uconhome=/home/shane/Projects/uControlSource #kext=/System/Library/Extensions/uControl.kext alias load='sudo /Library/StartupItems/uControl/uControl start' alias unload='sudo /Library/StartupItems/uControl/uControl stop' alias rmucon='sudo rm -rf /System/Library/Extensions/uControl.kext' alias cpucon='pushd $uconhome && sudo cp -R build/uControl.kext /System/Library/Extensions && cp -R build/uControl.kext $uconhome/dstroot/System/Library/Extensions' alias ucon='ls /Library/StartupItems/uControl' alias log='tail -f /private/var/log/system.log' alias logsent='tail -f /private/var/log/system.log | grep sent' alias install='pbxbuild && unload && rmucon && cpucon && load' alias mkdist='mkdir -p dstroot/System/Library/Extensions && mkdir -p dstroot/Library/StartupItems' alias cpdist='cp -R build/uControl.kext $uconhome/dstroot/System/Library/Extensions && cp -R uControl $uconhome/dstroot/Library/StartupItems' uControl/uControl/0040755000076500000240000000000007435005603013457 5ustar shanestaffuControl/uControl/CVS/0040755000076500000240000000000007435005603014112 5ustar shanestaffuControl/uControl/CVS/Entries0100644000076500000240000000015307435005603015442 0ustar shanestaff/StartupParameters.plist/1.1.1.1/Wed Feb 20 20:47:43 2002// /uControl/1.1.1.1/Wed Feb 20 20:47:43 2002// D uControl/uControl/CVS/Repository0100644000076500000240000000004007435005603016203 0ustar shanestaff/home/cvsroot/uControl/uControl uControl/uControl/CVS/Root0100644000076500000240000000001607435005603014752 0ustar shanestaff/home/cvsroot uControl/uControl/StartupParameters.plist0100644000076500000240000000104007435005557020222 0ustar shanestaff/* Name: StartupParameters.plist * Project: uControl * Author: Christian Starkjohann (modified by Shane Celis) * Creation Date: 2001-07-13 * Tabsize: 4 * This Revision: $Id: StartupParameters.plist,v 1.1.1.1 2002/02/20 20:47:43 shane Exp $ */ { Description = "uControl"; Provides = ("uControl"); Requires = ("Disks"); /* depend on something so that we don't come too early */ OrderPreference = "None"; Messages = { start = "Starting uControl"; stop = "Stopping uControl"; }; } uControl/uControl/uControl0100755000076500000240000000053607435005557015223 0ustar shanestaff#!/bin/sh what="$1" kextload=/sbin/kextload kextunload=/sbin/kextunload kext=/System/Library/Extensions/uControl.kext if [ -z "$what" ]; then what=start fi case "$what" in start) echo "Starting uControl" $kextload $kext ;; stop) echo "Shutting down uControl" $kextunload $kext ;; *) echo "Usage: $0 {start|stop}" exit 1 ;; esac uControl/uControl Package.icns0100644000076500000240000012126007435005555015656 0ustar shanestafficnsЂАics#Hџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџics8џџџџџџџџџџџџџџџџџџџџџџ­ƒ/Yррџџџџџџџ‰Y  ^џџџџˆ4 ˆџџ­ . Ќџр45  5 ^џ­:943‚W^d35:џџ­99]І|‚ˆdќd9:Гџџў:љћњ]]ћˆ3:ˆџџџГ9љћ]]љљћˆ3d­џџџо^dГˆЌЌЌўdˆоџџџџп‰9@VVVљ:ˆd‰џџџџџп‰^929^d‰рџџџџџџр‰eddd­рџџџџџџџџџџ‰‰Гџџџџџџџџџџџџџџџџџџџџџџџis32d“9Ч›ƒ Sœсјњџўєьƒ€cлјWєэ№јљјуj:№їёщфчфиуєїіћKЫптђыэяящгфѕKЧвкмn‚lo–›ЮЫЛNЭвхOwa‚S—ХЙ1.Къ—Y~ˆ˜rZsШЙn€ =ЩX™ІŽ‹_sТšH€ E‘Œ1u? ,j>•“’ƒPF;"‚ ,^yЇ i]>- ƒ';BA:! †-0““  ƒ  (,&(,[A€]+HA.,,).'.0Lr8E"9+1YY&1?9b…) 3 &w œr_JOU@b9WY]O/\6RUzj2JM;BC@^=J~‹LoVSfN+|=$€ h€OsVƒS(o2€ DD$340<, _=’‘O6 ‚ LqЄœ`H"ƒ'&!† “ICN#рџџџ€џџрџџј?џџўџџўџџўџџќџџјџџјџџџјџџџјџџј?џџјџџќџџќџџјџџ№џџ№џџ№џџ№џџ№џџ№џџРџ?јррџџџ€џџрџџј?џџўџџўџџўџџќџџјџџјџџџјџџџјџџј?џџјџџќџџќџџјџџ№џџ№џџ№џџ№џџ№џџ№џџРџ?јрicl8џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџпƒX_рџџџџџџџџџџџџџџџџџџџџџџџџ­^//‰џˆџџџџџџџџџџџџџџџџџпƒY  3ˆџџџџџџџџџџџџ­ƒ5  3­џџџџџџџџˆ^  ]ўџџџџџ­ ./ ^рџџџџ^ ///.// 3џџџџ­ ./ .... Ќџџџџџ^555  555 ‚џџџџџˆ94555 ,іѕѕѕ555 9џџџџр^99945 dњWљљWWVљ3A,55559рџџџ­:999993dЌ‚R‚ќќќќˆAˆˆe,5:::џџџџ­:99999ћЌ‚X|ћћћ‚A‚ћќм9:::­џџџџў:99992ќЌˆ‚ћˆAћћћќ§@2:::ˆџџџџџџ^993іќќќ‚A‚ћћќ§@,::::џџџџџџџˆ9іќќљљљ@]љVћћќ§@+::::Гџџџџџџр‰2іЌќљљ@^њљVћќў@,::::‰џџџџџџр‰ˆ+ЌЌћњ@]љљљљљќў@2:d‰рџџџџџџџр‰‰29§ўў‰dЌЌЌЌЌЌўўо9]‰‰рџџџџџџџџр‰‰]оўлЌЌЌЌЌЌ§ўўк]‰‰‰рџџџџџџџџр‰‰‰2@м@ќќќќќќќќˆйˆˆeedрџџџџџџџџџп‰‰‰29ііііііі2^ddddџџџџџџџџџџџр‰‰‰3292^dddd‰џџџџџџџџџџџџџ‰‰‰‰]2,їїјW^dddd‰пџџџџџџџџџџџџџџџо‰‰‰dddddddd‰оџџџџџџџџџџџџџџџџџџџГ‰‰dddddd‰пџџџџџџџџџџџџџџџџџџџџџџп‰dddˆоџџџџџџџџџџџџџџџџџџџџџџџџџџрˆ‰пџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџil32Ь pЏ€•L™оџпPX ^ЋшјјљўџўфыоZ‰0~Ьљƒј љўџџћїјїёяФ=„X’ˆј љћјіїјљњїѓєЊ‚:щщї…јѓьхлпђїјљњњћјїњŽЏщїјї№щс€о кжзцїљњњјіїњќо:щїјѕэцпоршэє№щожжкыѕѓєѕїњќO‚Ёцт€офѓњњѓээєњѕчбЯйюєѕїњ~‚iЬи€оьћіойхяёъсьљєдЯарѓїЛЉбвгйоьњЄx‰Œ‘’””ВЪчйгЯЯРЙ€NТабвгдпћ@]eIJKLaБVf­оЫТЛИ €NТабвгдяюXAgŽy_]\qХgZKwхЦ€ЙF'УбвгжњжWEPmjl[_Яzb[M,ек€Й‚ ЊвгнјлTJRjhncЦvmb_Q+НеЙ ƒsацюуMPx““’М•Ž™bbU)КкЙ:ƒkеюфFSq‘–Чœ—›qeS'ИЯЙQƒ\iїм5>`‚Й­ˆŽ””‹qT&ЩШЙžX„naка+ !~“D?EED;$$Nлc^…spšъL"`„?757<;6#*Ќep|…stsШЮxЛUSQNLQTPSЛeqˆŒ†/ru{ЪызучццусстщЩ•‹ŽŽ‡kuzГечэ€ѓ ящнИ›ŽŽŽ|‰ ^vw{ЄФЩвЪОЌ›€Œ`(ŠMwxx–€|D 7vx–€Œ_(“"q•|C –{_&šЏЬgЃu• 7uЩъъэъЭI 9 PŽНЬЬЯхъэъъцГ™;‰-oЎаƒЬ ЯфэънааЫЌœ‚)„ 3Uдв†Ь ЮсгЮЯабвФЇЃr‚"‡‡КЭеЭ‚ЬЩУНЗКЪЯабвдзНІЉ`  e‡ЙОХжаЫЦРЛ€И ЗВГРажлиЮЛІЉЌ˜"‡ЙОМИСРЙМЯицпдСЖККССОПЗІЉЌ6‚Z­­€ЊТрŒeoymb~еЭ ІЙПЗІЉV‚:o—€ЊЯЃ[ГжтььхТg‡хЇž­ЖІ]stuŽЊЮ~>sˆ‰ŠŒ€)IЫІ†r €+jrsttuœ6;qК|DDEG?(L3$Щ“{e^€+jrsttu­oR=}Џ”ZXWQ+TUE”}€^#kstt}”ЌN=NtigVM)^[TD!A­€^A‚]tt”xвKAIddiS$SeYWH!:З^ƒ>sАmйDFnŠŽ‰;g…ZZL >Я^ƒ2–oкPy’h\K:З^*ƒ #>„Х09[{AT€…‹ŒƒhK7Ё^N, „ *%—w'!"=:<<;2lr,( … ,+mY6€0 32- j-05 …€,Ї+(OKIHFILI<G;8:; †+-6ЁMfйпоонммKЄ]<==<‡ )-3ŠŒM}—Ё™‰SxZ>>==5‰$--3sЇВВДЊƒY??>=)‹-..HBAA@@??7 -.HBAA@?*“ +HBA8–<,šЏЬ ! • %9*+,,*9=mk-‰ *ƒ, *9 -.7]vc„&@SE.…, +>+,-./0Ep}X‚ee'@Q3‚,)#1)-./15Gr€„L  Le%.R?,'!€ 1 1ATVEH€„†xe%9;&b€Б—…F%7;9-%$?€„†+‚B LГzWak`XsК $?€„C‚*P € u’NІШеппйГZzТ>€b DTTU2 sp0bo||}ƒ€q=ЋT€MSTTUVm€'+'>1567;1>%“$7=€MSTTUVЁlF,0I@KIHEFG7b€=NTTU_’ЊK58HVYG?PQNA?€=*‚DTU|vЯG=DWY[ELaVTF8Ќ=ƒ-TžkжACk‡†€7d‚VWI<Ы=ƒmз9GgˆŒCFFGEFFIJJLLOOPS€T VXVWXYZYYZ[w€њŸ€њ˜ŸѕњљфŠЯРww˜ї”Я‚а‚бв‚гддм€орƒћц]';OA;9EOQQNHEDDCDDEEGG€HIJ€KLLM€NRБњђ“VX‹ыњђbjдљњв‰ЯР{šЌЖ“ЯЯ‚а‚бв‚г€дйооє‚ћЕ"+5CJ27DXktoa[PF?€@ ABBCCDDEDD‚Fњє{MQQMdињь[>РїяˆЯЦЕЙЎЯ‚а‚бв‚гджƒћє1,55BF4DWwŽw^MB>>‚?@?@@€ABBABCCcєљqHNOLC?,рњњEIнљњ„ЯЪЗИƒЙД‚Я‚а‚бв‚гдињ‚ћŸ1==4OVFXj”žŸЂЂšr_TO‚NOPQPQPOx№њЭQTVUQMK6dљњУ)™їљд€ЯЭМЖ†ЙЗŽƒЯ‚а‚бв‚гдъњњћћљхd?<1(XZXeŽ—žЃЇЉІ…j`VUUVU€W"VWVWXYWXWmХѕњТd[[ZYXWUC-cђњпŽыїшЮТЕŠЙЊƒЯ‚а‚бв‚гд‚њѓХ\<,(%[VXc„’––Ÿ„jaTQQR€STSTUUVV€UЪњњр][[ZXYYWVE,+uњњаиѕїИŒЙИŽ‚Я‚а‚бв‚г€дэњ љтАX2()%aUT`m€‹“š{jaT‡Q RSRSS‘њњг^V€Y€Z YXG.++ОљђХяїтЙЯ‚а‚бв‚гддн‚њёУЋQ*(('ePLXg“ЂЁŸŒwtokjk€jhddegiklnАїњЮuigdRX\€[ ZJ/,*RіїкЭіїШЙЯЯ‚а‚бв‚гддчњљзКЊH€()iOGQ`krxxyytrpmlfc€bcdkoЇњњзnlijjRX[\[\[L-**+ЊїюЛюїиЙ‘Я‚а‚бв‚гдд‚њэТЙКG€(8)mOGMUbozwsrnnomnnmfba]]^acd—№њё…mihjkSX]^]XYL.**+<эїЬуїїЙ’‚а‚бв‚гдд‚њ@йОПЬE)('*qOILOYjvpca`lomnneacZOOQT]‡ћњњЋmkeccfUYZ[[YYM/))*+ИїядїїŽЙ’а‚бв‚гдчњјЫОавB)(',sNJMOVesl_^^oqopkcc\RQ_сћјЖtllfdfeTV[]\[[R0€*,їїЭѓїиЙ“€а‚бв‚гдчњыСТфЭ?*('/vOJOOWdrj`]`rrqshd`SR [вњњžmmlngddeVX]_]^[U1*)+-SїїЬкіиЙ•а‚бв‚гд‚њнПЯюЪ=*('0yOKOQVetm[__rsstie^T!YпњњЅfgklqfefgWZ__^\\V1)*)-?єїаЧђїŽЙ•‚бв‚гд‚њбТт№Ц:+)'1|PMPRWevo[__rsttig_€V"WКњњГedekpqcffgSZa``^\V2))*.=ыїеРъїŽЙ–бв‚гдњ№ХЩєяС7+)'4~QORSVgsu`a_r€tjiaY]qзњњФXbcgpqq€ehT\c`b`^W2))*/;рїкНлїŽЙ—€бв‚гдњ+уСвјяМ5+)(6RPRSWdsn`d``sttgke_cЦљішj_dchrrq€egT[c`aa_X3)(*.:лїрНаїЙ˜Яв‚гэњ+кРкјяЙ3+)'6„RQSV[iuqhhlgsvwfhk`zіїоxcaiamxvq€egS[cbcbaX3(().8жїхНЪїтŽЙ™Лавв‚гњEљЬПхјэВ/+)(7†USU]ik„}biss{{zxrf}бєФ~tlakq‚‚нrmhehT\bdecaZ3(()-6гїьНУєїŽЙšoПв‚гњEјЦРыјь­,,*(9‹WUqїХ•ЬнЂtъуі‰ЁЬШ–їїЯiІЁЙrьЦЃрsХeeiS\aefdb[3''(+4ЮїяОС№їŽЙšGЉ‚гњ9јФРэјьІ+,*(8ŒZVЂр[xЋажvзoЦДŸг хїфЧeЎ`ІёІ€‚сШЃeeiT[bfhfd[3€',3ЬїяПРяїЙšEC‘гњјУСяјыЁ*,*)8[W №\ЌЙЋжpШnЧ ~Ѓ€ї%ГВbДcЉЅюАƒƒпІеlniU[bhiee[2&&'+1ЪїяСРэїЙšKF@uЮггк€њ9љУСюїы(,+)7Ž]ZkРЏФЌЭоАЧ}ЃщїїЦq”c˜КС|’ЬУžЪ‚СІ|tU[blkhe[1€&*1ЪїюРРюУЙšQMGB^Хгдњ,ЬРьјщ—%+*)7`ZZWUbirt~П|zxЭїїЕrifiklrwx‡Œ‹‡‚}€xU\hmifcW0&&')/ЮїщПС№‘Й™WSNHCNБдњ&йПъїш$,+(6’XJLMShilrtx}yЦ№іЯvkjknoruu€Š‡€z}{}\\fdb^YM-%%&(.иїчНСђŽЙœ][UOJEEœњ%эПуїчŠ$,)#*‡RHIKNalkmrtzЗё№Чukhlmnnqy‚‚€€{_[_]XUOG,%%&(-шїуНФєŒЙž_a\VPKFAЙњ#Цкїц„"%{ZRSOOajiijtЧєёаohllpnmnqu€wvwvvuvur[W[\[YYO+€%'EїїлНЪи†ЙГЉЃЁdfb]WRLG–яљњњдвєоo€#Avƒˆ’ЃЉЅЃ Ьіє№ ‚x|‰”’‘“”—™œžЁЃІЊЎ›˜žœ—“~3%$&&nїїеНаи„ЙЁvOЃ+ejgc^YTMpыэјљмМсеk'EMSZi„–šЙђішЗЉ•‘ŸНУ€Ф ЦФУУСППКЗДБЌЃ„zwpcXRI-%$%'ЇїіЮНлШЙБŠ_OQNЃfnkhd`[UO€ь!ыфГжгa! !!$6>?Bйѓі|JOPMLMUVWVSSQQNMLKIE+%('&$$#&$$%&тї№ЩНц€ЙrRPRTVSЃgpnliea\VХььыыМФб` €! "2:QЮёъ‚AEFC;98:…A@AA@?&!†$%yїѕшТФсЏ‡]OPRUW[^YЃ5eqpnljfb]|ээьькВФV "!!""3TдёэmBGFD;:977<@??@@?@?A‚@>&!#$#€$MіїсвПзŽOPQTVY\_cf^Ѓ frqponkgc^ю€эьЗЙU€ €!"!!FщёёІ>IHE=:99776<€?@„? @?=% ##""#"##$їїЎЛКфPRUWZ]`dhkneЃ1csrrqpnkhdxцюээфДM ! !!""!9ПёцЇJEJF>;:9:8766>??@†?>' #"#€"#&hщєЕ}ЋСmVY[_beimpswhЃa€srrpoljg˜ючi !" "€# "ФёйX>DGE=<€;:98878Š@+!#"##ђэЏ,rЉŠZ]`cgjnrux{~mЃa‚s rqomlŠяяюяяъ;€!""€# €ёрA;CCA=<:€;::9876:@%>@?>?>?>*!##"#" 1щэи,oВ€aehlosvy|‚„kЃ\stsrqpon№яюэ№№Д'#€$ %%uёю_,9:8-/-‚+*)((&%,/‚.--%$$%#Њээj"3qЭfjnqtx{}€‚…†ˆmЃ\sttssrrqpЯяъх№№Ÿ&€% *‘юёˆ,673'%('‚$ #"! &'(‚'‚&!>ЪэрW$17ukosuy|~ƒ†‡ˆŠ‹hЃ[st€s r†яъбл№№Њ"! |€ё <351# #&$##".! '%&&%&'&%#Шюю}.34vtw{}€‚…†ˆ‰Š‹ŒŒfЃVs‚tu€tаыйЕиёё­_mфёщ’UUWVTTVZYXSP ONNMLKJNUTW€[WR€QRVqЭюяЬa[]_wy|~ƒ…‡ˆŠ‹ŒŒ€`ЃHr€s‚t‚uэрЭНыёёцсёёЦЅŒ€ЇЉ­ЋЊЉЉЈ€Ї ІЅЅЄЃЂЂЉЌЌЋЇ‚ЃЅЅЌъяяцЊ”‹ž~€‚„†ˆ‰Š‹ŒŒŽYЄ8oss‚tƒuЭрезщёё№№сФЇŸЗЧШШЩЫЮЭЪЩШ ЧЧЦХХФУТТЧХ€ФХЦЯця№цЪЕ  І‚„†‡ˆŠ‹‹Œ‚€ŽRЅhs‚tƒu vВэыцу№ёёыХБЪ‚шъэь„ъщщшчццхƒф€хцья№№ьлРГИЌ…‡ˆŠŠ‹ŒŒƒŽDІ _‚tƒu vvГ№№ыдьёёябц№яёєѓђ„ё№№яюээƒьээюя№сРЖИА‡‰‹Œ…Ž8ЈOs€tƒu€vвёёюмх†ёѓіѕ…ѓђђё№№яя€ю€я€№ ёёюдНИНУ‰‹ŒŽ‡ŽЉ<9?BCD@BD€EGGIIJN€O QRQSTTUTTUUJ€B:€!›№ѕєЩŠ‰--LІ”qƒr‚s‚tuw €Њ#Аііђ‡$1"6I<66GW][UHDA@>??@@AABBCDE€FHGH€IL*4PR;!eЯєѕЄ‰‰0GU\“qqƒr‚s‚t‚uvЊЊуііr*%0>E-6KoŒ™|s_I<€:€;<==>>??€@‚A.4HLLH99Мђоˆ…`^Xqƒr‚s‚t‚uvv~€іІ$*&00=@0LpЁТНРЧЃ{ZB:89:;:;;€<==<=>>53CIJG>:"Cиєѕ„h„^[‚qƒr‚s‚t‚uvv„ёєОW,87/IPGl‹ТЧЪЮда•tYKƒIJKJLL€KJ: LOQPLHF1"•ђєЇ€—r‡^]Žƒqƒr‚s‚t‚u vvОёУPЫ_:6,#SYd€ПЛМЬбжиВ…kTPPQP€R"QRQRRTSTRI&&OVVUTSRP>( Zцђа›`Š^Wƒqƒr‚s‚t‚uvvёёY ФСW6'# VVh~АЊДПОЧдГŠpTKLM€NONOPPQP!P€USTTRQ@'&3гяя^]Ž‚qƒr‚s‚t‚uvЧёЫ ŒиЊS-#$ [S^vŽБЌЎЈЖЬЄ‹pS€LKƒL MNMNN5JQ€T€U TSB)&&ЉцюО^qƒr‚s‚t‚u”ёш QшЛЃH$##"`LLeƒЈЗСРФЎ“‹xgde€d#c__`bdegd9*_db_LSWVVUUE*&#TФью^qqƒr‚s‚t‚uГёЦ ЈЮВЂ?"#$cJDUrŠŽ‘–”†|pi€hga^€\]_ejD%ifdeeMSVWVWUE%! "ВхюІ^‘qƒr‚s‚t‚uEёёІ кКББ> $hIBIYu‰“Š„tolhiiha\[XXY[]_L\hdcefNSXYWQPB% " |йюю^’ƒr‚s‚t‚u3ёё† PЯЕЖУ;!kIDGK_x…{hc^jkhii`[]UIIKOXJDhf`^^aP€SRPPD&!" ЫююŽ^’‚r‚s‚tuGВёёS ТЕЦШ8"iHEGJSfskZYZlmjke^]WMKKLLJ;igfa_a_KMRTSRRI' !#ЏъюІ^“r‚s‚tu"Вёы ЦИЙкФ6 &mEBIJQ_leZX\polmc_[NM IChhgia]\]LOTVTURK' "$/бэІ^•rr‚s‚tu!№ёЌ 0гЖЦфС3 'pEBFLP`ohVZ[ponnd`YO!L;acffi^]^^NQVVUSSM' $6}ОщюŽ^•r‚s‚tu!№ёe †ЧЙичН0!'sFCFIQ`qjVZ[poondbZQ (.`]]cgh[€^JQYXXUSL( %49pЖсюŽ^–‚s‚tu/№№ ЪМРъцИ.!*vHEHJL_npZ[[opondd[SXS %OZ[^ghh€]_KS[XZXUN( &1UbДбюŽ^—s‚tu/№р йИШяхД+!,xIFIJM[jhZ_\]oonbe`Z^* TW\[`jjh€]^KR[XYYWO) %0kRДЧю^˜rs‚t€u0Ч№Я аЗаяхА)!-{IGJLQ_lgacidoqracf[M Y[YaYeonh€] ^JR[Z[ZYO)€%/{HДСюОŽ^™fst€u=№№Т "УЖлюуЊ&!.~KJKT_a{tX`pqxvusl^I,`ldYchyzдje`]_KSZ\][YQ)€$-…AДКыюŽ^š;h€t€uI№№Л %НЗсютЄ#" 0‚MKgэМŒУгšjспђ„šУПHsaž™Џj”тН›зkМ]]aJSY]^\ZR)"+‰<ЕЗчюŽ^šZtt€u=№№Ф МЗуют!" /ƒPLšжQoЃЧЬmЭhОЋ—ЪlЛ]ЅX•žшžxyиП›]]aKRZ^_^\R)€#)~FЖЖцю^šLt€uI№№Э ЛИхюс™ " /„RM—цSЄАЃЭjСgИvz 6ЉZЋ[ЁœхЇ{{жžЬdfaKRZ`a]]R("'sNЗЖую^šD:ruu‰№й ЛИфэс”"!.…SQaЗІ†НІЧ{зЈРw“0(\‹[БЗtŠУК–РzИtlKRZdc`]R'€!'bZЖЖфu^š8,luu№№ ІЗтюр! .ˆVPQQP\clmxИuto+9ja^acdjoo„ƒzu€oKS_ea^[N'&BqЖЗч‘^™2! "`u№ёR }Жрэп‡"!-ŠRFGINbcflmrwr&/mcbcffjmmx€xrusuSS^\ZUPD$%2~ДЗщŽ^œ6$# R№ё’ AЖйэо" %ƒNCDFI[eefjms=(umc`deffhpzzyzyxsVRVTOKF>#$‰ДЛыŒ^ž0%%#!–№ы Ђаэн{"wUMMJJ[dbbc`)cbddgfefim€ononnmnmjRNRSRPPF"€ žДСІ†^[VSЁ''%$!€ъ№D Шызk€9 =q~ƒ‡‹œЂžœ˜H{{ru‹Š‰ŠŒ‹ŒŒ‘“–™›ЂЅ“”–“Šv*ЏДЧІ„^P8"Ѓ+')'&$" Mчшt KЗовg#@HNTb}‰Ž“{ †ЃŽ‹™ЕК€Л НЛККИЖЖБ­ЋЈЄ›|rog[OI@$ПДб^YC+!"!Ѓ.'*)(&$" чч’ЏвЯ]0788 0DIJHGHLMNM€LJJHHECBB@<" vПДн€^N5#"#$$#Ѓ'+*)(&%#!ЕшГ‹РЭ\€,4. %9?@=6445…878876†бЙЛФXB*""#$%&(&Ѓ'++*)('%#Rшп6ЎРQ-- &:?@>544235766776768‚75€\ШЖЯa""#$$%'(*+'Ѓ',++**)'&$шшœДP€ƒ (7A@?6334€24€67„6 764ДЕп"#$&'')*,-/*Ѓ&,,€+*)(&EошE‡H‚ 1>B>743343€25667†65€  yІКD%&')*+,./12,Ѓ%,++*)((nшс$8‚  +7>@=5ƒ4€34Š7" mЄh'()+,..01345.Ѓ%‚, ++*))Wщщ‹‚€ .5==:5423‚433247%57656565 (jЌV*+-.01234678-Ѓ#ƒ, ++*+*щщоP%241&'%##$#""!!$&‚%$$/lШ,-/1235567899.Ѓ#„, ++,++Йшу[ %/0-ƒ€‚‚,3b.0124567889::;,Ѓ#‰, KшуТ€-.+( )./@2356789:9::€;+Ѓ!†,€-,ЙфвЁ-O@ GOOQPMMORQQLƒIHHGGFIKKN€RPNMMLMR: #UVXYa556789:‚;€<)Ѓ+…,‚-цйХЈ #až†…–€ ЂЄЃЂЁЁ  Ÿ€ž"ЂЄЄЃЁŸžžŸŸ  “ —Ž„†—6889::;;<<;‚<%Є+„,ƒ-ЕйЭ’hИ ˜АР€СУЦФТтЈψОНОРП„РОƒ%HЖЎ™™89::;;€<==ƒ<#Ѕ (ƒ,„- ‰цфнjS—ЉУ‚ртхф†тссрп€роž3'ЄдЙЌБ„::;<;€<=ƒ<І$‚,…- ‹шшфžaнш€чшъьыъƒщ€ш†ч•вкЙЏБ‡;;<==<<ƒ=ƒ<Ј,†-КщщцД.€ZЭщыюэ†ыъƒщцИj  _ЦЭЕАЕЊ<<€=>…=ƒ<Љ+,,‡-‹Кщще“C4yВрыюэ‡ыъщщрЁewШдНБГЃŽ<€=€>…=ƒ<Ћ ),‰-€щхШ›сэˆы€ъУr œиОААИг>==ƒ>…=‚<;Ќ&Š-[щщцжЁP 'Leƒ˜ЁЈЎІž‘zd?€ :‚ТЫЕАГСe‡>…=‚<6Ў ‹- [s‹чйЭД”}i[=%†6Wt‚‘ЌПОЗГК…xg>€?…>…=<<:.А,‹-.‹щщчкФДДВББЁ‡wq‚‘ЃХЬФОЗВАЖХ>>‚?…>…=5#Г+Š-€. ‹‹щшпжШНЗГ€БВ€ГВВ€БГЗРЪŠ>>„?…>‚=;-З(‰-ƒ./ыюэъсвЩТМИЕДЕЗИНФЬесŠ?…>€=5"К"ˆ-ƒ./B\m—€– ичхтрв’“””^€?€@†?…>;-П,†-ƒ./B\QCB…A…@†?ƒ>6#Т+…-ƒ./B\QCB…A…@†?€><.Ц )„-ƒ./B\QCB…A…@†?>6"Ъ%ƒ-ƒ./B\QCB…A…@„?=.Ю‚-ƒ./B\QCB…A…@‚?7"в+€-ƒ./B\QCB…A…@??=.е *--ƒ./B\QCB…A…@7"й&-ƒ./B\QCB…A‚@=.н ƒ./B\QCB…A€@7"с-./B\QCB…A=.ф+€./B\QCBƒA8"ш(/B\PCB€A>/ь"./B\OCB@7!№ .B\KCBB>.ѓ?\FB8!їR*њџџџџџџџЗџџџџџџџџџА%!ѕ€&I> №ƒ-XJ#€ъ‡-XK#хeN‰-XK#ƒрeHB4, ˆ-XK#…„opвFB9/‚,"‡-XK#†mnopqqЭ593‡,#†-XK#ˆ lmnopqqrsЧ/2-‹,%…-XK#‡ DkmnopqqrstУ(-),&„-XK#†,.7]nopqqrstuvН%')“,'‚-XK#„(. /EhpqqrstuvvwИ"$*—,(-XK#ƒ!,-.//3TpqrstuvvwxyГ#*›,)€-XK#)€-./ ;crstuvvwxyzЎ€#*Ÿ,*-XK##,,€-./ 00Intuvvwxyzz{ЉC,$*Ѓ, *-XK#)€,€-./€0 5Yuvvwxyzz{|}ІhhRB70-Є,+-XK#$‚,€-./0 1@jvwxyzz{|}~Ђ eeUck^J;2.-Ѓ,+-XK**ƒ,€-./0€1 Osxyzz{|}~€ƒe DDZifS@50-Є,3XP6„,€-./01 8`yzz{|}~€˜†e ;+;Qej[H90.Ђ,-4/-ž,(#+D:$(ƒ,€-./01€2 5Uy|}~€‚ƒ„…”†e 8 $.>UfiXE80.™, +& +D:+,€-./012357FQ[fqrj_SH>5/:~€‚ƒ„……†‡‡ˆ‰‰ŠŽ„e8… #+3/)#”+D:†"5HQTPVQF<3-)&$$##$%%5~€‚ƒ„……†‡‡ˆ‰’‚e8ˆ 0FVSA.#ƒ€€ІŠчщЖ’ƒ!)3=HQTLA6* )(%„#$%%5~€‚ƒ„……†‡‡ˆ”e8„   '=PVJ6'чщьы€ш)3=HQQLB6*  !""‚#$%%5~€‚ƒ„……†‡‡•e8†  3IUO>,l‚ч!фвТИЈŸœ—•™ЂЌИШлыьъъыьэŸˆB6+   "‚#$%%5~€‚ƒ„……†‡—€e8 ‹  *AŸЧьъшшЬ–`&‰8fЎуьыъщшВ{ †#$ %%5~€‚ƒ„……†˜ecG шъьэьУ@„AQ^gVG1  oфч€цхх‰"##$ %%5~€‚ƒ„……†™&&‘ yЏцчщоj IlŒЈИПКЖÈ ДЕЇŒoR3VРх­u‰ #$ %%5~€‚ƒ„……˜TTF& )xЎццфВV 9}ЌЫРЕА­­АГЗМРФЦХУРЛИЗБЇvIsЩх­u‰€$ %%5~€‚ƒ„…˜TQŽ xцl€"ВхаКВЏЎАЕУерцыээьыъщхрнаРАЋІaВ‚хu‰#$%%5~€‚ƒ„—SƒTU*Œ A€цЮ^AЛЧЖВВЗУЯмхы€эьыъщшчццшыщхнвХЗŸ=^кх=Š %%5~€‚ƒ„–SSƒTUUDŠ xццфu WОвДЌБПгфюяюээьыъщшч‚цшъщц€х фнФ~&&Єф€хu‹  5~€‚ƒ•SƒT€UR‡ xццп@€›сФЌЋЙдхчщэ№юьъщшч…цшъщц‚хфгg€ŠххфхuŒz€‚•‚SƒT‚U0… xццпDc„xqozŒ‘’“—œЁ žž€ƒžŸ ЄЃŸŸ›•””•i ]Ўтххu‹Z€•ƒSƒT‚UVHƒ x€цvZ%€/-*-./0169:8788;;<@ BDDIIFFEEFG<€4,€‹схфuŠ/”R„SƒT‚UVVT€ )ццтy #&:-&$&'&(*.25410011334456789<=::€;>'BC.VПфх‰*6<“RR„SƒT‚UV4 Ўццd !.6%)'"#(1.€,€-€.//0036542!':==:**­у­ˆ5=9R„SƒT‚U‚VK€ц—!!.1%253/%#+-,*+,-,--/32//00(&4;;90+ 5Шфх„.<ƒ=;‚R„SƒT‚U‚VhэшЎI)( :@)%!=NNLD;-3:;‚:;<=?ƒ@AABDGFC BGGFDEECC2'Фуъ<=Ž‚R„SƒT‚UVЛэШ ŠеŸDL<,''FHGJJ?/08>=ƒ> ?@ADC)DIHHGF7RСщыh=RR„SƒT‚U€VЁэФ ЅЪЏž<T:11,(0><9;HV‚ZYRP€NOQW];[XUVV?DHIHIG; Џты”=‘R„SƒT‚U€VEээЄ зЗЎЎ;Y:355/3==;BQ^^[[ZZRNMIIJMOQ@ MZUUVW@DJKKLM@!zжыы=’„SƒT‚U€VEээƒ OЬВГР8]:5787IXSIKNba]\WPOH?==>>< 2\YXSQSVHKOQPOOF# Ќцы”=“‚SƒT‚U$VVЁэш УЕЖзС3"jB::;BP]VKJOfc__TQL@? ;:][Y[VXXYJMQSQROI$!+ŒЭъ”=•€SƒT‚U#VVээЉ /аГТсО0#mB>A=AQ`YGLOfda`UQJ@!> 0WXZ_fZYZ[LNSSRPPK$!3zКхыŽ=•SSƒT‚U#VVээd ƒФЖефК-$pC@CEFQbZGLOfda`USKB!!TXZ`deWZZ[GNVUURPJ%!18nГныŽ=–SƒT‚U1VVэь ШЙНчуЕ*'rEBEFIX_aKMOeea`VUMEIFLWW[dee€Y\HPWUWURL%".T`АЮыŽ=—ƒT‚U1VVэм жЕХьтА()uFCFFJYgZKQOSda`SWQKPQTXW]gge€Y[HOWUVVTM&!-iPАУы=˜S€T‚UVЛэЬ ЭДЭьт­&*xFDFIN]jeWT\Z€dRTXMGWWV^Valje€Y[GOWVM&!+yGАОыАŽ=™KST‚UJVээР РГиырІ"*{HFHQ]_xqV[cglifedZG*]i`V`evwбga]Y\HPWXYWVN&!*ƒ@АЗчыŽ=š)K‚UJVээЗ #КДоыпЁ ,JHeъЙ‰Ра—hнехz•РЛFq^›•Ќg‘пЙ—гhИYY^GPVYZXWO&(†=БДфыŽ=š@U>VээР ИДрыпš+€MI–гNlŸФЩkЪdКЇ”ЧiИYЂU’›х›tvдЛ—YY^HOWZ\ZXO&€ &{EВГуы=š 4€UJVээЩ ЗЕтыо•+OJ”уP ­ŸЪgПdН•rx 5ІWЇWž™тЄxxг›Щ`b^IOW]^YYO%$qNДГры=šD &RUVoэж ЗЕсъо‘*‚QN_ДЃƒЛЄХyдЅНt/&XˆWŒЎДq†РЗ“НwЕšqiIOW``]YO$€$`XГГсY=š8 NVVэь ЄДпымŒ*„TMONN[ajkuЕrqm+9g^Z^``gkl{€{wr€lIP\a^ZWL#"BpВДф‘=™2 EVээR zГнълƒ*‡ODFGL`adijoso'-i`_`bcgiiu€~{torprPPZXWRNB!!1{АДхŽ=œO :ээ ?Гжъл~$‚LABDGYcbchjp<(qi`]`abbemwwvwvuuttpSOSQMID< !†АИчŒ=ž' Šэш ŸЭъкx!uSKKHHXa``a](a€`dbabfi€kjkjjijigOLOPONND€›АО”†=;86ЁO xшэC }Хшеi;o|„‰šŸ›™–Fyypr}ˆ†…‡‰ˆ‰‰Œ“•—šžЂŒ‘“Œ‡r'ЌАУ”„=3"Ѓ+ Aцчr JЕмбf!>FLR`{†Œx „ Œ‰—ВЗ€ИЙИЗЗЕВВЎЊЇЅ —yokdWMF=!€ЛАЮh=:*€Ѓ. цц’ЎбЮ\-566 /AFHFEFJKLK€JGGEECA@?=:€ tМАк€=2!€Ѓ ЏцВ‹ПЬZ€€)1+ #7<>;3223…545543‡ ЮЖИЙ9)€ЃCцн7ЌОPƒ** %8==;321013433443435‚42€ZХВЬQЃ€€ццšŽВN &5>><4€1€034„3431|ВДн€Ѓ€2лцE…F  .;?<52€10€34†32€  wЅИ6€Ѓ‚€ _цп$7  )5;=;4‚2‚1Š4lЂ]Ѓ„€EццŠ‚€ +2::72201€2‚12424323232&hЋH€Ѓ…€ццлO‚ #/1.$#"!!€"! !"„! -jЦ€Ѓ‡ АхрZ #--*„‚‚*1[€Ѓ‰ 5црП€*,(ˆ '+,-€  Ѓ ŠАсЯŸ-L? ELLNMJJLONNJG‚FEDGIHL€ONLKKJKP9 #TTVWY€€  Ѓ ‹ужТЅ #_›ƒ‚“€ŸЁ Ÿžž‚œ››Ÿ€ Ÿ‚ žž‘•Œ‚„•‚ !‚ Є ŠЌжЫ€fЕ•­Н€ОРТСПО…Н‚МОНƒО ПМ‚%GГЌ——†ƒ !‚ ЅŠ {ускi R–ЇР‚оптср„пˆо м3'ЁбЖЊЎu€ !! ƒ!‚ ІŠ }ццс› `кцхцщш„чƒц†х”€ЯзЖ­Ўy Š!‚ Ј ‰БччфВ-€YЫчшыъщ…ш„ч хЖi  ]ФЪГ­ГЂ"€!€"…!‚ Љ ˆ}Бччв‘B3xБошыъщ‡шччоŸdvЦбКЎАš€""!‚"…!‚ Ћ†€чт՘Žнъщ‡шСq ›жМЎЎЖа""##ƒ"…! Ќ…‚GччфгŸN&Kd–ŸІЌЃœyc> :РЩВЎАОP"#ƒ"…! Ў „„ Gb}фжЪВ’{gX<%†6WrЊНЛДАИwfR„#ƒ"…!  А ƒ‡}ччхзСБАЏЎЎŸ…~uo€ УЪТЛЕАЎГТ#$$„#ƒ"„!Г‰ }}чхмвХКДА€ЎЏ€А ЏЏЎЎЏБДНЧ{‚$„#ƒ"!  З€ŒшыъчпЯЦПЙЕГВГДЕКТЩго†$„#ƒ"!!КŒ$;Uˆ гфтпоЭƒ„…†H€%…$„#‚"! П Œ$;4(€'…&ƒ%…$„#€"Т‹$;4(€'…&ƒ%…$„#! ЦŠ$;4(€'…&ƒ%…$‚#Ъ‰$;4(€'…&ƒ%…$##" Ю ˆ$;4(€'…&ƒ%…$в †$;4(€'…&ƒ%‚$# е…$;4(€'…&ƒ%€$й„$;4(€'…&ƒ%"нƒ$;4(€'…&% с ‚$;4(€'…&%#ф€$;3(€'„& ш$;2(€'&$ь$;2(€'&& № $;/(''%ѓ";+(!ї3 њџџџџџџџЗt8mk@*[ˆH :uЅВВВВ‹ U„ВВВВВВВВВЎe 7hžВВВВВВВВВВВВВВЂ>MNЎВВВВВВВВВВВВВВВВВВВ„ŠиўўаВВВВВВВВВВВВВВВВВВВВВВЎ^3%*œсўўўўўўзВВВВВВВВВВВВВВВВВВВВВВВœ7ўљ“BЈшўўўўўўўўўўлВВВВВВВВВВВВВВВВВВВВВВВВ|Jоўўўўыk WЖэўўўўўўўўўўўўўўрВВВВВВВВВВВВВВВВВВВВВВВВВФўўўўўўўўйOqРёўўўўўўўўўўўўўўўўўўфГВВВВВВВВВВВВВВВВВВВВВЮјўўўўўўўўўўўИ.4‚ЯёўўўўўўўўўўўўўўўўўўўўўўщЕВВВВВВВВВВВВВВВВВВМшўўўўўўўўўўўўўўў˜K˜жєўўўўўўўўўўўўўўўўўўўўўўўўўўьЖВВВВВВВВВВВВВВВВгћўўўўўўўўўўўўўўўўў№y 1^ЌкєўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўяИВВВВВВВВВВВВВРяўўўўўўўўўўўўўўўўўўўўўоSAyМліўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўѓКВВВВВВВВВВЕй§ўўўўўўўўўўўўўўўўўўўўўўўўЦ8'X‹ФніўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўіНВВВВВВВВФѓўўўўўўўўўўўўўўўўўўўўўўўўўўўўoЧнїўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўїРВВВВВЖрўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўѕ… F˜ёўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўјУВВВЪіўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўтaJ˜ыўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўћЧЙхўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўа<JЁыўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўњычўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЋ%ыўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўљќўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўљ…Ёўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўќњўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўыk*љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўњ§ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўаFЁўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў§ќўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўИ**љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў§ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўљ“Ёўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў§ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў№a%љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў§ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўѕ*ЁўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўX%љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў“ЁўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўТ%љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўчЁўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўљA%љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўtЁўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЏ%иўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўйИўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўѕ*ЏбўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўXS№ўў§ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў“ЁўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўТ8оўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўч…ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўљA*Ыўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўyfѕўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў˜ИўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўќЩSчўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў"˜ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўr8оўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўФ}љўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўFыўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўl дўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўИЏўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўљўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўaSѕўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЏ.оўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўѕТўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўS“ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЋkљўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў№<чўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўO аўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў Іўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўы~ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўASѓўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў“ Zўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўч 0ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў< #ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўŠ "ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўо №ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўаo эўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўѕ8щўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЫfмўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў§Ё:мўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўшбўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўмЩўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўбЦўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЩЗўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўПЖўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЗЋўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЈЃўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўЃЃўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў‹ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў}‡ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўs|ўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўg`јўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўZ+sяўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўP >dлўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўC (@ZФўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў: %QЌўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўђЖo="8Mѕўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўж–]RD- 3Itъўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў№ГqVMB4%  .D_вўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўг’]RH;.! (?UЕўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў№ГqVMA4& #:N–јўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўг’]RH;-  4Jzэўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў№ГqVMA4&  /EeлўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўаZRH;-   *@VСўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўўў№БoVLA4& %RВўўўўќўўўўўћЫŠYQF:, #9N“јўўыўўўыЋkUL@2% 4JxюўзћЫŠYQF9+  .DgчŽhTK@2%  )=NKA8+  *(    l8mk5iA,{ˆЌВВВ‡7=‹кўўѕНВВВВЙЩўЧ9QŸшўўўўўўїСВГећўўў§Ї2…юўўўўўўўўўўљЬяўўўўўўўі„ јўўўўўўўўўў§§§ўўўўўўўўўўўцc—ўўўўўўўўўўўўўўўўўўўўўўўўўўІјўўўўўўўўўўўўўўўўўўўўўўўў№'–ўўўўўўўўўўўўўўўўўўўўўўў§SQчўўўўўўўўўўўўўўўўўўўўўўўŠ ўўўўўўўўўўўўўўўўўўўўўўўўЫ9лўўўўўўўўўўўўўўўўўўўўўўўўўф3сўўўўўўўўўўўўўўўўўўўўўўўўўў9ФўўўўўўўўўўўўўўўўўўўўўўўўўŠ›ўўўўўўўўўўўўўўўўўўўўўўўўл†ўўўўўўўўўўўўўўўўўўўўўўўў/HўўўўўўўўўўўўўўўўўўўўўўўыJ@ўўўўўўўўўўўўўўўўўўўўўў{8ўўўўўўўўўўўўўўўўўўўўўў9/ўўўўўўўўўўўўўўўўўўўўўў-%§ўўўўўўўўўўўўўўўўўўўўў ‚јўўўўўўўўўўўўўўўўўўўў _ыўўўўўўўўўўўўўўўўўўп ?еўўўўўўўўўўўўўўјПk"&Еўўўўўўўўўўўт—@њўўўўўўјОj$  iяўўўс–>HгНh# uControl/uControl.icns0100644000076500000240000015547007435005556014355 0ustar shanestafficnsл8ics#H€№ј?ќўўџџџџџџџџўў?ќ?ќ№Р€№ј?ќўўџџџџџџџџўў?ќ?ќ№Рis32Вƒџ†‡џ‚€џьрссыъ€џ€mџџи’ЂЅЇЉЉкэ№џџѓ+P‡G?@Aw_ИџџџТ!V†\RO{šO?‰ёџџўЊ*AZaSdР_UF(ђџџюВ1E^e]Лak[MпџџчЌ6ЁžШ–›”]Pсџџѓœ/^{Ь„r~oQп€џ…Žl>><:!oнџџУUr0€- ,žгџяЕРpm€klnПrп€џњэƒўѕкю‚ џљэсцщрпоџ…џџјєџџ‚ƒџ†џџќВ„‡Щ€џ‚ џћ{gЉми™[Ѕџџ€џѓFu“ЂЅЇЉЉGT№џџe%iЙS?@A*7/@џџЕ‚!pВmRO<5O?уџџŠЊ*B_aS:(_UFџџ|В1E^eT&ak[MfџџrЌ6Ёž6›”]Pkџџ„œ/^{.`r~oQeџџ—g1>><:! Мџќ,!0€- ,гџК5pm€kle,kп€ џв]Д§ўўћšdдю‚ џљЋbdhcМоџ…џџјєџџ‚ƒџ†џџќВ†‰Ъ€џ‚ џћ|hЉми›\Іџџ€џѓHuЂЅЇЉЉHW№џџg%0G6?@A+8/BџџЖƒ!5LGRO=6O?уџџ‹Њ*@SaS:)_UF‚џџ}В1E^eT(ak[MgџџsЌ6Ёž8›”]Pmџџ…œ/^{1ar~oQfџџ—g 1>><:!Мџќ/"0€- ,гџЛ8pm€kle.kп€ џв^Ж§ўўћ›eдю‚ џљЌceidНоџ…џџјєџџ‚s8mk4uu5‰§џџџџ§ˆ3сџџџџџџџџс2юџџџџџџџџџџюЊџџџџџџџџџџџџЉџџџџџџџџџџџџџџ}џџџџџџџџџџџџџџ|€џџџџџџџџџџџџџџ€џџџџџџџџџџџџџџ€џџџџџџџџџџџџџџ4џџџџџџџџџџџџџџ3ЫџџџџџџџџџџџџЫ9џџџџџџџџџџџў8LџџџџџџџџџўL6ЪџџџџџџЩ612ICN#р?ќџџџџРџџрџџ№џџјџџј?џџќ?џџќџџўџџўџџўџџўџџўџџўџџўџџўџџўџџў?џџќ?џџќџџјџџјџџ№џџрџџРџџ€ўјр?ќџџџџРџџрџџ№џџјџџј?џџќ?џџќџџўџџўџџўџџўџџўџџўџџўџџўџџўџџў?џџќ?џџќџџјџџјџџ№џџрџџРџџ€ўјil32йЉ…џ’‹џџŠƒџ§ъбЦФЧміƒџˆ‚џ №ХТи№ћќќѕхЫп‚џ†џ§ШЪј†џўујџ„џd:7BBAGIKNPRTTSКдгхЫџџ‚џ*&$Fs`>/0123457tєA@ШОЧџџ€џв4*F‘ЄЈa‚M NO\ўWPK(њ_§џ€€џў“&E‰“aDCDDEFIџdMML,*љёџџ€џ№ˆ.:\€{icd]WZdњЅ`SPO2чеџџ€џФ•8:EdTZc[OAFьШaYVRQ7I№ћџџџќУŒA=FbP]iYGGПчaf]XUS="џмџџџчрH@HcU]j\N“јUci]\YY> џУџџџжѓsOBKg[^qXqџdanŠ]\Z\@ ќТџџџЯ|љfTG­’ŽЙ…–џŸЁР]\Y]BћХўџџЯњXQLОЗЎТ|ўŒzН~НЋˆ`^bA§ХўџџмїLRINlsxєХbfkxƒzkZT4џСџџџђыA:oqŠ…иьowz|~ƒ‡‚vvH)ўРџ€џб87Єё€HIHGEA>/’єЫџ€џл0€`§:>434€3 43'џЩэџ€€џ+€(џ@?4‚3233*€ЕЎџ џџўуїT8(&‚( '&&1џ%Хџ‚ џњьЦм1 ƒ€-џ96пƒџћмљії А€О‚МН€ОХџЯ™ЦЬ„џў§ёўй‰ќ§џєОёы†€џ柳џўлСїџ‰џџѓЮѕ…џќпПнџŒ€џ ѓЪОШдиаЦОСрџџ‚џјєїќ€џЇЉ…џ’‹џџћ—4  _Ъ‚џŠ€џ К [БФОКАqEќ€џˆџџњЬХТи№ћќќѕхШ_™€џ†џџиШЪј†џўн3€џ„џџй>:7EDAGIKNPRTTS'Ыџџ‚џџѕ&$dІŒK/0123457'A@Чџџ џџƒ4*RЩбп…NM NOILPK(7§џ€џџМ“&UАЖЩ‹FCDDEFE=MML,ёџџџџбˆ.<€ЇЃ}dd]WZd:`SPO2џџџњФ•8:HsYZc[OAF $aYVRQ7,ћџџЪ`УŒA=FbP]iYGG af]XUS= мџџkœрH@HcU]j\N5Uci]\YY> Уџџ?ЌѓsOBKg[^qXLbanŠ]\Z\@ Зџџ5ЋљfTG­’ŽЙ…“†ЁР]\Y]B'ЗўџK›њXQLОЗЎТ|CzН~НЋˆ`^bAПўKџ’oїLRINlsx 7bfkxƒzkZT4Сџџъ&ыA:oqŠ…owz|~ƒ‡‚vvHРџџџЮ87€HIHGEA>/ sЫџџџ]e0€&8>434€3 43'Хэџ€џћ+€4?4‚3233*€ Ўџ џџ‚8(&‚( '&&%Хџ‚ џњ 1 ƒ€6пƒџћм" А€О‚МН€ОŸ˜™ЦЬ„џў§NАˆќћbлОёы†€џЙФќƒџєqLлСїџ‰џџѓœ2)pоПнџŒ€џ ѓЪОЊ›ЊЫЦОСрџџ‚џјєїќ€џЇЉ…џ’‹џџћ—6 aЪ‚џŠ€џ М]БХОКБrGќ€џˆџџњ ЬХТи№ћќќѕхШ`™€џ†џџиШЪј†џўн6€џ„џџй>:6 УџџAЌѓsOBKg[^qXMbanŠ]\Z\@ Зџџ7ЌљfTG­’ŽЙ…“†ЁР]\Y]B*ЗўџMœњXQLОЗЎТ|DzН~НЋˆ`^bAПўKџ“pїLRINlsx 9bfkxƒzkZT4Сџџъ(ыA:oqŠ…owz|~ƒ‡‚vvHРџџџЮ87 €HIHGEA>/ uЫџџџ^f0€(8>434€3 43'Хэџ€џћ+€4?4‚3233*€ Ўџ џџƒ8(&‚( '&&%Хџ‚ џњ 1 ƒ€6пƒџћм% А€О‚МН€ОŸ˜™ЦЬ„џў§PБˆќћd лОёы†€џЙХќƒџєrNлСїџ‰џџѓ4, rоПнџŒ€џ ѓЪОЊœЊЫЦОСрџџ‚џјєїќ€џЇl8mk8˜йћњй—94їџџџџџџџџџџї3яџџџџџџџџџџџџџџя…џџџџџџџџџџџџџџџџџџ†ЩџџџџџџџџџџџџџџџџџџџџШЛџџџџџџџџџџџџџџџџџџџџџџЛaџџџџџџџџџџџџџџџџџџџџџџџџ`џџџџџџџџџџџџџџџџџџџџџџџџџџЃџџџџџџџџџџџџџџџџџџџџџџџџџџЄџџџџџџџџџџџџџџџџџџџџџџџџџџџџcџџџџџџџџџџџџџџџџџџџџџџџџџџџџbѓџџџџџџџџџџџџџџџџџџџџџџџџџџџџѓџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЖџџџџџџџџџџџџџџџџџџџџџџџџџџџџЖџџџџџџџџџџџџџџџџџџџџџџџџџџџџѕџџџџџџџџџџџџџџџџџџџџџџџџџџѕ:џџџџџџџџџџџџџџџџџџџџџџџџџџ9иџџџџџџџџџџџџџџџџџџџџџџџџи §џџџџџџџџџџџџџџџџџџџџџџ§ џџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџ§зџџџџџџџџџџџџџџџџи-ќџџџџџџџџџџџџќ,ЕџџџџџџџџЕich#H?ќџџ€џџрџџј?џџќџџўџџџџџџџџ€џџџџРџџџџрџџџџ№џџџџ№џџџџјџџџџј?џџџџќ?џџџџќ?џџџџќџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџў?џџџџќ?џџџџќ?џџџџќџџџџјџџџџјџџџџјџџџџ№џџџџрџџџџрџџџџРџџџџ€џџџџџџў?џџќџџ№џџрџџј?ќџџ€џџрџџј?џџќџџўџџџџџџџџ€џџџџРџџџџрџџџџ№џџџџ№џџџџјџџџџј?џџџџќ?џџџџќ?џџџџќџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџўџџџџў?џџџџќ?џџџџќ?џџџџќџџџџјџџџџјџџџџјџџџџ№џџџџрџџџџрџџџџРџџџџ€џџџџџџў?џџќџџ№џџрџџјih32ря‰џžџ™“џ•—џ’‡џћяхонохєў†џ…џўоУ€ОПРСПООРђ…џ…џэЧОСлѓ§ƒџ§јтФа…џŠ„џќвОЦъ‹џ№Эђ„џ‰‚џ§ЮІ­ж€тъˆь€тѕеџ§ёўџџˆ‚џ ˆ 7./9=86789==?@BCCFGGJБџkkџј`ўџџ†‚џК*.&BSWJ:.00113455€7 8iџжCFZџШiўџџ„‚џ ћ&++KŒ‘V<€5€787887Lџо?D;6џV­§џџƒ‚џ”3"=A]”œЅЈjTKLKLLƒM §№MOOLJзџlљџџƒџћt)?>Yƒ‹›jTCDFG€IџџQOOMLJџбёџџ‚‚џ#иjH9S{†•œj`WYWWVVWXXфџgXSIOON"ЅџО€џџћКgP7F]fmohddc^WVUWaЕџŸ€`G€P&џщјџџџ'кК`Z8>I^iUTdccUMABNџвbXY]JRQP)ИўЧџџ€‚џ*ТгVb;@FXdQQhgXQCCD^џЭgbY]_JTSR,ZџО§џџџ+ђПђLj;AGYfRRiiYMGFGџї[ahZ]aMVTS-3џгьџџџ+еЦі>p>DH[hURhi[ONQџџO[gj]]bJWZU.-џїЭџџџ+Феі6wAFKZhZXhkWXXвџeW[nj]]aJWXW1+ћџПџџџ+Стѕ/{BIK\i[^htS_ЪџЂ`[Zvь]]bKZ]X2*јџОўџџ+Пює&€F}ПŠУZгы|БЏџыˆЃ\чЙяЦ]bK[]Z1&ѕџОќџџ+ПёєHјPƒд`ЌХx№џийН[yЂ|ё_bJ[`]1$їџПњџџ+П№ѓ€KPДkŽŽЛЊƒџ§]…^ЕnЎЇИЖvlJdc^0"ќџПњџџ+ТэђƒJNSjnwƒxјџkcbfno†‡€ttzL_\S* џўОќџџ+Чт№‚HGH_jnoнџ{hacdhw{{xxvqLOIA%!џїОўџџ)ыб№ 9ƒ•ЉЌЅяџА~{‘’•™ЃЊЎ“™’8gџтРџџ€џ'Ую $'-FSЄџЎmju{}}|{xtmh`W.+$бџШвџџвц € ,Aџй:@854ƒ5€4 2џѓНюџџ§Ф €?џј8?8‰3 1лџЪНўџ‚џ в ђќ4?<Š3 1џЁЉЪџƒ‚џ чџ7@@ƒ43…4 џџ$žњџƒ€џўџљдџG02€Ÿџ.1Ї§џ„џџўыџПHџ…)/ƒ‚NџЌ'3Уѕ† џўюЖџч–џиvlx€{x…rt‚{€Ьџю€wžоˆ ќљушџў§ФЂПвЯЯ„Юа‚выџїЦЃТнŠџ§ћчџџПб‚љ‡њљўџќчЛбћ‹џђі“џўЭОоџџ€џѕмўџёТСхџџиЩўŒџьУОгўџ’џћмРЬсїƒџ ќѓрЫРПгјџџ•џўсЧПООПРРПООРФоћџџ™„џї№ъщяїўџž‰џПя‰џžџ™…џњє№ѓї†џ•ƒџ№7†А„џ’џ іp$_ƒ”œ‘X*€Oк‚џџtжоУ€О ПРСПООЛ&#‚џџ лoчЧОСлѓ§ƒџ§јтТˆ‡‚џŠџŒявОЦъ‹џ№Щ#Vўџ‰€џ%2ЮІ­ж€тъˆь€т!ёўџџˆ€џ"S2 7.0?G:6789==?@BCCFGGJ!?A`ўџџ†€џе(*.)[w{gF/00113455€7 8. CF4iўџџ„€џ ш&++lОУЪзzD€5€7878873 ?D;6 ­§џџƒ€џ%”3"=H…ЧТдр•cKLKLL‚MLMOOLJcљџџƒџџИЊt)?I€ЊЖТж˜jCDFG€IHOOMLJ(ёџџ‚€џ%(иjH=q­ЏЙб‘pWYWWVVWXX UXSIOON" Н€џџџјККgP7TŒ•zidc^WVUWa/?€`G€P&6јџџ+џџ!кК`Z8?Qt|]UdccUMABN2bXY]JRQP)Чџџ€€џ~ТгVb;@FXeQQhgXQCCD;gbY]_JTSR,#О§џџџџѕйПђLj;AGYfRRiiYMGFF[ahZ]aMVTS-3€ьџџџџхЮЦі>p>DH[hURhi[ONQN[gj]]bJWZU.- ЭџџџџБФеі6wAFKZhZXhkWXXUW[nj]]aJWXW1+&ПџџџџСтѕ/{BIK\i[^htS_B`[Zvь]]bKZ]X2*LОўџџџvПює&€F}ПŠУZгы|Б'VˆЃ\чЙяЦ]bK[]Z1&aОќџџџПёєHјPƒд`ЌХxойН[yЂ|ё_bJ[`]1$HПњџџџНП№ѓ€KPДkŽŽЛЊ]…^ЕnЎЇИЖvlJdc^0"Пњџџџш\ЗэђƒJNSjnwƒwkcbfno†‡€ttzL_\S* EОќџџџїЈт№‚HGH_jnomhacdhw{{xxvqLOIA%ВОўџ€џ*;б№ 9ƒ•ЉЌЅt~{‘’•™ЃЊЎ“™’8тРџџ€+џџQУю $'-FSB)mju{}}|{xtmh`W.+$ Швџ€џ‚ц € ,1 :@854ƒ5€4 2OНюџ€џФ €)7?8‰3 1ЪНўџ‚џџЩa 4?<Š3 1 ЉЪџƒ€џ E2@@ƒ43…4 $žњџƒ€џј02€1Ї§џ„џџўд)/ƒ‚'3Уѕ† џўю™m(vlx€{x…rt‚{€5€wžоˆ ќљуs ФЂПвЯЯ„Юа‚вC4ЦЃТнŠџ§ћ™Ўб‚љ‡њ€љѕqчЛбћ‹џэШŒџ ђ*эЭОоџџ€џѕtЂь†џ ѕХ'TёТСхџџи&^{fE‚ьУОгўџ’џћмМ™Z‚ \ЕЫЫРПгјџџ•џўсЧПООПРРПООРФоћџџ™„џї№ъщяїўџž‰џПя‰џžџ™…џњє№ѓї†џ•ƒџ№8†Б„џ’џ іq&`„•’‚Y,€Qл‚џџu жоУ€О ПРСПООЛ(%‚џџ мpчЧОСлѓ§ƒџ§јтТ‰ˆ‚џŠџ явОЦъ‹џ№Щ&Xўџ‰€џ'4ЮІ­ж€тъˆь€т$ ёўџџˆ€џ"T3 7.+0056789==?@BCCFGGJ#@B`ўџџ†€џе**.!!%%&*.00113455€7 8/CF4iўџџ„€џ ш&+*!0EF8&2€5€7878874 ?D;6 ­§џџƒ€џ(”3"=:*QlgT2@KLKLL‚MLMOOLJcљџџƒџџИЊt)?1'PUOL,7CDFG€IHOOMLJ+ёџџ‚€џ% *иjH6,7SfV8JWYWWVVWXXUXSIOON" Н€џџџјККgP76-5B?P^dc^WVUWa1@€`G€P&8јџџ+џџ#кК`Z8>=BOJSdccUMABN4bXY]JRQP)Чџџ€€џТгVb;@FXcQQhgXQCCD;gbY]_JTSR,#О§џџџџѕйПђLj;AGYfRRiiYMGFF[ahZ]aMVTS-3ьџџџџхЮЦі>p>DH[hURhi[ONQO[gj]]bJWZU.-"ЭџџџџБФеі6wAFKZhZXhkWXXUW[nj]]aJWXW1+(ПџџџџŽСтѕ/{BIK\i[^htS_!C`[Zvь]]bKZ]X2*MОўџџџwПює&€F}ПŠУZгы|Б)XˆЃ\чЙяЦ]bK[]Z1&bОќџџџ‘ПёєHјPƒд`ЌХxпйН[yЂ|ё_bJ[`]1$JПњџџџНП№ѓ€KPДkŽŽЛЊ]…^ЕnЎЇИЖvlJdc^0"Пњџџџщ\ЗэђƒJNSjnwƒw kcbfno†‡€ttzL_\S* GОќџџџїЉт№‚HGH_jnomhacdhw{{xxvqLOIA%ГОўџ€џ*=б№ 9ƒ•ЉЌЅu~{‘’•™ЃЊЎ“™’8тРџџ€+џџRУю $'-FSD+mju{}}|{xtmh`W.+$ Швџ€џƒц € ,1 :@854ƒ5€4 2QНюџ€џФ €)7?8‰3 1ЪНўџ‚џџЩc 4?<Š3 1 ЉЪџƒ€џ G2@@ƒ43…4 $žњџƒ€џј02€ 1Ї§џ„џџўд)/ƒ‚ '3Уѕ† џўю™n*vlx€{x…rt‚{€6€wžоˆ ќљуt ФЂПвЯЯ„Юа‚вF6ЦЃТнŠџ§ћšЎб‚љ‡њ€љѕrчЛбћ‹џэШŒџ ђ-эЭОоџџ€џѕu Ђь†џ ѕХ(UёТСхџџи(_|gG‚žьУОгўџ’џћмМ™Z!‚ ]ЕЬЫРПгјџџ•џўсЧПООПРРПООРФоћџџ™„џї№ъщяїўџž‰џПh8mk NжџџџџџџџџжN˜ьџџџџџџџџџџџџџџь˜ŒџџџџџџџџџџџџџџџџџџџџŒeџџџџџџџџџџџџџџџџџџџџџџџџeнџџџџџџџџџџџџџџџџџџџџџџџџџџнџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџьџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџьPџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџPџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџIџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџIпџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџпџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ`џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ`МџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџМоџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџоёџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџёќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџћџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџћюџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџюзџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџзЖџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЖ=џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ=џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџеџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџе,џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ,џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџZџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџZџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ7џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ7ЭџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЭрџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџрџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ№џџџџџџџџџџџџџџџџџџџџџџџџџџџџ№ЛџџџџџџџџџџџџџџџџџџџџџџџџџџЛьџџџџџџџџџџџџџџџџџџџџџџьmіџџџџџџџџџџџџџџџџџџіmЕџџџџџџџџџџџџџџЕ&jЃбя§§ябЃj&it32l џџџџџЈ“џтџйЅџвЋџЭЏџЩГџФЙџРЛџНПџКСџЗХџДœџў§ћњјїјћўœџВ˜џ§јѓщтнигЯЬЫЪЩШЪЪЬбзтэјў—џЏ–џ ўјяцмеЭЧУТСР‡ПСТФХШехі–џЌ”џ ўјьрдЫФТРППƒО€ПСРРППОПСУХЮсѓ”џЊ“џќѓфиЭЧУРП€ОРУЦЪЭвезклммлиздбЬЩХУПОСЦЫиьќ’џЈ’џњярбЧТР€О СФЫблушэ№єі€јљјіѓ№ышткбЫФССШвшљ‘џІ‘џљьнЮХР€О ТШбнхэєјњќ§ў‰џў§ќњјєэхнаЧУЧбцќџЄџќёоЮХРООСШвнъѓљќў•џ ўќљђшмаЧЩйя§џЂџўєхдЦРООТЫлъєљ§џ§јёциЬЭнљџўŠџ џ §яжШСООУЯпэј§Ѓџќѕчкбиёў†џў„џžџ їцгУПОСЬоёљўЇџќіъздх§џ§џўўƒџœŒџ ўѕхиЦИЏЌАИЩисчƒщъю›№юъƒщчыуйпјџљщєџџўўƒџšŒџ§к­•Œƒ|{|€ˆ”œŸ ЁЁ €ЁЃЈ­‡Ў‡ЏАЏƒАБЋЇЅІЇХєѕщмв№ўџџћцИкѕџџўў‚џ˜ŒџїКqHA@ABBAADGJJKKLJLQU€VXZ€[ \\]]^__^_``a^[Z[\\]}Цћџќе‰Ёс€џєБ|Ўтќџўў‚џ—‹џь—C!.<643/--047;;::766567€9;<:<=>@BCD€FEFFHJ€I JLMgГђџџэ“VV‹п€џ№‘L‚Ьїџў‚џ–‹џч~!9F7/+(*/6=@CCB@:76343443‚57€8998€:;<€=<=?>>@@A DPЅьџџёЅQJJM„о€џяƒ+`Пё€ўџ”‹џшs&>H3'$%.8AHKKLJIB>;42//10€1211332‚4 56677878:99€: ;:;G|хџџіЎZC€GFн€џюlYКєўў‚џ“Šџэw$(AG) %,:ELXbii`UOLG<6/.//€0‚1232€3 4454556566767878>nЮўџќЖ\ABEDD@>CBB@950hт€џЪ3wфќўўџŠџ§В"%%"$HH')6GXk|†‹‰ŠŒ…p[PC942€123223433445€45466466579NЖњџџн†A>CCB@<640rђ€џž#2Бѓ§§‚џŠџяd))(")RP13ARh‹’”—–—•†iWMD>;:;:;<‰=%>=>==>HђџџѓЋXBEGGFB?<<8!Мўџџх[„уќ§ўџŽŠџ"ќП)#443.#5h_AGS_‚˜šЂЃЇЈЋЋЃ …d]UNMLKLKLMLMNMNNMMNOO‚NT„ъџџћЛlNONLKJJF1=жџџћЫ=WЩјќў‚џŠџ0ѓš#+42/%6i]DNXgŽššžЁЄЈЊЌЊЄ•f_YRMMONMMNMNNMMNMOMMNOONPO€N}сџџќлtPQPONLKKH4ZьџџѕšRДѓћў‚џŒŠџ!њч…(,/,!2eT@KUgŒŒ•šžžЁЃœ•a\UNG€FGGF‚GHH€GHHGIJIJJIIJaдџџ§сJL€NLKLJIJIE3ŽћџџчsЃыљ§ƒџ‹‰џ"ўіжz+,."5gP@MWg‰ˆ‡Œ’—™›ž™–c]WMF€CDEDE€FGGFGF€GH„I\Р€џч›OLN€OLJLLKKIH5'ЮџџњТšоі§ƒџŠŠџ"ћэПr*,&7jN@MU`€…ƒ‡‹ŒŽ“š—c_WOGCDD…EFGHGHVЎ€џєІQLN€OMLMLMLLKI8XёџџьЖЪя§„џ‰‰џўјмЎm*&GMTZdmlhc`_][addcd_XVUURNJKKLPVWWbХ€џќЧhda^\\^`a[NIORRSRR€PA'€ 1аџџїЮЪчў‚џ†‰џ#№ЯОЙУЭ_ UtF8:@BEHN[ffZSQOQOhheeghbZXWRJBBCDC€DG€ћ€џц{hd€b _Y\\]_]RINSU€SRSQI+>аџџ№ЯЦъќ‚џ…ˆџ0ыЬПОбыЮU `tE;<>ABEIN\feZTQOSRhhgfgh`XXVMFCCƒDbт€џљƒeg€b$c_Y[\]_]RJPSTVSSTRQJ-4БџџїжСмљ‚џ…‡џ0ќпФОУрюЫN cuE<<@BCGIN\feZSOPRRhhghhi`XXULFF€E-FFEWк§џџ§‘[adbbcf`[\\]\ZRLPTUVUSURQL.(Š€џрПађўџ…‡џ%ігСОЭэ№ЪL fvF;>@AEGIN^hh]PRQRRhh€ijaYYUK€GFGGFOЮќ€џ-Ё[Z]abchj`Z]]^a_TMRVVUUTSTRM-$zјџџшЧЦщќџ„ˆџ%ьЬПРкѕёШI iwF<@ABGIJO^ghYKRPRRhhjaY]UKƒGJБњ€џАY[Z]bc€hWW^]^a[NHQVWWVVTSSL. $vэџџ№ЯТнљ‚џƒ‡џ7ўтХОУці№УB kwF<@ADGIIM]khjUSPRRhhjijj`ZZUMIIJJKKЄ№€џ ТO[\[^dggjh€]^^_aVJV[WWXXVSSL.€ "nфџџѕеОвѕ‚џƒ‡џ!ћкУОЩяї№Р>"mwF?@BDGHHR^fhhUU€R€hjijb[]VNKMOQR™ь€џйNPZ[Z^f€jh‚]`bVJV[XWXZVUUM.€ "fлџџћкОЫюўџƒ‡џ'їаРОбїјюР=#pyG@ACEHIIS_gqiVUQQRfmh€j `Z^YPOSVX|ч€џцoPRZ\Z`i€jh‚]`bVKU[XX€YUUN0"dвџџўпОФх§џƒ‡џ4ђЪПРлњјюЛ8%tyH@BDGGIJN]hj^TYVSRSihjji_Y_\UTXYsЦ€џ №~ZVW\]Xalkmjh‚] _bVJU[WXZXYWVO1"cЯ§џџфСРмќџƒ‡џEюЧОУтћјэЗ3%vzHACDGJKMU^ijc]\Y]^Yjhkkj`V_aYUXoП§џџљŒ_XWY`]Wcooqjh‚] `[NJU[XZ[XYXXO1!\ЫћџџщФПжћџƒ‡џEыФОЦшћїьЖ2&w{H@DFGJLNXcjjd^]]ec\hhntnaR^f[TgДљџџќБl^YW\d[Thqxunh‚]`bVKUZX[\[ZYXO1€ "[ЩљџџьХОбјџƒ†џ3ўцУОЫьћїыД/&y~IBDGIJKMNcmjaX[]`]\hhotqdT[e^]Ћє€џЙwf`[W\e]Wiu~дьh‚]`bVKUYZ\[^[XYP2€ "YЧљџџяЧОЫєџƒ†џ2§тСОЯёќїы­*&yKBFHIJKMOcnkaUZ\[Z]hiqllgZ]]Z€я€џФzdb`_YXba\lzzжюk_]``TKWZZ]\\[YYQ1€!TФјџџђШОЧ№ў€џƒ†џ1ќпРОдѕќїъЊ''{€LDHHP^sšЏŽ^ZgœwІwworšЊ—_sк€џ8э†gs‰ˆmWWa~ЈГœxиюki–h]]`bVKUY\^^\[YYR1!PРїџџѕЪОФьў€џƒ†џ ћоРПжіќіъЊ&€ )‚MGHXЁёЯИrЉЩРѕЊZzџлфћі„sЮхЕО€Ьџ'вs‚ВЃЇХY›§чШЧ|кяwРС]]^bbVKVY[__]\ZYR1€ !PПіџџіЫОФъ§€џƒ†џ ћоРПиїќіщЄ#€)„NHHqшЃPK[gnuдж\zџНgžџЈsёп|jУ€џ:ёёЭi ЏbWам^ёяlz}zкя­лf]]^bbVJUYY_`^]\[Q1 NОїџџіЫПУш§€џƒ†џ.ћнППлїќїщŸ'~ˆRHJxёOMQŠЯюім_}џЁh…џРtžёњр€џ єДМУkЇЁ`ZЩєjџЭm|{йђьШ^]]^bbVJUZZ€`_][R1 IИјџџіЫПТх§€џƒ†џ ћнПСмјќіщ€(}ŠSJKsыЄROZЮЦ{Яй`~џЂjџŸv{†Э€џ<ќВsЉВeЁБe^ссfѕяq~ияБіЉeehb`VKTZ]cba]]\R1 FЗљџџіЭПТуќ€џƒ†џ\ќоПСмјћѕш›'}ŒTKM`ЎюСЊnЯхЯёљ|џѓКэі€|зЮћџџўмofšЄe€ЫРЪј˜kЎџсПСйя…гё’wxphWJTZ`feb`^\R0€  FЖљџџѕЬПТуќ€џƒ†џ,ўрППлїћіч”'|VKNO[—ГЁ^z­•‚ГŽ‡џВЇС“y|Жљ€џ,у‡^ax~a^ДЖ‹ino—ХЪЌƒЌИ‰ЛЁvuqiWJUZcgebb^\R0  CВќџџѓЩПТх§€џƒ‡џ*уРПиїќѕц’'}XLNPPSTPUcjrywtџ­zw{z„ъ€џ.ъœjb]\\_bccfipqpx…‰ˆ‡ƒƒ~xustxlUKT\bhhb_^\P.€ AГџџўяШПУш§€џƒ‡џ)шУПжіќѕх‘'~“YLLOPSUXajlovvwˆЭœvyxxо€џ?їЈkjc`__cdegkprpsŠ‰ˆˆ„€zvpoppyqVJW`dd`_\ZUK.EПџџўюЧОФъ§€џƒ‡џ(ьХОдѕћєф‰&~šZIKLMOQT`mmkptwswyzyvа€џњЦriccaadgfhlnonp|ƒ†(€ztvwvv}t_NV]][ZZUQNC)IЪџџўэХОФьў€џƒ‡џ ѓЩОЯ№ћєтƒ€%|[IIJKLMPYgolmnsstvz~Р€џ ћгtga_adfhih€ilu€&}|}}||ucQUXWVRQNIF?(Kиџџ§щФОЧ№ў€џ„†џћЬОЫыњєт‚%|Ё]HFGHIIKUc€kloppqqВџ к|unhda`acd"gkry}|{{|zzyyzyxxwuo^OPRPQNIGC?9%€ R№џџћуТОЫє€џ…†џ&ўвПЦчњєт€$}Ё]GFEFDDFP_effghijl—ѕ€џ1ё‰pligfggedccdglpuuvvusutstsrrsqonhXIJKKJHDA@>8!€ $e§џџјнСОбј€џ…‡џ оФФтљєтy €$h„f\\[[WVU\jnljkkjjˆю€џї“kgdbceikjhhgjmm‹nonopl^PRVXYZ[\[]O)1€џѕйРПећ€џ…‡џ#ьШРлјєсu !;Zs„ˆ‰Œ˜ЅЈЅЂЁžЇъ€џ§М”…zwxzƒŠŒŒ‹Š‹‹€Œ/Ž‘’“”——™šœŸЂЅЈЄ˜Ž’•”“‘Žˆt6BНџџў№вППлќ€џ…‡џ ћЮРбєѓсt €"BGKYlsw|‰фџЬŸš‰Š‹˜ІАБВГДЕДДЖГВ€А-­­ЊЇІЁŸ›˜—’‰…zgUQOJGA<63/+!"’ўџџјрХОЪьў€џ†‡џ ёЪУф№лg  "+9??@EПќ€џ ЛROSRSTRTT€XYYZYY€XWXUTTSSQPMLJJHGGD=-€ -вџџўёиСОбє€џ‡‡џ ўдСкюлf €#0645”љ€џЩF8>BAA?:€87‹867„6€50!„‚ PњџџћшЯПСмљ€џ‡ˆџ ъЧЭцкb …"044‚щ€џйL6?@@:5†344ˆ34„3233/ €€ GъџџщЏЪРМФшќ€џ‰‰џхПМQ „3Ѕ№џџ§“>7=?@@;5Ž34Œ34/!ЇџџїС}ОКМЬѓџ‰‰џњЮЏJ ‚ ’ъўџџАC6=?@@<54Ž34Œ34/!€€ TёџџрtjЏИПзњџŠ‰џ №ЏJ €`т§џџРU6;?@@=64Ÿ34/!‚€ #ЬџџњЉ5dЇЖЦхў€џ‹†џўџџўдJ €ƒTРќџџЮ^8;?@@<7Š32‰32†341%‰ ŒћџџфN)cЂЙгђџŒ…џў€џ јy KЕіџџсg89?€@:4Ё3 43'Sыџџѓ'/bЁСтћ€џ…џўў€џС3…€(Žчџџ№?7=@@?:5€3‹43…434"34334431&,АџџќдF#4_ЁЪьў€џŽ„џ€ў џџќš.ƒ%cпџџѕЂE18<<;7/-,--.--.€-,-,-)€€“ћџџьz*6^Єкіўџџ„џў§ќ€џѓ„#$VУџџћ­C&.554/%!" ! !"!"!"‡!‚  „wђ€џ ž)/7^­шњќџџƒџў§љњ€џцr! LЙќџ§аL#&//0*!€€‚‚ƒeу€џ Ъ;(28_И№љћџ’‚џў§јђѕ€џмn6Ќљџџйv&&./0-"€ƒ‚€ƒ‚ˆcи€џ рW%-37`Тђјї“‚џў§јэоѓ€џкi.’єџџр0%-/0,#€‡‚€… aж€џ юr"+028pЮюѕџ”џў§јюжЫє€џиj($"/…ыџџѕ–>&/341*"€ ! €€€€ ƒ€""$eе€џ ё‘.*588=U™зью–€џўўљ№оНЯј€џлŒ]]цџџћжvTQSSTURƒQ€RP„KJ…K€JKJKJJPQ„R QRRQQRUX]ƒй€џ їЙf\[\\`p’Рлц—€џўўњёуЭЛфќ€џчІЁпџџў№О‰€xtuz„‡†ˆ†€€€†‹ˆ‹Єп€џ §с—‹„}|‡ŸМбпа˜€џ§ќіылЭЦъќ€џіч€џ їиГЃ–˜ІВ†ГВВ•БВВˆГДДЗЫёўџџ§ыЛ­Ё’’“šЏФЯййš џџќќњєърждюћ€џ §ќџўщЭОЇŸŸЈЙЧ‰Ъ€ЩШ€ЩŠЪЫЮољ€џ §ёбЦГЂŸ ЉМбзнсœ џќћќљєяыщфьњџ §љфжОЎ­ГЬоу†фтуу€рс€рууˆфчёў€џ ўѕфйФБЎЎЖЭучшчž џќќ§ћљјїѕюыјџћягКЖМЯьЎђѓѕћ‚џ љ№уЫЛЗЗОжяѓєђ џџќў§§€ќѕшѕ§€џњфЬХгыћŠњ—ћ‡њћўџ ўќјчЮПММУкѕњњїЂџ‚ўіц№љ€џўітэћў­§ў‚џ ў§їфЬПНПШрїўћџЄ†џњххѕ§€џўўЕџ ћёнЧООСЬхњ€џІ†џјфлёќИџ ћэзФООРЮхћ€џЈ†џћшдсіќДџ §ісЬСОПУвы§€џЊ†џў№зафљўАџ ўїшдФПОПШмѓџЌ‡џѕубеьљ§Ќџ ўњюиШРОПСвчњџЏ†џќэвЧЯъјќЈџ ўљьнЭРОПРЧкяџВ†џ ўђсаУЭтіљ§Ђџ ўќіылЩСОПРЦешјџД‡џ ћ№йЪТУвфіњќў›џўќїюрвШРООРХбуѕ‚џЗ‡џјщиЩСРРбпэїљћ§ў‘џ ў§ќљђътгШС€ОРФЭсђ§џКˆџљщзШП€ОСЯпыєћџ ўќјѓытиЯЦТ‚ОСЭоя§‚џНˆџћ№мЮФ„ОУазотшэю ыштплзбЭЧХРƒОПЦв𺧂џР‰џўїъмаЦР‡ОРРСТшЇОРШбоэљўƒџФ‰џўїэуиЯЧТПОПУЧЯиуюјўƒџЩ‹џ§їёцпивЭЩЦХФУТУУХЦХЪЮдйпчёї§…џЭŽџўњїѓяюыъчшъэяяєїћўˆџвЅџйџт“џџџџЌџџџџџЈ“џтџйЅџвЋџЭЏџЩГџФЙџР”џ№дОДЉЁ••žЇДНб№ў•џНџѓФ’mP2/Lm’Фѓ’џКџ ёБzI  ‹   IzБёџЗŒџэЏg# — #^ІэŽџДŠџќХo' ‡ %=JRZccYPC:%‡ 'cНќŒџВ‰џѕРN ƒ&X†ЂЛЩЧЦУПМЛЛЙЖДВАЋœ…kF„ NЊ№‹џЏ‰џљЌLƒ $jЁЫегаЭЩЧУТСР†ПМЙЖБЋœxQƒ8­ё‹џЌˆџќеl‚ (lМомзгЫФТРППƒО€ПСРРППОНИВЊŒW"‚TКќŠџЊˆџю=€ >—ФгкиЭЧУРП€ОРУЦЪЭвезклммлиздбЬЩХУПОЗЇ˜p4€2фў‰џЈ‡џњХS€ XЅЬспбЧТР€О СФЫблушэ№єі€јљјіѓ№ышткбЫФСДŸB€LЕњ‰џІ‡џэ‹.€ G жфмЮХР€О ТШбнхэєјњќ§ў‰џў§ќњјєэхнаЦНЃ…G€)‹э‰џЄ‡џиV€$”бхоЮХРООСШвнъѓљќў•џ ўќљђшмаСЇn+€VШћˆџЂ‡џБ5 €iСффдЦРООТЫлъєљ§џ§јёцзМ›b€ 0Ё‰џ †џќ&& рьжШСООУЯпэј§Ѓџ ќѕчиМy%"ќ€џў„џž†џђq€ YУыцгУПОСЬоёљўЇџќіъМF€pђ€џўўƒџœ†џцW€ †ТжЦИЏЌАИЩисчƒщъю›№юъƒщпk €Qаєџџўўƒџš†џя€W‹•Œƒ|{|€ˆ”œŸ ЁЁ €ЁЃЈ­‡Ў‡ЏАЏƒАБЋЇЅІЅŒ)  €eЉкѕџџўў‚џ˜†џ№€@]HA@ABBAADGKKLLMJLQU€VXZ€[ \\]]^__^_``a^[Z[€\O&;.€2nЎтќџўў‚џ—…џёƒ€38!.<643/-.18=ABA@967567€9;<:<=>@BCD€FEFFHJ€I JLMA! /LM3€?‚Ьїџў‚џ–…џї…€+9F7/+)-5?KPTURNA;9543443‚57€8998€:;<€=<=?>>@@A DA"!DIJJ1 €"`Пё€ўџ”…џўЅ€ &>H3'$)8HVcghifcUMG;4//10€1211332‚4 56677878:99€: ;:;<+ 8C€GE+ €YКєўў‚џ“…џР5€" $(AG)!'4M`m}——ˆzpj_K<0.//€0‚1232€3 44545565667678786*0>BEDD@;"€]Чњўўџ’…џ%иM2$$(BD$$4KgzŽЇИОМДЉ™„v_H50./.ƒ010€1€21€344534656* ,8>CBB@95.€ wфќўўџ…џ$юj G %%"$HH(.Fe‚ŸЕТФУФЧЯХІ‡qXB73€123223433445€454664665771 #9>CCB@<640€2Бѓ§§‚џ…џ$П8S))(")RP1=Xv™МЦУШЩЮЮдкФ™|fPC=:;:;<‰=>=>=$8BEGGFB?<<8! €„уќ§ўџŽ…џ'чU,™)#443.#5h_EVoˆИгЭЬвжйнпсрН‹zfUNLKLKLMLMNMNNMMNOO‚NK5 ANO NLKJJF1€ "WЩјќў‚џ„џ6љŽ­š#+42/%6i_L_x’ЪвЦФЪажйортгŽl[PMONMMNMNNMMNMOMMNOONPO€N;=PQPONLKKH4KДѓћў‚џŒ…џ&Ч3iч…(,/,!2fUJcx”ЪРГАНЩавйпмиŠ|mXJ€FGGF‚GHH€GHHGIJIJJIIJ> -IL€N LKLJIJIE3 €<Ѓыљ§ƒџ‹„џ'№` /Яжz+,."5gTLfz“ТЗЋЎНЩбадкмиŽq[J€CDEDE€FGGFGF€GH„IA€ )JLN€OLJLLKKIH5#‹оі§ƒџŠ…џ'Њ#ЂфПr*,&7jQKfwŠГБЄЋИОНЛЦекв…t_KCDD…EFGHGHB €#FLN€OMLMLMLLKI8aЪя§„џ‰„џ(єU^цмЎm*&ю^ЙсЦНПгвY ZtF8<=?BGMXgppaUQQPQafcdeed]WUVQFAA@ACBCDH/`fdb`^YYZ\^\QINQSRS€RPG*€ EЅЭєƒџ…ƒџ8н<JЯзТНЧфаX \tF9<>@BEJO_hh[SQOQOhheeghbZXWRJBBCDC€DB0€Xhd€b _Y\\]_]RINSU€SRSQI+,‹Цъќ‚џ…ƒџ5ЮzдЬПОбыЮU `tE;<>ABEIN\feZTQOSRhhgfgh`XXVMFCCƒD9 €Geg€b$c_Y[\]_]RJPSTVSSTRQJ-,tСмљ‚џ…‚џ5ќЗЉйФОУрюЫN cuE<<@BCGIN\feZSOPRRhhghhi`XXULFF€EFFE>,=[adbbcf`[\\]\ZRLPTUVUSURQL.!8[Йађўџ…‚џ*ь‡СгСОЭэ№ЪL fvF;>@AEGIN^hh]PRQRRhh€ijaYYUK€GFGGFC€-1[Z]abchj`Z]]^a_TMRVVUUTSTRM-$ECЁЦщќџ„ƒџ*о[7ШЬПРкѕёШI iwF<@ABGIJO^ghYKRPRRhhjaY]UKƒGE€"Y[Z]bc€hWW^]^a[NHQVWWVVTSSL. $QB.ŒТнљ‚џƒƒџ;д<QЫХОУці№УB kwF<@ADGIIM]khjUSPRRhhjijj`ZZUMIIJJKK%€ N[\[^dggjh€]^^_aVJV[WWXXVSSL.€ "W`}Овѕ‚џƒƒџ%ЪcЭУОЩяї№Р>"mwF?@BDGHHR^fhhUU€R€hjijb[]VNKMOQR0 €GPZ[Z^f€jh‚]`bVJV[XWXZVUUM.€ "ZuoОЫюўџƒ‚џ,ўОrЭРОбїјюР=#pyG@ACEHIIS_gqiVUQQRfmh€j `Z^YPOSVXE € EPRZ\Z`i€jh‚]`bVKU[XX€YUUN0"aŠ`НФх§џƒ‚џ9іЂЪПРлњјюЛ8%tyH@BDGGIJN]hj^TYVSRSihjji_Y_\UTXYJ€ GVVW\]Xalkmjh‚] _bVJU[WXZXYWVO1"c–RЗРмќџƒ‚џJю ЧОУтћјэЗ3%vzHACDGJKMU^ijc]\Y]^Yjhkkj`V_aYUXR'CYXWY`]Wcooqjh‚] `[NJU[XZ[XYXXO1!\œ-HГПжћџƒ‚џJыƒ(”ФОЦшћїьЖ2&w{H@DFGJLNXcjjd^]]ec\hhntnaR^f[TS+=d^YW\d[Thqxunh‚]`bVKUZX[\[ZYXO1€ "[8EБОбјџƒ‚џ7шy-•УОЫьћїыД/&y~IBDGIJKMNcmjaX[]`]\hhotqdT[e^X0€2_f`[W\e]Wiu~дьh‚]`bVKUYZ\[^[XYP2€ "YŸAAЏОЫєџƒ‚џ6фo3˜СОЯёќїы­*&yKBFHIJKMOcnkaUZ\[Z]hiqllgZ]]WE €'[db`_YXba\lzzжюk_]``TKWZZ]\\[YYQ1€!TŸK=­ОЧ№ў€џƒ‚џ5сe9œРОдѕќїъЊ''{€LDHHP^sšЏŽ^ZgœwІwworšЊ—^C€8!_gs‰ˆmWWa~ЈГœxиюki–h]]`bVKUY\^^\[YYR1!PžT:ЋОФьў€џƒ‚џсe8›РПжіќіъЊ&€ )‚MGHXЁёЯИrЉЩРѕЊZzџлфћі„sЮхЕОY€(%vr‚ВЃЇХY›§чШЧ|кяwРС]]^bbVKVY[__]\ZYR1€ !PS:­ОФъ§€џƒ‚џфo1”РПиїќіщЄ#€)„NHHqшЃPK[gnuдж\zџНgžџЈsёп|[%€: …Шi ЏbWам^ёяlz}zкя­лf]]^bbVJUYY_`^]\[Q1 N™IAАПУш§€џƒ‚џ2шy+ППлїќїщŸ'~ˆRHJxёOMQŠЯюім_}џЁh…џРtžёюl€ :БУkЇЁ`ZЩєjџЭm|{йђьШ^]]^bbVJUZZ€`_][R1 I@HГПТх§€џƒ‚џыƒ$†ПСмјќіщ€](}ŠSJKsыЄROZЮЦ{Яй`~џЂjџŸv{}p)`ЉВeЁБe^ссfѕяq~ияБіЉeehb`VKTZ]cba]]\R1 FŒ7NЙПТуќ€џƒ‚џ1ю~ПСмјћѕш›'}ŒTKM`ЎюСЊnЯхЯёљ|џѓКэі€|з…€+RfšЄe€ЫРЪј˜kЎџсПСйя…гё’wxphWJTZ`feb`^\R0€  F†+TМПТуќ€џƒ‚џ0іЂ nППлїћіч”'|VKNO[—ГЁ^z­•‚ГŽ‡џВЇС“y|—€,J^ax~a^ДЖ‹ino—ХЪЌƒЌИ‰ЛЁvuqiWJUZcgebb^\R0  Cy`РПТх§€џƒ‚џ/ўО^НПиїќѕц’'}XLNPPSTPUcjrywtџ­zw{zs€.Jjb]\\_bccfipqpx…‰ˆ‡ƒƒ~xustxlUKT\bhhb_^\P.€ >kpЧПУш§€џƒƒџ-ЪOЖПжіќѕх‘'~“YLLOPSUXajlovvwˆЭœvyxq€?Akjc`__cdegkprpsŠ‰ˆˆ„€zvpoppyqVJW`dd`_\ZUK.8Y‚ЧОФъ§€џƒƒџ,д<?ЎОдѕћєф‰&~šZIKLMOQT`mmkptwswyzyu&€4qiccaadgfhlnonp|ƒ†(€ztvwvv}t_NV]][ZZUQNC)2F(•ХОФьў€џƒƒџо[,ЄОЯ№ћєтƒ€%|[IIJKLMPYgolmnsstvz~2€ *ztga_adfhih€ilu€&}|}}||ucQUXWVRQNIF?(&-;ІФОЧ№ў€џ„‚џ ь‡—ОЫыњєт‚%|Ё]HFGHIIKUc€kloppqqA nunhda`acd"gkry}|{{|zzyyzyxxwuo^OPRPQNIGC?9%€ VНТОЫє€џ…‚џ*њБ‚КЦчњєт€$}Ё]GFEFDDFP_effghijlM€1 ZoligfggedccdglpuuvvusutstsrrsqonhXIJKKJHDA@>8!€ pгСОбј€џ…ƒџЬ_ЎФтљєтy €$h„f\\[[WVU\jnljkkjjS €Mhgdbceikjhhgjmm‹n#onopl^PRVXYZ[\[]O)ŽиРПећ€џ…ƒџ'н<8ЁРлјєсu !;Zs„ˆ‰Œ˜ЅЈЅЂЁž„€bŽ…zwxzƒŠŒŒ‹Š‹‹€Œ/Ž‘’“”——™šœŸЂЅЈЄ˜Ž’•”“‘Žˆt6:ЌвППлќ€џ…ƒџя^ ŠНбєѓсt €"BGKYlsw|,€B”š‰Š‹˜ІАБВГДЕДДЖГВ€А-­­ЊЇІЁŸ›˜—’‰…zgUQOJGA<63/+!ƒмХОЪьў€џ†ƒџ$К;%›Уф№лg  "+9??@A€ COSRSTRTT€XYYZYY€XWXUTTSSQPMLJJHGGD=-€ ЌиСОбє€џ‡ƒџъj{Икюлf €#0645€08>BAA?:€87‹867„6€50!„‚€2гЯПСмљ€џ‡ƒџўœ=ЃЭцкb …"044€ ,6?@@:5†344ˆ34„3233/ €€  XЪРМФшќ€џ‰„џ єUEЌМQ „ !€07=?@@;5Ž34Œ34/!€lОКМЬѓџ‰…џЊ# sІJ ‚€ /6=?@@<54Ž34Œ34/!€€  jЏИПзњџŠ„џ№` "ˆJ €€ +6;?@@=64Ÿ34/!‚€€ &dЇЖЦхў€џ‹…џЧ2CJ €ƒ€ (4;?@@<7Š32‰32†341%‰ €)cЂЙгђџŒ„џљ 3€&39?€@:4Ё3 43'  /bЁСтћ€џ…џвC…€ /7=@@?:5€3‹43…43434334431&€#4_ЁЪьў€џŽ„џ ќ #ƒ #08<<;7/-,--.--.€-,-,-)€€ €  *6^Єкіўџџ„џ ўэg ! ".554/%!" ! !"!"!"‡!‚  „ € /7^­шњќџџƒџ ў§вI  € &//0*!€€‚‚ƒ€ (28_И№љћџ’‚џў§јД*€€ &./0-"€ƒ‚€ƒ‚ˆ € %-37`Тђјї“‚џў§јь„€%-/0,#€‡‚€… €  "+028pЮюѕџ”џў§јюЮQ€%$"  &/341*"€ ! €€€€ ƒ€""!€ %*588=U™зью–€џўўљ№оЏR € (SR)!PTQSSTURƒQ€RP„KJ…K€JKJKJJPQ„R QRRQQRUXS+€ @BCD€FEFFHJ€I JLMA#  0LM4€?‚Ьїџў‚џ–…џї†€,9F7/+''()++**,.0€233443‚57€8998€:;<€=<=?>>@@A DA$ #DIJJ2€ "`Пё€ўџ”…џўІ€!&>H3&#"$$%&&$$&')*+,€/10€1211332‚4 56677878:99€: ;:;<+ 8C€GE, €YКєўў‚џ“…џР7€# $(AG) !! !$*,,)&#%')-//€0‚1232€3 44545565667678786+1>BEDD@;#€]Чњўўџ’…џ%иO 3$$(BD# %-3772,&"#&+,/.ƒ010€1€21€344534656+-8>CBB@95.€ wфќўўџ…џ"юlH %%"$HH'"" '1:??@>82)#%).‚123223433445€4 54664665771€ #9>CCB@<640€ 2Бѓ§§‚џ…џР:T))(")RO/'&#'3@J€NJD=6*).48‚:;:;<‰=>=>=%8BEGGFB?<<8! „уќ§ўџŽ…џ'чV.™)#443.#5h]<6.+6HXgjhjc^QI<08@FJLKLKLMLMNMNNMMNOO‚NK5  BNONLKJJF1 "WЩјќў‚џ„џ6љŽЎš#+42/%6i[;3.->N_opllhbVLD26>EJMONMMNMNNMMNMOMMNOONPO€N<>PQPONLKKH4KДѓћў‚џŒ…џ&Ш4lч…(,/,!2eQ3.),@KYcb]\[YOE@,18>C€FGGF‚GHH€GHHGIJIJJIIJ?.IL€NLKLJIJIE3<Ѓыљ§ƒџ‹„џ'№a1ажz+,."5gM0+(+?JW^YTSTUOB=+/3;A€CDEDE€FGGFGF€GH„IA€ *JLN€OLJLLKKIH5%‹оі§ƒџŠ…џ'Ћ&ЂфПr*,&7iL0,)+>LWYRMNOQJB:*,3;@CDD…EFGHGHB!€%FLN€OMLMLMLLKI8bЪя§„џ‰„џ(єU _цмЎm*&@?>>EOQNHJNPTad€cddaYTVVNHDAABCGLRS*€cfb`^€X [^[PJNQRSRQ€PC)€  gОйњƒџ…ƒџ>я_ЙсЦНПгвY ZtF8<=?ABAFP\]WPPQPQafcdeed]WUVQFAA@ACBCDH0€`fdb`^YYZ\^\QINQSRS€RPG*€ GЅЭєƒџ…ƒџ8н=KЯзТНЧфаX \tF9<>@BDFKYbcYSQOQOhheeghbZXWRJBBCDC€DC1€Yhd€b _Y\\]_]RINSU€SRSQI+.‹Цъќ‚џ…ƒџ5Я {дЬПОбыЮU `tE;<>ABEIN\feZTQOSRhhgfgh`XXVMFCCƒD9 €Geg€b$c_Y[\]_]RJPSTVSSTRQJ--vСмљ‚џ…‚џ5ќЗЉйФОУрюЫN cuE<<@BCGIN\feZSOPRRhhghhi`XXULFF€EFFE>€,>[adbbcf`[\\]\ZRLPTUVUSURQL.!8]Йађўџ…‚џ*ь‡ТгСОЭэ№ЪL fvF;>@AEGIN^hh]PRQRRhh€ijaYYUK€GFGGFC€-3[Z]abchj`Z]]^a_TMRVVUUTSTRM-$FDЂЦщќџ„ƒџ*о\9ШЬПРкѕёШI iwF<@ABGIJO^ghYKRPRRhhjaY]UKƒGE €$Y[Z]bc€hWW^]^a[NHQVWWVVTSSL. $RC0Тнљ‚џƒƒџ;д>SЫХОУці№УB kwF<@ADGIIM]khjUSPRRhhjijj`ZZUMIIJJKK' € N[\[^dggjh€]^^_aVJV[WWXXVSSL.€ "X`!~Овѕ‚џƒƒџ%Ъ dЭУОЩяї№Р>"mwF?@BDGHHR^fhhUU€R€hjijb[]VNKMOQR2 €HPZ[Z^f€jh‚]`bVJV[XWXZVUUM.€ "ZupОЫюўџƒ‚џ,ўОsЭРОбїјюР=#pyG@ACEHIIS_gqiVUQQRfmh€j `Z^YPOSVXF€FPRZ\Z`i€jh‚]`bVKU[XX€YUUN0"a‹aНФх§џƒ‚џ9іЂ‚ЪПРлњјюЛ8%tyH@BDGGIJN]hj^TYVSRSihjji_Y_\UTXYK € GVVW\]Xalkmjh‚] _bVJU[WXZXYWVO1"c—SЗРмќџƒ‚џJю#ЧОУтћјэЗ3%vzHACDGJKMU^ijc]\Y]^Yjhkkj`V_aYUXR(DYXWY`]Wcooqjh‚] `[NJU[XZ[XYXXO1!\œ/JГПжћџƒ‚џ8ыƒ+•ФОЦшћїьЖ2&w{H@DFGJLNXcjjd^]]ec\hhntnaR^f[TT-€?d^YW\d[Thqxunh‚]`bVKUZX[\[ZYXO1€ "[ž9FБОбјџƒ‚џ7шz0–УОЫьћїыД/&y~IBDGIJKMNcmjaX[]`]\hhotqdT[e^X1 €3_f`[W\e]Wiu~дьh‚]`bVKUYZ\[^[XYP2€ "Y BCЏОЫєџƒ‚џ6хo6™СОЯёќїы­*&yKBFHIJKMOcnkaUZ\[Z]hiqllgZ]]WE €([db`_YXba\lzzжюk_]``TKWZZ]\\[YYQ1€!T K?ЎОЧ№ў€џƒ‚џ5сf<РОдѕќїъЊ''{€LDHHP^sšЏŽ^ZgœwІwworšЊ—^C€8"_gs‰ˆmWWa~ЈГœxиюki–h]]`bVKUY\^^\[YYR1!PŸT;ЌОФьў€џƒ‚џсf;œРПжіќіъЊ&€ )‚MGHXЁёЯИrЉЩРѕЊZzџлфћі„sЮхЕОY€('wr‚ВЃЇХY›§чШЧ|кяwРС]]^bbVKVY[__]\ZYR1€ !PžT<­ОФъ§€џƒ‚џхo4•РПиїќіщЄ#€)„NHHqшЃPK[gnuдж\zџНgžџЈsёп|[&€:†Шi ЏbWам^ёяlz}zкя­лf]]^bbVJUYY_`^]\[Q1 N™KCАПУш§€џƒ‚џ2шz.ŽППлїќїщŸ'~ˆRHJxёOMQŠЯюім_}џЁh…џРtžёюn€ ;БУkЇЁ`ZЩєjџЭm|{йђьШ^]]^bbVJUZZ€`_][R1 IBIДПТх§€џƒ‚џыƒ'‡ПСмјќіщ€](}ŠSJKsыЄROZЮЦ{Яй`~џЂjџŸv{~p+aЉВeЁБe^ссfѕяq~ияБіЉeehb`VKTZ]cba]]\R1 FŒ9PЙПТуќ€џƒ‚џ`ю €ПСмјћѕш›'}ŒTKM`ЎюСЊnЯхЯёљ|џѓКэі€|з… RfšЄe€ЫРЪј˜kЎџсПСйя…гё’wxphWJTZ`feb`^\R0€  F†-VМПТуќ€џƒ‚џ0іЂpППлїћіч”'|VKNO[—ГЁ^z­•‚ГŽ‡џВЇС“y|—€,K^ax~a^ДЖ‹ino—ХЪЌƒЌИ‰ЛЁvuqiWJUZcgebb^\R0  CyaРПТх§€џƒ‚џ/ўО_НПиїќѕц’'}XLNPPSTPUcjrywtџ­zw{zs€.Kjb]\\_bccfipqpx…‰ˆ‡ƒƒ~xustxlUKT\bhhb_^\P.€ >lqЧПУш§€џƒƒџ-Ъ PЖПжіќѕх‘'~“YLLOPSUXajlovvwˆЭœvyxq€? Bkjc`__cdegkprpsŠ‰ˆˆ„€zvpoppyqVJW`dd`_\ZUK.8Z„ЧОФъ§€џƒƒџ,д>AЎОдѕћєф‰&~šZIKLMOQT`mmkptwswyzyu(€6qiccaadgfhlnonp|ƒ†(€ztvwvv}t_NV]][ZZUQNC)2G*–ХОФьў€џƒƒџо\-ЅОЯ№ћєтƒ€%|[IIJKLMPYgolmnsstvz~4€ +ztga_adfhih€ilu€&}|}}||ucQUXWVRQNIF?('-=ЇФОЧ№ў€џ„‚џ ь‡˜ОЫыњєт‚%|Ё]HFGHIIKUc€kloppqqB !nunhda`acd"gkry}|{{|zzyyzyxxwuo^OPRPQNIGC?9%€ WОТОЫє€џ…‚џ*њБ‚КЦчњєт€$}Ё]GFEFDDFP_effghijlM €1 ZoligfggedccdglpuuvvusutstsrrsqonhXIJKKJHDA@>8!€ rгСОбј€џ…ƒџЬ`ЎФтљєтy €$h„f\\[[WVU\jnljkkjjS€Nhgdbceikjhhgjmm‹n#onopl^PRVXYZ[\[]O)иРПећ€џ…ƒџ'н=9ЂРлјєсu !;Zs„ˆ‰Œ˜ЅЈЅЂЁž„€dŽ…zwxzƒŠŒŒ‹Š‹‹€Œ/Ž‘’“”——™šœŸЂЅЈЄ˜Ž’•”“‘Žˆt6 =­вППлќ€џ…ƒџя` ‹Нбєѓсt €"BGKYlsw|.€D”š‰Š‹˜ІАБВГДЕДДЖГВ€А-­­ЊЇІЁŸ›˜—’‰…zgUQOJGA<63/+! „мХОЪьў€џ†ƒџ$Л<'œУф№лg  "+9??@A€ COSRSTRTT€XYYZYY€XWXUTTSSQPMLJJHGGD=-€ ­иСОбє€џ‡ƒџъk}Икюлf €#0645€08>BAA?:€87‹867„6€50!„‚€5дЯПСмљ€џ‡ƒџў!>ЃЭцкb …"044!€ .6?@@:5†344ˆ34„3233/ €€ ZЪРМФшќ€џ‰„џ єU F­МQ „ !€17=?@@;5Ž34Œ34/! lОКМЬѓџ‰…џЋ&uІJ ‚06=?@@<54Ž34Œ34/!€€  jЏИПзњџŠ„џ№a#ŠJ €+6;?@@=64Ÿ34/!‚€  &dЇЖЦхў€џ‹…џШ4EJ €ƒ (4;?@@<7Š32‰32†341%‰ )cЂЙгђџŒ„џљŽ4   '39?€@:4Ё3 43' /bЁСтћ€џ…џвE…€/7=@@?:5€3‹43…43434334431&€#4_ЁЪьў€џŽ„џ ќЁ#„€#08<<;7/-,--.--.€-,-,-)€€ €  *6^Єкіўџџ„џ ўэi ! € ".554/%!" ! !"!"!"‡!‚  „ € /7^­шњќџџƒџ ў§гJ   € &//0*!€€‚‚ƒ€ (28_И№љћџ’‚џў§јД-€ € €&./0-"€ƒ‚€ƒ‚ˆ€ %-37`Тђјї“‚џў§јь† € € %-/0,#€‡‚€… €  "+028pЮюѕџ”џў§јюЮR € %$" !&/341*"€ ! €€€€ ƒ€""!€ %*588=U™зью–€џўўљ№оЏS € )SR+$PTQSSTURƒQ€RP„KJ…K€JKJKJJPQ„R QRRQQRUXS, € =Y\[\\`p’Рлц—€џўўњёуЭЅ7€_i!Z‰€xtuz„‡†ˆ†€€€†‹ˆ‹‡d"€ 5‚‹„}|‡ŸМбпа˜€џ§ќіылЭЏ< €/dЎЃ–˜ІВ†ГВВ•БВВˆГДДЇv =Ѕ­Ё’’“šЏФЯййš џџќќњєържЛH‚ fСОЇŸŸЈЙЧ‰Ъ€ЩШ€ЩŠЪШБoLЙЦГЂŸ ЉМбзнсœ џќћќљєяыщзa +ФжОЎ­ГЬоу†фтуу€рс€руу‡фиВ[ € iзйФБЎЎЖЭучшчžџќќ§ћљјїѕы~"!ЖЗЖМЯь­ђ№о—3 #ŒэуЫЛЗЗОжяѓєђ џџќў§§€ќѕ›. €PŽЖвыћŠњ—ћ…њъШ€€ 2ЁјчЮПММУкѕњњїЂџ‚ў іПIyТ№ўЊ§їм”; €XЧђфЬПНПШрїўћџЄ†џњгs& € G міЇџљмД` € *‹ъ№нЧООСЬхњ€џІ†џјн™/ hОчјЃџјъШh€ 6ЊѕэзФООРЮхћ€џЈ†џћчСa  JАсюњџњ№цАT € }пєсЬСОПУвы§€џЊ†џў№дЇT*mНхяїў•џўїяхНv/UКѓшдФПОПШмѓџЌ‡џѕуЪƒ:‚&lЁвхьѓјќ‹џќјѓьхвЁl&ƒ 9ЌьюиШРОПСвчњџЏ†џќэвО‘< „(Y‰ЈЦрцшъьэюяюьъшцрЩЋ‰Y(„ PЉыьнЭРОПРЧкяџВ†џ ўђсаР•U ‡ &ANV_kkbXNB* ‡ 'dКѓылЩСОПРЦешјџД‡џ ћ№йЪТВƒN — $_ЄчюрвШРООРХбуѕ‚џЗ‡џјщиЩСРД„]8 ‹  GxЋхътгШС€ОРФЭсђ§џКˆџљщзШП€ОДŒeG/‹ 4ZЖцытиЯЦТ‚ОСЭоя§‚џНˆџћ№мЮФ„ОЕ Šƒ~uv€‹™ЂЕвнлзбЭЧХРƒОПЦв𺧂џР‰џўїъмаЦР‡ОРРСТшЇОРШбоэљўƒџФ‰џўїэуиЯЧТПОПУЧЯиуюјўƒџЩ‹џ§їёцпивЭЩЦХФУТУУХЦХЪЮдйпчёї§…џЭŽџўњїѓяюыъчшъэяяєїћўˆџвЅџйџт“џџџџЌt8mk@Cg‹ІОду№њўўњ№удОІ‹gCU‹ОэџџџџџџџџџџџџџџџџџџџџџџэО‹UD“еџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџе“DEЁюџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџюЁE †р§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§р† 4šцџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџцš4)—єџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџє—)ˆкѓўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўѓкˆ kЮѓўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўѓЮk JЗяќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќяЗJ ƒъљџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџљъƒ FХђџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџђХF{щћџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџћщ{!ЉёџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџёЉ!EејџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџјеESгћџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџћгSfлџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџлfdсџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџсdiиџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџиiiйќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќйiTйќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќйTKФќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќФK<НјџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџјН<‘эџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџэ‘tхџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџхt5бќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќб5іџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџіoпџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџпoBСџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџСB‘ђџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџђ‘>оџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџо>uџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџu;ЭџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЭ;ˆџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџˆAиџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџиA ‹џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ‹ &жџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџж& gџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџg ПџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџП:џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ:ŠџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџŠдџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџдJџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџJџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЮџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЮџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџXџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџXŽџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџŽХџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџХљџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџљ,џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ,VџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџV{џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ{œџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџœИџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџИЯџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЯтџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџт№џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ№љџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџљўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўљџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџљ№џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ№тџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџтЯџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЯИџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџИœџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџœ{џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ{VџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџV,џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ,љџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџљЬџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЬ•џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ•XџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџXџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЮџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЮџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџJџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџJдџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџд”џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ”DџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџDПџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџП gџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџg &жџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџж& ‹џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ‹ AиџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџиAˆџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџˆMоџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџоMџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ>оџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџо>‘ђџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџђ‘BТџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџТBoпџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџпoіџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџі5бќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќб5 ”яџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџя” )БіџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџіБ)<НјџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџјН<KФќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќФKTйќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќйTiйќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќйiiиџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџиidсџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџсdwэџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџэwaщ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§щaEејџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџјеE!ЉёџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџёЉ!{щћџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџћщ{FХђџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџђХF ƒъљџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџљъƒ JЗяќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќяЗJ yщџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџщy šєџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџєš)—єџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџє—)4šцџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџцš4 †р§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§р† EЁюџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџюЁED“еџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџе“DU‹ОэџџџџџџџџџџџџџџџџџџџџџџэО‹UCg‹ІОду№њўўњ№удОІ‹gCuControl/uControl.pbproj/0040755000076500000240000000000007435006202014746 5ustar shanestaffuControl/uControl.pbproj/cs.pbxuser0100755000076500000240000000423007435005557017000 0ustar shanestaff// !$*UTF8*$! { 02077191010068877F000001 = { fileReference = 09A6619D00A9BBC47F000001; isa = PBXFileBreakpoint; lineNumber = 1; state = 1; }; 089C1669FE841209C02AAC07 = { activeBuildStyle = 06AA1263FFB20DD611CA28AA; activeTarget = 089C1673FE841209C02AAC07; addToTargets = ( 089C1673FE841209C02AAC07, ); breakpoints = ( 02077191010068877F000001, ); perUserDictionary = { PBXWorkspaceConfiguration = { ContentSize = "{1024, 668}"; LeftSlideOut = { ActiveTab = 0; Frame = "{{0, 23}, {1024, 645}}"; Split0 = { ActiveTab = 2; Frame = "{{225, 0}, {799, 645}}"; Split0 = { Frame = "{{0, 172}, {799, 473}}"; }; SplitCount = 1; Tab0 = { Debugger = { Frame = "{{0, 0}, {484, 208}}"; Split0 = { Frame = "{{0, 25}, {484, 183}}"; Split0 = { Frame = "{{0, 0}, {236, 183}}"; }; Split1 = { Frame = "{{245, 0}, {239, 183}}"; }; SplitCount = 2; }; SplitCount = 1; Tab0 = { Frame = "{{0, 0}, {100, 50}}"; }; TabCount = 1; }; Frame = "{{0, 0}, {484, 208}}"; LauncherConfigVersion = 4; }; Tab1 = { Frame = "{{0, 0}, {661, 208}}"; LauncherConfigVersion = 3; Runner = { Frame = "{{0, 0}, {661, 208}}"; }; }; Tab2 = { BuildMessageFrame = "{{0, 0}, {803, 54}}"; BuildTranscriptFrame = "{{0, 63}, {803, 86}}"; Frame = "{{0, 0}, {799, 147}}"; }; Tab3 = { Frame = "{{0, 0}, {799, 295}}"; }; TabCount = 4; }; SplitCount = 1; Tab0 = { Frame = "{{0, 0}, {200, 645}}"; }; Tab1 = { Frame = "{{0, 0}, {200, 645}}"; }; Tab2 = { Frame = "{{0, 0}, {200, 645}}"; Split0 = { Frame = "{{0, 0}, {200, 313}}"; }; Split1 = { Frame = "{{0, 322}, {200, 323}}"; }; SplitCount = 2; }; Tab3 = { Frame = "{{0, 0}, {250, 645}}"; }; TabCount = 4; }; WindowLoc = "{0, 0}"; }; }; }; 089C1673FE841209C02AAC07 = { activeExec = 0; }; } uControl/uControl.pbproj/CVS/0040755000076500000240000000000007435006202015401 5ustar shanestaffuControl/uControl.pbproj/CVS/Entries0100644000076500000240000000022707435006202016733 0ustar shanestaff/cs.pbxuser/1.1.1.1/Wed Feb 20 20:47:43 2002// /project.pbxproj/1.1.1.1/Wed Feb 20 20:47:43 2002// /shane.pbxuser/1.1.1.1/Wed Feb 20 20:47:43 2002// D uControl/uControl.pbproj/CVS/Repository0100644000076500000240000000004707435005603017505 0ustar shanestaff/home/cvsroot/uControl/uControl.pbproj uControl/uControl.pbproj/CVS/Root0100644000076500000240000000001607435005603016245 0ustar shanestaff/home/cvsroot uControl/uControl.pbproj/project.pbxproj0100644000076500000240000001573307435005557020044 0ustar shanestaff// !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 34; objects = { 0162A77000FF0B0E7F000001 = { isa = PBXFileReference; path = kextMain.c; refType = 4; }; 0162A77100FF0B0E7F000001 = { fileRef = 0162A77000FF0B0E7F000001; isa = PBXBuildFile; settings = { }; }; //010 //011 //012 //013 //014 //060 //061 //062 //063 //064 06AA1261FFB20DD611CA28AA = { buildActionMask = 2147483647; files = ( ); generatedFileNames = ( ); isa = PBXShellScriptBuildPhase; name = "Shell Script"; neededFileNames = ( ); shellPath = /bin/sh; shellScript = "script=\"${SYSTEM_DEVELOPER_DIR}/ProjectBuilder Extras/Kernel Extension Support/KEXTPostprocess\";\nif [ -x \"$script\" ]; then\n . \"$script\"\nfi"; }; 06AA1262FFB20DD611CA28AA = { buildRules = ( ); buildSettings = { COPY_PHASE_STRIP = NO; OPTIMIZATION_CFLAGS = "-O0"; }; isa = PBXBuildStyle; name = Development; }; 06AA1263FFB20DD611CA28AA = { buildRules = ( ); buildSettings = { COPY_PHASE_STRIP = YES; }; isa = PBXBuildStyle; name = Deployment; }; 06AA1268FFB211EB11CA28AA = { buildActionMask = 2147483647; files = ( ); generatedFileNames = ( ); isa = PBXShellScriptBuildPhase; name = "Shell Script"; neededFileNames = ( ); shellPath = /bin/sh; shellScript = "script=\"${SYSTEM_DEVELOPER_DIR}/ProjectBuilder Extras/Kernel Extension Support/KEXTPreprocess\";\nif [ -x \"$script\" ]; then\n . \"$script\"\nfi"; }; //060 //061 //062 //063 //064 //080 //081 //082 //083 //084 089C1669FE841209C02AAC07 = { buildStyles = ( 06AA1262FFB20DD611CA28AA, 06AA1263FFB20DD611CA28AA, ); isa = PBXProject; mainGroup = 089C166AFE841209C02AAC07; projectDirPath = ""; targets = ( 089C1673FE841209C02AAC07, ); }; 089C166AFE841209C02AAC07 = { children = ( 247142CAFF3F8F9811CA285C, 089C167CFE841241C02AAC07, 19C28FB6FE9D52B211CA2CBB, ); isa = PBXGroup; name = uControl; refType = 4; }; 089C1673FE841209C02AAC07 = { buildPhases = ( 06AA1268FFB211EB11CA28AA, 089C1674FE841209C02AAC07, 089C1675FE841209C02AAC07, 089C1676FE841209C02AAC07, 089C1677FE841209C02AAC07, 089C1679FE841209C02AAC07, 06AA1261FFB20DD611CA28AA, ); buildSettings = { FRAMEWORK_SEARCH_PATHS = ""; HEADER_SEARCH_PATHS = ""; INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Extensions"; KERNEL_MODULE = YES; LIBRARY_SEARCH_PATHS = ""; MODULE_NAME = org.gnufoo.kext.uControl; MODULE_START = uControl_start; MODULE_STOP = uControl_stop; MODULE_VERSION = 1.0.1; OTHER_CFLAGS = ""; OTHER_LDFLAGS = ""; OTHER_REZFLAGS = ""; PRODUCT_NAME = uControl; SECTORDER_FLAGS = ""; WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; WRAPPER_EXTENSION = kext; }; dependencies = ( ); isa = PBXBundleTarget; name = uControl; productInstallPath = "$(SYSTEM_LIBRARY_DIR)/Extensions"; productName = uControl; productReference = 0A5A7D55FFB780D811CA28AA; productSettingsXML = " CFBundleDevelopmentRegion English CFBundleExecutable uControl CFBundleGetInfoString uControl version 1.0.3, Copyright 2001-2002 Shane Celis CFBundleIconFile uControl.icns CFBundleIdentifier org.gnufoo.kext.uControl CFBundleInfoDictionaryVersion 6.0 CFBundleName uControl CFBundlePackageType KEXT CFBundleShortVersionString uControl version 1.0.3 CFBundleSignature ???? CFBundleVersion 1.0.3 NSHumanReadableCopyright Copyright 2001-2002 Shane Celis OSBundleLibraries com.apple.iokit.IOHIDSystem 1.1 com.apple.kernel.bsd 1.1 com.apple.kernel.iokit 1.1 com.apple.kernel.mach 1.1 "; shouldUseHeadermap = 1; }; 089C1674FE841209C02AAC07 = { buildActionMask = 2147483647; files = ( ); isa = PBXHeadersBuildPhase; name = Headers; }; 089C1675FE841209C02AAC07 = { buildActionMask = 2147483647; files = ( 089C1680FE841241C02AAC07, F525202A020F1ADA0105BD48, ); isa = PBXResourcesBuildPhase; name = "Bundle Resources"; }; 089C1676FE841209C02AAC07 = { buildActionMask = 2147483647; files = ( 09A6619E00A9BBC47F000001, 0162A77100FF0B0E7F000001, ); isa = PBXSourcesBuildPhase; name = Sources; }; 089C1677FE841209C02AAC07 = { buildActionMask = 2147483647; files = ( ); isa = PBXFrameworksBuildPhase; name = "Frameworks & Libraries"; }; 089C1679FE841209C02AAC07 = { buildActionMask = 2147483647; files = ( ); isa = PBXRezBuildPhase; name = "ResourceManager Resources"; }; 089C167CFE841241C02AAC07 = { children = ( 089C167DFE841241C02AAC07, F5252029020F1ADA0105BD48, ); isa = PBXGroup; name = Resources; refType = 4; }; 089C167DFE841241C02AAC07 = { children = ( 089C167EFE841241C02AAC07, ); isa = PBXVariantGroup; name = InfoPlist.strings; refType = 4; }; 089C167EFE841241C02AAC07 = { fileEncoding = 10; isa = PBXFileReference; name = English; path = English.lproj/InfoPlist.strings; refType = 4; }; 089C1680FE841241C02AAC07 = { fileRef = 089C167DFE841241C02AAC07; isa = PBXBuildFile; settings = { }; }; //080 //081 //082 //083 //084 //090 //091 //092 //093 //094 09A6619D00A9BBC47F000001 = { isa = PBXFileReference; path = ODHIDHack.cpp; refType = 4; }; 09A6619E00A9BBC47F000001 = { fileRef = 09A6619D00A9BBC47F000001; isa = PBXBuildFile; settings = { }; }; //090 //091 //092 //093 //094 //0A0 //0A1 //0A2 //0A3 //0A4 0A5A7D55FFB780D811CA28AA = { isa = PBXBundleReference; path = uControl.kext; refType = 3; }; //0A0 //0A1 //0A2 //0A3 //0A4 //190 //191 //192 //193 //194 19C28FB6FE9D52B211CA2CBB = { children = ( 0A5A7D55FFB780D811CA28AA, ); isa = PBXGroup; name = Products; refType = 4; }; //190 //191 //192 //193 //194 //240 //241 //242 //243 //244 247142CAFF3F8F9811CA285C = { children = ( 0162A77000FF0B0E7F000001, 09A6619D00A9BBC47F000001, ); isa = PBXGroup; name = Source; path = ""; refType = 4; }; //240 //241 //242 //243 //244 //F50 //F51 //F52 //F53 //F54 F5252029020F1ADA0105BD48 = { isa = PBXFileReference; path = uControl.icns; refType = 4; }; F525202A020F1ADA0105BD48 = { fileRef = F5252029020F1ADA0105BD48; isa = PBXBuildFile; settings = { }; }; }; rootObject = 089C1669FE841209C02AAC07; } uControl/uControl.pbproj/shane.pbxuser0100644000076500000240000000452407435005557017474 0ustar shanestaff// !$*UTF8*$! { 089C1669FE841209C02AAC07 = { activeBuildStyle = 06AA1262FFB20DD611CA28AA; activeTarget = 089C1673FE841209C02AAC07; addToTargets = ( 089C1673FE841209C02AAC07, ); perUserDictionary = { PBXWorkspaceConfiguration = { ContentSize = "{849, 617}"; LeftSlideOut = { ActiveTab = 0; Frame = "{{0, 23}, {849, 594}}"; Split0 = { ActiveTab = 2; Frame = "{{225, 0}, {624, 594}}"; Split0 = { Frame = "{{0, 217}, {624, 377}}"; }; SplitCount = 1; Tab0 = { Debugger = { Frame = "{{0, 0}, {484, 208}}"; Split0 = { Frame = "{{0, 25}, {484, 183}}"; Split0 = { Frame = "{{0, 0}, {236, 183}}"; }; Split1 = { Frame = "{{245, 0}, {239, 183}}"; }; SplitCount = 2; }; SplitCount = 1; Tab0 = { Frame = "{{0, 0}, {100, 50}}"; }; Tab1 = { Frame = "{{0, 0}, {100, 50}}"; }; TabCount = 2; }; Frame = "{{0, 0}, {484, 208}}"; LauncherConfigVersion = 4; }; Tab1 = { Frame = "{{0, 0}, {484, 208}}"; LauncherConfigVersion = 3; Runner = { Frame = "{{0, 0}, {484, 208}}"; }; }; Tab2 = { BuildMessageFrame = "{{0, 0}, {626, 43}}"; BuildTranscriptFrame = "{{0, 52}, {626, 142}}"; Frame = "{{0, 0}, {624, 192}}"; }; Tab3 = { Frame = "{{0, 0}, {624, 295}}"; }; TabCount = 4; }; SplitCount = 1; Tab0 = { Frame = "{{0, 0}, {200, 594}}"; }; Tab1 = { ClassesFrame = "{{0, 0}, {202, 56}}"; Frame = "{{0, 0}, {200, 100}}"; MembersFrame = "{{0, 65}, {202, 35}}"; OptionsSetName = "Hierarchy, all classes"; }; Tab2 = { Frame = "{{0, 0}, {200, 594}}"; }; Tab3 = { Frame = "{{0, 0}, {200, 594}}"; Split0 = { Frame = "{{0, 0}, {200, 289}}"; }; Split1 = { Frame = "{{0, 298}, {200, 296}}"; }; SplitCount = 2; }; Tab4 = { Frame = "{{0, 0}, {250, 100}}"; }; TabCount = 5; }; }; }; wantsIndex = 1; wantsSCM = -1; }; 089C1673FE841209C02AAC07 = { activeExec = 0; }; 089C167EFE841241C02AAC07 = { uiCtxt = { sepNavWindowFrame = "{{15, 239}, {750, 502}}"; }; }; } uControl/uControl.pmsp0100644000076500000240000000053307435005556014365 0ustar shanestaff typedstreamш„@„„„PMMutablePackage„„NSObject…’„„„NSString”„+,/Users/shane/Projects/uControlSource/dstroot†’„––./Users/shane/Projects/uControlSource/resources†’„––uControl†’„––1.0.3†’„„„NSMutableString––\uControl is a kernel extension which remaps the caps lock key to control among other things.†’„––†’„––/†„I‚˜˜˜˜˜˜˜†uControl/USB caps lock notes.rtf0100644000076500000240000001033307435005557015756 0ustar shanestaff{\rtf1\mac\ansicpg10000\cocoartf100 {\fonttbl\f0\fswiss\fcharset77 Helvetica;\f1\fnil\fcharset77 Monaco;} {\colortbl;\red255\green255\blue255;} \margl1440\margr1440\vieww16560\viewh8680\viewkind0 \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \f0\fs24 \cf0 currently :\ #define CTRL_FLAG 0x40000\ #define CAPS_FLAG 0x10000\ #define CMD_FLAG 0x100000\ \ #define SPACE_KEY 49\ #define CTRL_KEY 59\ #define CMD_KEY 55\ #define CAPS_KEY 57\ #define ENTER_KEY 52\ \ #define KEY_DOWN 10\ #define KEY_UP 11\ #define KEY_MOD 12\ \ \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural \f1\fs20 \cf0 Jan 23 00:28:41 localhost mach_kernel: caught hid event type 12 flags 0x10000 key 57 kbdType 195\ Jan 23 00:28:41 localhost mach_kernel: sent hid event type 12 flags 0x40000 key 59 kbdType 195\ \ Jan 23 00:28:41 localhost mach_kernel: special event type 11 flags 0x10000 key 127 flavor 6\ Jan 23 00:28:41 localhost mach_kernel: caught hid event type 12 flags 0x0 key 59 kbdType 195\ Jan 23 00:28:41 localhost mach_kernel: sent hid event type 12 flags 0x0 key 59 kbdType 195 \f0\fs24 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \cf0 \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural \f1\fs20 \cf0 Jan 23 00:29:23 localhost mach_kernel: special event type 11 flags 0x10000 key 127 flavor 6\ Jan 23 00:29:23 localhost mach_kernel: caught hid event type 12 flags 0x40000 key 59 kbdType 195\ Jan 23 00:29:23 localhost mach_kernel: sent hid event type 12 flags 0x40000 key 59 kbdType 195\ \ Jan 23 00:29:23 localhost mach_kernel: caught hid event type 12 flags 0x0 key 57 kbdType 195\ Jan 23 00:29:23 localhost mach_kernel: sent hid event type 12 flags 0x0 key 59 kbdType 195 \f0\fs24 \ \pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural \cf0 \ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural \f1\fs20 \cf0 what is now happening:\ \ Jan 23 00:29:46 localhost mach_kernel: special event type 10 flags 0x10000 key 57 flavor 4\ Jan 23 00:29:46 localhost mach_kernel: caught hid event type 12 flags 0x0 key 57 kbdType 2\ Jan 23 00:29:46 localhost mach_kernel: sent hid event type 12 flags 0x0 key 59 kbdType 2\ \ Jan 23 00:29:46 localhost mach_kernel: special event type 11 flags 0x0 key 57 flavor 4\ Jan 23 00:29:46 localhost mach_kernel: caught hid event type 12 flags 0x40000 key 59 kbdType 2\ Jan 23 00:29:46 localhost mach_kernel: sent hid event type 12 flags 0x40000 key 59 kbdType 2\ \ \ Jan 23 00:30:24 localhost mach_kernel: special event type 10 flags 0x0 key 57 flavor 4\ Jan 23 00:30:24 localhost mach_kernel: caught hid event type 12 flags 0x10000 key 57 kbdType 2\ Jan 23 00:30:24 localhost mach_kernel: sent hid event type 12 flags 0x40000 key 59 kbdType 2\ \ Jan 23 00:30:24 localhost mach_kernel: special event type 11 flags 0x10000 key 57 flavor 4\ Jan 23 00:30:24 localhost mach_kernel: caught hid event type 12 flags 0x0 key 59 kbdType 2\ Jan 23 00:30:24 localhost mach_kernel: sent hid event type 12 flags 0x0 key 59 kbdType 2\ \ \ \ \ Jan 23 00:14:44 localhost mach_kernel: special event type 10 flags 0x0 key 57 flavor 4\ Jan 23 00:14:44 localhost mach_kernel: caught hid event type 12 flags 0x10000 key 57 kbdType 2\ Jan 23 00:14:44 localhost mach_kernel: sent hid event type 12 flags 0x40000 key 59 kbdType 2\ Jan 23 00:14:44 localhost mach_kernel: special event type 11 flags 0x10000 key 57 flavor 4\ Jan 23 00:14:44 localhost mach_kernel: caught hid event type 12 flags 0x0 key 59 kbdType 2\ Jan 23 00:14:44 localhost mach_kernel: sent hid event type 12 flags 0x0 key 59 kbdType 2\ Jan 23 00:14:53 localhost mach_kernel: special event type 10 flags 0x10000 key 57 flavor 4\ Jan 23 00:14:53 localhost mach_kernel: caught hid event type 12 flags 0x0 key 57 kbdType 2\ Jan 23 00:14:53 localhost mach_kernel: sent hid event type 12 flags 0x0 key 59 kbdType 2\ Jan 23 00:14:53 localhost mach_kernel: special event type 11 flags 0x0 key 57 flavor 4\ Jan 23 00:14:53 localhost mach_kernel: caught hid event type 12 flags 0x40000 key 59 kbdType 2\ Jan 23 00:14:53 localhost mach_kernel: sent hid event type 12 flags 0x40000 key 59 kbdType 2}