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�����������������߀� �ᗋ�}|��������������������� �س��������������������������뻭���������ٚ �������������� �����;�����ljʀÉȀɊ������� ���Ƴ��������� �������������� ���־���������������������� ����ı�������� ����������������Ӻ���������� ���˻��������������������������������������� ��������������������������������� ����̿���������������������� ���Ǿ����������������� ���ľ������������������ ������������������������� ����Ŀ������������������ ��������������������������� ���������������� ������������ ������������������� ��������������������������������������������������� ��������������������������ȿ���������� ���������‚���������������Ą��������� �������������������������������������������������������������¿����������������������������������������������������������������������������������������������������������������Ծ������������������Ē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�������ljʀÉȀɊ�ȱ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}