AClock-0.4.0004075500017500000144000000000001164704140600120405ustar multixusersAClock-0.4.0/AClock.pcproj004075500017500000144000000000001164704140600144705ustar multixusersAClock-0.4.0/AClock.pcproj/PC.project010064400017500000144000000040411156323073400164360ustar multixusers{ APPLICATIONICON = ""; "APP_DOCUMENT_BASED" = NO; "APP_TYPE" = GORM; "BUILDER_TARGETS" = ( all, install, uninstall, clean, distclean, dist ); "CLASS_FILES" = ( "AppController.m", "Clock.m" ); COMPILEROPTIONS = ""; CPPOPTIONS = ""; "CREATION_DATE" = "2011-05-13 14:38:51 +0200"; "DOCU_FILES" = ( ); FRAMEWORKS = ( ); "HEADER_FILES" = ( "AppController.h", "Clock.h" ); IMAGES = ( "AClock.tiff", "clock.png", "cuckoo0.png", "cuckoo1.png", "cuckoo10.png", "cuckoo11.png", "cuckoo12.png", "cuckoo13.png", "cuckoo14.png", "cuckoo15.png", "cuckoo16.png", "cuckoo17.png", "cuckoo18.png", "cuckoo19.png", "cuckoo2.png", "cuckoo3.png", "cuckoo4.png", "cuckoo5.png", "cuckoo6.png", "cuckoo7.png", "cuckoo8.png", "cuckoo9.png" ); INSTALLDIR = "$(HOME)/GNUstep"; INTERFACES = ( "AClock.gorm" ); LANGUAGE = English; LIBRARIES = ( "gnustep-base", "gnustep-gui" ); LINKEROPTIONS = ""; "LOCALIZED_RESOURCES" = ( ); MAININTERFACE = "AClock.gorm"; MAKEFILEDIR = "$(GNUSTEP_MAKEFILES)"; "OBJC_COMPILEROPTIONS" = ""; "OTHER_RESOURCES" = ( "cuckoo.wav", "ring.wav" ); "OTHER_SOURCES" = ( "main.m" ); "PRINCIPAL_CLASS" = NSApplication; "PROJECT_AUTHORS" = ( ); "PROJECT_COPYRIGHT" = "Copyright (C) 2003-2011"; "PROJECT_COPYRIGHT_DESC" = "Released under GPL"; "PROJECT_CREATOR" = multix; "PROJECT_DESCRIPTION" = "Analog Clock"; "PROJECT_DOCUMENTTYPES" = ( ); "PROJECT_GROUP" = "No group avaliable!"; "PROJECT_MAINTAINER" = multix; "PROJECT_NAME" = AClock; "PROJECT_RELEASE" = "0.4.0"; "PROJECT_SUMMARY" = "No summary avaliable!"; "PROJECT_TYPE" = Application; "PROJECT_URL" = "http://gap.nongnu.org/aclock/"; "SEARCH_HEADER_DIRS" = ( ); "SEARCH_LIB_DIRS" = ( ); SUBPROJECTS = ( ); "SUPPORTING_FILES" = ( "GNUmakefile.preamble", GNUmakefile, "GNUmakefile.postamble", "AClockInfo.plist" ); "USER_LANGUAGES" = ( English ); }AClock-0.4.0/AClockInfo.plist010064400017500000144000000006221156323073300151410ustar multixusers{ ApplicationDescription = "Analog Clock"; ApplicationName = AClock; ApplicationRelease = "0.4.0"; Copyright = "Copyright (C) 2003-2011"; CopyrightDescription = "Released under GPL"; FullVersionID = "0.4.0"; NSExecutable = AClock; NSMainNibFile = "AClock.gorm"; NSPrincipalClass = NSApplication; NSRole = Application; URL = "http://gap.nongnu.org/aclock/"; }AClock-0.4.0/AppController.h010064400017500000144000000035611156423065300150600ustar multixusers/* Project: AClock AppController.h Copyright (C) 2003-2011 GNUstep Application Project Author: Alexander Malmberg Banlu Kemiyatorn Grkan Sengn Ing. Riccardo Mottola This application is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This application is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #import #import "Clock.h" #import @interface AppController : NSObject { id faceColorW; id ampmSwitch; id cuckooSwitch; id ringSwitch; id shadowSwitch; id transSlider; id handColorW; id secColorW; id frameColorW; id prefPanel; id markColorW; id freqSlider; id freqText; id secondSwitch; id numberPopUp; id alarmWindow; id alarmClock; id ringSlider; id incsVolume; id ringText; Clock *_clock; Clock *bigClock; NSTimer *timer; BOOL doFloor; } - (void) openPreferences: (id)sender; - (void) setFrameColor: (id)sender; - (void) setFaceColor: (id)sender; - (void) setFaceTransparency: (id)sender; - (void) setShowsAMPM: (id)sender; - (void) setShadow:(id)sender; - (void) setSecondHandColor: (id)sender; - (void) setHandColor: (id)sender; - (void) setMarkColor: (id)sender; - (void) setFrequency: (id)sender; - (void) setSecond: (id)sender; - (void) setNumberType: (id)sender; - (void) playCuckoo; @end AClock-0.4.0/AppController.m010064400017500000144000000337331160332427400150660ustar multixusers/* Project: AClock AppController.m Copyright (C) 2003-2011 GNUstep Application Project Author: Alexander Malmberg Banlu Kemiyatorn Grkan Sengn Ing. Riccardo Mottola This application is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This application is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #import #import "AppController.h" @implementation AppController static NSUserDefaults *defaults; static Clock* clicon = nil; static BOOL useCuckoo = NO; static BOOL useRing = NO; static NSInteger lastHourOfDay = -1; BOOL keepSoundPlaying = YES; static int rounds = 0; // how often to play a sound static int rounds_done = 0; // how often a sound was played already + (void) initialize { defaults = [NSUserDefaults standardUserDefaults]; } - (void) setSecondHandColor: (id)sender { NSColor *col = [sender color]; [_clock setSecondHandColor:col]; [bigClock setSecondHandColor:col]; [defaults setObject:[col description] forKey:@"SecondHandColor"]; [defaults synchronize]; } - (void) setHandColor: (id)sender { NSColor *col = [sender color]; [_clock setHandsColor:col]; [bigClock setHandsColor:col]; [defaults setObject:[col description] forKey:@"HandsColor"]; [defaults synchronize]; } - (void)sound:(NSSound *)sound didFinishPlaying:(BOOL)aBool{ if (rounds_done < rounds - 1) { rounds_done++; [sound play]; } else { keepSoundPlaying = NO; rounds_done=0; rounds=0; [sound release]; } } - (void) setCuckoo: (id) sender { useCuckoo = [sender intValue]?YES:NO; [defaults setObject:useCuckoo?@"YES":@"NO" forKey:@"Cuckoo"]; [defaults synchronize]; lastHourOfDay = -1; } - (void) setRing: (id) sender { useRing = [sender intValue]?YES:NO; if (useRing) { NSSound *ring = [[NSSound alloc] initWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"ring.wav" ofType:nil] byReference: NO]; rounds=1; rounds_done=0; [ring setDelegate: self]; [ring play]; } [defaults setObject:useRing?@"YES":@"NO" forKey:@"Ring"]; [defaults synchronize]; } - (void) stopRing: (id)sender { [alarmWindow close]; } - (void) setRingLoop: (id) sender { float f = [sender floatValue]; NSString *str; if (f < 0.1) str = [NSString stringWithFormat:@"Ring Once"]; else if (f < 0.25) str = [NSString stringWithFormat:@"3 Rings"]; else if (f < 0.5) str = [NSString stringWithFormat:@"5 Rings"]; else if (f < 0.75) str = [NSString stringWithFormat:@"10 Rings"]; else if (f < 0.95) str = [NSString stringWithFormat:@"20 Rings"]; else str = [NSString stringWithFormat:@"Ring Forever"]; [ringText setStringValue:str]; [defaults setObject:[sender stringValue] forKey:@"RingLoop"]; [defaults synchronize]; } - (void) setShowsAMPM: (id)sender { [_clock setShowsAMPM:[sender intValue]?YES:NO]; [bigClock setShowsAMPM:[sender intValue]?YES:NO]; [defaults setObject:[sender intValue]?@"YES":@"NO" forKey:@"ShowsAMPM"]; [defaults synchronize]; } - (void) setIncreasesVolume: (id)sender { [defaults setObject:[sender intValue]?@"YES":@"NO" forKey:@"IncreasesVolume"]; [defaults synchronize]; } - (void) setNumberType: (id)sender { [_clock setNumberType:[sender indexOfSelectedItem]]; [bigClock setNumberType:[sender indexOfSelectedItem]]; [defaults setObject:[NSString stringWithFormat:@"%d",[sender indexOfSelectedItem]] forKey:@"NumberType"]; [defaults synchronize]; } - (void) setSecond: (id)sender { [_clock setSecond:[sender intValue]?YES:NO]; [bigClock setSecond:[sender intValue]?YES:NO]; [defaults setObject:[sender intValue]?@"YES":@"NO" forKey:@"Second"]; [defaults synchronize]; } - (void) setShadow:(id)sender { [_clock setShadow:[sender intValue]?YES:NO]; [bigClock setShadow:[sender intValue]?YES:NO]; [defaults setObject:[sender intValue]?@"YES":@"NO" forKey:@"Shadow"]; [defaults synchronize]; } - (void) setFaceTransparency: (id)sender { [_clock setFaceTransparency:[sender floatValue]]; [bigClock setFaceTransparency:[sender floatValue]]; [defaults setObject:[sender stringValue] forKey:@"FaceTransparency"]; [defaults synchronize]; } - (void) setFaceColor: (id)sender { NSColor *col = [sender color]; [_clock setFaceColor:col]; [bigClock setFaceColor:col]; [defaults setObject:[col description] forKey:@"FaceColor"]; [defaults synchronize]; } - (void) setMarkColor: (id)sender { NSColor *col = [sender color]; [_clock setMarksColor:col]; [bigClock setMarksColor:col]; [defaults setObject:[col description] forKey:@"MarksColor"]; [defaults synchronize]; } - (void) setFrameColor: (id)sender { NSColor *col = [sender color]; [_clock setFrameColor:col]; [bigClock setFrameColor:col]; [defaults setObject:[col description] forKey:@"FrameColor"]; [defaults synchronize]; } static NSTimer* ringer = nil; static int extracount; static float volume = 1.0; static float volume_append = 1.0; - (void) ring { if ([alarmWindow isVisible] && extracount) { NSSound *ring = [[NSSound alloc] initWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"ring.wav" ofType:nil] byReference: NO]; [ring setVolume: volume]; rounds=1; rounds_done=0; [ring play]; extracount--; volume += volume_append; if (volume > 1.0) volume = 1.0; } else { [ringer invalidate]; ringer = nil; } } - (void) clockUpdate: (id)sender { double st,et; id src,des; if (sender == bigClock) { src = bigClock; des = _clock; } else { src = _clock; des = bigClock; } st = [src handsTime]; et = [src alarmInterval]; if (et < st && ringer == nil) { [alarmClock setHandsTime:st]; [alarmClock setShowsArc:NO]; [alarmWindow orderFrontRegardless]; if (useRing) { NSInvocation *inv; float f; inv = [NSInvocation invocationWithMethodSignature: [self methodSignatureForSelector:@selector(ring)]]; [inv setSelector:@selector(ring)]; [inv setTarget:self]; extracount = 0; volume = 1.0; f = [ringSlider floatValue]; if (f < 0.1) extracount = 1; else if (f < 0.25) extracount = 3; else if (f < 0.5) extracount = 5; else if (f < 0.75) extracount = 10; else if (f < 0.95) extracount = 20; else { extracount = -1; if ([incsVolume intValue]) { volume = 0.1; } } if (extracount != -1 && [incsVolume intValue]) { volume = 1.0/(extracount > 10?10:extracount); } volume_append = volume; [self ring]; ringer = [NSTimer scheduledTimerWithTimeInterval:5.0 invocation:inv repeats:YES]; } } [des setHandsTimeNoAlarm:st]; [des setShowsArc:[src showsArc]]; [des setAlarmInterval:[src alarmInterval]]; } - (void) openPreferences: (id)sender { [prefPanel orderFront: self]; } -(void) applicationWillFinishLaunching: (NSNotification *)not { NSMenu *menu, *m; NSWindow *win; unsigned int width, height; menu = [NSMenu new]; m = [NSMenu new]; /* Info */ [m addItemWithTitle: _(@"Info...") action: @selector(orderFrontStandardInfoPanel:) keyEquivalent: nil]; [m addItemWithTitle: _(@"Preferences...") action: @selector(openPreferences:) keyEquivalent: nil]; [menu setSubmenu: m forItem: [menu addItemWithTitle: _(@"Info") action:NULL keyEquivalent:nil]]; [m release]; [menu addItemWithTitle: _(@"Quit") action: @selector(terminate:) keyEquivalent: @"q"]; [NSApp setMainMenu: menu]; [menu release]; [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:@"NO" forKey:@"Cuckoo"]]; [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:@"NO" forKey:@"Ring"]]; [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:@"0.0" forKey:@"RingLoop"]]; [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:@"YES" forKey:@"IncreasesVolume"]]; win = [NSApp iconWindow]; width = [[win contentView] bounds].size.width; height = [[win contentView] bounds].size.height; _clock = [[Clock alloc] initWithFrame: NSMakeRect(1, 1, width - 2, height - 2)]; [[win contentView] addSubview:_clock]; [_clock setTarget:self]; [_clock setAction:@selector(clockUpdate:)]; { /* initialize the clock so it won't flick */ NSCalendarDate *d = [NSCalendarDate date]; double time; time = [d hourOfDay] * 3600 + [d minuteOfHour] * 60 + [d secondOfMinute]; [_clock setHandsTimeNoAlarm: time]; [bigClock setHandsTimeNoAlarm: time]; } [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:@"0.5" forKey:@"RefreshRate"]]; /* [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys: @"YES", @"SmoothSeconds", nil]]; */ } - (void) tick { NSCalendarDate *d = [NSCalendarDate date]; NSTimeInterval g = [d timeIntervalSinceReferenceDate]; double time; NSInteger hod = [d hourOfDay]; if (useCuckoo && lastHourOfDay != hod) { int h12clock = hod % 12; rounds = h12clock?h12clock:12; [self playCuckoo]; lastHourOfDay = hod; if ([defaults boolForKey: @"ShowsDate"]) [_clock setDate:d]; } if ([_clock showsAMPM]) { [_clock setShowsAMPM:YES]; } if (doFloor) { time = hod * 3600 + [d minuteOfHour] * 60 + [d secondOfMinute]; } else { time = hod * 3600 + [d minuteOfHour] * 60 + [d secondOfMinute] + (g - floor(g)); } [_clock setHandsTime: time]; [bigClock setHandsTime: time]; [clicon setHandsTime: time]; } static int cstate = -1; NSTimer *ctimer; - (void) cuckoo { if (cstate > -1) { cstate--; [_clock setCuckooState:cstate%20]; } else { [_clock setCuckooState:-1]; [ctimer invalidate]; ctimer = nil; } } - (void) playCuckoo { if (cstate == -1) { NSSound *cuckoo = [[NSSound alloc] initWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"cuckoo.wav" ofType:nil] byReference: NO]; NSInvocation *inv; cstate = 20 * rounds; keepSoundPlaying = YES; [cuckoo setDelegate:self]; [cuckoo play]; inv = [NSInvocation invocationWithMethodSignature: [self methodSignatureForSelector:@selector(cuckoo)]]; [inv setSelector:@selector(cuckoo)]; [inv setTarget:self]; ctimer=[NSTimer scheduledTimerWithTimeInterval:0.05 invocation:inv repeats:YES]; } } - (void) setFrequency: (id)sender { NSInvocation *inv; float fr, fx, fy; inv = [NSInvocation invocationWithMethodSignature: [self methodSignatureForSelector:@selector(tick)]]; [inv setSelector:@selector(tick)]; [inv setTarget:self]; fr = [sender floatValue]; fx = 1.0; fy = 1.0; while (fx > fr) { fx -= 0.25; fy /= 2; } if (fx > 0.8) doFloor = YES; else doFloor = NO; [timer invalidate]; timer=[NSTimer scheduledTimerWithTimeInterval:fy invocation:inv repeats:YES]; [freqText setStringValue:[NSString stringWithFormat:@"%0.0f/sec", 1.0/fy]]; [defaults setObject:[sender stringValue] forKey:@"RefreshRate"]; [defaults synchronize]; } - (void) applicationDidFinishLaunching: (NSNotification *)not { id defaults = [NSUserDefaults standardUserDefaults]; NSInvocation *inv; inv = [NSInvocation invocationWithMethodSignature: [self methodSignatureForSelector:@selector(tick)]]; [inv setSelector:@selector(tick)]; [inv setTarget:self]; [faceColorW setColor:[_clock faceColor]]; [ampmSwitch setIntValue:[_clock showsAMPM]]; useCuckoo = [defaults boolForKey:@"Cuckoo"]; useRing = [defaults boolForKey:@"Ring"]; [cuckooSwitch setIntValue:useCuckoo]; [ringSwitch setIntValue:useRing]; [shadowSwitch setIntValue:[_clock shadow]]; [transSlider setFloatValue:[_clock faceTransparency]]; [handColorW setColor:[_clock handsColor]]; [secColorW setColor:[_clock secondHandColor]]; [frameColorW setColor:[_clock frameColor]]; [markColorW setColor:[_clock marksColor]]; [secondSwitch setIntValue:[_clock second]]; [numberPopUp selectItemAtIndex:[_clock numberType]]; [freqSlider setFloatValue:[defaults floatForKey: @"RefreshRate"]]; [self setFrequency:freqSlider]; [ringSlider setFloatValue:[defaults floatForKey: @"RingLoop"]]; [self setRingLoop:ringSlider]; [incsVolume setIntValue:[defaults boolForKey: @"IncreasesVolume"]]; [self setIncreasesVolume:incsVolume]; /* prevent starting cuckoo */ lastHourOfDay = [[NSCalendarDate date] hourOfDay]; if ([defaults boolForKey: @"ShowsDate"]) [_clock setDate:[NSCalendarDate date]]; timer=[NSTimer scheduledTimerWithTimeInterval:[defaults floatForKey: @"RefreshRate"] invocation:inv repeats:YES]; if ([defaults boolForKey: @"autolaunch"]) { [NSApp hide: self]; } } @end @interface InfoClock : Clock @end @implementation InfoClock - (NSView*) hitTest: (NSPoint)aPoint { return nil; } @end @interface NSApplication (AClock) - (void) orderFrontStandardInfoPanelWithOptions: (NSDictionary *) dict; @end @implementation NSApplication (AClock) - (void) orderFrontStandardInfoPanelWithOptions: (NSDictionary *) dict; { if (_infoPanel == nil) { _infoPanel = [[GSInfoPanel alloc] initWithDictionary: dict]; if (clicon == nil) { NSEnumerator *en = [[[_infoPanel contentView] subviews] objectEnumerator]; id view; while ((view = [en nextObject])) { if ([view isMemberOfClass:[NSButton class]]) { id image = [view image]; if (image == [NSApp applicationIconImage] || image == [NSImage imageNamed: @"NSApplicationIcon"]) { NSRect frame = [view frame]; frame.origin = NSZeroPoint; clicon = [[InfoClock alloc] initWithFrame: frame]; [clicon setShowsArc:NO]; [view setTitle:@""]; [view setImage:nil]; [view addSubview:clicon]; break; } } } } } [_infoPanel setTitle: NSLocalizedString (@"Info", @"Title of the Info Panel")]; [_infoPanel orderFront: self]; } @end AClock-0.4.0/COPYING010064400017500000144000000430761136720523600131630ustar multixusers GNU GENERAL PUBLIC LICENSE Version 2, June 1991 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. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. AClock-0.4.0/ChangeLog010064400017500000144000000020611160332567700136740ustar multixusers2011-07-01 Sebastian Reitenbach * AppController.m * Clock.m Fix gcc 2.95 build 2011-05-23 Riccardo Mottola * AppController.m Fix AM/PM. 2011-05-13 Riccardo Mottola * AClock.pcproj * Resources New ProjectCenter project structure. 2011-05-13 Riccardo Mottola for Sebastian Reitenbach * AppController.h * AppController.m Use NSSound directly instead of external playsound. 2011-05-10 Riccardo Mottola * Clock.m: Use more widespread rint. Cleanups. 2011-05-06 Riccardo Mottola * main.c: Use standard main. 0.2.3 Patch for major speed improvement (thanks Banlu Kemiyatorn) 0.2.1 Patch for autoscaling (thanks Matt Rice) 0.2 Hide Main Menu (thanks Alex Perez), new icon, new background image 0.1.0 Release 0.0.9 Add alarm, bug fixes. 0.0.8 Remove SmoothSeconds. Preferences panel. Eye candies. 0.0.5 Seconds pointer moves smoothly (changeable with the "defaults" tool) 0.0.4 Added license information, seconds pointer is red, hourpointer length increased (thanks Banlu Kemiyatorn and Alex Malmberg) AClock-0.4.0/Clock.h010064400017500000144000000052261156423065300133270ustar multixusers/* Project: AClock Clock.h Copyright (C) 2003-2011 GNUstep Application Project Author: Alexander Malmberg Banlu Kemiyatorn Grkan Sengn Ing. Riccardo Mottola This application is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This application is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #import #import #import @interface Clock : NSControl { int cstate; NSColor *faceColor,*frameColor,*marksColor,*handsColor,*arcColor,*secHandColor,*dayColor; NSImage *_cacheFrame; NSImage *_cacheMark; float faceTrans; BOOL showsArc; BOOL showsAMPM; BOOL shadow; BOOL second; BOOL showDate; NSFont *font; /* BOOL easter;*/ NSCalendarDate *_date; NSTimeZone *_timeZone; NSTimeInterval _tzv; int numberType; /* Calculated values used when drawing. */ double handsTime,alarmInterval; double radius; double base_width; NSPoint center; BOOL inView; } /* TODO? -(NSColor *) arcColor; -(void) setArcColor: (NSColor *)c;*/ - (void) setTimeZone:(NSTimeZone *)tz; - (NSTimeZone *) timeZone; - (void) setDate:(NSDate *)date; - (NSDate *) date; /* move a clock to CSClockView and put these theming method into subclass */ -(NSColor *) marksColor; -(NSColor *) faceColor; -(NSColor *) frameColor; -(NSColor *) handsColor; -(NSColor *) secondHandColor; -(BOOL) showsAMPM; -(BOOL) shadow; -(float) faceTransparency; -(NSFont *)font; -(void) setFont:(NSFont *)newfont; -(int) numberType; -(void) setNumberType: (int)i; -(void) setMarksColor: (NSColor *)c; -(void) setFaceColor: (NSColor *)c; -(void) setFaceTransparency:(float)v; -(void) setFrameColor: (NSColor *)c; -(void) setHandsColor: (NSColor *)c; -(void) setSecondHandColor: (NSColor *)c; -(void) setShowsAMPM:(BOOL)ampm; -(void) setShadow:(BOOL)sh; -(void) setSecond:(BOOL)sh; -(BOOL) second; -(BOOL) showsArc; -(void) setShowsArc: (BOOL)s; -(double) handsTime; -(void) setHandsTime: (double)time; -(double) alarmInterval; -(void) setAlarmInterval: (double)time; -(void) setHandsTimeNoAlarm: (double)time; -(void) setCuckooState:(int)st; @end AClock-0.4.0/Clock.m010064400017500000144000000563411160332430700133320ustar multixusers/* Project: AClock Clock.m Copyright (C) 2003-2011 GNUstep Application Project Author: Alexander Malmberg Banlu Kemiyatorn Grkan Sengn Ing. Riccardo Mottola This application is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This application is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #import #import #import "Clock.h" #ifndef PI #define PI 3.1415926535897932384626434 #endif @implementation Clock static NSUserDefaults *defaults; static NSArray *numArray[2]; static NSImage *cuckoo[20]; static NSArray *dayWeek; + (void) initialize { int i; numArray[0] = [NSArray arrayWithObjects:@"XII",@"I",@"II",@"III",@"IV",@"V",@"VI",@"VII",@"VIII",@"IX",@"X",@"XI",nil]; numArray[1] = [NSArray arrayWithObjects:@"12",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"10",@"11",nil]; RETAIN(numArray[0]); RETAIN(numArray[1]); dayWeek = [NSArray arrayWithObjects:@"su",@"mo",@"tu",@"we",@"th",@"fr",@"sa"]; RETAIN(dayWeek); defaults = [NSUserDefaults standardUserDefaults]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"1.0 0 0" forKey:@"SecondHandColor"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"1.0 1.0 1.0" forKey:@"FaceColor"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"0.3 0.3 0.3" forKey:@"MarksColor"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"0 0 0" forKey:@"HandsColor"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"0 0 0" forKey:@"FrameColor"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"0.5" forKey:@"FaceTransparency"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"YES" forKey:@"Shadow"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"YES" forKey:@"ShowsAMPM"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"YES" forKey:@"Second"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"0" forKey:@"NumberType"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"NO" forKey:@"EvenIStopTheClockItTellsTheRightTimeTwiceADay"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:[NSNumber numberWithDouble:0.0] forKey:@"AlarmInterval"]]; [defaults registerDefaults:[NSDictionary dictionaryWithObject:@"NO" forKey:@"ShowsArc"]]; [self setCellClass: [NSActionCell class]]; for (i = 0; i < 20; i++) { cuckoo[19 - i] = [[NSImage imageNamed:[NSString stringWithFormat:@"cuckoo%d.png",i]] retain]; } } /** Internally used functions/methods **/ -(void) _frameChanged { NSRect r=[self bounds]; double max; max=r.size.width; if (r.size.height35) base_width=radius/35; else base_width=1.2; radius = radius-base_width; ASSIGN(font, [NSFont boldSystemFontOfSize:radius/5]); DESTROY(_cacheFrame); DESTROY(_cacheMark); } /** NSView/-gui 'interface' **/ - initWithFrame: (NSRect)frame { NSUserDefaults *defaults; defaults = [NSUserDefaults standardUserDefaults]; cstate = -1; if (!(self=[super initWithFrame: frame])) return nil; ASSIGN(faceColor,[NSColor colorFromString:[defaults objectForKey: @"FaceColor"]]); ASSIGN(frameColor,[NSColor colorFromString:[defaults objectForKey: @"FrameColor"]]); ASSIGN(marksColor,[NSColor colorFromString:[defaults objectForKey: @"MarksColor"]]); ASSIGN(handsColor,[NSColor colorFromString:[defaults objectForKey: @"HandsColor"]]); ASSIGN(secHandColor,[NSColor colorFromString:[defaults objectForKey: @"SecondHandColor"]]); ASSIGN(arcColor, [NSColor colorWithCalibratedRed: 1.0 green: 0.4 blue: 0.4 alpha: 1.0]); showsAMPM=[defaults boolForKey:@"ShowsAMPM"]; numberType=[defaults integerForKey:@"NumberType"]; shadow=[defaults boolForKey:@"Shadow"]; second=[defaults boolForKey:@"Second"]; /* easter=[defaults boolForKey:@"EvenIStopTheClockItTellsTheRightTimeTwiceADay"];*/ faceTrans = [defaults floatForKey:@"FaceTransparency"]; ASSIGN(_timeZone,[NSTimeZone systemTimeZone]); _tzv = [_timeZone secondsFromGMT]; handsTime=0; showsArc = [defaults boolForKey:@"ShowsArc"]; alarmInterval = [[defaults objectForKey:@"AlarmInterval"] doubleValue]; [self _frameChanged]; return self; } -(void) dealloc { DESTROY(faceColor); DESTROY(frameColor); DESTROY(marksColor); DESTROY(handsColor); DESTROY(arcColor); [super dealloc]; } -(void) setFrame: (NSRect)f { [super setFrame: f]; [self _frameChanged]; } -(void) setFaceColor: (NSColor *)c { ASSIGN(faceColor, c); DESTROY(_cacheFrame); [self setNeedsDisplay:YES]; } -(int) numberType { return numberType; } -(void) setNumberType: (int)i { numberType = i; DESTROY(_cacheMark); [self setNeedsDisplay:YES]; } -(void) setMarksColor: (NSColor *)c { ASSIGN(marksColor, c); DESTROY(_cacheMark); [self setNeedsDisplay:YES]; } -(NSColor *) marksColor { return marksColor; } -(void) setFaceTransparency:(float)v { faceTrans = v; DESTROY(_cacheFrame); [self setNeedsDisplay:YES]; } -(void) setFrameColor: (NSColor *)c { ASSIGN(frameColor, c); DESTROY(_cacheFrame); [self setNeedsDisplay:YES]; } -(void) setHandsColor: (NSColor *)c { ASSIGN(handsColor, c); [self setNeedsDisplay:YES]; } -(void) setSecondHandColor:(NSColor *)c { ASSIGN(secHandColor, c); DESTROY(_cacheMark); [self setNeedsDisplay:YES]; } -(void) setShowsAMPM:(BOOL)ampm { showsAMPM = ampm; DESTROY(_cacheMark); [self setNeedsDisplay:YES]; } -(void) setShadow:(BOOL)sh { shadow = sh; DESTROY(_cacheFrame); DESTROY(_cacheMark); [self setNeedsDisplay:YES]; } - (BOOL) shadow { return shadow; } -(void) setSecond:(BOOL)sh { second = sh; [self setNeedsDisplay:YES]; } - (BOOL) second { return second; } -(NSColor *) faceColor { return faceColor; } -(NSColor *) frameColor { return frameColor; } -(NSColor *) handsColor { return handsColor; } -(NSColor *)secondHandColor { return secHandColor; } -(BOOL) showsAMPM { return showsAMPM; } -(float) faceTransparency { return faceTrans; } -(NSFont *)font { return font; } -(void) setFont:(NSFont *)newfont { ASSIGN(font,newfont); DESTROY(_cacheMark); [self setNeedsDisplay:YES]; } -(BOOL) isOpaque { return NO; } - (void) setAlarmIntervalUsingEvent: (NSEvent*)event; { double a1,a2; NSPoint p = [self convertPoint: [event locationInWindow] fromView:nil]; unsigned int mf = [event modifierFlags]; id target; SEL action; p.x -= center.x; p.y -= center.y; a1 = 450 - fmod(handsTime, 43200.)/120.; a2 = atan(p.y/p.x)/(2 * M_PI) * 360; if (p.x < 0) { a2 += 180; } else if (p.y < 0) { a2 += 360; } if (mf & NSShiftKeyMask) { a1 -= rint(a2/30.) * 30.; } else if (mf & NSControlKeyMask) { a1 -= a2 - remainder(a2 - a1, 30.); } else a1 -= a2; a1 = a1 * 120 + handsTime; if (fabs(a1 - handsTime) < 20) a1 = handsTime + 10; [self setAlarmInterval:a1]; target = [_cell target]; action = [_cell action]; [self sendAction: action to: target]; } - (void) mouseDown:(NSEvent *)event { id target = [_cell target]; SEL action = [_cell action]; [self setShowsArc:!showsArc]; [self sendAction: action to: target]; } - (void) mouseDragged: (NSEvent *)event { id target = [_cell target]; SEL action = [_cell action]; [self setAlarmIntervalUsingEvent:event]; [self setShowsArc:YES]; [self sendAction: action to: target]; } - (void) mouseUp:(NSEvent *)event { id target = [_cell target]; SEL action = [_cell action]; [self sendAction: action to: target]; [defaults setObject:[NSNumber numberWithDouble:alarmInterval] forKey:@"AlarmInterval"]; [defaults setObject:showsArc?@"YES":@"NO" forKey:@"ShowsArc"]; [defaults synchronize]; } /* - (void)mouseDragged:(NSEvent *)event { // NSLog(@"%@", [self target]); // NSLog(@"down %g", atan(p.y/p.x)/(2 * M_PI) * 360); [self setNeedsDisplay:YES]; } */ -(void) drawRect: (NSRect)r { NSGraphicsContext *ctxt=GSCurrentContext(); /* BOOL smoothSeconds = [defaults boolForKey: @"SmoothSeconds"]; */ if (radius<5) return; DPSsetlinewidth(ctxt,base_width); /* no cache window, create one */ if (_cacheFrame == nil) { _cacheFrame = [[NSImage alloc] initWithSize:_bounds.size]; [_cacheFrame lockFocus]; ctxt=GSCurrentContext(); { /* draw date */ if (_date != nil) { NSMutableAttributedString *str; NSSize strSize; NSColor* white = [NSColor colorWithDeviceRed:1. green:1. blue:1. alpha:0.7]; str = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%d",[_date dayOfMonth]]]; [str addAttribute:NSForegroundColorAttributeName value:white range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:[NSFont boldSystemFontOfSize:radius/3] range:NSMakeRange(0,[str length])]; strSize = [str size]; [str drawAtPoint:NSMakePoint(3, 0)]; [str addAttribute:NSForegroundColorAttributeName value:[NSColor blackColor] range:NSMakeRange(0,[str length])]; [str drawAtPoint:NSMakePoint(2, 1)]; RELEASE(str); str = [[NSMutableAttributedString alloc] initWithString:[dayWeek objectAtIndex:[_date dayOfWeek]]]; [str addAttribute:NSForegroundColorAttributeName value:white range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:[NSFont boldSystemFontOfSize:radius/3] range:NSMakeRange(0,[str length])]; strSize = [str size]; [str drawAtPoint:NSMakePoint(2, NSHeight(_bounds) - strSize.height)]; [str addAttribute:NSForegroundColorAttributeName value:[NSColor blackColor] range:NSMakeRange(0,[str length])]; [str drawAtPoint:NSMakePoint(1, NSHeight(_bounds) - strSize.height + 1)]; } /* draw face */ [faceColor set]; DPSgsave(ctxt); DPSsetalpha(ctxt, faceTrans); DPSmoveto(ctxt,center.x+radius,center.y); DPSarc(ctxt,center.x,center.y,radius,0,360); DPSfill(ctxt); DPSgrestore(ctxt); /* draw frame and frame shadow */ [frameColor set]; DPSsetlinewidth(ctxt, base_width*2); DPSmoveto(ctxt,center.x+radius,center.y); DPSarc(ctxt,center.x,center.y,radius,0,360); DPSclosepath(ctxt); DPSstroke(ctxt); if (shadow) { DPSgsave(ctxt); [[NSColor blackColor] set]; DPSsetlinewidth(ctxt, base_width*1.5); DPSsetalpha(ctxt,0.4); DPSmoveto(ctxt,center.x+radius,center.y); DPSarc(ctxt,center.x + 0.5*base_width,center.y-0.5*base_width,radius,0,360); DPSclosepath(ctxt); DPSstroke(ctxt); DPSgrestore(ctxt); [[NSColor whiteColor] set]; DPSgsave(ctxt); DPSsetlinewidth(ctxt, base_width*1.0); DPSsetalpha(ctxt,0.3); DPSmoveto(ctxt,center.x+radius,center.y); DPSarc(ctxt,center.x - 0.5*base_width,center.y + 0.5*base_width,radius,0,360); DPSclosepath(ctxt); DPSstroke(ctxt); DPSgrestore(ctxt); } } [_cacheFrame unlockFocus]; ctxt=GSCurrentContext(); } if (_cacheMark == nil) { _cacheMark = [[NSImage alloc] initWithSize:_bounds.size]; /* print numbers and draw mark */ [_cacheMark lockFocus]; ctxt=GSCurrentContext(); if (shadow) { NSColor* black = [NSColor colorWithDeviceRed:0. green:0. blue:0. alpha:0.2]; DPSgsave(ctxt); DPStranslate(ctxt, 1.0, -1.0); [black set]; /* print AM PM */ if (showsAMPM) { NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:(handsTime - 86400 * floor(handsTime/86400))/3600 >= 12?@"PM":@"AM"]; NSSize strSize; [str addAttribute:NSForegroundColorAttributeName value:black range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[str length])]; strSize = [str size]; [str drawAtPoint:NSMakePoint(center.x - strSize.width/2, center.y - radius * 0.8 + strSize.height/2)]; RELEASE(str); } { int i; double a,x,y; [black set]; if (numberType != 0 && radius >= 27) for (i=0;i<60;i++) { if (i%5) { a=i/60.0*2*PI; x=sin(a); y=cos(a); DPSarc(ctxt,center.x+x*radius*0.90,center.y+y*radius*0.90,0.5*base_width,0,360); DPSfill(ctxt); } } for (i=0;i<12;i++) { a=i/12.0*2*PI; x=sin(a); y=cos(a); if (numberType != 0) { DPSmoveto(ctxt,center.x+x*radius*0.95,center.y+y*radius*0.95); DPSlineto(ctxt,center.x+x*radius*0.83,center.y+y*radius*0.83); DPSstroke(ctxt); } if (numberType == 1) { NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[numArray[1] objectAtIndex:i]]; NSSize size; [str addAttribute:NSForegroundColorAttributeName value:black range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[str length])]; size = [str size]; [str drawAtPoint:NSMakePoint(center.x+x*radius*0.7 - size.width/2, center.y+y*radius*0.7 - size.height/2)]; RELEASE(str); } else if (numberType == 0) { NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[numArray[0] objectAtIndex:i]]; NSSize size; [str addAttribute:NSForegroundColorAttributeName value:black range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[str length])]; size = [str size]; [str drawAtPoint:NSMakePoint(center.x+x*radius*0.80 - size.width/2.5, center.y+y*radius*0.80 - size.height/2)]; RELEASE(str); } } } DPSgrestore(ctxt); } /* done shadow */ { /* print AM PM */ if (showsAMPM) { NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:(handsTime - 86400 * floor(handsTime/86400))/3600 >= 12?@"PM":@"AM"]; NSSize strSize; [str addAttribute:NSForegroundColorAttributeName value:marksColor range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[str length])]; strSize = [str size]; [str drawAtPoint:NSMakePoint(center.x - strSize.width/2, center.y - radius * 0.8 + strSize.height/2)]; RELEASE(str); } { int i; double a,x,y; [marksColor set]; if (numberType != 0 && radius >= 27) for (i=0;i<60;i++) { if (i%5) { a=i/60.0*2*PI; x=sin(a); y=cos(a); DPSarc(ctxt,center.x+x*radius*0.90,center.y+y*radius*0.90,0.5*base_width,0,360); DPSfill(ctxt); } } for (i=0;i<12;i++) { NSColor* tmpC; a=i/12.0*2*PI; x=sin(a); y=cos(a); if ((_date != nil) && [_date monthOfYear]%12 == i) { tmpC = secHandColor; } else tmpC = marksColor; [tmpC set]; if (numberType != 0) { DPSmoveto(ctxt,center.x+x*radius*0.95,center.y+y*radius*0.95); DPSlineto(ctxt,center.x+x*radius*0.83,center.y+y*radius*0.83); DPSstroke(ctxt); } if (numberType == 1) { NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[numArray[1] objectAtIndex:i]]; NSSize size; [str addAttribute:NSForegroundColorAttributeName value:tmpC range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[str length])]; size = [str size]; [str drawAtPoint:NSMakePoint(center.x+x*radius*0.7 - size.width/2, center.y+y*radius*0.7 - size.height/2)]; RELEASE(str); } else if (numberType == 0) { NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[numArray[0] objectAtIndex:i]]; NSSize size; [str addAttribute:NSForegroundColorAttributeName value:tmpC range:NSMakeRange(0,[str length])]; [str addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[str length])]; size = [str size]; [str drawAtPoint:NSMakePoint(center.x+x*radius*0.80 - size.width/2.5, center.y+y*radius*0.80 - size.height/2)]; RELEASE(str); } } } } [_cacheMark unlockFocus]; ctxt=GSCurrentContext(); } [_cacheFrame compositeToPoint:NSZeroPoint operation:NSCompositeSourceAtop]; /* if ((handsTime - 86400 * floor(handsTime/86400))/3600 > 12); { } */ /* draw arc */ if (showsArc) { double a1,a2; double r1; a1 = 90 - (handsTime - 43200 * floor(handsTime/43200))/43200 * 360; a2 = 90 - (alarmInterval - 43200 * floor(alarmInterval/43200))/43200 * 360; r1=radius * 0.8; DPSnewpath(ctxt); if (a2 < a1) { a2 += 360; } DPSsetlinewidth(ctxt,radius*0.4* (0.1 + (a2-a1)/400)); [[NSColor colorWithDeviceHue: 0.5 - (a2 - a1)/720 saturation:0.1 + (a2 - a1)/400 brightness:0.8 alpha:faceTrans + 0.7] set]; DPSarc(ctxt,center.x,center.y,r1,a2,a1); DPSstroke(ctxt); DPSsetalpha(ctxt, 10/(370 - fabs(a2 - a1))); DPSarc(ctxt,center.x,center.y,r1 * 5/(370 - fabs(a2 - a1)),0,360); DPSfill(ctxt); } [_cacheMark compositeToPoint:NSZeroPoint operation:NSCompositeSourceAtop]; DPSsetlinewidth(ctxt,base_width); { double hours,minutes,seconds; double a,x,y; /* Shadows */ if (shadow) { DPSgsave(ctxt); DPStranslate(ctxt, base_width*1.0, -1.5*base_width); [[NSColor blackColor] set]; DPSsetalpha(ctxt, 0.3); if (second) { seconds=handsTime-60*floor(handsTime/60); /* if (smoothSeconds == NO) seconds = floor(seconds); */ seconds/=60; a=seconds*2*PI; x=sin(a); y=cos(a); DPSsetlinewidth(ctxt,base_width*0.8); DPSmoveto(ctxt,center.x+x*radius*0.89,center.y+y*radius*0.89); seconds=handsTime-60*floor(handsTime/60)+30; /* if (smoothSeconds == NO) seconds = floor(seconds); */ seconds/=60; a=seconds*2*PI; x=sin(a); y=cos(a); DPSlineto(ctxt,center.x+x*radius*0.30,center.y+y*radius*0.30); DPSstroke(ctxt); DPSarc(ctxt,center.x,center.y,1.5*base_width,0,360); DPSfill(ctxt); } else { DPSarc(ctxt,center.x,center.y,1.5*base_width,0,360); DPSfill(ctxt); } minutes=handsTime-3600*floor(handsTime/3600); minutes/=3600; a=minutes*2*PI; x=sin(a); y=cos(a); DPSsetlinewidth(ctxt,base_width); DPSmoveto(ctxt,center.x,center.y); DPSlineto(ctxt,center.x+x*radius*0.89,center.y+y*radius*0.89); DPSstroke(ctxt); hours=handsTime-43200*floor(handsTime/43200); hours/=3600*12; if (hours>=1) hours-=1; a=hours*2*PI; x=sin(a); y=cos(a); /* { int x2,y2; float f; f=0.06; DPSmoveto(ctxt,center.x,center.y); x2=sin(a+PI/2)*radius*f+center.x+x/2*radius*0.5; y2=cos(a+PI/2)*radius*f+center.y+y/2*radius*0.5; DPScurveto(ctxt, x2,y2,x2,y2, center.x+x*radius*0.5,center.y+y*radius*0.5); x2=-sin(a+PI/2)*radius*f+center.x+x/2*radius*0.5; y2=-cos(a+PI/2)*radius*f+center.y+y/2*radius*0.5; DPScurveto(ctxt, x2,y2,x2,y2, center.x,center.y); DPSfill(ctxt); } */ DPSsetlinewidth(ctxt,base_width*1.5); DPSsetlinecap(ctxt,1); DPSmoveto(ctxt,center.x,center.y); DPSlineto(ctxt,center.x+x*radius*0.5,center.y+y*radius*0.5); DPSstroke(ctxt); DPSsetlinecap(ctxt,0); DPSgrestore(ctxt); /** done Shadow **/ } [handsColor set]; minutes=handsTime-3600*floor(handsTime/3600); minutes/=3600; a=minutes*2*PI; x=sin(a); y=cos(a); DPSsetlinewidth(ctxt,base_width); DPSmoveto(ctxt,center.x,center.y); DPSlineto(ctxt,center.x+x*radius*0.89,center.y+y*radius*0.89); DPSstroke(ctxt); hours=handsTime-43200*floor(handsTime/43200); hours/=3600*12; if (hours>=1) hours-=1; a=hours*2*PI; x=sin(a); y=cos(a); /* { int x2,y2; float f; f=0.06; DPSmoveto(ctxt,center.x,center.y); x2=sin(a+PI/2)*radius*f+center.x+x/2*radius*0.5; y2=cos(a+PI/2)*radius*f+center.y+y/2*radius*0.5; DPScurveto(ctxt, x2,y2,x2,y2, center.x+x*radius*0.5,center.y+y*radius*0.5); x2=-sin(a+PI/2)*radius*f+center.x+x/2*radius*0.5; y2=-cos(a+PI/2)*radius*f+center.y+y/2*radius*0.5; DPScurveto(ctxt, x2,y2,x2,y2, center.x,center.y); DPSfill(ctxt); } */ DPSsetlinewidth(ctxt,base_width*1.5); DPSsetlinecap(ctxt,1); DPSmoveto(ctxt,center.x,center.y); DPSlineto(ctxt,center.x+x*radius*0.5,center.y+y*radius*0.5); DPSstroke(ctxt); DPSsetlinecap(ctxt,0); if (second) { [secHandColor set]; seconds=handsTime-60*floor(handsTime/60); /* if (smoothSeconds == NO) seconds = floor(seconds); */ seconds/=60; a=seconds*2*PI; x=sin(a); y=cos(a); DPSsetlinewidth(ctxt,base_width*0.8); DPSmoveto(ctxt,center.x+x*radius*0.89,center.y+y*radius*0.89); seconds=handsTime-60*floor(handsTime/60)+30; /* if (smoothSeconds == NO) seconds = floor(seconds); */ seconds/=60; a=seconds*2*PI; x=sin(a); y=cos(a); DPSlineto(ctxt,center.x+x*radius*0.30,center.y+y*radius*0.30); DPSstroke(ctxt); DPSarc(ctxt,center.x,center.y,1.5*base_width,0,360); DPSfill(ctxt); } else { DPSarc(ctxt,center.x,center.y,1.5*base_width,0,360); DPSfill(ctxt); } } if (cstate != -1) { [cuckoo[cstate] compositeToPoint:NSMakePoint(-1,12) operation:NSCompositeSourceAtop]; } } - (void) setCuckooState:(int)st { if (st != cstate) { cstate = st; [self setNeedsDisplay:YES]; } } /** Public interface **/ -(BOOL) showsArc { return showsArc; } -(void) setShowsArc: (BOOL)s { s=!!s; if (s==showsArc) return; showsArc=s; [self setNeedsDisplay: YES]; } - (void) setTimeZone:(NSTimeZone *)tz { ASSIGN(_timeZone,tz); _tzv = [tz secondsFromGMT]; [self setNeedsDisplay: YES]; } - (NSTimeZone *) timeZone { return _timeZone; } - (void) setDate:(NSDate *)date { ASSIGN(_date, date); handsTime = [date timeIntervalSinceReferenceDate] + _tzv; DESTROY(_cacheFrame); DESTROY(_cacheMark); /* if (easter) { [self translateOriginToPoint:center]; [self rotateByAngle:6 * (time-handsTime)]; [self translateOriginToPoint:NSMakePoint(-center.x,-center.y)]; } */ [self setNeedsDisplay: YES]; } - (NSDate *) date { return _date; } -(double) handsTime { return handsTime; } -(void) setHandsTime: (double)time { handsTime=time; if (handsTime > alarmInterval) { id target = [_cell target]; SEL action = [_cell action]; if (showsArc) { [self sendAction: action to: target]; } [self setAlarmInterval: alarmInterval]; } [self setNeedsDisplay: YES]; } -(void) setHandsTimeNoAlarm: (double)time { handsTime=time; [self setAlarmInterval: alarmInterval]; } -(double) alarmInterval { return alarmInterval; } -(void) setAlarmInterval: (double)time { alarmInterval = floor(handsTime / 43200) * 43200 + fmod(time, 43200.); if (alarmInterval < handsTime) alarmInterval += 43200; if (showsArc) { [self setNeedsDisplay: YES]; } } @end AClock-0.4.0/GNUmakefile010064400017500000144000000026141156323073300141710ustar multixusers# # GNUmakefile - Generated by ProjectCenter # ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) endif ifeq ($(GNUSTEP_MAKEFILES),) $(error You need to set GNUSTEP_MAKEFILES before compiling!) endif include $(GNUSTEP_MAKEFILES)/common.make # # Application # VERSION = 0.4.0 PACKAGE_NAME = AClock APP_NAME = AClock AClock_APPLICATION_ICON = # # Resource files # AClock_RESOURCE_FILES = \ Resources/AClock.gorm \ Resources/AClock.tiff \ Resources/clock.png \ Resources/cuckoo0.png \ Resources/cuckoo1.png \ Resources/cuckoo10.png \ Resources/cuckoo11.png \ Resources/cuckoo12.png \ Resources/cuckoo13.png \ Resources/cuckoo14.png \ Resources/cuckoo15.png \ Resources/cuckoo16.png \ Resources/cuckoo17.png \ Resources/cuckoo18.png \ Resources/cuckoo19.png \ Resources/cuckoo2.png \ Resources/cuckoo3.png \ Resources/cuckoo4.png \ Resources/cuckoo5.png \ Resources/cuckoo6.png \ Resources/cuckoo7.png \ Resources/cuckoo8.png \ Resources/cuckoo9.png \ Resources/cuckoo.wav \ Resources/ring.wav # # Header files # AClock_HEADER_FILES = \ AppController.h \ Clock.h # # Class files # AClock_OBJC_FILES = \ AppController.m \ Clock.m # # Other sources # AClock_OBJC_FILES += \ main.m # # Makefiles # -include GNUmakefile.preamble include $(GNUSTEP_MAKEFILES)/aggregate.make include $(GNUSTEP_MAKEFILES)/application.make -include GNUmakefile.postamble AClock-0.4.0/README010064400017500000144000000000651136720523600127770ustar multixusers Comments? Grkan Sengn AClock-0.4.0/cuckoo.blend010064400017500000144000015276241136720523600144300ustar multixusersBLENDER_v248REND ѿSceneGLOB ѿ 1  SRxʆ  SR1-AnimationPˆ Ά Ά Ն HՆ   DATAPˆ ˆ DATAˆ ˆ Pˆ DATAˆ ̆ ˆ  DATĂ P̆ ˆ DATAP̆ ̆ ̆ DATĂ ̆ P̆ DATĂ ͆ ̆ DATA͆ P͆ ̆ DATAP͆ ͆ ͆ DATA͆ ͆ P͆ DATA͆ Ά ͆ DATAΆ PΆ ͆ DATAPΆ Ά Ά DATAΆ PΆ DATAΆ φ ˆ ˆ DATAφ `φ Ά Pˆ ̆ DATA`φ φ φ ˆ ̆ DATAφ φ `φ ˆ ̆ DATAφ 8І φ ̆ ̆ DATA8І І φ P̆ ͆ DATAІ І 8І ̆ P͆ DATAІ ц І ͆ P͆ DATAц Xц І P̆ ̆ DATAXц ц ц Pˆ ͆ DATAц ц Xц P̆ ͆ DATAц 0҆ ц ̆ ͆ DATA0҆ x҆ ц ͆ ͆ DATAx҆ ҆ 0҆ ͆ Ά DATA҆ ӆ x҆ ̆ PΆ DATAӆ Pӆ ҆ P͆ PΆ DATAPӆ ӆ ӆ Ά PΆ DATAӆ ӆ Pӆ ͆ Ά DATAӆ (Ԇ ӆ ͆ Ά DATA(Ԇ pԆ ӆ P̆ Ά DATApԆ Ԇ (Ԇ Ά Ά DATAԆ Ն pԆ ̆ ͆ DATAՆ Ԇ PΆ Ά DATAHՆ  Pˆ ͆ ͆ ̆ O  @ֆ DATA@ֆ P׆ Link and MaterialsEditing>DATAP׆ `؆ @ֆ MeshEditingF>DATA`؆ pن P׆ Anim settingsObject>DATApن چ `؆ DrawObjectF>DATAچ ۆ pن ConstraintsObject>DATAۆ ܆ چ EffectsObjectDATA܆ ݆ ۆ HooksObjectF>pن DATA݆ ކ ܆ Particle InteractionObject>چ DATAކ ߆ ݆ SoftbodyObject>چ DATA߆  ކ OutputRender>DATA  ߆ RenderRenderF>DATA  AnimRender>DATA  FormatRender>DATA  333?@DhCDhCC(BDC?z?DATA  333?/9DATA  HՆ ̆ ˆ ˆ ̆  !  DATA `  Ά PΆ P͆ ͆ G==o? h  DATA  Transform PropertiesView3d>DATA  3D Viewport propertiesView3d>"DATA h 333?????????G==o? A*A?G==o??????*A` B??=C ݢM@ݢM@ݢM@? DATAh  333?/9DATA`   ͆ P͆ ̆ P̆ ??PףHh X X DATAX Transform PropertiesIpo!>DATAXh  333? zC̽̌?zC@ #< #<`jFzD H`OBzC̽̌?DATA ( h 333? CC|||??l|DATA(  333? zCCHBC|||?CFC= ADATA  ( 333? ` =rttDATA   333? ?zDzDBCl||ll|zDzD=HB DATA  333? BzB@l|llFzD #<HB DATA  333? ??? ???? A???PA A!O?j?}GCHB? A` B? #<C DATA  333? /9DATA  ` Ά Ά P̆ ͆    DATA  Link and MaterialsEditing>DATA  MeshEditingF>DATA  333?J zCB{ µCB ?BFB= ADATA  333?J zCCHBC$?CFC= ADATA   333?J #DhC`DpJgChCC(BDC?z?DATA  333?J /9DATA  ͆ ̆ PΆ Ά } ?=o?.   DATA  Transform PropertiesView3d>DATA  3D Viewport propertiesView3d>"DATA  333? K v XDATA> pv hUv XDATApv > DATAp    DATA  p p 0 DATA H  p p DATAH   0  DATA  H p  DATA      DATA  h   0 DATAh @   0 DATA@ A h p v DATAA  @  v DATA Ħ A hUv 0 DATAĦ  hUv  DATA (v Ħ hUv v DATA(v   > v DATA 0ț (v hUv > DATA0ț  pv  DATA  0ț pv 0 DATA  pv > DATA@ V p p  0 ?@PףON T (-8 DATA8 H PreviewLamp>{DATAH X 8 LampLampF>{DATAX h H SpotLamp>DATAh x X Texture and InputLamp>{DATAx  h Map ToLamp>{h DATA  x PreviewMaterial>DATA   MaterialMaterial>DATA   PreviewWorld>DATA   WorldWorldF>DATA   Mist Stars PhysicsWorld>DATA !  Texture and InputWorld>DATA! " Map ToWorld> DATA" $ ! OutputRender>DATA$ % " RenderRenderF>DATA% (& $ AnimRender>DATA(& 8' % FormatRender>DATA8' H( (& Link and MaterialsEditing>DATAH( X) 8' MeshEditingF>DATAX) h* H( Mesh ToolsEditing>DATAh* x+ X) Mesh Tools 1Editing>DATAx+ , h* CameraEditingF>DATA, - x+ ShadersMaterial>DATA- . , TextureMaterial>DATA. / - Anim settingsObject>DATA/ 0 . DrawObjectF>DATA0 1 / ConstraintsObject>DATA1 2 0 ScriptlinksScript>DATA2 3 1 EffectsObject0 DATA3 5 2 Map InputMaterial>- DATA5 6 3 Map ToMaterial>- DATA6 A 5 AnimAnim>DATAA B 6 SoundSound>DATAB C A ListenerSoundF>DATAC E B SequencerSound>DATAE F C ArmatureEditingF>DATAF (G E RampsMaterial> DATA(G 8H F Mirror TranspMaterial>, DATA8H HI (G Mist / Stars / PhysicsWorld>HI DATAHI XJ 8H Amb OccWorld>DATAXJ hK HI Shadow and SpotLamp>{DATAhK xL XJ ModifiersEditing>DATAxL M hK ShapesEditing>hK DATAM 0Mv xL MultiresEditing>DATA0Mv Pŀ M Mesh Tools MoreEditing^>DATAPŀ -_ 0Mv UV CalculationEditing>M DATA-_ a Pŀ Links and PipelineMaterialF>DATAa ! -_ SSSMaterial>, DATA! P a Sky/AtmosphereLamp>{XJ DATAP  ! Render LayersRender>" DATA { P BakeRender>% DATA{ ( StampRender>(& DATA(]{ PreviewTexture>pDATA]p(TextureTextureF>pDATAp]Radio RenderRadio>DATApRadio ToolRadioF>DATAN O 333?@ Pu DhCE^Dʱ>hCC(BDC?z?amDATAO R N 333?@ ??? ???? A??@PA Aj?c3>}GCHB? A` B? #<C DATAR  T O 333?@ HE}CHE}C HE}C??DATA T R 333?@ /9DATAV W @    0 ccDATAW d V p v hUv  >?Ao?W  W LP| 8d X Y DATAX Y Transform PropertiesView3d,>DATAY X View PropertiesView3dT>"DATA| (Z 333?W ~CBD6BBL?B|HB= ADATA(Z p] | 333?W ?3?3??3?3? >?_5n;A?m?QN0 =zC? >?Ao??3?3?5?5m??`x B?= ;=C?y=yg<o!>o!>o!>? ?DATAXp] ^ (Z 333?W zC̽̌?zC@22 #< #<`jFzD H`OBzC̽̌?DATA^ @b p] 333?W HEVDHEVD2 XHEVD??2DATA@b 0c ^ 333?W ?zDzB@22FzD #<HB DATA0c 8d @b 333?W DdC8CnD fCC(BDC?z?DATA8d 0c 333?W LSave FileNT PICTURES/Users/ton/Desktop/umpbug Folder/ender.app/Contents/Resources/untitled.blend DATAd pæ W > pv 0 hUv d?2>o?YYst  BNv ``8- DATA8-  Transform PropertiesView3d,>DATA 8- View PropertiesView3dT>"DATAN 333?d ?zDzDB CBB|HzD=HB DATA x N 333?d ?zDzj;ëjwCCBBFzD #<HB DATAXx L 333?d ? A= n nBÃCBjjB #< #<`jFzD (漳ꅵOB? A=DATAL 0% x 333?d ??DD$?N?D$?%N%D??%H ?۹ od?ߙxI /$2>S!?j`\$^?0%%ɤ@y@?d?2>o???DD$?N??@?`x B?= L;=C?y=yg<???t߰D،? ?DATA0% K L 333?d HEVDHEVD2 XHEVD??2DATAK v 0% 333?d DdC8CnD fCC(BDC?z?DATAv K 333?d LSave FileNT PICTURES/Users/ton/Desktop/umpbug Folder/ender.app/Contents/Resources/untitled.blend DATApæ d v  pv > q?u?AHMYYst B#a d 44c P6w DATAc P6w Transform PropertiesView3d,>DATAP6w c View PropertiesView3dT>"DATAa  333?pæ ?i!3?i!3sx;+>~h??i!3?i!3sx~h+?q?-3A??u?ti!k;:Q>5?~h?~h?5?5??,E?` B??9;=Cn#>&\>]|e6<%2>>Ob2%2>%2>Ob2t߰D،? k~a?/ノs{+DATAX צ a 333?pæ zC̽̌?zC@22 #< #<`jFzD H`OBzC̽̌?DATAצ  333?pæ HEVDHEVD2 XHEVD??20` a DATA,0` ` BOq= H`DATA,` ` 0` EM@|A8DATA,` 8a ` AM1~Ab>ADATA,8a a ` BO`A0DATA,a a 8a BOp=A`DATA,a a CS@ffDATA  צ 333?pæ ?zDzB@22FzD #<HB DATA d 333?pæ DdC8CnD fCC(BDC?z?DATAd  333?pæ Save AseNT PICTURES/home/susanne/Desktop/Download/r/ender.app/Contents/Resources/cuckoontitled.blendn#SRx0f   SR3-Materialodel Singf j Xj p p H  DATAf g DATAg Xg f DATAXg g g  DATAg g Xg DATAg h g <DATAh Xh g <DATAXh h h DATAh h Xh DATAh i h ,<DATAi Xi h ,DATAXi i i DATAi i Xi ,DATAi j i DATAj i DATAXj j g Xg DATAj j Xj f g DATAj 0k j f g DATA0k xk j g h DATAxk k 0k g h DATAk l xk g Xh DATAl Pl k Xg h DATAPl l l Xh h DATAl l Pl h h DATAl (m l g h DATA(m pm l h h DATApm m (m h i DATAm n pm h i DATAn Hn m g Xi DATAHn n n Xh Xi DATAn n Hn i i DATAn  o n h i DATA o ho n Xi i DATAho o o Xi i DATAo o ho i i DATAo @p o Xh j DATA@p p o i j DATAp @p i j DATAp 8 f g h g ?@Pף;;!v @} q t DATAq r OutputRender>DATAr s q RenderRenderF>DATAs t r AnimRender>DATAt s FormatRender>DATAv v 333? ~CA~CA!?AFA= ADATAv w v 333? zCCHBC ?CFC= ADATAw x v 333? DhC?DhCC(BDC?z?mDATAx | w 333? ??? ???? A??@PA Aj?c3>}GCHB? A` B? #<C DATA| @} x 333? @̌AR|B1@lA A@CC #<@DATA@} | 333? /9DATA8 0 p Xh g Xg h  !  DATA0  8 h i h h G@? JL-=-=W-X~荊 ( ، DATA( 8 OutputRender>DATA8 H ( RenderRender>DATAH X 8 AnimRender0>DATAX h H FormatRenderH>DATAh x X PreviewMaterial>DATAx  h MaterialMaterial>DATA  x ShadersMaterial0>DATA  TextureMaterialD>DATA  Map InputMaterial\>DATA ȋ Map ToMaterial`>DATAȋ ، RampsMaterial>x DATA، ȋ Mirror TranspMaterialH>DATA荊  333?*ChCCvgCC(BDC?z?DATA 8 荊 333?*J>H!?)xu?i6>Pbܗ=(?^L?a?滎z?J>#xu?ܗ=Hi6>(? ?Pb^L?\FAA?4[?[!?@jG>gb>Pb>4Im>k&?]M^L<0@AzA=>Kc<2֍7&> ?:x¸A1vB,jB~@G@? JLJ>H!?)xu?i6>Pbܗ=(?^L?a?滎z?@?$$OA` B?=Ch?j(4?t'>d DATAX8  333?*zC AzC A #< #<`jFzD OBDATA 8 333?*;SAVE FILE/usr/home/intrr/blender/blend/untitled.blendDATA  0 g Xi i h U.=w=o?+=+=W+X,X DATA  333????h?j(4?t'>????hj(4t'?U.=w=o??OA` B??=Ch?j(4?t'>dEh@Eh@Eh@? DATA  333?DdC>9C,DeCC(BDC?z?DATAX  333?zC AzC A #< #<`jFzD OBDATA  333? SAVE FILE/Users/ton/Desktop/der/blend/untitled.blendDATA H i j i i e?B$?AHM+++USx P DATAx  333?ݕ/?U~'?3F:?>T8165e?2>Z& 4?ߕ/?7F:?81W~>85e?'?T2>ne@>M@?4z?'''䷄?K??T?v|@?l211A 4Atp>?@@FC>G ?4xB֟&BĭeA(@e?B$?AHMݕ/?U~'?3F:?>T8165e?2>Z& 4?H?N,Z#OA` B??=Ch?j(4?t'>dA@A@A@? DATA ȣ x 333?DdC>9C,DeCC(BDC?z?DATAXȣ P 333?zC AzC A #< #<`jFzD OBDATAP ȣ 333? SAVE FILE/Users/ton/Desktop/der/blend/untitled.blendDATAH  Xi Xh j i &=+=o?US@  DATA@  333?*?3?3:-vk(4??3?3;@k(40v@?&=PU1n;+=ꉖø;ZO{:?JXA54U0AC;@j(40v@?&=+=o??3?3:-vk(4?5?5IXA` B??=C:j(4?.vdٚ@ٚ@ٚ@? DATA  @ 333?*DdC>9C,DeCC(BDC?z?DATAX  333?*zC AzC A #< #<`jFzD OBDATA  333?* SAVE FILE/Users/ton/Desktop/der/blend/untitled.blendSRx p 0f SR4-Sequence 8 ع @ڊ  DATA  DATA 8 DATA8 x  DATAx  8 DATA  x DATA 8 DATA8 x DATAx  8 DATA  x DATA 8 DATA8 x TDATAx  8 TDATA  x DATA  DATA8  8 DATA ȴ 8 x DATAȴ  DATA X ȴ x DATAX   DATA 赊 X 8 DATA赊 0 8 x DATA0 x 赊 8 x DATAx  0 8 DATA  x x DATA P DATAP   8 DATA ් P 8 DATA් ( 8 x DATA( p ් x x DATAp  ( 8 x DATA  p DATA H DATAH  DATA ع H DATAع  DATA XŠ x X `  H DATA ( OutputRender>DATA( 8  RenderRenderF>DATA8 H ( AnimRender>DATAH 8 FormatRender>DATAX ` 333?ʃDhCvDhCC(BDC?z?DATA` X 333?ʃ/9DATAXŠ PÊ 8 8 x  !  DATAPÊ Pˊ XŠ 8=i>o? HĊ XɊ DATAHĊ Ŋ 333?ʄ~CB~CB ?BFB= ADATAŊ Ɗ HĊ 333?ʄzCAzCA  A@FB= A ?DATAƊ XɊ Ŋ 333?ʄ????????8=i>o?fffAD&@??fffA` B? #<C DATAXɊ Ɗ 333?ʄAVE TARGA/t1.blend9DATAPˊ Ҋ PÊ 8 x x 8=H>o?UUU H̊ Њ DATAH̊ @͊ 333?JzCAzCA1||1 A@FB= A ?DATA@͊ Њ H̊ 333?J????????8=H>o?fffA*@??fffA` B? #<C DATAЊ @͊ 333?JAVE TARGA/t1.blend9DATAҊ @ڊ Pˊ 8 x 8 8=>o?SSSTxӊ H؊ DATAXxӊ Պ 333?ʅB̽̌?B̽̌? #< #<`jFzD SQB̽̌?DATAՊ H؊ xӊ 333?ʅ????????8=>o?fffA@??fffA` B? #<C DATAH؊ Պ 333?ʅOAD FILE/9DATA@ڊ Ҋ 8=i>o? 8ۊ xߊ DATA8ۊ 0܊ 333?*zCAzCA A@FB= A ?DATA0܊ xߊ 8ۊ 333?*????????8=i>o?fffAD&@??fffA` B? #<C DATAxߊ 0܊ 333?*AVE TARGA/t1.blend9SRxp  SR5-Scripting X   DATA X DATAX   DATA  X  DATA  DATA X DATAX   DATA  X DATA  DATA X DATAX  DATA  X DATA ( X X DATA( p DATAp  ( X DATA  p  DATA H X  DATAH   DATA  H  DATA   X DATA h   DATAh   X DATA  h X DATA @ X DATA@   X DATA @ DATA  X X  !  DATA   X  z==o? ( DATA  Transform PropertiesView3d>DATA  3D Viewport propertiesView3d>"DATA ( 333? ˅????????z==o?&A*A?z==o??????*A` B??=C ?@?@?@? DATA(  333? ˅/9DATA   X  ??Pף L( (   DATA Transform PropertiesIpo!>DATA(  333? `> =DATA  ( 333? CCx??|?DATAX  333? zC̽̌?zC@;; #< #<`jFzD H`OBzC̽̌?DATA 0  333? CC|||??l| DATA, ( BO`A0DATA,(  BOp=A`DATA,  ( BOq= H`DATA,  EMA8DATA0  333? zCCHBC|||?CFC= ADATA  0 333? ?zDzDBCl||ll|zDzD=HB DATA   333? BzB@l|llFzD #<HB DATA ( 333? ??? ???? A???PA A!O?j?}GCHB? A` B? #<C DATA(  333? /9DATA     X O    DATA ( Link and MaterialsEditing>DATA( 8  MeshEditingF>DATA8 H ( Anim settingsObject>DATAH X 8 DrawObjectF>DATAX h H ConstraintsObject>DATAh x X EffectsObjectDATAx  h HooksObjectF>H DATA  x Particle InteractionObject>X DATA  SoftbodyObject>X DATA  OutputRender>DATA  RenderRenderF>DATA  AnimRender>DATA   FormatRender>DATA  ScriptlinksScript>DATA  333? ChC#DhCC(BDC?z?DATA  333? /9SC`SCScenetageain``ϲННt߰D،sx~h+sx~h+sx~h+=pcǴdd??< d@@ Z! ??xaxaBB?????//backbuf/tmp/L?L?L??>??_?D M͜DATAϲz`^GDATA`^z8ϲ@DATA8za`^GꅵDATAazA8P煵DATAAzra`DATArzTAwH`DATATzXTrg hㅵDATAXTzT ߅DATAzНXT .(0DATAНz .`DATA(pcy,d'=A@DATAǴL?B ?o: ??22 2d 22 22 22 22 22 > #<=2 #< #`fff?Ou<?DATAHxa1 RenderLayerIMR IMRender Resultss81I??CAaCACameraamera.001L>DB=B B??LAT(LASpot ?????AB>??8V.?A4B?@@@ ???o:??????@?????8DATA8V$????C?55?55?pW??????DATApW"??DATA 8IPT!IPObIpoijSA2ȢuAOBDATA\? Ar@3AOB3O@DATA\? Aa&OBDATA\ ? Aa&OB $DATA.<A@AY@AJC@r@Ar@[$Ar@!;A3A`A3AA3ANfAAAAAADATA.X@@~ @Az%A?:A$`A%`A'&BAa&Aa&`Aa&DATA .X@@~ @ %A %z%A %?:AĂ$`AĂ$`AĂ$BAa&Aa&`Aa&IPT!`ѼIPObIpo.001P"$? A@OBDATA\P""%? ACz'OB1-DATA\"`#P"&? A`OB`DATA\`##"(? AVܳ3OB 3DATA\#p$`#0μ@@ A`>x>OB`>DATA\p$$#@ϼ@@ APc'@'c@'@-@-@-AP` AP`8AP`GACz`ACz`ACzBAMAM`AMDATA&.F"S?@o7K@@`@`@`A A8AsFGA``A`*A`!ЏAZAZ/AZDATA(.o>@c@@3@3@3AL AL8ALGAľ3`Aľ3`Aľ3BAVܳAVܳ`AVܳDATA0μ.@`>@`>@`>A`> A`>8A`>GA`>`A`>`A`>BA`>A`>`A`>DATA@ϼ.@Pc@Pc@PcAPc APc8APcGAPc`APc`APcBAPcAPc`APcDATAPм.@J@J@JAJ AJ8AJGAJ`AJ`AJBAJAJ`AJIPT`Ѽܼ!IPObIpo.002ѼԼ? A@OBDATA\ѼhҼռ? AjǸ'OB1=iDATA\hҼҼѼXּ? A `@OB`@DATA\ҼxӼhҼ׼? AԳ[œ2OB gڻ1DATA\xӼԼҼؼ@@ A^޻0OB^DATA\ԼԼxӼټ@@ APc'@'c@'@]3@=i@A=i A8A~GAjǸ`AjǸ`AjǸBA\A\`A\DATAXּ.D"S?@o7K@@`@@`@@`@A A8AsFGA_@`A_@*A_@!ЏA A /A DATA׼.o>@c@@gڻ1@gڻ1@gڻ1AԳ AԳ8AԳGA]`A `AIBA[œ2A[œ2`A[œ2DATAؼ.@^@^@^A^ A^8A^GA^`A^`A^BA^A^`A^DATAټ.@Pc@Pc@PcAPc APc8APcGAPc`APc`APcBAPcAPc`APcDATAۼ.@J@J@JAJ AJ8AJGAJ`AJ`AJBAJAJ`AJIPTܼ(漳`ѼIPObIpo.003ܼ@߼? A@OBDATA\ܼ ݼ߼? At4=U>OB1t4=DATA\ ݼݼܼ༳? AaOBDATA\ݼ0޼ ݼἳ? A ڏYOB DATA\0޼޼ݼ⼳? A=OBDATA\޼@߼0޼伳? A=OBDATA\@߼޼弳? AAOB ADATA߼.o>t4=@t4=c@t4=@t4=@t4=AwAt4=AAt4=At4=@~At4=At4=At4=@~At4=DATA༳.o>@c@@@AwAAAA@~AAA@~ADATAἳ.o> @ c@ @ @ AwA AA A @~A A A @~A DATA⼳.o>@c@@@AwAAAA@~AAA@~ADATA伳.o>@c@@@AwAAAA@~AAA@~ADATA弳.;?@b@E@A@AT@AVfAAAAAA4JAA̵AIPT(漳ܼIPObIpo.004@`` n nBÃCOBDATA\@``p`? At4ݽ:=OB1t4ݽDATA\`P`@``? AaOBDATA\P````? A ڏYOB DATA\```P``? A=OBDATA\`````? A=OBDATA\````? AOB DATAp`.o>t4ݽ@t4ݽc@t4ݽ@t4ݽ@t4ݽAwAt4ݽAAt4ݽAt4ݽ@~At4ݽAt4ݽAt4ݽ@~At4ݽDATA`.o>@c@@@AwAAAA@~AAA@~ADATA`.o> @ c@ @ @ AwA AA A @~A A A @~A DATA`.o>@c@@@AwAAAA@~AAA@~ADATA`.o>@c@@@AwAAAA@~AAA@~ADATA`.;?@b@E@@T@VfAAA4JAA̵AWOd`xWOWorldeg=pb>>===??A@pA A?L= ף;>``DATA ``TXx`TXTextX`X`X`X``DATAX`?EERFDATA?OBH`pH`OBCameraamera.001 asx~h+!?!?!??!?3!?!3sx~h+???????d՘d՘'?.du0????~̱Y2?OBd@?)d??>)d?u=?????OBHH`p``OBCubephere>88Zkt߰D،M=M=M=_ ?}l#M=!Ǎ"7ʢ %=Q=esQ %=t߰D،??????Qhm3?aaO3[A _)?ИƷ+?Z>%A}&}&2Z>%AGK5Z>%A ?A?DOBd@? #=?>=u=???@???HBDATA ZkOBH`p߅H`OBCube.001718Zt4= x=x=x=x=x=x=t4= ??????v3?x2?|1X2?x@A#[5ˍ3Xa3B6x@A4x@D5]"ե??DOBd?? #=?>=??????@???P11DATA8ZOBH߅phㅵ`OBCube.002H`!pObp81ⅵⅵO`>PcJt߰D،R1=>>a%J2<7;;F/=kGHb<<ւ=Fia u^?2@ 22@ *%D?`v??24Y6{?s3*2Xг 3?Y])t23?BBOƟa'n7Ɍ5Z8A!5Z8ڄ5dht搃??DOBd@? #=?>=??????@???:DATAODATADⅵNSubsurfOBHhㅵpP煵߅OBCube.003H``Ѽ((A1慵慵P1^PcJt߰D،???"a?o%0>b>&b+T{>d>b=?3N>ԂFia u^?2@ 22@ *%D?`v??kNcƄ2??d2qG?WmRֲ?l@/>h h3f{4l@ӱl492>Cw>?DOBd@? #=?>=??????@??? >DATAP1DATAD慵NSubsurfOBHP煵pꅵhㅵOBCube.004ܼ 8Y0st4= x=x=x=I@x+'+'2xx=t4= ??????s-*(.3?zw2?nf 01X2?x@A#[5ˍ3Xa3B6x@A4x@D5]"ե??DOBd@? #=?>=??????@???(1`8DATA0sOBHꅵp@P煵OBCube.005(漳ȵoht4ݽ xx=x=Ix=+'+'xx=t4ݽ ??????s-*.?z2w2?nf 1X2?x@M 5y@ANy@eC5Onե??DOBd@? #=?>=??????@???xPGDATAhOBH@pꅵOBCube.006ܼ?d@t4= x=x=x=I@x+'+'2xx=t4= ??????s-*(.3?zw2?nf 01X2?x@A#[5ˍ3Xa3B6x@A4x@D5]"ե??DOBd@? #=?>=??????@???(bDATA@OBHp0@OBCube.007(漳E1ed°t4ݽ xx=x=Ix=+'+'xx=t4ݽ ??????s-*.?z2w2?nf 1X2?x@M 5y@ANy@eC5Onե??DOBd@? #=?>=??????@???P+DATA°OBH0pOBLamp T^?>Mgu=@???>m?7씾G??fE/ %?ڨ|YA?^?>Mgu=@??????~`3A27a?dy3}m;3?3!4x4?8씾fE'??:Y>}YA?G/ ?ڨ>-?@H݇?DOBd8? #=?>=u=??@???MAl*MAMaterialg?7I?????????????????2?? ף; ף;? ?????????@?=?==???r8`????L?L?L?L=o:ff????DATAr!??????????L>DATA 8` PsDATAPsCsBsAr@q?q>p=o=op?q@qArBsGwFvEuDuDtCsBsArAr@r  @q@rArArBsCsDtDuEuFvLzKyJyIxHxHwGvFv"""$$$$$$$$$###!!! FvFvGvHwHxIxJyKyQ~P}O|N|M{M{Lz%%%***---///000000000...---***'''###KzLzM{M{N|O|P}VUTSR&&&---222666888999:::::::::999777555222...***$$$RRSTU[ZYX!!!000999>>>BBBDDDEEEEEEEEEDDDCCCBBB@@@>>><<<888444///)))"""000XXYZ`_^^(((999BBBIIINNNQQQRRRSSSSSSSSSQQQOOOMMMIIIGGGDDDAAA===888333,,,$$$(((111]^^_eed***>>>JJJRRRWWW\\\^^^___`````````^^^\\\YYYVVVQQQLLLHHHDDD@@@;;;555...000999EEEcdekj###AAAPPPZZZ```eeehhhkkklllllllllllljjjhhheeeaaa]]]WWWRRRLLLGGGBBB<<<555777@@@LLL]]]jjpp@@@SSS___gggmmmrrrtttvvvxxxxxxxxxwwwuuurrroookkkgggbbb\\\VVVOOOHHHCCC<<<>>>GGGQQQ```opv111SSScccmmmtttzzz~~~}}}yyyuuuqqqlllfff```YYYQQQIIICCCDDDLLLWWWeee~~~u|KKKdddqqqzzz{{{uuupppiiibbbZZZRRRHHHJJJRRR]]]kkk{]]]qqq}}}~~~yyyrrrkkkccc[[[QQQPPPWWWbbbpppkkk}}}{{{ssskkkcccYYYYYY]]]gggtttRRRxxx{{{sssjjjaaabbbeeelllzzz]]]zzzqqqhhhjjjmmmrrr~~~gggxxxooorrruuuzzzjjj~~~wwwyyy}}}~~~MAl* MAMaterial.001h????????????L?????2?? ף; ף;? ?????????@?=?==???І????L?L?L?L==ff????DATA!??????????L>DATA І DATACsBsAr@q?q>p=o=op?q@qArBsGwFvEuDuDtCsBsArAr@r       @q@rArArBsCsDtDuEuFvLzKyJyIxHxHwGvFv "$$$#!  FvFvGvHwHxIxJyKyQ~P}O|N|M{M{Lz %*-/000.-*'#  KzLzM{M{N|O|P}VUTSR&-2689:::9752.*$ RRSTU[ZYX!09>!B#D$E%E%E%D$C$B#@">!< 84/)"0XXYZ`_^^(9B#I'N*Q+R,S,S-S,Q+O*M)I'G&D$A#=!83,$(1]^^_eed*>!J(R,W/\1^2_3`3`3`3^2\1Y0V.Q+L)H'D%@"; 5.09E%cdekj#A#P+Z0`3e6h8k9l:l:l:l:j9h7e6a4]1W/R,L)G&B#< 57@"L)]2jjpp@"S-_3g7m:r=t>v?x@x@x@w@u?r=o<k9g7b4\1V.O*H'C$< >!G&Q+`4opv1S-c5m:t>zA~CEFFFFED}CyAu?q<l:f7`3Y0Q+I'C$D%L)W/e6~Cu|K(d6q<zAEGIKKLLLKJHFD{Bu?p<i8b5Z0R,H'J(R,]2k9D{]2q=}CGKMOPQQQQPOMKIF~Dy@r=k9c5[0Q+P+W/b5p<Fk9}CINQSUVVWWVUSRPNKHE{Bs>k9c5Y0Y/]2g7t>HR,x@IOSVXZ[\\[[YXVTRPMIF{Bs>j9a4b4e6l:zAJ^]2FNTX[^_`aa`_^\[YVTQMJFzBq=h7j9m:r=~CM_g7JSY]`bdeeeedba_]ZXUQNJEx@o;r=u?zBEOaj9OW]beghijjjhgeca^[XUQMH~Cw?yA}CFIRhR[afikmnoponljgeb_\XTPKF~CEGINUrT^ejmprtvxxvsokheb_[WSNIGIKNQXUahmptw| } vplieb^ZVQKJLNQV]Qbjptx~#'" vplhda\XSMNPRUYdakrv{ +;@8'} tokgc^ZTPQSUX]]ksx~ :OVJ4 wqmie`[USTUW[aisy~ !=U]P7 ysnjfa\VUVWZ^px~1GPD. ztokgb\VWXY[dt{ *2,ytpkfa[WXYZ]fw}  }xtoke`YWXXYv|}zvrnic]VVVqx|}|{yvsoke_WSRmsuusqnid^VK]cb^ZJMAl *MAMaterial.002i?????????????2?? ף; ף;? ?????????@?=?==???p????L?L?L?L==ff????DATA!??????????L>DATA p $1DATA$1CsBsAr@q?q>p=o=op?q@qArBsGwFvEuDuDtCsBsArAr@r@q@rArArBsCsDtDuEuFvLzKyJyIxHxHwGvFvFvFvGvHwHxIxJyKyQ~P}O|N|M{M{LzKzLzM{M{N|O|P}VUTSRRRSTU[ZYXXXYZ`_^^]^^_eedcdekjjjppopvu|{  ###'''"""  +++;;;@@@888'''  :::OOOVVVJJJ444  !!!===UUU]]]PPP777 111GGGPPPDDD...  ***222,,,  MAl*X MAMaterial.003j^:4?>H?D>??????????L?????2?? ף; ף; ????????@?=?==???漳????L?L?L?L==ff????DATA 漳MAlX*米MAMaterial.004k(???????????L?????2?? ף; ף; ????????@?=?==???@????L?L?L?L==ff????DATA @MAl米*XMAMaterial.005l???????????L?????2?? ף; ף;AA ????????@?=?==???R????L?L?L?L==ff????DATA RTE&TETexf>@???????@@????? @??<ME84MECubepherel:s0pq؟ 0 P (3???DATA l DATA,'0pDATAPH0p: ޙ=(^?LdgHqL=^?&Ba eHp=n?=޾,7=]?!UH̚K=N?E S!=#O? S=n?]^, >7 = /m?ܫھt 6f=N?!vSޙ(^?LgHqKN?ES]?UH̚pn?=޾,7L^?&BeH!#O?SfクN?!v S ܽ /m?ܫھ6n?]^>7zY>~[? ׾n:F 9>b\?*1GDP>:j?3Ǿ?-5|jw>>p[?~;CE@fc>+M?5{Q<PA>,N?Q,R1>'k?b-Ͼ56Ҙ8-m>i?JH3i>M?H?O4zY~[? ׾ũFDP:j?3Ǿ-5 9b\?*ΘGfc+M?8{Q<|jw>p[?~;6E@8-mi?J3i1'k?b-Ͼ6ҘPA,N?Q^ӮRM?⾸O4*=0x?"`shF=$?F¾T d=|?28 =s?j[b=MҊ?@Ǿ,|r=5\?gɾ6 P=hϢ?ԁT=Ġ?㸾DR]=?ľU*0x?"shd|?28F$?F¾MҊ?@Ǿ|r׽s?jbT۽Ġ?㸾RiϢ?Rԁ5\?gɾP]ս?ľU=7I>jO? : ;,>z?鵾. gK>p?⏬7= E{Mb>A9?pHؖ$H>?zlr+>C?c2-/>p]?S8+ 9 b>?/FFb>wA?dJ%>7IjO? P Kp?⏬1= E;,z?鵾` g$H?ݼ?6 Tޢ =?~IAIs7=͎?S:UP0=},?n'1YΤ>-?o#8Yr >)?(FRI_ <=3?٧KIז- ?8HThs7͎?S:U ?~II޼?6Tޢ,?&BYqt诅[=>(Z +>n >ЭVe*Q=g>nTC=׼>[_GZB=>\ 8Ƒ>>W%x PT.>'r>b.Q-7ϘbD=a>!UdG½v>BYt诅n >ЭVժQ[>(Zh +C׼>[G½g>nTPT.'r>b.Q7ϘƑ>WTx PZB>\ 8bDa>!U@dL~> ?'5PWy>J.?g:3Uj>?A1M >R ?6;:E\>^W?v'-A*R$ +T>g-?:(zW=>].?x>dR>$ ?@/vG+BDb>1?U:= .HàL~ ?'PWj?11MyJ.?ǵU\^W?v'-R$ R ?6E$ ?@/+B=].?dR +Tg-?:zWDb1?U:=Hà)>ի>{GLQ<">ws>GI F)n>>7@W>Wr>tC%NEؾ f>>ͥ>}MA>f>n>$M`= G>>?V( $>j>F=4W@ѩ0he>耇>HODԭ)ի>{GQ)n>7@L="ws>GW F f>ͥ>}M>Wr>tC۱Eؾj>F=̨@ѩG>?( $fn>$M 1he耇>HԭN= i?s>t(-~F=y9W?cw>V$ }"=Ni?rl>QtT|׍=fz?lw>$'{=j?ǻx> o!=`W?|> 4f=V?{o>_ {f=)z?p>r>z='z?[!}>n|N i?s>(-~"Ni?rl>tT|Fy9W?cw>$ }j?ǻx> o׍gz?lw>'{fԽ)z?p>>zfイV?{o> {!`W?|>4'z?[!}>4n|aY>(+b?G>>5 Fobc>cR?)F>@zn{w>~<_?5>sJ gVP>p?PG>|?n48>Te?V>3tLA>AT? tW>X4wt>AP?93>L %fom>m?y6>3I h/>du?-W>7OsaY(+b?G>m5 Fo{w~<_?5> gaccR?)F>zn48Te?V>_tVPp?PG>nomm?y6>Ͷ hAP?93>w %fLAAT? tW>wt/du?-W> OsK>?$N>OcbgI>\/?wK>iGiAd>X? :>P'ccM> ?kN>BU[v_.>Z?g>V^\m+>\I?a>:Ko}e)d>?)8>K\g@d>T?ǽ9>UH_<0>?j>[xYK?$N>]cAdX? :>'ccgI\/?wK>i.Z?g>^\cM ?kN>[v_@dT?ǽ9>H_)d?)8>/\gm+\I?a>ƴo}e<0?j> xYЖ=u?~>Q}l7=4?ق> F@=?x>8v|>#?ks>%#z=gf.?x3>}J0=w#.?HP> i<=0?> ~l >'?El> (x>..?%v>#1zЖu?~>lQ}?x>v|l74?ق>F@gf.?x3>}#?ks>#zl '?El>x<0?>!~J0w#.?HP>i..?%v>k1zI~>F?7>bIh\><?O>=zo >R ?=,>Kfh>޴?UR>Th` y>./??>wFj+T>%/? U>:qDb>1?yF>7@Hn>$ ?>NV]=>/?&>RG3bI~F?7>h R ?=,>nf\<?O>/zo y./??>jh޴?UR>zh`$ ?>]Db1?yF>ɿHn+T%/? U>Bq=/?&>G3bG=q>OG>սtC=Լ>N>KZw=g>d*>n>j >:>_,pR=>!`]>xPB= >9e>{YD=a>1>RǂqN.>'r>>q-@k>>P>3+tG½r>MG>սt½g>d*>nCԼ>N>ZwR>!`]>xj >:>pN.'r>>@kYDa>1>RǂqPB >9e>m{>P>t)>ի>= N:K_ f>:ͥ> >Cf>Sr>:=MN'[%n>>F=QW3ߦW8">rs>/>M?bf>i>)>Csyi(he>䀇>"=D#a>f>=VrTG>>=WSY)ի>=:K_Sr>:='[ f:ͥ> >f8"rs>/>9?b%n>F=3ߦWf>=rT(he䀇>"=Z#afi>)>syiG>=aSY5>8X^?l=`v+#D>N?7Yt`0X>]?|crd/Hv>n?)y!U>p^?xn(Ln>#O?r0w,>N?㄀p 5N>m?߅Mnv#h:>Xao?{$58X^?l=+X]?|cjd/H#D¾N?7Y?`0p^?n(Lvn?)x!UNm?߅M#hN?㄀w 5nľ#O?r0@,:Xao?}$.n>IT?Y ~ ->L?J}w >#?@H?Z]}>?~; >6E?b~ N)>‹?;{ F>7?A{KN>n?=~.nIT?Y #?@< B-L?J3w ?; .—H?ZF7?A,K)‹?;$ 6E?b NNn?ÁN>[?77^_y;ƅ>*M?(\D>{[?7V\?L >Rj?ٗd+Z>1\?sgX7>,N?^/4d ?[ >M? ǾSH)l>i?6\. >ڧk?(l )=N[?77y;{[?7X\?Lƅ*M?أDZ駾1\?sX7 Rj?ٗ-+li?ʣ. M? ǾﬦH),N?^/̛ ?[ ڧk?ؓ )=->?> n[-]>ч?tCm _ڄ>?Ԕ6db>&?RÌSn ڿ >?{uG>1?o"{,t IĆ>嵆? 񗾥c n>e?cjMȍ>ß?ju -?> M[-ڄ?Ԕʛ]뎾ч?t _ ?{eGb&?RÌ ڿne?jMIĆ嵆? [ 1?o"{ԋ ȍß? 5>[[^?L >z`Q>^?szD" J>n?{MY>;]?<6;x~$ "D>N?4Vy m>#O?Tz4$` :>ko?Tg| >m?psN?\x5[[^?L …`QJn?lM^?s$D" "D¾N?4V Y;]?<6;n~$ m?ps<\w, :ko?Tg mľ#O?4$` N?\m"U>([?B=koB>c\?=q6M'>-i?69=kDC1>O\?I%>Cc<(OŅ>N?=8lCA>,N?,v=q6v>l.k?֋=q7>i?N >b 3P >.QN?=8dCN!U([?B=loBL'-i?69=^DCc\?=~6ąN?=ȓCA0O\?I%><(Oi?N >= 3Pul.k?֋=7,N?,v=6 .QN?=țCNt>?w.~ >YB?4!2 ʗ>?JZ}p*ƚ>?y=x|~ 1>ʌ?~# >_?P)~ O N>Ϧ?ЎB~g>?={,u9> ?X<4| t?w.⁏ ʗ?Jp*YB?4!2 1ʌ?# ƚ?y=~ g?=f,uNϦ?Ў_?P) O 9 ?X<̃ >d=?h=n?>s?~j=pu$?2n>.?&=m oAԅ>m4?#>e|MDl>˅?Z=nA>?W=t3No>}ܜ?*=s 4z>ۓ?>'e Nj>?1>udA4Oc=?h=?m.?&=q oAs?j=$?2Cl˅?Z=Aԅm4?%>3|Myۓ?>ٚ NMo}ܜ?*= 4앾?W=73j?1>A4Ok>* ?F }[T>,?{ؽ`|X>ڼ?j5{ #v>?+M~+!~>ʎ??)~G >},?8| >-?xz.>&?Ld| >0?`B k߾* ?F z[Xھڼ?j5' #T־,?{ؽ ~ʎ??ׁG v?++.&?J Ѿ-?xپ},?8< 0?` >q>Zy>> S|X>j >\m"^wЧ>g>]t>Ҽ> x{Z LK> >nV6~ >>azzp>'r>$r2!۰>a>Ëv! ݾr>Zjؾj >\m"徐> SGXҼ> xZ ЧҾg>]P;'r>$f2!߾>apLK >nVʁ ۰վa>Ë! n>?<7=^o?>W>Q.?&z=wn5@>7?6e=!h:mJkv>R ?\W?,;t3>d-?<"t 4>.?^=fhK^>$ ?=h`I>1?XWu3n?<7=?¨7?6e=ߗ:mJ?WQ.?&z=5@zRʾ\W?,;3lvľR ?<=^$ ?=`I.?^=hK¾d-?<ދ 4Ͼ1?X3>ԫ>0El[<>rs>Yhn<| >>MSr>xWh|j=ʁ>9ͥ> jpb3>h>\Jvsc2M+>>+ =hhF2>f> 䀇>lmvjlu4ԫ>0E[<| >MY<ʁɾ9ͥ> jSb3)+Sr>x|j=1f> <FM+>+ =hFϾh>\Jc2忾䀇>lmvu4k>+ ?ݫSz !~>ˎ?c|v>?H|X>ܼ?nľ wX&T>,?򍔾w(Q>},?!zz#>0?Ʀz~A.>'?۾*z>-?4s.Bk߾+ ?ݫ v?H7!~ˎ?crT־,?򍔾2(QXھܼ?nľX&.'?۾օ0?ƦAپ},?!z#Ѿ-?4 .Bn> ?d:j{R>]W?l2/mv>R ?Oij-è>?Z%A@W>J.?XP_AS>f-?.׾+h: >1?Zq&^>$ ?'a&5ҿ>\.?VGVn ?H:jmvľR ?O-{Rʾ]W?~2/@WJ.?XPASè?%A^$ ?ٞ&5ҿ Ͼ1?&¾f-?.׾՗:\.?GV>q>⾄z`>Ҽ>}ž{ѧ>g>f u>j >.x>>qݾ}{LK> >ԩ~<|۰>a>.ǾGv>'r>9P's>>v|"4ݾr>|`ѧҾg>fҼ>}žq徐>qݾB{ؾj >.2;'r>9Pٌ۰վa>.ǾLK >ԩL<|߾>v"4>ի>u$>op"́>;ͥ>ZOsf,+>Ur>?4%iW >>]M/iӹ >us>"q{T>k>kevs>怇>\km5>h>.dܹP+>>݂-k05ի>u$p",+Ur>?4%iẂɾ;ͥ>Zf ľus>"A{T >]M/dӹ5h>.Nܹ忾怇>\Ͼk>ksP+>݂-05=8< K9d= d*O=!5k(>Pe0=0dH˾ ]jg=yq̾dʁm_=@ @ۇ9x$>&a0s*>P .D˾A0?N⽰8<7KO޽5k9d d*h0dH˾w](P쾛Ϥx$&aϑ_@ @ ۇ9jgyq̾ʁms*P .D˾?N'>8%=Fq羠YY1>@è=Xi(>=2徘d>`q=LȾUZT0܈>_<ЏɾvM]>q7=V`Lɠ}D=>>Kpcj跴> =ǾeD'8%=Fq`Y1-Kè=i@Kpjq7=Vɠ}0܈_<Џɾ]跴 =ǾgD =@%=4!)0N=pq=l5Į"==m@O!I.Z>è=2/J@=@<N&!GVT= _>7>B/3>q7=$>0Ae ͽ@%=4y޿)"Ƚ=m@I.0Npq=l5_Įҽ@<N&zGZè=2(J@s>7>3I =A]OVT _h>{)RfKZq>xx>p,H3>$C>3PRO>$C>&[Yå$>xx>U< y>==8 Jj>)>!|7Fѻ1>p_>q0YQ\>)>u^2h>{)$f4􇾰$C>3TRLZqxx>p,y$xx>揄<O$C>&-Yå񶗾p_>q0Qj)>!|7ѻ1 y==8 \)>ud=8RI K'=@d (>,Le0L=!5(9d=@dwH'jg=zdʁ s*>` 9A0? v$>&F 0)(_=` ۇ(8RI7K'(,LϤ@dw 9d@dwHh'L޽5(v$&F ϑ)(s*` 9? jgzʁ _`  ۇ( =8%=i)=!O=@è=x=/JM"===O!I[(N=`q=:?=q7=>0AAn>>=B/3YI= ==] ͽ8%=i)=y޿OVè=x=(JMҽ@=3Yq7=AAVT_<ЍDI ==]]&>8%=BWYY>`q=;UZTr (>=hYd,K>è=ʞXiW%>@<"SMIj/܈>_ =eD B=>># cj$>q7=u[`Lɠ&&8%=BW`Y(=hYh`q=;Tr @<"SIj,Kè=ʞiW%B=># j$練 =gD /܈_d>7RD!>tx><U:O>$C>#[Y[A1>$C>%=P®MFZq>tx>=== JP=\>)>k\^F8>p_> <YȯIj>)>.`=FѻQ1d>7$DO$C>#-Y[A!tx><揄:EZqtx>=%=T®Mp_> <ȯI\)>k\dF8 y==P=j)>.`=ѻQ/=?dl =a(p8-N!=?=^Cu*. =K?r='d=D=J?<)6Ik,c=d?É(P"?0][<_XM"!E>?8;?4h=G\ E7By>?`';o7Lj>?}ajQ}F>к?hNclB>?+=KR>%>?LD=xl29- >ҹ?vq9 MhP"?0][<.XM"bhe;?4h= E7!E?8<]]'(Lj?jQBy?`';7%?LD=29-lB?+=紀R>}Fк?hc ҹ?9 "=2c?)lT>-;go=i?=X>TB5jVڔ=?K/{>6;c[=d?M>84eݮ=Xh?k->#(Ceg=&"?0>Hf^=:l?(-> C~g=֞?ds>B1a9=z ?'>3=]c"2c?)lT>;gVڔ?K/{>Ʉ;coi?=X>}TB5jݮXh?k->בCe[d?M>$4eݽ֞?ds>1a^:l?(->gC~gg&"?0>Hf9z ?'>̵=]c'Z>?"">P ]R:>Fu?/3>%HT'#b"/U>θ?D9>S^Nt>?^>H[U44^>$?5>QG+LXj=>?S>zEp2^5>H?P>Ot_hm>Ɲ? '>`X Zz>?X="`!"NM(Z?"">4 ]"/Uθ?D9>^R:Fu?/3>۷T'#b44^$?5>G+LXNt?^>UhmƝ? '> Z5H?P>t_j=?S>p2^z?X=ޟ!"NM!/=wF?5$"tc=?D'gxu>=t;?"2Fo=?I lO!=7?lww"= ?y|`=c?"U5r =?7LN.h& =XO?:Gazo!/xF?5b"t>t;?"Foc?潼gxuO!7?lBww?I"߬l ?7LѤh`c?"콫r" ?⽇|& YO?:GzoC=?C<={?#U*=_ҹ?;Ap=?ۨ0N7=챼? ESg=? W'=?$dR5= H?Q§-ۋ =?k U2C?oC_ҹ?;+Ap<|?U*N7챼?ES?ۨ 0!H?Q§-ۋ'轏??dR5g?!W ?kcU2@h>`M?24&j_VOLj>'?3aQ)p>?$o984e>LI?MP\"KUE>Py?4&#L`}F>x?fANc >䪹?Yq9Ⓛ>? K~me5*B>]?UNH?[H@h`M?24&VOp?$ 98Lj'?͞Q)UEPy?4&ݳ`4eLI?M"KⓁ? Ke5 䪹?9}Fx?fc*B]?UN[?[HX>n?WH#/g2]>t?WUnQ;UZr>?Z"S>2?0=X? 9>?K67<>? 0>qGZx>?c1+ k>ا?\tBP0Fy6> Ǯ?t0v&ʏXn?Wl#/Zr?"g2]t?VU;U9?Kɸ7S2?0=  kا?\t0FZx?1+\HGMEn=ќ?>cGGmN2PUt=z?v'>CT:LWD=T?>}W19I\< ?}>-(TU@V>,?[sGg?X>GMa?D8>[ͩPUEnќ?>GmNtz?v'>:L@Vr?d>,?[\ ?}>~(TUWDT?>19IӦ=?>k@==?">Vl>1=ˏ?{>wlvC_I=Z?n]>-_v>ع=?,>i`OA=]b?Y>n#Z@|s=?y>_,KӦ½?>H@=1ˏ?{>vC?">>_IZ?n]>Ԡv>|s?y>,K]b?Y>^#Z@ع߽?,>OAH5=Q?۩>,,X=V?:՗>(ƓAG_=?$>,cK W*.ǒ@JC=$ɇ?ӗ>&A<<1?>p)H5Q?۩>2,,G_?$>1胊,XV?:՗>ƓAcKͼj?<>xW*<輘1?>lp)JC$ɇ?ӗ>.㪕&A.ݼC?ʛ> ǒ@pI >2?e=| V>?k\=-Ƀ]#>?S=(͇d>eJ?k\=HɃ>']?N=*́]!>Z?=a#UX$>Y?=*pI 2?e= ]#?S=]͇V?k\=Z-ɃdeJ?k\=ɃX$Y?=]!Z?=U']?N=I*́cb3>T?\>YG".>j?=q>Nݫ/>玪?[>&@*Й8>e?&>O ZV5>ᄄ?[>K%Й0>ԛ?{=B $a*>'?{=7%$N4>i?&>G/L';>{?&>bTLcb3T?\>ݫ/玪?[>ڿ*Й".j?=NV5ᄄ?[>n%Й8e?&>e ZN4i?&>LإE>h?E>e)A>n?>^L' @>S?E><[m<I>Ϊ?>`j,I>:?E>=kD>?>dpj<>R?>U8.(C> 0?>_?ĬL>P?>pإEh?E>) @S?E>Ĥm<An?> L'I:?E>ÔIΪ?>,.(C 0?>?jg8D?>cpĬLP?>.O>E&?j5>_t30DvN>??N].>r;/I>?f5>iEA܎P>3?=>u0S>E}?j5>p{AQ>r?N].>x.G>h?N].>f&DI>?~=>HjeFT>ă?=>|`OE&?j5>30DI?f5>EAvN??N].>;/SE}?j5>A܎P3?=>90I?~=>eF.Gh?N].>&DQr?N].>Tă?=>`O>E&?T>_t30܎P>3?=M>u0s I>?T>iEvN>??҇\>r;/!S>E}?T>p{T>ă?=M>|`t I>?=M>HjeFt -G>h?·\>f&D!Q>r?҇\>x!OE&?T>30I?T>E܎P3?=M>90s SE}?T>vN??҇\>;/!-Gh?·\>&D!I?=M>eFt Tă?=M>`t Qr?҇\>!إE>h?fq>e)[BI>Ϊ?6j>`j,7 @>S?jq><[mn?w>^L'fLI>:?jq>=kcBĬL>P?6j>p7.(C> 0?6j>_?7k<>R?w>U8nLD>?w>dpnLإEh?fq>)[B @S?jq>Ĥm,7I:?jq>ÔcBAn?w> L'fLkg8nL.(C 0?6j>?7ĬLP?6j>.7D?w>cpnLcb3>T?ă>YGf8>e?t>O ^ݫ/>玪?ă>&@*0f".>j?>q>lX5>ᄄ?ă>K%0f';>{?t>bT^N4>i?t>G/^a*>'?->7%l!0>ԛ?->B lcb3T?ă>fݫ/玪?ă>ڿ*0f8e?t>e ^X5ᄄ?ă>n%0f".j?>la*'?->5ȭ%lN4i?t>^!0ԛ?-> lpI >2? >| `{]#>?|>(3xV>?q[>-7|d>eJ?q[>H7|X$>Y? >*_x]!>Z? >a#T_x>']?މ>*4~pI 2? > `{V?q[>Z-7|]#?|>]3xdeJ?q[>7|']?މ>I*4~]!Z? >T_xX$Y? >_x>N? > |`{>> {?|>(3x.r>?q[>H7|g>?q[>-7|;>j-? >Ua#_x>*? >*_xD>5?މ>*4~N? >|`{.r?q[>H7|> {?|>+(3xg?q[>7|D5?މ>4~*? >*_x;j-? >a#_x>kh?ă>ZGf*> ?t> O^v>ɱ?ă>&K0ft>_?>q>lA$>?ă>*&@0fN'>?t>/G^*>a?t>bT^>#?-> Bl^!> Y?->%7lkh?ă>sZGfvɱ?ă>K0f* ?t>ߛO^A$?ă>G&@0ft_?>#q>l#?->1Bl*a?t>bT^N'?t>nG^^! Y?->S7lJ2%>ٰ?fq>)e\B&>~?6j>,`j7>]?jq>=kcBo#>C4?w>L'^fL/>;?jq>m<<[cB1>$a?6j>?_7>?6j>p7>?w>pdnLA-> ?w>8UnLJ2%ٰ?fq>e\B]?jq>7=kcB&~?6j>`j7/;?jq><[cBo#C4?w>^fL?w>dnL?6j>p71$a?6j>n_7A- ?w>OǙUnL5Q)>4?T>40_t2)> ?=M>0us 0 >q?T>p{(>n?·\>;/r!̖5>?T>Ei+6>:?=M>eFHjt #=>B?=M>`|t >;?·\>x!H4>%?·\>&Df!5Q)4?T>_t0 q?T>p{2) ?=M>7us ̖5?T>si(n?·\>r!;?·\>ox!#=B?=M>|t +6:?=M>Hjt H4%?·\>ڻf!5Q)>3?f5>40_tE(>n?N].>;/r1 >q?f5>o{A2)> ?~=>0u̖5>?f5>EiAH4>%?N].>&Df>;?N].>x#=>B?~=>`| +6>:?~=>eFHj5Q)3?f5>_tE1 q?f5>o{A(n?N].>r̖5?f5>siA2) ?~=>7u#=B?~=>|;?N].>oxH4%?N].>ڻf +6:?~=>HjJ2%>ٰ?E>)eo#>C4?>L'^>]?E>=k&>~?>,`j/>;?E>m<<[A-> ?>8U>?>pd>?>p1>$a?>?_J2%ٰ?E>e]?E>7=ko#C4?>^/;?E><[&~?>`j?>p?>dA- ?>OǙU1$a?>n_>kh?\>ZGt>_?=q>Nv>ɱ?[>%KЙ*> ?&> OZA$>?[>*&@Й^!> Y?{=%7$>"?{= B$*>a?&>bTLN'>?&>/GLkh?\>sZGvɱ?[>KЙt_?=#q>NA$?[>G&@Й* ?&>ߛOZ*a?&>bTL"?{=1B$^! Y?{=S7$N'?&>nGL>N?e= |.r>?k\=IɃ>> {?S=(͇g>?k\=-ɃD>5?N=*́>*?=*:>j-?=Ua#N?e=|> {?S=+(͇.r?k\=IɃg?k\=Ƀ:j-?=a#*?=*D5?N=́Z>N?e=|H>?k\=Ƀ0A> {?S=+(͇ >?k\=IɃw >5?N=́>j-?=a#f >*?=*ZN?e= |0A {?S=(͇H?k\=-Ƀ ?k\=IɃf *?=*j-?=Ua#w 5?N=*́=kh?\>sYG# >_?=#q>N[=?[>G&@Й{= ?&>ߛOZyi>ɱ?[>KЙJ>"?{=1B$B= Y?{=S7$?=?&>nGKU>a?&>bTLkh?\>YG[z?[>*&@Й# _?=q>Nyiɱ?[>%KЙ{ ?&> OZ??&>/GKB Y?{=%7$J"?{= B$Ua?&>bTLH=ٰ?E>e=C4?>^=;?E><[=~?>`j>]?E>7=kPb>?>d|= ?>OǙUӿ=$a?>n_\>?>pHٰ?E>)eٽ;?E>m<<[C4?>L'^]?E>=k~?>,`jӿս$a?>?_|޽ ?>8UPb?>pd\?>pv]=3?j5>_tE=n?N].>rE=?f5>siAz= ?=>7uv>q?j5>o{An>;?N].>oxM=%?N].>ڻfЩ=:?~=>HjB>B?=>|v]3?j5>40_tEEͽ?f5>EiAn?N].>;/rvq?j5>o{Az ?=>0uЩ̽:?~=>eFHjMϽ%?N].>&Dfn;?N].>xBB?=>`|v]=3?T>_tz= ?=M>7us E=?T>si=n?·\>r!v>q?T>o{B>B?=M>|t Щ=:?=M>Hjt M=%?·\>ڻf!n>;?·\>ox!v]3?T>40_tEͽ?T>Eiz ?=M>0us vq?T>o{n?·\>;/r!MϽ%?·\>&Df!Щ̽:?=M>eFHjt BB?=M>`|t n;?·\>x!H=ٰ?fq>e[B=~?6j>`j7=;?jq><[cB=C4?w>^fL>]?jq>7=kcB\>?6j>p7ӿ=$a?6j>n_7|=?w>OǙUnLPb>?w>dnLHٰ?fq>)e[Bٽ;?jq>m<<[cB~?6j>,`j7]?jq>=kcBC4?w>L'^fL|޽?w>8UnLӿս$a?6j>?_7\?6j>p7Pb?w>pdnL=mh?ă>sYGf{= ?t>ߛO^\=?ă>F&@0f# >_?>#q>lyi>ɱ?ă>K0fU>a?t>bT^?=?t>nG^B= Y?->S7lJ>#?->1Blmh?ă>YGf\|?ă>*&@0f{ ?t> O^yiɱ?ă>%K0f# _?>q>lB Y?->%7l??t>/G^Ua?t>bT^J#?-> BlZ>N? >|`{0A> {?|>+(3xH>?q[>7| >?q[>H7|f >*? >*_x>j-? >a#_xw >5?މ>4~ZN? > |`{H?q[>-7|0A {?|>(3x ?q[>H7|w 5?މ>*4~j-? >Ua#_xf *? >*_xm=2? > `{#=?|>]3x6=eJ?q[>7|>R=?q[>Z-7|'=Z? >T_x0?=Y? >_x@>']?މ>I*4~m2? >| `{6eJ?q[>H7|#?|>(3x>R?q[>-7|@']?މ>*4~0?Y? >*_x'Z? >a#T_x;=T?ă>f=e?t>e ^4=ᄄ?ă>n%0fֻ=j?>l&=玪?ă>ڿ*0fFb=i?t>^=ԛ?-> l1='?->5ȭ%l;ҽT?ă>YGf4ͽᄄ?ă>K%0fǽe?t>O ^&ٽ玪?ă>&@*0fֻܽj?>q>lؽԛ?->B lҰ½{?t>bT^Fbнi?t>G/^1'?->7%l0=h?jq>)\B=Ϊ?6j>,7˦=:?jq>ÔcB}=n?w> L'fL1=S?jq>Ĥm?7T=P?6j>.7=?w>cpnL=R?w>g8nL0h?jq>e)\B˦:?jq>=kcBΪ?6j>`j,71S?jq><[m^L'fL?w>dpnLTP?6j>p7 0?6j>_?7R?w>U8nLΙ=E&?T>30'=3?=M>90r ਑=E}?T>=??·\>;/!Ԧ=?T>E=?=M>eFt =ă?=M>`t =r?҇\>!=h?·\>&D!ΙE&?T>_t30਑E}?T>p{'◽3?=M>u0r Ԧ?T>iE??·\>r;/!r?҇\>x!ă?=M>|`t ?=M>HjeFt h?·\>f&D!Ι=E&?f5>30D=??N].>;/਑=E}?f5>A'=3?~=>90Ԧ=?f5>EA=h?N].>&D=r?N].>=ă?~=>`=?~=>eFΙE&?f5>_t30D਑E}?f5>p{A??N].>r;/Ԧ?f5>iEA'◽3?~=>u0ă?~=>|`r?N].>xh?N].>f&D?~=>HjeF0=h?E>)}=n?> L'˦=:?E>Ô=Ϊ?>,1=S?E>Ĥm<=R?>g8=?>cpV=P?>.= 0?>?0h?E>e)˦:?E>=k}n?>^L'1S?E><[m<Ϊ?>`j,VP?>p?>dpR?>U8 0?>_?;=T?\>Ի=j?=N1=ᄄ?[>n%Й=c?&>e Z$=玪?[>ڿ*љ1='?{=5ȭ%$=ԛ?{= $Ѱ={?&>LDb=i?&>ZG1ͽᄄ?[>K%ЙԻܽj?=q>N$ٽ玪?[>&@*љǽc?&>O ZѰ½{?&>bTLؽԛ?{=B $1'?{=7%$Dbнi?&>G/Lm=2?e= 6=eJ?k\=Ƀ#=?S=]͇>R=?k\=Z-Ƀ@>']?N=I*́0?=Y?='=Z?=Um2?e=| #?S=(͇6eJ?k\=HɃ>R?k\=-Ƀ'Z?=a#U0?Y?=*@']?N=*́m= զ?e=>R=)?k\=ZɃ#=F?S=]+͇6==?k\=Ƀ@>+?N=Í'=v-?=ܫ桇0?=-/?=m զ?e=|#F?S=(+͇>R)?k\=Ƀ6=?k\=IɃ0?-/?=*'v-?=a#桇@+?N=́;=ץ?\>rԻ=?=#N&=U?[>ڿGЙ=ؓ?&>eZ1=Nɦ?[>nЙ=h?{=1$1=@`?{=5S$Hb=ԕ?&>L;ҽץ?\>ZGr&ٽU?[>&@GЙԻܽ?=q>#N1ͽNɦ?[>KЙǽؓ?&>OZHbнԕ?&>GnL1@`?{=7S$ؽh?{=B1$Ұ½¦?&>bTL4=?E>֤}=q?> ؚ7=꘣?E>ĤÝ=>?>˦= N?E>Ô8Ᵹ=jh?>c뒳 =?>gOǒ=X?>nX=k7?>.4?E>e֤7꘣?E><[Ý}q?>^ؚ˦ N?E>=k8Ᵹ>?>`jX?>_n ?>UOǒjh?>d뒳Xk7?>pΙ=a?j5>E=v?N].>"Ԧ=E٢?j5>sA*=7U?=>97ώ⨑= ?j5>A=?N].>o=?N].>ڻ=Ƣ?=>=y?=>Ιa?j5>_tE"ԦE٢?j5>isAv?N].>r⨑ ?j5>p{A*◽7U?=>u7ώƢ?=>Hj?N].>fڻ?N].>xoy?=>|Ι=a?T>ϻ*=7U?=M>97r "Ԧ=E٢?T>s=v?҇\>!⨑= ?T>=y?=M>t =Ƣ?=M>t =?҇\>ڻ!=?҇\>o!Ιa?T>_tϻ"ԦE٢?T>is*◽7U?=M>u7r ⨑ ?T>p{v?҇\>r!?҇\>fڻ!Ƣ?=M>Hjt y?=M>|t ?҇\>xo!2=?rq>\B=76=꘣?nq>ĤcB}=o?w> fL˦= N?nq>Ô8cBV=k7?6j>.7=X?6j>n7 =?w>gOnL=ih?w>cnL2?rq>e\B6꘣?nq><[cB`j7˦ N?nq>=k8cB}o?w>^fL ?w>UOnLX?6j>_n7Vk7?6j>p7ih?w>dnL;=ץ?ă>sf=ؓ?t>eߦ^&=T?ă>ڿG0fػ=?>#l4=Nɦ?ă>n0fҰ=¦?t>^Fb=ԕ?t>5Sl=h?->1l;ҽץ?ă>YGsf&ٽT?ă>&@G0fǽؓ?t>Oߦ^4ͽNɦ?ă>K0fػܽ?>q>#l1@`?->7SlFbнԕ?t>Gnд^Ұ½¦?t>bT^ؽh?->B1lm= զ? >`{&=D?|>]+3x>R='?q[>Z7|6==?q[>7|2?=-/? >_x'=v-? >ܫ_x@>+?މ>I4~m զ? >|`{>R'?q[>7|&D?|>(+3x6=?q[>H7|@+?މ>4~'v-? >a#_x2?-/? >*_xZ>? >`{0A>0 ?|>+]3x >?q[>7|H>B?q[>Z7|>Z? >_xf >? >_xw >R?މ>I4~Z? > `{ ?q[>7|0A0 ?|>]3xHB?q[>-Z7|w R?މ>*I4~f ? >_xZ? >U_x=?ă>r⦸f{={?t>e^{i>r֢?ă>n0f$ >ǣ?>#l^=?ă>Gڿ/fD=D?t>n<^U>,'?t>^K>?->1lB=0/?->S5l?ă>f{ir֢?ă>%n0f{{?t> e^^。?ă>*ڿ/f$ ǣ?>lK?-> lU,'?t>^DD?t>/<^B0/?->%5lN=bנ?rq>\B=k?6j>Ӡ7 >h?nq>8ÔcB=S?w> fL=?nq>ĤcBٿ='?6j>n7_>?6j>.7Rb>;?w>cnL|=1?w>OgnLNbנ?rq>)\B h?nq>ÔcB뽽k?6j>,7ٽ?nq>m<ĤcBS?w>L' fLRb;?w>pcnL_?6j>.7ٿս'?6j>?7|޽1?w>8gnLz]= ?T>ϡ=Az?=M>79r v>?T>搄=˟?҇\>!L=`i?T>sԩ=M?=M>t B>?=M>t r>L?҇\>o!T=?҇\>ڻ!z] ?T>30v?T>Az?=M>09r Lͽ`i?T>E˟?҇\>;/!rL?҇\>!B?=M>`t ԩ̽M?=M>eFt TϽ?҇\>&D!w]= ?j5>ϡD=˟?N].>v>?j5>搄A~=Az?=>89J=`i?j5>sAT=?N].>ڻp>L?N].>oB>?=>ҩ=M?=>w] ?j5>30Dv?j5>A˟?N].>;/Jͽ`i?j5>EA~Az?=>09B?=>`pL?N].>TϽ?N].>&Dҩ̽M?=>eFN=bנ?E>⚤=S?>  >h?E>8Ô=k?>Ӡ=?E>Ĥ|=1?>OgRb>;?>c_>?>.ٿ='?>nNbנ?E>)⚤ h?E>ÔS?>L' ٽ?E>m<Ĥ뽽k?>,_?>.Rb;?>pc|޽1?>8gٿս'?>?=?\>r⦸# >ǣ?=#N{i>r֢?[>nЙ{={?&>eZ^=?[>GڿљB=0/?{=S5$K>?{=1$U>,'?&>KD=D?&>n{ir֢?[>%nЙ# ǣ?=N^。?[>*ڿљ{{?&> eZU,'?&>KK?{= $B0/?{=%5$DD?&>/?e=ࠄ >?k\=Ƀ0A>2 ?S=+]͇H>D?k\=ZɃw >R?N=Íf >?=ա>Z?=ܡZ?e= ࠄ0A2 ?S=]͇ ?k\=ɃHD?k\=-ZɃZ?=Tܡf ?=աw R?N=*Í>?e= ࠄg>B?k\=-ZɃ>>0 ?S=]͇.r>?k\=ɃD>R?N=*Í;>Z?=Uܡ>?=ա?e=ࠄ>0 ?S=+]͇gB?k\=ZɃ.r?k\=Ƀ?=ա;Z?=ܡDR?N=Í>?\>t>ǣ?=NA$>?[>*ڿљ*>{?&> eZw>r֢?[>%nЙ>?{= $^!>0/?{=%5$P'>D?&>/,'?&>K?\>r⦸A$?[>Gڿљtǣ?=#Nwr֢?[>nЙ*{?&>eZP'D?&>nKL2%>bנ?E>)⚤p#>S?>L' />?E>m<Ĥ&>k?>,>h?E>Ô>;?>pcA->1?>8g1>'?>?>?>.L2%bנ?E>⚤/?E>Ĥp#S?> h?E>8Ô&k?>Ӡ1'?>nA-1?>Og;?>c?>.6Q)> ?j5>30E(>˟?N].>;/̖5>`i?j5>EA4)>Cz?=>093 >?j5>A>L?N].>H4>?N].>&D +6>M?=>eF&=>?=>`6Q) ?j5>ϡE̖5`i?j5>sA(˟?N].>3 ?j5>搄A4)Cz?=>79 +6M?=>H4?N].>ڻL?N].>o&=?=>6Q)> ?T>304)>Cz?=M>09r ̖5>`i?T>E(>˟?҇\>;/!3 >?T>&=>?=M>`t  +6>M?=M>eFt H4>?҇\>&D!>L?҇\>!6Q) ?T>ϡ̖5`i?T>s4)Cz?=M>79r 3 ?T>搄(˟?҇\>!H4?҇\>ڻ! +6M?=M>t &=?=M>t L?҇\>o!L2%>bנ?rq>)\B&>k?6j>,7/>?nq>m<ĤcBp#>S?w>L' fL>h?nq>ÔcB>?6j>.71>'?6j>?7A->1?w>8gnL>;?w>pcnLL2%bנ?rq>\B/?nq>ĤcB&k?6j>Ӡ7h?nq>8ÔcBp#S?w> fLA-1?w>OgnL1'?6j>n7?6j>.7;?w>cnL>?ă>f*>{?t> e^C$>?ă>*ڿ/ft>ǣ?>lw>r֢?ă>%n0f*>,'?t>^Q'>D?t>/<^^!>0/?->%5l>?-> l?ă>r⦸fC$?ă>Gڿ/f*{?t>e^wr֢?ă>n0ftǣ?>#l^!0/?->S5lQ'D?t>n<^*,'?t>^?->1l>? > `{>>0 ?|>]3xg>B?q[>-Z7|.r>?q[>7|>? >_x;>Z? >U_xD>R?މ>*I4~? >`{gB?q[>Z7|>0 ?|>+]3x.r?q[>7|DR?މ>I4~;Z? >_x? >_xpI > զ? >|`{_#>D?|>(+3xd>=?q[>H7|V>'?q[>7|^!>v-? >a#_xX$>-/? >*_x>+?މ>4~pI զ? >`{d=?q[>7|_#D?|>]+3xV'?q[>Z7|+?މ>I4~X$-/? >_x^!v-? >ܬ_xdb3>ץ?ă>YGrf8>ؓ?t>Oߦ^X5>Nɦ?ă>K0f".>?>q>#lޫ/>U?ă>&@G0fN4>ԕ?t>Gnе^';>¦?t>bT^!0>h?->B1la*>@`?->7Sldb3ץ?ă>rfX5Nɦ?ă>n0f8ؓ?t>eߦ^ޫ/U?ă>ڿG0f".?>#l!0h?->1l';¦?t>^N4ԕ?t>5SlإE>?rq>e\BI>>?6j>`j7I> N?nq>=k8cBA>q?w>^fL @>꘣?nq><[cB.(C>X?6j>_n7ĬL>k7?6j>p7D>jh?w>dnLk<>?w>UOnLإE?rq>\BI N?nq>Ô8cBI>?6j>7 @꘣?nq>ĤcBAq?w> fLDjh?w>cnLĬLk7?6j>.7.(CX?6j>n7kgOnLO>a?T>_tϻێP>7U?=M>u7r S> ?T>p{vN>v?҇\>r!I>E٢?T>isI>Ƣ?=M>Hjt T>y?=M>|t Q>?҇\>xo!-G>?҇\>fڻ!Oa?T>ϻS ?T>ێP7U?=M>97r IE٢?T>svNv?҇\>!Q?҇\>o!Ty?=M>t IƢ?=M>t -G?҇\>ڻ!O>a?j5>_tDvN>w?N].>rS> ?j5>p{A܎P>7U?=>u7ώI>E٢?j5>isA-G>?N].>fڻQ>?N].>xoT>y?=>|I>Ƣ?=>HjOa?j5>DS ?j5>AvNw?N].>IE٢?j5>sA܎P7U?=>97ώTy?=>Q?N].>o-G?N].>ڻIƢ?=>إE>?E>e֤A>q?>^ؚI> N?E>=k8ꝽI>>?>`j @>꘣?E><[Ýk<>?>UOǒD>jh?>d뒳ĬL>k7?>p.(C>X?>_nإE?E>֤I N?E>Ô8ꝽAq?> ؚ @꘣?E>ĤÝI>?>ĬLk7?>.Djh?>c뒳kgOǒ.(CX?>ncb3>ץ?\>ZGr".>?=q>#NV5>Nɦ?[>KЙ8>ؓ?&>OZݫ/>U?[>&@GЙa*>@`?{=7S$!0>h?{=B1$';>¦?&>bTLN4>ԕ?&>GnLcb3ץ?\>rV5Nɦ?[>nЙ".?=#Nݫ/U?[>ڿGЙ8ؓ?&>eZ';¦?&>L!0h?{=1$a*@`?{=5S$N4ԕ?&> զ?e=|d>=?k\=IɃ_#>D?S=(+͇V>'?k\=Ƀ>+?N=́X$>-/?=*^!>v-?=a#桇pI զ?e=_#D?S=]+͇d=?k\=ɃV'?k\=ZɃ^!v-?=ܫ桇X$-/?=+?N=Í)=:>?'Y®=6>?YH=?? [2X2):>?'Y®6>?YH?? [X22K>%?? )Wqo> 2??;3U*>;??t=hS״2K%?? OֈWqo 2??U*;??hS״Ȟ>rN?#YS>]?<羯'H>0l?վ*6zȞrN?LYS]??-о#=P~?hR;T $#?pm?Ҿ#j>?-оB#ֽP~?hR;$#?/ >?-^/(j >,?$ a>1?Ъ!`x/ ?-^נj ,?x a1?Ъ[`xB,>R{?¾5!J>Gwz?w@E Je>Iy?ɲKaB,R{?¾Qʅ!JGwz?wuE JeIy?ɲja*%c,?(Y/\?;;UN*%?HLIg*%I>h|] *%>bY\tb*%^>dV*l@=,>5W 0!Zǿ=>Uf0{*t>>zR0֍@,>5W0!Zǿ>U0{*t>zR 0֍m,>-?p~X1f2>?t*2' !Ts8>?JB&#Im,-?pX1f2?t*2!Ts8?JBIf>>H5W0I> >eBUB. >D>:O+f>HnW0I >eB. D>:G+`t<>>n]Su1# rm<>> R6Km<>0t>\MS9Bbt<>n]S# sm<> R~Km<0t>\MB*%5O?GS/*%^?cHq*%n?C7*%v?ʾ)e?XþM.*%?g*%i_W?~>/j?Gz>*%J6z?>|.f=Q?F >W{Tg==Yc?>{h&hI=dƒ?&>F!ݼg.fQ?F >{Tg=Yc?>h&hIdƒ?&>ݼgĞ>U?d>)xb>g??b>(0Vy >Cy?e>,XuwĞU?d>qxbg??b>z0Vy Cy?e>JXuw1*>Ի?S[>?nvJ>N~?}H>AmNf>Dz?7>Izi1*Ի?S[>nvJN~?}H>mPfDz?7>zi >5m?6>XR,T>?0>dJL!>rI?j>gJ 5m?6>?R,T?0>pJL!rI?j>=J*%u.?]>*%l?>V*%?Y>i*%E>g>l |>yQ>eVx*%^>X4>}r)=RC?>P B=C?}>`}A=G C?t>I!!b{)RC?>BC?}>}AG C?t> b{2K>P0B?vX>I7Ms o>lA?/E>Cl>G@?C.>DOYZd2KP0B?vX>ȣMs olA?/E>lG@?C.>YZd m,>.?=g>#/v`2>?c>1um8>?[>\4+t m,.?=g>Фv`2?c>Μum8?[>+t@=(>u>a}Qǿ=>m>!z$t>>a>);w@(>u>m>Q!z$t>a>4օ;wZt<>>;u?>7ojm<>>sP*>8km<>(t>>9͎fZt<>;u?>uojm<>sP*>Xkm<(t>>IƩ͎ff>>)9>A l>>m>Md>D>>WW\f>)9> l>m>dD>>\#>5O?ly'H>^?7szC%>-o?}|#ž5O?lh'H^?7ཌྷC%ﱾ.o?Ꜥ>?dJm :>k?0Ji ؙ>?~EꜤ?dm :k?0i ؙ?wE>a?*}>?in|"=D>J?y@z8Ya?*#?i"=DJ?y@8Y!A>rN?hȓk9l>j*]?mC3(>l?'pr^&P!ArN?hȓ9lꮾj*]?C3(l?'p^&P>*}?-%q#a>FY{?,Lj3W>y?,a)*}?-ێ#aFY{?,L3Wy?Ԟ)r>?\x >?#]yn q>Y>7>?C{  Χ>3>?雽{`,>??> y>YϾ7>?󽽄  Χ̾3>?雽`,Ⱦ??> ^>%??5= sBd5(>D?? =Umu ,AG>??6=e LM๾%??5=Bd5(D?? =u ,AG??6=x LMA>rN?9]?=uA+x>l?n?4>4~ >o?5&}}ZL>`F?k<+{n?4>́ o?5ڂ}ZL`F?k<Մ >8&?${=Gy 'b%>YЕ?j=y F&@>?=xD&( 8&?${= 'b%YЕ?j=F F&@?=nD&()>{?=Usp 6T>}y?Ƭ=l Bۉ>w?w{>cP(䙾{?=p 6S}y?Ƭ=b Bۉw?w{>㜪P>c,?J#|0 ">\?)r}v >?؛O; ھc,?J݃0 !\?)r-v 龢?؛; Qm>D>!~F%>>{>܋^>3yvQmD>!F%⾚>3־܋^>3yQ>'>G-|, b>>C?~=Z>>x |H'>G-|u, a羔>C=Z⾢>x HGI>-?H*3xi)LM>?@,y5(>?:7sy`h(GI˾-?H*͇i)LMӾ?<,5(ؾ?:7`h(X>>\wt2>>D>TU=hGXѾ>\w2ƾ>TU=Gh>>ʽnw(>>hٽjt )>(t>K޽o+hؾ>ʽ(Ѿ>hٽ )Ǿ(t>K޽,+>Y>7>?Qx)<Χ>4>?}u.,>??ړ^q 4T>YϾ7>?Qi)<Χ̾4>?}j.,Ⱦ??ړ 4T>%??8 2??ξ\\ETH>;??SJ๾%??8<?) 2??ξ\\ETH;??JGI>-?Hn4bMM>?ܾra,>?iuvE GI˾-?H54bMMӾ?ܾ}a,ؾ?iE >(>gg)b>>Ӿh~Z>>Ηp| (>ghg)b羕>ӾZ⾣>Η j>>* yM>> mv>(t> p*jؾ>* LMѾ> Ǿ(t> h*Z>>#uV>>qo\+w>D>'gP ZѾ>#tVƾ>q'\+wD>'#P Wh=ݏ3yQ =Ms3yp /X]+> [)3y00lWhݏ3y Ms3y/X]+ [)3yl><3yM5ˠ> d=3yZ>=3ye<3yi5ˠ d=3yh=3y8_>3PfpʾR?KP\>f-@d<=>˗8_3PfpʾKP\f-+xW@d<=˗%Z=3PGT/q=f-c\!ѐ| >@d=7o"=Zw4F>=h/<OA>0>;;$P0L=7o"C³Zx4F=h/(OA0>;!$Pȉ>=^s\K>=0V||8>,>kaȉ=^s=0||8,>k򞶺*%ݏiP *%MsAG$*% [)(*%< ɻȓXD*%0d=d[G=Q*%==j^%Z=3Pd'/qp6=g-\!ѐ5| >@d<ƛv05%Z3Pd'qp6ؽg-ѐ5| @d<ƛ56_>3PR? N\>g-P@d< >˗y'6_3P N\g-PtW@d< ˗y'Ɖ>=.\K2>=ƽV|S0y8>(><ҽa}.ʼn=.2=ƽ|S0y8(><ҽ򞶺}.0L>=?Ἵ=?r4F>=8<<KIA>(>6k=;$U0L=?C³?r4F=8<(KIA(>6k=!$U*%ݏ̾t/MsQ*%[)~+*% <'ȓ*%@d=5>*%=FB:b#=P?都M~=V?~(hyu$=8?6sP:b#P?都~梽V?hyu$8?isPeG>,?POdUk>?L;aR_>?q:'eG,?PdUk?L;+R_?+:'6t >?P)DA5lV2> ?x{>?>9=>YA6t ?P)5lV2 ?x{?>9=$YA=?Q>)X0Z=QR?9>7'KSX=|1?rz=3MW?Q>X0ZQR?9>KSX|1?rz=WMW>%n?G>X<38a.6>?%C>@.id>|C?If> Ko'_%n?G>38a.6?%C>W.id|C?If>o'_88@>?=GKBR a>™?:=V8*K1>?>j=f*%?88@?=uKBR a™?:=*8*K1?>j=M*%?*%m?0~*%??y*%? Fp*%m?GÉGXR*%c?ٚF6*%M?l2=t?Tneڲ=?pb^=?۰r)\_ut?Tneڲ?pb^?۰rb\_u7t > ?Y4@Hm-h.>X?$=ij>j?N9cq7t ?Y̿Hm-h.X?$Rijj?N:cq?>5q?BQsD)Sz"na>?>qWD[_~>?۶mi61;?5q?BQs)Sz"na?>q'D[_~?۶mI61;z>?{銾/4Nv>_?)+=@D>6?$*!z?{銾44Nv`? +=@D6? ۪*!*%,? k}*%\?{=7w.*%))?=ZkE*%Hּ?U1>Jg*Ek*%M?#>GiFy>?@򢾥W& w>?VB|u>1ޘ?sUFy?@[& w? B|u1ޘ?sx_>4`i?R19>XK[?!JMBŲ>8M?z־8IL2_4`i?E19XK[?!BŲ8M?z־ȶL2>.?~JMߺ>?NGBc>y ?&U_<.?~Mߺ?+GBcy ?&_<>->S7aq > >(8a+>>6^܄->S7Lq  >(8V+>6K܄ 3>@?+ĉO>z?8e>\?H  3@?xԉĉOz? NJe\?K FK=?mN˅}~=u?γ3VلF=d?ߴMFKའ?N˅}~u?γVلFd?ߴ9MR >~?FpbF܂><?Wh ټ{>/T?:]FyR ~?FzbF܂<?Wc ټ{/T?ƢFyl>Ʈ? Gw\H>{?!y5!^>i? zZ"lƮ? G\H{?!75!^i? 0Z"^>N±?z" ڥ>A?;yW!>d?-'==w"^N±?(" ڥA?;TW!d?-'=È"FÇ>?^=m ?8>?) >fOJ;~>?>`c SFÇ?^= ?7샾?) >IOJ;~?>c SQuf>hX>@EơI>/m><Oʫe[>>b87WVRufhX>@UơI/m><ʫe[>b8ɨVB>z6>Hs.ֽŜ]= *>,K ƺuLUF=X">Lf)Bz6>HֽŜ]Ľ *>,K7ƺuLUFX">L)>hX>cof廫>/m>>N%c#`_>>j."_#hX>c廫/m>>N%#`_>j.ޠ#܍>z6>kkc>*>侷m~>P">qǾnr_܍z6>$kcþ*>I~ƾP">qǾ r_}>P">rnr >*>\mڍ>z6>V#kkĝ"}ƾP">r r þ*>\Iڍz6>V#$kĝ">`X>Wqof6㻫>/m>^c>]_>><"_#G`X>Wq6⻫/m>^>\_><ޠ#G0h{> ?ߥ&>dW~]y>??Z'>ZtZIw>[?'>[LMY0h{ ?ߥ&>~]y??Z'>tZHw[?'>iLMYP>lj?g#>mV} ]B>c]?Î >W: F\>bO?a>PY} ZOlj?g#>} ]Bc]?Î >J: F\bO?a>} Z>P.?N>C]W>?=_Uc>y ?1=F`rSP.?N>W?=Ucy ?1=rS>->=v`P> >q=i_uFO(>>DW=]S؝M->=P >q=uFO'>DW=FS؝M-2>T?d>XzZP>̗?H>U ?^g>ƿ?4>V f]-2T?d>VzZP̗?H>- ?^gƿ?4> f]=謞?D>Oj5xTN&=U?>@AX= =?ԕ>(L'^̽謞?D> j5xTN&U?>?AX= ?ԕ>L'^Juf>`X> =E_ZI>/m>=OUUb[>>i=7WV PIuf`X> =U_ZI/m>=UUa[>i=ɨV PB>z6>k=s.ֽ;cU=*>> ƺfBUF=P"> >fhBz6>k=ֽ;cUĽ*>>7ƺfBUFP"> >h*%L?>Q[Y*%$?§>DX\*%,?(>Fj=h?^>@mBC3=?\s>c; S79 ={?>9ӡ2Aýh?^>GmBC3?\s> S79 {?>ӡ2A*%R?X>?*%Lɉ?Ж>Ԇ9)*%%?l>t+L^=4?h>f ,E= ?>/dHJ0(=~?V\L^ѽ4?h>b ,E ?>ћHJ0(~?k\90>ħ?W >~:>ħ?q>|$>ħ?c>+x90ħ?W >#~:ħ?q>`|$ħ?c>x 0>ħ??> C mw6>ħ?%Ń>LQf<>ħ?t>V^ 0ħ??> mw6ħ?%Ń>Qf<ħ?t>^"F>ħ?w>f{LOJ>ħ?nq>fmpBhM>ħ?6j>s7"Fħ?w>^{LOJħ?nq>pBhMħ?6j>7`S>ħ?҇\>h{!U>ħ?T>}#V>ħ?=M>{w `Sħ?҇\>!Uħ?T> #Vħ?=M>w #V>ħ?=>{U>ħ?j5>};`S>ħ?N].>h{ #Vħ?=>Uħ?j5> ;`Sħ?N].> hM>ħ?>sOJ>ħ?E>fm"F>ħ?>fhMħ?>OJħ?E>"Fħ?>^<>ħ?&>V9w6>ħ?Z>L 0>ħ?3= C<ħ?&>9w6ħ?Z> 0ħ?3=`*>sy?q=T7 (>%?C=@4.~%&>^?q=2. `*sy?q= (%?C=ˤ.~%&^?q= M@>3?7 >\]=>4?7 >WF$8>O?7 >OS4M@3?7 >#]=4?7 >nF$8O?7 >S4͒&>xΪ?3=g/g/N*>)R?Z>`6`6.>ѫ?&><<9͒&xΪ?3=g/N*)R?Z>`6.ѫ?&>-<9O>c?"'>guK>?"'>n-UE> f?"'>c'BOc?"'>K?"'>O-UE f?"'>'B+5>?>HHM8>)?E>[M[M{L;>e?>dQdQ+5?>nHM8)?E>[M{L;e?>dQe U>?rE>o}zP>U7?rE>@v0l>J>Ǭ?rE>jFe U?rE>zPU7?rE>0l>JǬ?rE>JFa!?>K?N].>CWCW X@>9?j5>YY;A>?~=>$Z$Za!?K?N].>CW X@9?j5>Y;A?~=>ܥ$ZO>c?c>gu-K>?c>n--SE> f?c>c'B-Oc?c>-K?c>O--SE f?c>'B-A>?=M>$Z$Zw X@>9?T>YY_!?>K?·\>CWCW!A?=M>ܥ$Zw X@9?T>Y_!?K?·\>CW!M@>3?^}>\ V]=>4?b}>WF$V 8>O?^}>OS4 VM@3?^}># V]=4?b}>nF$V 8O?^}>S4 V{L;>e?6j>dQdQ7M8>)?jq>[M[MpB+5>?w>HH{L{L;e?6j>dQ7M8)?jq>[MpB+5?w>nH{L`*>sy?%V>T7 r(>%?P>@4r~%&>^?%V>2. r`*sy?%V> r(%?P>ˤr~%&^?%V> r.>ѫ?t><<^P*>)R?%Ń>`6`6Qfϒ&>xΪ??>f/g/ m.ѫ?t>-<^P*)R?%Ń>`6Qfϒ&xΪ??>g/ m!>?%V> 2.rM>?P>@4r>9H?%V> T7r!?%V>2.rM?P>\@4r9H?%V>T7r?>??> C m?>ˬ?%Ń>LQf?>~?t>V^???> C m?ˬ?%Ń>LQf?~?t>V^R*>?^}>S4O V&!>٧?b}>F$WV0>?^}>\ VR*?^}>O V&!٧?b}>ےWV0?^}>#\ V?>?w>f{L?>F?jq>fmpB?>ͺ?6j>s7??w>f{L?F?jq>fmpB?ͺ?6j>s7cO3>ʱ?c>'Bc-ɿ'>v?c>-n-<>?c>gu-cO3ʱ?c>ٽc-ɿ'v?c>'ұn-<?c>'gu-?>2h?·\>h{!?>??T>}?>?=M>{w ?2h?·\>h{!???T>}??=M>{w ]6>C?rE>Fj)>`?rE>0@vN>L?rE>zo}]6C?rE>Sj)`?rE>@vNL?rE>o}?>?=>{?>??j5>};?>2h?N].>h{ ??=>{???j5>};?2h?N].>h{ cO3>ʱ?"'>'Bcɿ'>v?'>-n<>?"'>gucO3ʱ?"'>ٽcɿ'v?'>'ұn<?"'>'gu?>ͺ?>s?>F?E>fm?>?>f?ͺ?>s?F?E>fm??>fR*>?7 >S4O&!>٧?7 >F$W0>?7 >\R*?7 >O&!٧?7 >ےW0?7 >#\?>~?&>V9?>ˬ?Z>L?>?3= C?~?&>V9?ˬ?Z>L??3= C!>?q= 2.M>?C=@4.>9H?q= T7!?q=2.M?C=\@4.9H?q=T7S>9H?q=T7*2>?C=\@4.=?q=2.S9H?q= T7*2?C=@4.?q= 2.KO>?7 >#\w=٧?7 >ےW7=?7 >OKO?7 >\w٧?7 >F$W7㽡?7 >S4OC=zΪ?3=g/@=)R?Z>`6p=ѫ?&>-<9CzΪ?3=f/g/@)R?Z>`6`6p۽ѫ?&><<90C>?"'>'guI=v?"'>'ұna=ʱ?"'>ٽc0C?"'>guIv?"'>-naҽʱ?"'>'Bc=?>nHD=)?E>[Mf=e?>dQͽ?>HHDǽ)?E>[M[Mf½e?>dQdQC1>L?rE>o}L=`?rE>@vE=C?rE>SjC1L?rE>zo}L`?rE>0@vE̽C?rE>Fj=K?N].>CW [N=9?j5>Y;Զ=?~=>ܥ$ZK?N].>CWCW [N9?j5>YY;Զ?~=>$Z$Z0C>?c>'gu-I=v?c>'ұn-a=ʱ?c>ٽc-0C?c>gu-Iv?c>-n-aҽʱ?c>'Bc-Զ=?=M>ܥ$Zw [N=9?T>Y=K?·\>CW!Զ?=M>$Z$Zw [N9?T>YYK?·\>CWCW!KO>?^}>#\ Vw=ڧ?b}>ےWV7=?^}>O VKO?^}>\ Vwڧ?b}>E$WV7㽡?^}>S4O Vf=e?6j>dQ7D=)?jq>[MpB=?w>nH{Lf½e?6j>dQdQ7Dǽ)?jq>[M[MpBͽ?w>HH{LS>9H?%V>T7r*2>?P>\@4r=?%V>2.rS9H?%V> T7r*2?P>@4r?%V> 2.rp=ѫ?t>-<^B=)R?%Ń>`6QfC=zΪ??>g/ mp۽ѫ?t><<^B)R?%Ń>`6`6QfCzΪ??>f/g/ m=_?%V> rn =%?P>ˤr@>=sy?%V> r_?%V>2. rn %?P>@4r@>sy?%V>T7 r̳=ħ??> m=ħ?%Ń>Qf=ħ?t>^̳׽ħ??> C m̽ħ?%Ń>LQfħ?t>V^ͧ=O?^}>S4 V>D=4?b}>nF$V`d=3?^}># VͧǽO?^}>OS4 V>D4?b}>WF$V`d3?^}>\ VѬ=ħ?w>^{LT`=ħ?nq>pB=ħ?6j>7Ѭħ?w>f{LT`ħ?nq>fmpBħ?6j>s76= f?c>'B-`=?c>O--鳙=c?c>-6 f?c>c'B-`?c>n--鳙c?c>gu->=ħ?҇\>!͎=ħ?T>  =ħ?=M>w >ħ?҇\>h{!͎ħ?T>} ħ?=M>{w =Ǭ?rE>JF;=S7?rE>0=?rE>zǬ?rE>jF;S7?rE>@v0펽?rE>o}z =ħ?=>͎=ħ?j5> ;>=ħ?N].>  ħ?=>{͎ħ?j5>};>ħ?N].>h{ 7= f?"'>'B`=?'>O-鳙=c?"'>7 f?"'>c'B`?'>n-鳙c?"'>gu=ħ?>X`=ħ?E>Ѭ=ħ?>^ħ?>sX`ħ?E>fmѬħ?>f̧=O?7 >S4>D=4?7 >nF$^d=3?7 >#̧ǽO?7 >OS4>D4?7 >WF$^d3?7 >\=ħ?&>9=ħ?Z>ʳ=ħ?3=ħ?&>V9̽ħ?Z>Lʳ׽ħ?3= C=^?q= n =%?C=ˤ.>>=sy?q= ^?q=2. n %?C=@4.>>sy?q=T7 >>=?q=n =eb?C=\.=ǥ?q=>>?q=T7n eb?C=@4\.ǥ?q=2.8>=?˘=^^BW~>K?= {d=k¥?=u8=?˘= ^BW~K?={dk¥?=mu`d=?7 >##BD=S?7 >nЧ=r8?7 >`d?7 >\#BDS?7 >WЧǽr8?7 >OC=ù?3=КC=6?Z>ɠɯr=&?&>--9Cù?3=g/C6?Z>`6ɯr۽&?&><-9볙=$?"'>'`=%?"'>O':=2"?"'>ٽ볙$?"'>gu'`%?"'>n':2"?"'>cٽ=Ԣ?>nnI=u?E>f="?>ͽԢ?>HnIǽu?E>[Mf½"?>dQ=H?rE>;=P?rE> =z?rE>JS펽H?rE>o};P?rE>@v z?rE>jS"=?N].> ^N=?j5>;Զ=li?=>ܥܥ"?N].>CW ^N?j5>Y;Զli?=>$Zܥ鳙=$?c>'-`=%?c>O'-8=0"?c>ٽ-鳙$?c>gu'-`%?c>n'-80"?c>cٽ-Զ=li?=M>ܥܥw ^N=?T>"=?҇\>!Զli?=M>$Zܥw ^N?T>Y"?҇\>CW!`d=?^}>## V@D=S?b}>nVЧ=r8?^}> V`d?^}>\# V@DS?b}>WVЧǽr8?^}>O Vf="?6j>7I=u?nq>pB=Ԣ?w>nn{Lf½"?6j>cQ7Iǽu?nq>[MpBͽԢ?w>Hn{LA>=?%V>rr =eb?P>\r=ǥ?%V>rA>?%V>T7rr eb?P>@4\rǥ?%V>2.rr=&?t>--^C=6?%Ń>ɠQfF=ù??>К mr۽&?t><-^C6?%Ń>`6QfFù??>g/ m=mǤ?%V>r*2>&n?P>\rS>@?%V>rmǤ?%V> r*2&n?P>rS@?%V> r?>\w??> m?> ?%Ń>Qf?> ?t>^?\w??> m? ?%Ń>Qf? ?t>^<=v?^}> Vw=d?b}>nVNO>d?^}>## V<㽜v?^}>S4 Vwd?b}>F$nVNOd?^}># V?>8ɠ?w>^{L?>%B?nq>pB?>p͟?6j>7?8ɠ?w>^{L?%B?nq>pB?p͟?6j>7a=s֠?c>ٽ-O=-?c>'O-3C>^?c>'虊-aҽs֠?c>'B-O-?c>-O-3C^?c>-?> ?҇\>!?>?T> ?>Ǟ?=M>w ? ?҇\>!??T> ?Ǟ?=M>w E=OD?rE>SJL=o?rE>D1>?rE>摂E̽OD?rE>FJLo?rE>0D1?rE>z?>Ǟ?=>?>?j5> ;?> ?N].> ?Ǟ?=>??j5> ;? ?N].> a=s֠?"'>ٽO=-?'>'O3C>^?"'>'虊aҽs֠?"'>'BO-?'>-O3C^?"'>?>p͟?>?>$B?E>?>8ɠ?>^?p͟?>?$B?E>?8ɠ?>^<=v?7 >w=d?7 >nNO>d?7 >##<㽜v?7 >S4wd?7 >F$nNOd?7 >#?> ?&>9?> ?Z>?>\w?3=? ?&>9? ?Z>?\w?3==mǤ?q=*2>'n?C=\.T>@?q=mǤ?q= *2'n?C=.T@?q= >@?q= M>&n?C=.!>mǤ?q= @?q=M&n?C=\.!mǤ?q=0>d?7 >#&!>d?7 >F$nT*>v?7 >S40d?7 >##&!d?7 >nT*v?7 >ϒ&>ù?3=g/P*>6?Z>`6ɯ.>&?&><-9ϒ&ù?3=ЙP*6?Z>ɠɯ.&?&>--9<>^?"'>˿'>-?"'>-OdO3>s֠?"'>'B<^?"'>'虊˿'-?"'>'OdO3s֠?"'>ٽ-5>Ԣ?>HnM8>u?E>[M{L;>"?>dQ-5Ԣ?>nnM8u?E>{L;"?>N>?rE>z)>o?rE>0]6>PD?rE>FJN?rE>摂)o?rE>]6PD?rE>SJ_!?>?N].>CW X@>?j5>Y;A>li?=>$Zܥ_!??N].> X@?j5>;Ali?=>ܥܥ<>^?c>-˿'>-?c>-O-dO3>s֠?c>'B-<^?c>'虊-˿'-?c>'O-dO3s֠?c>ٽ-A>li?=M>$Zܥw X@>?T>Y_!?>?҇\>CW!Ali?=M>ܥܥw X@?T>_!??҇\>!0>d?^}># V'!>d?b}>F$nVT*>v?^}>S4 V0d?^}>## V'!d?b}>nVT*v?^}> V{L;>"?6j>cQ7M8>u?nq>[MpB-5>Ԣ?w>Hn{L{L;"?6j>7M8u?nq>pB-5Ԣ?w>nn{L>@?%V> rM>&n?P>r!>mǤ?%V> r@?%V>rM&n?P>\r!mǤ?%V>r.>&?t><-^Q*>6?%Ń>`6Qfϒ&>ù??>g/ m.&?t>--^Q*6?%Ń>ɠQfϒ&ù??>Й m$>ħ?=+u:>ħ?={90>ħ?˘=B$ħ?=u:ħ?=`{90ħ?˘=#B`*>?q=T7(>eb?C=@4\.%&>ǥ?q=2.`*?q=(eb?C=\.%&ǥ?q=M@>?7 >\#]=>S?7 >W 8>r8?7 >OM@?7 >##]=S?7 >n 8r8?7 >O>$?"'>gu'K>%?'>n'SE>2"?"'>cٽO$?"'>'K%?'>O'SE2"?"'>ٽe U>H?rE>o}P>P?rE>@vl>J>z?rE>jSe UH?rE>PP?rE>l>Jz?rE>JSO>$?c>gu'-K>%?c>n'-UE>2"?c>cٽ-O$?c>'-K%?c>O'-UE2"?c>ٽ-M@>?^}>\# V]=>S?b}>WV 8>r8?^}>O VM@?^}>## V]=S?b}>nV 8r8?^}> V`*>?%V>T7r(>eb?P>@4\r%&>ǥ?%V>2.r`*?%V>r(eb?P>\r%&ǥ?%V>rG>;?W > ^~>K?q>|M>j¥?c>mxG;?W >^^~K?q>|Mj¥?c>xG>;?˘= ^B>K?= {M>j¥?=muG;?˘=^^BK?= {Mj¥?=u?>?˘=#B?>?=`{?>?=u??˘=#B??=`{??=u?>?W >#~?>?q>`|?>?c>ԋx??W >#~??q>`|??c>ԋx8>=?W >^^~W~>K?q>|d=k¥?c>x8=?W > ^~W~K?q>|dk¥?c>mx;=ħ?=um?=ħ?=`{O>ħ?˘=#B;ħ?=+um?ħ?={Oħ?˘=BO>ħ?W >#~m?=ħ?q>`|;=ħ?c>xOħ?W >~m?ħ?q>|;ħ?c>+x8>?W >^ ~W~>S|d=ũ?c>nx8?W > ~W~S|dũ?c>mnxd=ũ?=nuW~>S?˘=^ Bdũ?=mnuW~S?=+u?>'ة?={?>'?˘=B??=+u?'ة?={?'?˘=B?>'?W >~?>'ة?q>|?>?c>+x?'?W >~?'ة?q>|??c>+xG>?W > ~>S|M>ũ?c>mnxG?W >^ ~S|Mũ?c>nxM>ũ?=mnu>S?˘= BMũ?=nuS?$Y'.%>+??~ xX|.%+??~GxX|*%>EX0*%?8:Ӿ#$ >g}?MȾ*w"v g}?MȾ w"v\;>>wN)0V\;>wN"0V*%C?>*%\?>ųf*%>2x>=~.%>7B?Fh>,tw.%7B?Fh>tw>ڄ?w><>ѽeڄ?w>ѽe\;>>O>/6!>r\;>O>!>r?>>?%vz8%?о>?%8% ,>⏁?~p~ ,⏁?~>)??`2; w!*)??`2;!* >>O  쾙>O >*??k9C*??)9C#>~?qa\v#~?qa콟>~?Lbf=x>'*콟~?Lbf=>'*>>yZg(ھ>Zg(>>yUھ>kU*%0H3y0`>냼3yV?ǐ0`냼3yǐ*%냼F>6*%냼r>dWR>n=NOx>EWRn=NOEWR>n=,Ox>3WRn=,O3*%b?f> >K?@An K?n*%?xnes*%sb?>,ZZҖ>Z?'=m>d?s5Z9>md?sZ9.~>>y?"lV`.~>y?"lK`/>>??9ZHO/>??9ᆭOf~>v@>1\&f~v@>1 &[>e.?m!>[e.?mB޵>*%껭?8( Ԉ>q?huԈq?h⊶> ?+{"T ?Մ"TN>dǪ?>A=rNL1N䊾dǪ?>A=NL1=>F>E:=F>E/Ů*%<) >M߷Dٹ>F> giMٹF> M>0) >3yloǾ0) >3yٹ>F>s۽giƳ,ٹF>s۽Ƴ,~>w?3%>Uj^~w?3%>j^/>?? >>[}Y/?? >¤}Yc~>r@>Fy=`qMRc~r@>Fy=8qMR$E >8?=>l] *R$E 8?=> *R*%п?j>Ra=>F>=:_=F>=/Ů_*%8) >>߷ir>G?S& rG?& ><>47\ҵ<>4ɣҵyu>ܕ?'>[cYyuܕ?'>cY>8>61=7\KL8>61=ɣKL*%3?g>e!u?>ħ?u>?ħ?u>*>ħ?O[>7*s*ħ?O[>&*sCUA>ħ?b}>^VCUAħ?b}>IVDP>ħ?c>w-DPħ?c>7- ~V>ħ?rE> ~Vħ?rE>DP>ħ?"'>wDPħ?"'>7CUA>ħ?7 >^CUAħ?7 >I*>ħ?\=7֌*ħ?\=&֌8i">FI?\=~'~'֌8i"FI?\=~'֌_2>G?7 >BB_2G?7 >Bq=>Y?"'>TTq=Y?"'>LTCUA>&?rE>ZZCUA&?rE>Zq=>Y?c>TT-q=Y?c>LT-_2>G?b}>BBV_2G?b}>BV8i">FI?O[>~'~'*s8i"FI?O[>~'*s?>T?Q[>7*s?T?Q[>7*s?>&?b}>^V?&?b}>^V?>?c>w-??c>w-?>˰?rE>?˰?rE>?>?"'>w??"'>w?>&?7 >^?&?7 >^?>T?\=7֌?T?\=7֌n-=FI?\=~'֌n-FI?\=~'~'֌A=G?7 >BAԽG?7 >BB@=Y?"'>LT@Y?"'>TTZU=&?rE>ZZU&?rE>ZZ@=Y?c>LT-@Y?c>TT-A=G?b}>BVAԽG?b}>BBVn-=FI?O[>~'*sn-FI?O[>~'~'*sy=ħ?Q[>&*syħ?Q[>7*s\U=ħ?b}>IV\Uħ?b}>^VS=ħ?c>7-Sħ?c>w-=ħ?rE>ħ?rE>T=ħ?"'>7Tħ?"'>wZU=ħ?7 >IZUħ?7 >^y=ħ?\=&֌yħ?\=7֌?>ħ?[=?ħ?[=n-=>?\=؂֌n->?\=~'֌A=>@?7 >AԽ>@?7 >BD=ݡ?"'>LMDݡ?"'>TM]U=ua?rE>]Uua?rE>ZD=ݡ?c>ML-Dݡ?c>TL-A=<@?b}>VAԽ<@?b}>BVq-=>?O[>؂*sq->?O[>~'*s?>3?Q[>&*s?3?Q[>&*s?>ua?b}>IV?ua?b}>IV?>Ul?c>7-?Ul?c>7-?>\?rE>?\?rE>?>Ul?"'>7?Ul?"'>7?>ua?7 >I?ua?7 >I?>3?\=&֌?3?\=&֌9i">>?\=~'֌9i">?\=؂֌_2><@?7 >B_2<@?7 >q=>ݡ?"'>TMq=ݡ?"'>LMBUA>ua?rE>ZBUAua?rE>q=>ݡ?c>TM-q=ݡ?c>LM-_2><@?b}>BV_2<@?b}>V9i">>?O[>~'*s9i">?O[>؂*sDATA,؟'qDATAGq7P"""""""""""""""""""""""" " " " """ " " " """ " " " """ " " " """"""""""""""""l """"k """""m """" " " n " """!"!"!"!""""""""""""o "#"#"#"#p "$% % %)"()")")"$&"& "&*"%*"*"* "$' ' '+"&+"+ "+ $("("(,"',",","-.". ".2"12"2 2 "-/ / /3".3"3 "3"-0"0"04"/4"4"4"-1 1 15"05"5"5"67 7 7;":;";";"68"8~ "8< 7<"< <} "69 9f 9="8= = "=g 6:":":>"9>">e ">"?@"@ "@D CD"Dj D "?A A AE"@E E "E ?B"B"BF"AF"F"F"?C Ci CG"BG"G"Gh "HI"I"IM LM"M M"HJ"J"JN"IN N"N HK"K"KO"JO"O"O"HL"L"LP"KP"P"P"QR"R"RV"UV V"V QS"S"SW"RW"W"W"QT"T"TX"SX"X"X"QU"U"UY TY"Y Y"Z["["[_"^_"_"_"Z\"\"\`"[`"`"`"Z]"] "]a"\a"a"a "Z^"^"^b"]b"b "b"cd"d"dh"gh"h "h"ce"e"ei"di"i"i"cf"f"fj"ej"j"j"cg"g "gk"fk"k"k "lm"m"mq pq"q q"ln"nr "nr"mr r"rq lo"o"os"ns"ss "s"lp"p"pt"ot"t"t"uv"vu "vz"yz"z"zv "uw"w"w{ v{"{t {"ux"x"x|"w| |"| uy"y"y}"x}"}"}"~""""""~"x """"w "~" """y " "~"""" """{ """ "| """""z """"""""" """" """" " !"" "" #"  " "" """"""""" """"""%" "  &"""" $" " """""(" "  '" " )" "" " " """" " " " "+" " ," "" *"  """"""""""""" """ " "" " """" """ "" """"" """""""" """ """""!"""4""""3""."""5"/""""""-"#""7"""2"8"""""6"""%""""$""1"""&"0""."""'"-""@"""/"?"" ""A" ""(""" )""C""" "D""1"""B"2""+"""0"*"" ""," """"3""" """ " "":""" ";""4"""9"5"" """>" """"" " ""7""""6""="""8"<"":"""?"9"" """;" "" """ " ""@""" "A"" " "  "  "  ""=" " "  " >""C" " " <" B" "  "  " " D"  """ "E ""X"" "W "R"""Y"S""F"""Q"G""["""V"\""" "Z ""I"" "H "U"""J"T" !"!R"!% $%"%K %Q" " "d "&"!& &S"&c #"# "#'""'"'e"' " $ $L $("#("( "(M")* *g *."-.". ".h")+"+U"+/ */"/f /V"), ,O ,0"+0 0T"0N )-"- "-1",1"1P"1 "23"3"37 67"7W 7"24"4l "48"38"8"8m "25"5^"59"49"9k "9_"26"6X"6:"5:":]":Y";<"<o "<@"?@"@b"@n ";="="=A"<A"Ap "A";>">[">B"=B B"BZ ;?"?a"?C">C"C\"C`"DE"E^"EI"HI"Ic"I]"DF Ff FJ"EJ"J_"Je "DG"G "GK FK"Kg K "DH Hd HL"GL"L "Le"MN Ni NR"QR R "Rj MO"Oa"OS"NS"Sh "Sb"MP Pg PT"OT"T`"Tf"MQ"Q "QU"PU"Uh"U "VW WF W["Z[ [i"[E VX"X|"X\"W\"\G"\{"VY Yv Y]"X]"]}"]w"VZ"Zj"Z^ Y^"^u ^k"_`"`"`d"cd"dz"d"_a aI ae"`e"e~"eJ"_b"bm"bf af"fH fl"_c cy cg"bg gn"gx hi iv im"lm mo"mu hj"j"jn in"nw"n"hk k ko"jo o"o hl"lp"lp kp"p pq"qr"r"rv uv"v v"qs sy sw"rw w"wz"qt"ts"tx sx"xx xr"qu u uy"ty yt"y z{ {L {"~ {"K z|"| "|"{"M" "z} } }"|" ""z~"~|"~ }" }"" """" " O "" "P""" "N ~"  " "   " " " """" "  "" " "" " "" """  "  "" """" " "  " " "j""""i"""""k"""""""""""""""""""""m""""n"""""l""""""""""""""""""""" """" """"" """""" """"""""""""""" """" ""p""""o"  " q" """" """"""""  """ ""s" " t"""""r""""""""""""""" """" "" """ " """"" """ """ " """"" """"""""" """" """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""r """"s """""q """"""v """""""""""""""u " " " " t "  " " """"  "  " " "" "  " " " " "" """ """" """" """"" """"""""""""""""!" !"!"!"" """""""" ""x "#"#"# "#y " " " $"$"$w "$"%&"& "&*")*"*| "* "%'"'"'+"&+"+ "+"%("("(,"',",","%)"){ ")-"(-"-"-z "./"/ "/3"23"3"3 ".0"0"04"/4"4 "4".1"1"15"05"5"5".2"2"26"16"6"6"78"8"8<";<"<"<"79"9 "9="8="="= "7:":":>"9>"> ">"7;";";?":?"?"?"@A"A"AE"DE"E"E"@B"B"BF"AF"F"F"@C"C "CG"BG"G"G "@D"D"DH"CH"H "H"IJ"J"JN"MN"N "N"IK"K"KO"JO"O"O"IL"L"LP"KP"P"P"IM"M "MQ"LQ"Q"Q "RS"S "SW"VW"W"W "RT"T "TX"SX"X "X "RU"U"UY"TY"Y "Y"RV"V"VZ"UZ"Z"Z"[\"\ "\`"_`"`"` "[]"] "]a"\a"a "a "[^"^"^b"]b"b "b"[_"_"_c"^c"c"c"de"e"ei"hi"i"i"df"f "fj"ej"j"j "dg"g "gk"fk"k "k "dh"h"hl"gl"l "l"mn"n "nr"qr"r "r "mo"o"os"ns"s "s"mp"p"pt"ot"t"t"mq"q "qu"pu"u"u "vw"w"w{"z{"{"{"vx"x "x|"w|"|"| "vy"y "y}"x}"} "} "vz"z"z~"y~"~"~"" """ " """"" """"""""" """" "" """""" """ " "" """ " """"" """ """ " "" """ " """"" """ """" """"" """ """" "" """ " "" """ " "" """ " """"" """ """" "" """ " "" """ " "" """ " "" """ " "" """ " "" """ " "" """ " "" """ " "" """ " ""` """ "_ ""0 """a "/ ""* """1 "+ "" """) " ""3 """. "4 ""` """2 "a ""! """_ " ""- """" ", ""* """# ") ""< """+ "; "" """= " ""$ """ "% ""? """ "@ ""- """> ". ""' """, "& "" """( " ""c ""/ "b "" """d " ""6 """ "7 ""0 """5 "1 "" """: " ""c "" "d ""3 """b "2 ""9 """4 "8 ""6 """; "5 "" ""7 " "" """ " ""< """ "= "" "" " ""9 """ ": ""? """8 "> "" """@ " "" " "  " A "  ""N " " "  " M " " H "  " " O " I " " B " " "G "C ""Q """L "R ""! """P "" ""B """ "A ""K """C "J ""H """D "G ""Z """I "Y "" """[ " ""E " " "  " F "!"""] ""&"%&"& "&^ "!#"#K "#'""'"'\ "'L "!$"$E "$("#("(J "(D "!%"% "%)"$)")F ") "*+"+$ "+/"./"/M "/# "*,", ",0"+0"0% "0 "*-"-T "-1",1"1 "1U "*.".N ".2"-2"2S "2O "34"4 "48"78"8X "8 "35"5' "59"49"9 "9( "36"6Q "6:"5:":& ":P "37"7W "7;"6;";R ";V "<="=T "=A"@A"AY "AS "<>"> ">B"=B"BU "B "<?"?~ "?C">C"C "C "<@"@Z "@D"?D"D} "D[ "EF"F "FJ"IJ"J "J "EG"GW "GK"FK"K "KX "EH"H] "HL"GL"LV "L\ "EI"I "IM"HM"M^ "M "NO"O "OR QR"R R "NP"P "PS"OS"S "S NQ"Q "QT"PT"T "T "UV"V "VY"XY"Y "Y "UW"W "WZ"VZ"Z Z "UX"X "X["W[ [ "[ \]"]"]`"_`"` "`"\^"^ "^a"]a a"a \_"_ _b"^b"b "b "cd"d "dg"fg"g "g "ce"e"eh dh"h h"cf"f fi"ei"i"i "jk k kn"mn"n "n"jl"l "lo"ko"o"o "jm"m "mp lp"p "p "qr"r "ru"tu u "u "qs s sv"rv"v "v"qt"t "tw"sw"w"w "xy#y #y|#{|#|[ #| #xz#z2 #z}#y}#} #}3 #x{#{Z #{~#z~#~1 #~Y #"5 """\ "4 "" """6 " ""] """ "^ "#2 ###- #1 ##> ###3 #= ##8 ###? #9 ##, ###7 #+ #"A """< "B ""5 """@ "6 ""/ """4 "0 ""; """. ": "#8 ###' #7 ##J ###9 #I ##D ###K #E ##& ###C #% #"M """H "N ""; """L "< "") """: "* ""G """( "F "#D ###! #C ##V ###E #U ##P ###W #Q ## ###O # #"Y """T "Z ""G """X "H ""# """F "$ ""S """" "R "#P ### #O ##b ###Q #a ##\ ###c #] ## ###[ # #"e """` "f ""S """d "T "" """R " ""_ """ "^ "#\ ### #[ ##n ###] #m ##h ###o #i ## ###g # #"q """l "r ""_ """p "` "" """^ " ""k """ "j "#h ### #g ##z ###i #y ##t ###{ #u ## ###s # #"} """x "~ ""k """| "l "" """j " ""w """ "v "#t ### #s ## ###u # ## ### # #" """ " ""w """ "x "" """v " "# ### # ## ### # ## ### # #" " "  "  "  " "  "  " "  "  " "  "  "  "  "  "# ###y # ## ### # ## ### # ##z ### #{ #" """ " "" """ " ""} """ "| "" """~ " " !#! #!%#$%#%m #% # "#" #"&#!&#& #& # ### ##'#"'#' #' # $#$n #$(##(#( #(o #)*"* "*."-.". ". ")+"+ "+/"*/"/ "/ "),",q ",0"+0"0 "0p ")-"- "-1",1"1r "1 "23#3 #37#67#7a #7 #24#4 #48#38#8 #8 #25#5 #59#49#9 #9 #26#6b #6:#5:#: #:c #;<"< "<@"?@"@ "@ ";="= "=A"<A"A "A ";>">e ">B"=B"B "Bd ";?"? "?C">C"Cf "C "DE#E #EI#HI#IU #I #DF#F #FJ#EJ#J #J #DG#G #GK#FK#K #K #DH#HV #HL#GL#L #LW #MN"N "NR"QR"R "R "MO"O "OS"NS"S "S "MP"PY "PT"OT"T "TX "MQ"Q "QU"PU"UZ "U "VW#W #W[#Z[#[I #[ #VX#X #X\#W\#\ #\ #VY#Y #Y]#X]#] #] #VZ#ZJ #Z^#Y^#^ #^K #_`"` "`d"cd"d "d "_a"a "ae"`e"e "e "_b"bM "bf"af"f "fL "_c"c "cg"bg"gN "g "hi#i #im#lm#m= #m #hj#j #jn#in#n #n #hk#k #ko#jo#o #o #hl#l> #lp#kp#p #p? #qr"r "rv"uv"v "v "qs"s "sw"rw"w "w "qt"tA "tx"sx"x "x@ "qu"u "uy"ty"yB "y "z{#{ #{~#}~#~ #~ #z|#| #|#{# # #z}#} #}#|# # #" """ " "" """ " "" """ " "# ### # ## ### # ## ### # #" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ## ### # ## ### # #  "  "  "  "  "  "  "  " " " " "  "  " " " " "# ### # ## ### # ## ### # #" """ " "" """ " "" """ " "#( ###"### ##' # # " # $#$#$) #$# #!#! #!%# %#%! #% #"#" #"&#!&#& #& #'("(% "(,"+,", ",$ "')")+ ")-"(-"-& "-, "'*"* "*.").".* ". "'+"+ "+/"*/"/ "/ "01#14 #15#45#5 #53 #02#2. #26#16#65 #6/ #03#3( #37#27#7- #7) #04#4 #48#38#8' #8 #9:":1 ":>"=>">, ">0 "9;";7 ";?":?"?2 "?8 "9<"< "<@";@"@6 "@ "9="=+ "=A"<A"A "A* "BC#C@ #CG#FG#G #G? #BD#D: #DH#CH#HA #H; #BE#E4 #EI#DI#I9 #I5 #BF#F #FJ#EJ#J3 #J #KL"L= "LP"OP"P8 "P< "KM"MC "MQ"LQ"Q> "QD "KN"N "NR"MR"RB "R "KO"O7 "OS"NS"S "S6 "TU#UL #UY#XY#Y #YK #TV#VF #VZ#UZ#ZM #ZG #TW#W@ #W[#V[#[E #[A #TX#X #X\#W\#\? #\ #]^"^I "^b"ab"bD "bH "]_"_O "_c"^c"cJ "cP "]`"` "`d"_d"dN "d "]a"aC "ae"`e"e "eB "fg#gX #gk#jk#k #kW #fh#hR #hl#gl#lY #lS #fi#iL #im#hm#mQ #mM #fj#j #jn#in#nK #n #op"pU "pt"st"tP "tT "oq"q[ "qu"pu"uV "u\ "or"r "rv"qv"vZ "v "os"sO "sw"rw"w "wN "xy#yd #y}#|}#} #}c #xz#z^ #z~#y~#~e #~_ #x{#{X #{#z#] #Y #x|#| #|#{#W # #"a """\ "` ""g """b "h "" """f " ""[ """ "Z "# ### # ##d ### #e ## ###c # #"g """ "f "" """h " "" """ " "#p ### #o ##j ###q #k ## ###i # #"m """ "l ""s """n "t "" """r " "#j ###_ #i ##| ###k #{ ##v ###} #w ##^ ###u #] #" """z " ""m """~ "n ""a """l "b ""y """` "x "#v ###S #u ## ###w # ## ### # ##R ### #Q #" """ " ""y """ "z ""U """x "V "" """T " "# ###G # ## ### # ## ### # ##F ### #E #" """ " "" """ " ""I """ "J "" """H " "# ###; # ## ### # ## ### # ##: ### #9 #" """ " "" """ " ""= """ "> "" """< " "# ###/ # ## ### # ## ### # ##. ### #- #" """ " "" """ " ""1 """ "2 "" """0 " "# #### # ## ### # ## ### # ##" ### #! #  "  " " " " "  "  " " " " "  " % " " " "& "  "  " " "$ " "# ### # ## ### # ## ### # #" """ " "" """ " "" """ " " !#! #!$##$#$ #$ # "#" #"%#!%#% #% # ### ##&#"&#& #& #'("( "(+"*+"+ "+ "')") "),"(,", ", "'*"* "*-")-"- "- "./#/ #/3#23#3 #3 #.0#0 #04#/4#4 #4 #.1#1 #15#05#5 #5 #.2#2 #26#16#6 #6 #78"8 "8<";<"< "< "79"9 "9="8="= "= "7:": ":>"9>"> "> "7;"; ";?":?"? "? "@A#A #AE#DE#E #E #@B#B #BF#AF#F #F #@C#C #CG#BG#G #G #@D#D #DH#CH#H #H #IJ"J "JN"MN"N "N "IK"K "KO"JO"O "O "IL"L "LP"KP"P "P "IM"M "MQ"LQ"Q "Q "RS#S #SW#VW#W #W #RT#T #TX#SX#X #X #RU#U #UY#TY#Y #Y #RV#V #VZ#UZ#Z #Z #[\"\ "\`"_`"` "` "[]"] "]a"\a"a "a "[^"^ "^b"]b"b "b "[_"_ "_c"^c"c "c "de#e #ei#hi#i #i #df#f #fj#ej#j #j #dg#g #gk#fk#k #k #dh#h #hl#gl#l #l #mn"n "nr"qr"r "r "mo"o "os"ns"s "s "mp"p "pt"ot"t "t "mq"q "qu"pu"u "u "vw#w #w{#z{#{ #{ #vx#x #x|#w|#| #| #vy#y #y}#x}#} #} #vz#z #z~#y~#~ #~ #" """ " "" """ " "" """ " "" """ " "# ###{ # ## ### # ## ### # ##| ### #} #" """ " "" """ " "" """ "~ "" """ " "# ###o # ## ### # ##p ### #q #" """t " "" """ " ""s """ "r "# ### # ## ### # ## ### # #" """ " "" """ " "" """ " "# ### # ## ### # ## ### # ## ### # #" """ " "" """ " "" """ " "" """ " "# ### # ##$ ### ## ## ###% # ## ### # #"' """" "( "" """& " "" """ " ""! """ " "# ### # ##0 ### #/ ##* ###1 #+ ## ###) # #"3 """. "4 ""! """2 "" "" """ " ""- """ ", "#* ### #) ##< ###+ #; ##6 ###= #7 ## ###5 # #"? """: "@ ""- """> ". "" """, " ""9 """ "8 "#6 ### #5 ##H ###7 #G ##B ###I #C ## ###A # #"K " "  " F " L " " 9 "  " " J " : " "  " " "8 " " " E " " " "D "#B ### #A ##T ###C #S ##N ###U #O ## ###M # #"W """R "X ""E """V "F "" " " " D "  ""Q "!"!"! "!P ""###N ##&#%&#& #&M #"$#$ #$'##'#'O #' #"%#% #%(#$(#( #( #)*"* "*-",-"- "- ")+"+Q "+."*.". ".R "),", ",/"+/"/P "/ "01#1 #14#34#4 #4 #02#2 #25#15#5 #5 #03#3 #36#26#6 #6 #78"8 "8;":;"; "; "79"9 "9<"8<"< "< "7:": ":="9="= "= ">?#?~ #?C#BC#CS #C #>@#@ #@D#?D#D} #D #>A#A #AE#@E#E #E #>B#BT #BF#AF#F #FU #GH"H "HL"KL"L "L "GI"I "IM"HM"M "M "GJ"JW "JN"IN"N "NV "GK"K "KO"JO"OX "O "PQ#Qx #QU#TU#UG #Uy #PR#R #RV#QV#Vw #V #PS#S~ #SW#RW#W #W} #PT#TH #TX#SX#X #XI #YZ"Z "Z^"]^"^ "^ "Y["[{ "[_"Z_"_ "_z "Y\"\K "\`"[`"`| "`J "Y]"] "]a"\a"aL "a "bc#cr #cg#fg#g; #gs #bd#d #dh#ch#hq #h #be#ex #ei#di#i #iw #bf#f< #fj#ej#jy #j= #kl"l "lp"op"pz "p "km"mu "mq"lq"q "qt "kn"n? "nr"mr"rv "r> "ko"o{ "os"ns"s@ "s| "tu#ul #uy#xy#y/ #ym #tv#v #vz#uz#zk #z! #tw#wr #w{#v{#{ #{q #tx#x0 #x|#w|#|s #|1 #}~"~# "~""t "" "}"o ""~"$ "n "}"3 """p "2 "}"u """4 "v "#f #### #g ##& ###e #' ##l ###% #k ##$ ###m #% #") """n "( ""i """* "h ""' """j "& ""o """( "p "#` ### #a ##, ###_ #- ##f ###+ #e ## ###g # #"/ """h ". ""c """0 "b "" """d " ""i """ "j "#Z ### #[ ##` ###Y #_ ## ###a # #"c """ "d ""] """b "\ "" """^ " "                 """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """ "  "  "  "  "  "  " " " """% " """& " """+ " """, " """ " "" " 0 "! !"""#"# "$ $%"%&"& "' "'("()")' "* "*+"+,",( "- "-."./"/ "0 "01"12"2 "3 "34"45"5 "6 "67"78"8 "9 "9:":;";. "< "<="=>">/ "? "?@"@A"A) "B "BC"CD"D* "E "EF"FG"G "H "HI"IJ"J "K "KL"LM"M "N "NO"OP"P "Q "QR"RS"S "T "TU"UV"V "W "WX"XY"Y "Z "Z["[\"\ "] "]^"^_"_ "` "`a"ab"b "c "cd"de"e "f "fg"gh"h "i ij"jk"k "l lm"mn"n "o "op"pq"q' "r "rs"st"t( "u "uv"vw"w "x "xy"yz"z "{ "{|"|}"} "~ "~"" " """ " """ " """% " """& " """ " """ " """! " """" " """ " """ " """ " """ " """) " """* " """# " """$ "                 """ " """ " """ " """ " """ " """ " """ " """ " """ " """ " """! " """" " """ " """ " """ " """ " """ " """ " """ " """ " """ " """0 " " "  "  " "  "  "  " "  "  "  " " " "  "  " " " # "  "  "  " $ "  "  "  " . "  "  "  " / " "  "  " " "  "  "  "  "  "  "  "  " ! "! " ""  "#  "# $ "$ % "%  "&  "& ' "' ( "(  ")  ") * "* + "+ ",  ", - "- . ". "/  "/ 0 "0 1 "1 "2  "2 3 "3 4 "4 "5 "5 6 "6 7 "7 + "8 "8 9 "9 : ": , "; "; < "< = "=  "> "> ? "? @ "@  "A  "A B "B C "C  "D  "D E "E F "F  "G  "G H "H I "I "J  "J K "K L "L "M  "M N "N O "O "P  "P Q "Q R "R "S "S T "T U "U  "V "V W "W X "X  "Y "Y Z "Z [ "[  "\ "\ ] "] ^ "^  "_  "_ ` "` a "a  "b  "b c "c d "d - "e "e f "f g "g 1 "h  "h i "i j "j 2 "k "k l "l m "m  "n  "n o "o p "p  "q  "q r "r s "s  "t  "t u "u v "v  "w  "w x "x y "y 3 "z  "z { "{ | "| 4 "}  "} ~ "~  " 1 "  " " " 2 "  " " "  "  " " "  "  " " " 1 "  " " " 2 "  " " "  "  " " "  "  " " "  "  " " "  "  " " " 5 "  " " " 6 "  " " " 3 "  " " " 4 "  " " "  "  " " "  "  " " " 3 " " " " 4 "  " " " ! " " " " " " ! " " " # " " " " " $ " # " " " 7 " $ " " " 8 " % " " " 5 " & " " " 6 " % " " " ' " & " " " ( " ' " " " ) " ( " " " * " ) " " " 7 " * " " " 8 " + " " " 5 " , " " " 6 " + " " " - " , " " " - " . " " " 7 " / " " " 8 " . " " " 0 " / " " " 0 " - " " " 9 " " " " 9 " " " " 9 " " " " 9 " + "  "  " 9 " , "  "  " 9 " : #  ! ! < # ; " = " < #  #  # > # = "  "  " ? " > #  #  # @ # ? "  "  " A " @ #  #  # B # A "  "  " C " B # # ! #! D #" C "" # "# $ "$ E "% D #% & #& ' #' F #( E "( ) ") * "* G "+ F #+ , #, - #- H #. G ". / "/ 0 "0 I "1 H #1 2 #2 3 #3 J #4 I "4 5 "5 6 "6 K "7 F #7 8 #8 9 #9 L #: G ": ; "; < "< M "= J #= > #> ? #? L #@ K "@ A "A B "B M "C D #C D #D E #E N #F E "F G "G H "H O "I L #I J #J K #K N #L M "L M "M N "N O "O B #O P #P Q #Q P #R C "R S "S T "T Q "U N #U V #V W #W P #X O "X Y "Y Z "Z Q "[ @ #[ \ #\ ] #] R #^ A "^ _ "_ ` "` S "a P #a b #b c #c R #d Q "d e "e f "f S "g > #g h #h i #i T #j ? "j k "k l "l U "m R #m n #n o #o T #p S "p q "q r "r U "s < #s t #t u #u V #v = "v w "w x "x W "y T #y z #z { #{ V #| U "| } "} ~ "~ W " V # # # X # W " " " Y " X # # # Z # Y " " " [ " T # # # Z # U " " " [ " Z # # # \ # [ " " " ] " R # # # \ # S " " " ] " \ # # # ^ # ] " " " _ " P # # # ^ # Q " " " _ " ^ # # # ` # _ " " " a " N # # # ` # O " " " a " ` # # # b # a " " " c " L # # # b # M " " " c " b # # # d # c " " " e " J # # # d # K " " " e " d # # # f # e " " " g " b # # # h # c " " " i " f # # # h # g " " " i " ` # # # j # a " " " k " h # # # j # i " " " k " ^ # # # l # _ " " " m " j # # # l # k " " " m " \ # # # n # ] " " " o " l # # # n # m "  "  " o " Z #  #  # p # [ "  "  " q " n # # # p # o " "  " q " X #  #  # r # Y "  "  " s " p #  #  # r # q "  "  " s " r #  #  # t # s "  " " u "! t #! " #" # ## v #$ u "$ % "% & "& w "' p #' ( #( ) #) v #* q "* + "+ , ", w "- v #- . #. / #/ x #0 w "0 1 "1 2 "2 y "3 n #3 4 #4 5 #5 x #6 o "6 7 "7 8 "8 y "9 x #9 : #: ; #; z #< y "< = "= > "> { "? l #? @ #@ A #A z #B m "B C "C D "D { "E z #E F #F G #G | #H { "H I "I J "J } "K j #K L #L M #M | #N k "N O "O P "P } "Q | #Q R #R S #S ~ #T } "T U "U V "V  "W h #W X #X Y #Y ~ #Z i "Z [ "[ \ "\  "] ~ #] ^ #^ _ #_ #`  "` a "a b "b "c f #c d #d e #e #f g "f g "g h "h "i #i j #j k #k #l "l m "m n "n "o #o p !p q !q #r "r s s t t "u ~ #u v #v w #w #x  "x y "y z "z "{ #{ | #| } #} #~ "~  " " " | # # # # } " " " " # # # # " " " " z # # # # { " " " " # # # # " " " " x # # # # y " " " " # # # # " " " " v # # # # w " " " " # # # # " " " " t # # # # u " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # # # # " " " " # #  # # "  "  " " #  #  # # " " " " # # # # "  "  " " #  #  # # "  "  " " #  #  # # "  "  " " #  #  # # " ! "! " "" "# ## $ #$ % #% #& "& ' "' ( "( ") #) * #* + #+ #, ", - "- . ". "/ #/ 0 #0 1 #1 #2 "2 3 "3 4 "4 "5 #5 6 #6 7 #7 #8 "8 9 "9 : ": "; #; < #< = #= #> "> ? "? @ "@ "A #A B #B C #C #D "D E "E F "F "G #G H #H I #I #J "J K "K L "L "M #M N #N O #O #P "P Q "Q R "R "S #S T #T U #U #V "V W "W X "X "Y H #Y Z !Z [ ![ #\ I "\ ] ] ^ ^ "_ H #_ ` #` a #a #b I "b c "c d "d "e F #e f #f g #g #h G "h i "i j "j "k D #k l #l m #m #n E "n o "o p "p "q B #q r #r s #s #t C "t u "u v "v "w @ #w x #x y #y #z A "z { "{ | "| "} > #} ~ #~  # # ? " " " " < # # # # = " " " " : # ! ! # ; " " # ! ! # " " # ! ! # " " : # ! ! # ; " " : # ! ! # ; " " # ! ! # " " : # ! ! t # ; " u " : # ! ! r # ; " s " f # ! ! # g " " d # ! ! # e " " : # ! ! X # ; " Y " : # ! ! V # ; " W " J # ! ! # K " "DATA,0':sDATA :s6                       k l  k l m m    o n n  !!!! """" ##p o ## p $()%%)()) $%*&&* %** $&+''+& ++  $',((,',, -12..2 122 -.3//3. 33  -/4004/44 -05115055 6:;77;:;; 67<88<} ~ 7<< } 68=99=g f 8~  == 1 g 69>::>9f e >>e ?CD@@D Ci j DDj 2 ?@EAAE@ EE  ?AFBBFAFF ?BGCCGh i BGG h HLMIIMLMM HINJJNINN HJOKKOJOO HKPLLPKPP QUVRRVUVV QRWSSWRWW QSXTTXSXX QTYUUYTYY Z^_[[_^__ Z[`\\`[`` Z\a]]a \aa Z]b^^b] bb  cghddhg hh  cdieeidii cejffjejj cfkggk fkk lpqmmqpqq lmrnnrq r mrr q lnsoosnr s sss  lotpptott uyzvvzv u yzz v uv{ww{vu t {{t  uw|xx|w|| ux}yy}x}} ~ ~w x  w ~ x y y 3 ~  | { 4 | { z z     !" !  "##        &%    &%$$  '(    ' ())'  %     & ,+ ( ,  +**     % 5  +  6  &   , "!! 34 3/.455 /#".-- #87122 8766 $% $01%&& 0-.('' -?@.// ? @AA) )( ' )DC * D21CBB 2*+100 * +,,( 433    0 ;: . ;54:99 5 =>>/  0 67 6<=788 <9:@?? 9 :;;.   7 A@  ) A       8   >=   / >  BC=<  < B     CD  D* FEE WX WSRXYY SGFRQQ G\[UVV \[ZZ HI HTUIJJ T $%!!%QR$LK%%K Q !&""&cd!RS&&S c "'##' "de''e #($$(ML# ((  M)-.**.hg- ..  h)*/++/VU*gf//f V)+0,,0NO+UT00T N),1--1 ,OP11P 2673376XW77W 238448m l 388 m 249559_^4l k 99k _25:66:YX5^]::] Y;?@<<@n o ?ab@@b n ;<A==A<o p AAp  ;=B>>BZ[=BB Z;>C??C`a>[\CC\ `DHIEEI]^HdcIIc ]DEJFFJe f E^_JJ_ e DFKGGK Ff g KKg 1 DGLHHLedG LL  eMQRNNRj i Q RR 2 j MNSOOSbaNi h SSh  bMOTPPTfgOa`TT` fMPUQQU PghUUh VZ[WW[EFZji[[i EVW\XX\{|WFG\\G {VX]YY]wvX|}]]} wVY^ZZ^kjYvu^^u k_cd``dcyzddz _`eaaeJI`~ee~ J_afbbflmaIHffH l_bgccgxybmnggn xhlmiimuvlpommo uhinjjnivwnnw hjokko joo% hkpllpqpk pp ' qquvrrvu vv & qrwsswzyrww zqsxttxrssyxxxx rqtyuuy tstyyt( z~{{KL~|{{ Kz{|| {LMM z|}}|   z}~~}|} }  PO   P~ONN ~       5   %    6      & ij ijkk    nm nmll     #   !   $    " op o pqq'   )   * ts  ( tsrr    )    7   #    8   *   $           s r  s r q q  u v v      t u    t         !                "    !! !! "" "" ##y x  ## 3 y $  $x w $$w  %)*&&* ){ | **| 4 %&+''+& ++ %',((,',, %(-))-z { (-- z .23//3  233  ./4004/  44 .05115055 .16226166 7;<88<;<< 78=99=  8==  79>::>9  >> 7:?;;?:?? @DEAAEDEE @AFBBFAFF @BGCCG BGG @CHDDHC HH ! IMNJJNM NN IJOKKOJOO IKPLLPKPP ILQMMQ LQQ" RVWSSW  VWW  RSXTTX S  XX  RTYUUYT YY  RUZVVZUZZ [_`\\` _`` [\a]]a  \ aa   []b^^b]  bb [^c__c^cc dhieeihii dejffj ejj dfkggk f kk 3 dglhhlg ll  mqrnnr q rr 4 mnsoosn ss  motpptott mpuqqu puu vz{ww{z{{ vw|xx|  w||  vx}yy} x  }}   vy~zz~y ~~                           .   0     /             0     !    #           $   "                  #    7     .     8     $             / _ `     _ / 0 ` a a  / + * 0 1 1 +   * ) )   4 3 - . . 4 a ` 3 2 2  a  ! ` _ _  , - ! " "  , ) * $ # #  ) ; < * + + ;  < = =  % $    % @ ?    @ . - ? > > . & ' - , ,  &  ' ( (  b c 0 / /  b  c d d - 7 6   + 7 1 0 6 5 5 1  9 : : , d c   - d 2 3 c b b  2 8 9 3 4 4 8 5 6 < ; ; 5  6 7 7 +    5 = <    =    6 : 9   , : > ? 9 8 8 >  ? @ @       B A  A     M N      M     I H N O  O I    C B H G G  C R Q K L L R " ! Q P P  " A B !   A J K B C C  J G H E D D  G Y Z H I I Y  Z [ [    F E     F !%&""&^ ] % &&  ^ !"'##'L K "] \ ''\ L !#($$(D E #K J ((J  D !$)%%) $E F ))F  *./++/# $ .N M //M  # *+0,,0 +$ % 00%  *,1--1U T , 11  U *-2..2O N -T S 22S O 378448 7W X 88X  349559( ' 4 99  ( 35:66:P Q 5' & ::&  P 36;77;V W 6Q R ;;R V <@A==AS T @Z Y AAY S <=B>>B =T U BBU  <>C??C ~ > CC 1  <?D@@D[ Z ?~ } DD}  [ EIJFFJ I JJ 2 EFKGGKX W F KK  X EGLHHL\ ] GW V LLV \ EHMIIM H] ^ MM^  NQROOR Q  RR + NOSPPS O SS - NPTQQT  P TT 9  UXYVVY X  YY 9 UVZWWZ V ZZ - UW[XX[  W [[ ,  \_`]]`_ `` \]a^^a  ]aa+  \^b__b ^  bb 9 cfgddg  f gg 9  cdheehd  hh , ceiffi eii jmnkknm nn jkollo koo jlpmmp l pp 9 qturru t uu 9 qrvssvr vv qswttw sww x{|yy| {Z [ ||[ xy}zz}3 2 y }} J 3 xz~{{~Y Z z2 1 ~~1 H Y 4 5 ] \ \ I 4  5 6 6 K ^ ]   ^ 1 2 , - - H 1 = > 2 3 3 J = 9 8 > ? ? L 9 + , 8 7 7 F + B A ; < < M B 6 5 A @ @ K 6 0 / 5 4 4 I 0 : ; / . . G : 7 8 & ' ' F 7 I J 8 9 9 L I E D J K K N E % & D C C D % N M G H H O N < ; M L L M < * ) ; : : G * F G ) ( ( E F C D  ! ! D C U V D E E N U Q P V W W P Q  P O O B  Z Y S T T Q Z H G Y X X O H $ # G F F E $ R S # " " C R O P    B O a b P Q Q P a ] \ b c c R ]   \ [ [ @  f e _ ` ` S f T S e d d Q T   S R R C  ^ _    A ^ [ \    @ [ m n \ ] ] R m i h n o o T i   h g g >  r q k l l U r ` _ q p p S `   _ ^ ^ A  j k    ? j g h    > g y z h i i T y u t z { { V u   t s s < ~ } w x x W ~ l k } | | U l   k j j ?  v w    = v s t   < s  t u u V     :     ; x w   W x  w v v =    V     X    :         ;         Y           W  z y y T    Z    X { z    V {    Y    [ | }   U |  } ~ ~ W  $%!!% $n m %%m R  !&""& ! && \  "'##' " '' Z  #($$(o n # (( T o )-.**. - .. [ )*/++/ * // ] )+0,,0p q + 00 S p ),1--1 ,q r 11r U 267337 6b a 77a P 238448 3 88 ^ 249559 4 99 \ 25:66:c b 5 :: R c ;?@<<@ ? @@ ] ;<A==A < AA _ ;=B>>Bd e = BB Q d ;>C??C >e f CCf S DHIEEI HV U IIU N DEJFFJ E JJ ` DFKGGK F KK ^ DGLHHLW V G LL P W MQRNNR Q RR _ MNSOOS N SS a MOTPPTX Y O TT O X MPUQQU PY Z UUZ Q VZ[WW[ ZJ I [[I L VW\XX\ W \\ b VX]YY] X ]] ` VY^ZZ^K J Y ^^ N K _cd``d c dd a _`eaae ` ee c _afbbfL M a ff M L _bgccg bM N ggN O hlmiim l> = mm= J hinjjn i nn d hjokko j oo b hkpllp? > k pp L ? quvrrv u vv c qrwssw r ww e qsxttx@ A s xx K @ qtyuuy tA B yyB M z}~{{~ } ~~ z{|| {  d z|}} |  J    K    e          f    d    e    g       d    f    h    b    i    g    e    c    b    h    j    `    k    i    c    a    `    j    l    ^    m    k    a    _    ^    l    n    \     o     m    _    ]    \    n     p      Z     q     o    ]     [      Z       p       r      X      s       q      [     Y      X      r    :            ;          s           Y     r      t    :    ;     u     s "##' ( "  ## p ' $  $# " ( ) $$) v #  %!!%   " ! %%! t  !&""&  !  && r  '+,((,$ % + ,, u $ '(-))-, + (% & --& w , ').**.  )+ * ..* q  '*/++/  *  // s  0451153 4 4 55 n 3 016226/ . 14 5 665 x / 027337) ( 2. - 77- v ) 038448 3( ' 88' p 9=>::>0 1 =+ , >>, w 0 9:?;;?8 7 :1 2 ??2 y 8 9;@<<@ ;7 6 @@6 o 9<A==A* + <  AA q * BFGCCG? @ F GG l ? BCHDDH; : C@ A HHA z ; BDIEEI5 4 D: 9 II9 x 5 BEJFFJ E4 3 JJ3 n KOPLLP< = O7 8 PP8 y < KLQMMQD C L= > QQ> { D KMRNNR  MC B RRB m KNSOOS6 7 N  SS o 6 TXYUUYK L X YY j K TUZVVZG F UL M ZZM | G TV[WW[A @ VF E [[E z A TW\XX\ W@ ? \\? l ]ab^^bH I aC D bbD { H ]^c__cP O ^I J ccJ } P ]_d``d _O N ddN k ]`eaaeB C ` ee m B fjkggkW X j kk h W fglhhlS R gX Y llY ~ S fhmiimM L hR Q mmQ | M finjjn iL K nnK j ostpptT U sO P ttP } T opuqqu\ [ pU V uuV  \ oqvrrv q[ Z vvZ i orwsswN O r ww k N x|}yy}c d | }} f c xy~zz~_ ^ yd e ~~e _ xz{{Y X z^ ] ] ~ Y x{|| {X W W h ` a [ \ \  ` h g a b b h  g f f g Z [   i Z    e d   e  d c c f f g   g f  g h h    o p   o k j p q q k  j i i l m   l t s m n n t  s r r i j ^ _ _ i { | j k k { w v | } } w ] ^ v u u ~ ]   y z z n m  ~ ~ n b a m l l b x y a ` `  x u v R S S ~ u  v w w    Q R   | Q    z y   z V U y x x  V  U T T }  F G G |       E F   z E       J I   } J  I H H {  : ; ; z       9 :   x 9       > =   { >  = < < y  . / / x       - .   v -       2 1   y 2  1 0 0 w  " # # v       ! "   t !                     & %    w &       % $ $ u    t       :    ;       u  #$!!$ # $$  !%""% ! %%  "&##& " && : '*+((+ * ++ ; '(,)), ( ,, ')-**- ) -- .23//3 2 33 ./4004 / 44 .05115 0 55 .16226 1 66 7;<88< ; << 78=99= 8 == 79>::> 9 >> 7:?;;? : ?? @DEAAE D EE @AFBBF A FF @BGCCG B GG @CHDDH C HH IMNJJN M NN IJOKKO J OO IKPLLP K PP ILQMMQ L QQ RVWSSW V WW RSXTTX S XX RTYUUY T YY RUZVVZ U ZZ [_`\\` _ `` [\a]]a \ aa []b^^b ] bb [^c__c ^ cc dhieei h ii dejffj e jj dfkggk f kk dglhhl g ll mqrnnr q rr mnsoos n ss motppt o tt mpuqqu p uu vz{ww{ z {{ vw|xx| w || vx}yy} x }} vy~zz~ y ~~               | { {          } |   }          ~     ~     p o o      q p    q  s t t     r s   r                                                                      # $    #   $ % %      ( ' ! " " (   ' & &       !        / 0    / + * 0 1 1 +  * ) ) 4 3 - . . 4 " ! 3 2 2 "  !  , -   , ) *   ) ; < * + + ; 7 6 < = = 7  6 5 5 @ ? 9 : : @ . - ? > > .  - , , 8 9   8 5 6   5 G H 6 7 7 G C B H I I C  B A A    L K  E F  F L     : 9 K J  J :      9 8 8    D E    D A B   A S T B C C S O N T U U O  N M M X W Q R R X F E W V V F    E D  D !!P Q  !! P "%&##&M N % && M "#'$$' #N O ''O "$(%%( $ (( : ),-**- , -- ; )*.++.R Q * .. R )+/,,/ +Q P //P 034114 3 44 015225  1 55 < 026336 2  66 : 7:;88; : ;; ; 78<99< 8 << = 79=::= 9 == >BC??C ~ BT S CCS  >?D@@D  ?~ } DD} >  >@EAAE @ EE < >AFBBFU T A FF U GKLHHL  K LL =  GHMIIM H  MM ? GINJJNV W I NN V GJOKKO JW X OOX PTUQQUy x TH G UUG y PQVRRV  Qx w VVw @  PRWSSW} ~ R  WW > } PSXTTXI H S~  XX I Y]^ZZ^  ] ^^ ?  YZ_[[_z { Z  __ A z Y[`\\`J K [{ | ``| J Y\a]]a \K L aaL bfgccgs r f< ; gg; s bchddh  cr q hhq B  bdieeiw x d  ii @ w bejffj= < ex y jjy = kopllp  o{ z ppz A  klqmmqt u l  qq C t kmrnnr> ? mu v rrv > knsoos| { n? @ ss@ | txyuuym l x0 / yy/ m tuzvvz! ul k zzk D ! tv{ww{q r v  {{ B q tw|xx|1 0 wr s ||s 1 }~~" # u t t C " }~n o ~# $ $ E n }2 3 o p p 2 }v u 3 4 4 v g f $ # # g ' & f e e F ' k l & % % D k % $ l m m % ( ) o n n E ( h i ) * * G h & ' i j j & p o ' ( ( p a `    a - , ` _ _ H - e f , + + F e   f g g  . / i h h G . b c / 0 0 I b   c d d  j i    j [ Z   [ _ ` Z Y Y H _  ` a a d c   d \ ] c b b I \  ] ^ ^ ME4p818MECube.001Htxڳ(l`(7x3n @5???DATAHt米DATA,(7'(lDATA(l:%￀5=?@vܿ5=e @br¿5=@?҈5=@Uc$5=@Ҿ5=@vh#W5=e @Zr05=?5=?~;5=?5=4pZZ5=4Z;?I$I3;?$$I;;?? ;??iY ;?|?ɬ#W;?e @ꤵfҾ;?@Ӗ<V$;?@,D؈;?@#,D¿;?@y,<ܿ;?e @NEꤵ%ᅡ;?|?7Sw;?|?w;?e @w;?@w;?@w;??w;?DATA,x3n'`DATA|`75######## # # # # # ########## # ##########!!!!!!!!# #! #!!!!# # #DATA,@'xڳDATAxڳ6       MEp814(A1MECube.0020n0@1;1=191`<1 >1  ???DATA0nDATA,91';1DATA ;1: 6Q?㚿?2uS"@t ?)2ɞc;!%2ɞq<]'皿?2u(2Sn?? v!Ao7>5 Ӿ.>9'JԘ Ӿ.>۪7^(ֈ? v,S%A&@$?JQl>?$?J忁|;?n>J=`9'k`܃>J=q5TDATA,`<1'=1DATA=17"#"#"#"#"" " " " " " " " " " "DATA,>1'0@1DATA0@16          ME(A148Yp81MECube.003в@XC1UpB1pT V  ???DATAвDATA,pB1'C1DATA C1: ne>BkcAe=9(>jʄdj<(>DFc<e>BkcyCIw%o>ʩf 6ܫMS}@=.絨LҸS=&S}@=4]Sv==o>IX|7$=_ȉ2׼+=_ȉ5WAw_=6w&>w&~4?w &p?w &i?w&~?^;&~?H: &i?IԵ: &p?_:&~4?H5:&>Hڵ9&p>DATA,&'DATA7"""" " "  """ " " " " """"" """""" "       DATA,'lDATAl6      MEo4?dcP0MECube.006%>dPrp;dp:d 8=d" ???DATA%XDATA,p'PrDATA@Pr:w&w&?w&@w&@w&e @w&|?V$&@fҾ&@#W&e @&|?;&?3&w&p>w&>w&~4?w &p?w &i?w&~?^;&~?H: &i?IԵ: &p?_:&~4?H5:&>Hڵ9&p>DATA,:d'p;dDATAp;d7"""" " "  """ " " " " """"" """""" "       DATA,8=d'>dDATA>d6      ME?d4edoMECube.007@\d8BdOd@dhNd H[ds???DATA@DATA,@d'8BdDATA 8Bd:D[|Ƽ#?IIID[ }Ƽ9?II`׽ }Ƽ9?I4Nؽ|Ƽ#?'II[|Ƽp?III[|Ƽڭ?IIcؽ|Ƽڭ?I4dؽ|Ƽp?'IIR\|Ƽ}?IIIR\|Ƽď?IIٽ|Ƽď?I4ٽ|Ƽ}?'II\|ƼRA?III\|Ƽ_c?II8ٽ|Ƽ_c?I43ڽ|ƼRA?'II`\|Ƽ ?III`\|ƼW5'?IIGڽ|ƼX5'?I4<ڽ|Ƽ ?'II\h|Ƽ>III\|Ƽ >IIpڽ|Ƽ!>I4v۽h|Ƽ>'IIm \L|ƼԗT=IIIm \h|Ƽ&;>II ۽h|Ƽ&;>I4tܽL|ƼԗT='IIG\ }Ƽ?IIIG\|Ƽ°?II&|Ƽ°?KBxy߽ }Ƽ?Th7T_|ƼT ?IIIT_|ƼyO@IIc|ƼyO@?V|ƼT ?K]')Wd|ƼI @IIIWd|Ƽ0@II6g|Ƽ0@hܥ;~ľ|ƼI @V]liWdI @A4hA4Wd0@A4h6g0@N\XľI @z T_T ?A4hA4T_yO@A4hcyO@8_6VT ?sG\?A4hA4G\°?A4h&°?tcxy߽?o$m \ԗT=A4hA4m \m[&;>A4h ۽m[&;>ˋhtܽԗT=xhW4\m[>A4hA4\m۳ >A4hpڽm۳!>ˋhv۽m[>xhW4`\m۳ ?A4hA4`\H$W5'?A4hGڽI$X5'?ˋh<ڽm۳ ?xhW4\H$RA?A4hA4\m[_c?A4h8ٽm[_c?ˋh3ڽI$RA?xhW4R\m[}?A4hA4R\$ď?A4hٽ$ď?ˋhٽm[}?xhW4[$p?A4hA4[Iڭ?A4hcؽIڭ?ˋhdؽ$p?xhW4D[I#?A4hA4D[9?A4h`׽9?ˋhNؽI#?xhW4wm[p>{rwm۳>{rwH$~4?{rwm[p?{rw$i?{rwI~?{r^;I~?=9{rH:$i?=9{rJԵ:m[p?=9{r_:I$~4?=9{rJ5:m۳>=9{rJڵ9m[p>=9{rHڵ9&p>H5:&>_:&~4?IԵ: &p?H: &i?^;&~?w&~?w &i?w &p?w&~4?w&>w&p>w˂hw?{rw@IIw@jwe @{rw|?{rV$@#9pfҾ@"'k<#We @+r$|?z4r;?i8r.3=4{h3&pZn;&?~)&|?@v0#W&e @bQfҾ&@?oV$&@U^~w&|?w&e @w&@w&@Zw&?w&DATA,hNd'OdDATAX Od7##L"#M"O"#N"##H"#I"K"#J" # #D" # E" G" # F" # # @" # A"C"#B"##<"#="?"#>"##8"#9";"#:"##4"#5"7"#6"##0"#1"3"#2" ## !# ,"!"#!-"#/""##"."$'#$%#$("%&#%)"'+"&'#&*"(+"()"(l )*")k +p *+"*o ,/",-",m -."-l /q ./".p 03"01"0i 12"1m 3r 23"2q 47"45"4h 56"5P 7s 67"6[ 8;"89"8P 9:"9Q ;[ :;":Z <?"<="<Q =>"=R ?Z >?">Y @C"@A"@R AB"AS CY BC"BX DG"DE"DS EF"ET GX FG"FW HK"HI"HT IJ"IU KW JK"JV LO"LM"LU MN"Mi OV NO"Nr UV TW SX RY QZ P[ [\ Z] Y^ X_ W` Va Ub Tc Sd Re Qf Pg Ph"PQ"QR"RS"ST"TU"Ui"Vr"VW"WX"XY"YZ"Z["[s"\t"\]"]^"^_"_`"`a"au"b~"bc"cd"de"ef"fg"g"jn"ko lp mq ir hs"jk"kl"lm"im"no"op"pq"qr"st"ru"uv"qv"vw"pw"wx"ox"xy"ny"h"t"z~"z{"{|"y}"|}"k| j}"l{ mz i~ DATA,H[d'\dDATA\d6sOLLMMNNOKHHIIJJK  GD DE EF FG  C@ @A AB BC?<<==>>?;8899::;7445566730011223# !"/, #,-! -."!./#"'$%&+($'()%$)*&%*+'&pl(+lk)(ko*)op+*qm,/ml-,lp.-pq/.ri03im10mq21qr32sh47hP54P[65[s76[P8;PQ98QZ:9Z[;:ZQ<?QR=<RY>=YZ?>YR@CRSA@SXBAXYCBXSDGSTEDTWFEWXGFWTHKTUIHUVJIVWKJVULOUiMLirNMrVON[\tsZ]\[Y^]ZX_^YW`_XVa`WruaVUb~iTcbUSdcTRedSQfeRPgfQhgPokjnqvurpwvqoxwpnyxohstjk|}kl{|lmz{i~zmj}ynMEed4?dMECube.0081,oo!ogdhhd ids???DATA1DATA,gd'oDATA o:D[|Ƽ#?IIID[ }Ƽ9?II`׽ }Ƽ9?I4Nؽ|Ƽ#?'II[|Ƽp?III[|Ƽڭ?IIcؽ|Ƽڭ?I4dؽ|Ƽp?'IIR\|Ƽ}?IIIR\|Ƽď?IIٽ|Ƽď?I4ٽ|Ƽ}?'II\|ƼRA?III\|Ƽ_c?II8ٽ|Ƽ_c?I43ڽ|ƼRA?'II`\|Ƽ ?III`\|ƼW5'?IIGڽ|ƼX5'?I4<ڽ|Ƽ ?'II\h|Ƽ>III\|Ƽ >IIpڽ|Ƽ!>I4v۽h|Ƽ>'IIm \L|ƼԗT=IIIm \h|Ƽ&;>II ۽h|Ƽ&;>I4tܽL|ƼԗT='IIG\ }Ƽ?IIIG\|Ƽ°?II&|Ƽ°?KBxy߽ }Ƽ?Th7T_|ƼT ?IIIT_|ƼyO@IIc|ƼyO@?V|ƼT ?K]')Wd|ƼI @IIIWd|Ƽ0@II6g|Ƽ0@hܥ;~ľ|ƼI @V]liWdI @A4hA4Wd0@A4h6g0@N\XľI @z T_T ?A4hA4T_yO@A4hcyO@8_6VT ?sG\?A4hA4G\°?A4h&°?tcxy߽?o$m \ԗT=A4hA4m \m[&;>A4h ۽m[&;>ˋhtܽԗT=xhW4\m[>A4hA4\m۳ >A4hpڽm۳!>ˋhv۽m[>xhW4`\m۳ ?A4hA4`\H$W5'?A4hGڽI$X5'?ˋh<ڽm۳ ?xhW4\H$RA?A4hA4\m[_c?A4h8ٽm[_c?ˋh3ڽI$RA?xhW4R\m[}?A4hA4R\$ď?A4hٽ$ď?ˋhٽm[}?xhW4[$p?A4hA4[Iڭ?A4hcؽIڭ?ˋhdؽ$p?xhW4D[I#?A4hA4D[9?A4h`׽9?ˋhNؽI#?xhW4wm[p>{rwm۳>{rwH$~4?{rwm[p?{rw$i?{rwI~?{r^;I~?=9{rH:$i?=9{rJԵ:m[p?=9{r_:I$~4?=9{rJ5:m۳>=9{rJڵ9m[p>=9{rHڵ9&p>H5:&>_:&~4?IԵ: &p?H: &i?^;&~?w&~?w &i?w &p?w&~4?w&>w&p>w˂hw?{rw@IIw@jwe @{rw|?{rV$@#9pfҾ@"'k<#We @+r$|?z4r;?i8r.3=4{h3&pZn;&?~)&|?@v0#W&e @bQfҾ&@?oV$&@U^~w&|?w&e @w&@w&@Zw&?w&DATA,hhd'!oDATAX !o7##L"#M"O"#N"##H"#I"K"#J" # #D" # E" G" # F" # # @" # A"C"#B"##<"#="?"#>"##8"#9";"#:"##4"#5"7"#6"##0"#1"3"#2" ## !# ,"!"#!-"#/""##"."$'#$%#$("%&#%)"'+"&'#&*"(+"()"(l )*")k +p *+"*o ,/",-",m -."-l /q ./".p 03"01"0i 12"1m 3r 23"2q 47"45"4h 56"5P 7s 67"6[ 8;"89"8P 9:"9Q ;[ :;":Z <?"<="<Q =>"=R ?Z >?">Y @C"@A"@R AB"AS CY BC"BX DG"DE"DS EF"ET GX FG"FW HK"HI"HT IJ"IU KW JK"JV LO"LM"LU MN"Mi OV NO"Nr UV TW SX RY QZ P[ [\ Z] Y^ X_ W` Va Ub Tc Sd Re Qf Pg Ph"PQ"QR"RS"ST"TU"Ui"Vr"VW"WX"XY"YZ"Z["[s"\t"\]"]^"^_"_`"`a"au"b~"bc"cd"de"ef"fg"g"jn"ko lp mq ir hs"jk"kl"lm"im"no"op"pq"qr"st"ru"uv"qv"vw"pw"wx"ox"xy"ny"h"t"z~"z{"{|"y}"|}"k| j}"l{ mz i~ DATA,id',oDATA,o6sOLLMMNNOKHHIIJJK  GD DE EF FG  C@ @A AB BC?<<==>>?;8899::;7445566730011223# !"/, #,-! -."!./#"'$%&+($'()%$)*&%*+'&pl(+lk)(ko*)op+*qm,/ml-,lp.-pq/.ri03im10mq21qr32sh47hP54P[65[s76[P8;PQ98QZ:9Z[;:ZQ<?QR=<RY>=YZ?>YR@CRSA@SXBAXYCBXSDGSTEDTWFEWXGFWTHKTUIHUVJIVWKJVULOUiMLirNMrVON[\tsZ]\[Y^]ZX_^YW`_XVa`WruaVUb~iTcbUSdcTRedSQfeRPgfQhgPokjnqvurpwvqoxwpnyxohstjk|}kl{|lmz{i~zmj}ynDNA1̩8pSDNANAMEE *next*prev*data*first*lastxyzwxminxmaxyminymax*pointergroupvalval2name[32]typesubtypeflagsaveddatalentotallen*newid*libname[24]usicon_id*propertiesid*idblock*filedataname[240]filename[240]totpad*parentw[2]h[2]changed[2]pad0pad1*rect[2]*obblocktypeadrcodename[128]*bp*beztmaxrcttotrctvartypetotvertipoextraprtbitmaskslide_minslide_maxcurval*drivercurvecurshowkeymuteipoposrelativetotelempad2*weightsvgroup[32]sliderminslidermax*refkeyelemstr[32]elemsizeblock*ipo*fromtotkeyslurph**scripts*flagactscripttotscript*line*formatblenlinenostartendflagscolor[4]pad[4]*namenlineslines*curl*sellcurcselcmarkers*undo_bufundo_posundo_len*compiledmtimesizeseekpassepartalphaangleclipstaclipendlensortho_scaledrawsizeshiftxshiftyYF_dofdistYF_apertureYF_bkhtypeYF_bkhbiasYF_bkhrotscriptlink*dof_obframenrframesoffsetsfrafie_imacyclokmulti_indexlayerpassmenunribufs*gputexture*anim*rrsourcelastframetpageflagtotbindxrepyreptwstatwendbindcode*repbind*packedfile*previewlastupdatelastusedanimspeedgen_xgen_ygen_typeaspxaspy*vnodetexcomaptomaptonegblendtype*object*texuvname[32]projxprojyprojzmappingofs[3]size[3]texflagcolormodelpmaptopmaptonegnormapspacepad[3]rgbkdef_varcolfacnorfacvarfacdispfacwarpfacname[160]*handle*pname*stnamesstypesvars*varstr*result*cfradata[32](*doit)()(*instance_init)()(*callback)()versionaipotype*ima*cube[6]imat[4][4]obimat[3][3]stypeviewscalenotlaycuberesdepthrecalclastsizenoisesizeturbulbrightcontrastrfacgfacbfacfiltersizemg_Hmg_lacunaritymg_octavesmg_offsetmg_gaindist_amountns_outscalevn_w1vn_w2vn_w3vn_w4vn_mexpvn_distmvn_coltypenoisedepthnoisetypenoisebasisnoisebasis2imaflagcropxmincropymincropxmaxcropymaxxrepeatyrepeatextendcheckerdistnablaiuser*plugin*coba*envloc[3]rot[3]mat[4][4]min[3]max[3]pad3modetotexshdwrshdwgshdwbshdwpadenergydistspotsizespotblendhaintatt1att2*curfallofffalloff_typeshadspotsizebiassoftbufsizesampbuffersfiltertypebufflagbuftyperay_sampray_sampyray_sampzray_samp_typearea_shapearea_sizearea_sizeyarea_sizezadapt_threshray_samp_methodtexactshadhalostepsun_effect_typeskyblendtypehorizon_brightnessspreadsun_brightnesssun_sizebackscattered_lightsun_intensityatm_turbidityatm_inscattering_factoratm_extinction_factoratm_distance_factorskyblendfacsky_exposuresky_colorspacepad4YF_numphotonsYF_numsearchYF_phdepthYF_useqmcYF_bufsizeYF_padYF_causticblurYF_ltradiusYF_glowintYF_glowofsYF_glowtypeYF_pad2*mtex[18]specrspecgspecbmirrmirgmirbambrambbambgambemitangspectraray_mirroralpharefspeczoffsaddtranslucencyfresnel_mirfresnel_mir_ifresnel_trafresnel_tra_ifiltertx_limittx_falloffray_depthray_depth_traharseed1seed2gloss_mirgloss_trasamp_gloss_mirsamp_gloss_traadapt_thresh_miradapt_thresh_traaniso_gloss_mirdist_mirfadeto_mirshade_flagmode_lflarecstarclinecringchasizeflaresizesubsizeflarebooststrand_stastrand_endstrand_easestrand_surfnorstrand_minstrand_widthfadestrand_uvname[32]sbiaslbiasshad_alphaseptexrgbselpr_typeuse_nodespr_backpr_lampml_flagdiff_shaderspec_shaderroughnessrefracparam[4]rmsdarkness*ramp_col*ramp_specrampin_colrampin_specrampblend_colrampblend_specramp_showrampfac_colrampfac_spec*nodetree*groupfrictionfhreflectfhdistxyfrictdynamodesss_radius[3]sss_col[3]sss_errorsss_scalesss_iorsss_colfacsss_texfacsss_frontsss_backsss_flagsss_presetYF_arYF_agYF_abYF_dscaleYF_dpwrYF_dsmpYF_presetYF_djitgpumaterialname[256]scale*bbi1j1k1i2j2k2selcol1selcol2quat[4]expxexpyexpzradrad2s*mat*imatelemsdisp**mattotcolwiresizerendersizethreshvec[3][3]alfaweightradiush1h2f1f2f3hidevec[4]mat_nrpntsupntsvresoluresolvorderuordervflaguflagv*knotsu*knotsvtilt_interpradius_interpcharidxkernhnurb*bevobj*taperobj*textoncurve*path*keybevpathlenbevresolwidthext1ext2resolu_renresolv_renspacemodespacinglinedistshearfsizewordspaceulposulheightxofyoflinewidth*strfamily[24]*vfont*vfontb*vfonti*vfontbisepchartotboxactbox*tbselstartselend*strinfocurinfoeffect*mface*mtface*tface*mvert*medge*dvert*mcol*msticky*texcomesh*mselectvdataedatafdatatotedgetotfacetotselectact_facecubemapsizesmoothreshsubdivsubdivrsubsurftype*mr*pv*tpageuv[4][2]col[4]transptileunwrapv1v2v3v4edcodecreasebweightdef_nr*dwtotweightco[3]no[3]uv[2]co[2]indexfis[256]v[4]midpad[2]v[2]*faces*colfaces*edges*edge_boundary_states*vert_edge_map*vert_face_map*map_mem*vertslevelslevel_countcurrentnewlvledgelvlpinlvlrenderlvluse_col*edge_flags*edge_creases*vert_map*edge_map*old_faces*old_edges*errormodifiersubdivTyperenderLevels*emCache*mCachedefaxispad[6]lengthrandomizeseed*ob_arm*start_cap*end_cap*curve_ob*offset_oboffset[3]scale[3]merge_distfit_typeoffset_typecountaxistolerance*mirror_obsplit_anglevalueresval_flagslim_flagse_flagsbevel_angledefgrp_name[32]*texturestrengthdirectionmidleveltexmapping*map_objectuvlayer_name[32]uvlayer_tmp*projectors[10]*imagenum_projectorsaspectxaspectypercentfaceCountfacrepeat*objectcenterstartxstartyheightnarrowspeeddampfallofftimeoffslifetimedeformflagmulti*prevCosparentinv[4][4]cent[3]*indexartotindexforce*clothObject*sim_parms*coll_parms*point_cache*x*xnew*xold*current_xnew*current_x*current_v*mfacesnumvertsnumfacesabsorptiontime*bvhtreeoperationvertextotinfluencegridsizeneedbind*bindweights*bindcostotcagevert*dyngrid*dyninfluences*dynverts*pad2dyngridsizedyncellmin[3]dyncellwidthbindmat[4][4]*psys*dmtotdmverttotdmedgetotdmfacepsysrt[2]*facepavgroupprotect*fss*target*auxTargetvgroup_name[32]keepDistshrinkTypeshrinkOptsprojAxissubsurfLevels*originfactorlimit[2]originOptspntswopntsuopntsvopntswtypeutypevtypewfufvfwdudvdw*defvec[8][3]partypepar1par2par3parsubstr[32]*track*proxy*proxy_group*proxy_from*action*poselib*poseconstraintChannelsdefbasemodifiersdloc[3]orig[3]dsize[3]drot[3]obmat[4][4]constinv[4][4]laycolbitstransflagipoflagtrackflagupflagnlaflagprotectflagipowinscaflagscavisflagboundtypedupondupoffdupstadupendsfctimemassdampinginertiaformfactorrdampingsizefacmargindtdtxactcolempty_drawtypepad1[3]empty_drawsizedupfacescapropsensorscontrollersactuatorsbbsize[3]actdefgameflaggameflag2*bsoftsoftflaganisotropicFriction[3]constraintsnlastripshooksparticlesystem*pd*soft*dup_groupfluidsimFlagrestrictflagshapenrshapeflagrecalcobody_type*fluidsimSettings*derivedDeform*derivedFinallastDataMaskstateinit_stategpulampcurindexactivedeflectforcefieldpdef_damppdef_rdamppdef_permpdef_frictpdef_rfrictf_strengthf_powerf_distf_dampmaxdistmindistmaxradminradf_power_rpdef_sbdamppdef_sbiftpdef_sboftclump_facclump_powkink_freqkink_shapekink_ampfree_endtex_nablatex_modekinkkink_axisrt2*rngf_noisesimframestartframeendframeeditframelinStiffangStiffvolumeviterationspiterationsditerationsciterationskSRHR_CLkSKHR_CLkSSHR_CLkSR_SPLT_CLkSK_SPLT_CLkSS_SPLT_CLkVCFkDPkDGkLFkPRkVCkDFkMTkCHRkKHRkSHRkAHRcollisionflagsnumclusteriterations*particlestotpointtotspring*bpoint*bspringnodemassgravmediafrictrklimitphysics_speedgoalspringgoalfrictmingoalmaxgoaldefgoalvertgroupfuzzynessinspringinfrictefraintervallocalsolverflags**keystotpointkeysecondspringcolballballdampballstiffsbc_modeaeroedgeminloopsmaxloopschokesolver_IDplasticspringpreload*scratchshearstiffinpush*pointcacheshow_advancedoptionsresolutionxyzpreviewresxyzrealsizeguiDisplayModerenderDisplayModeviscosityValueviscosityModeviscosityExponentgravxgravygravzanimStartanimEndgstarmaxRefineiniVelxiniVelyiniVelz*orgMesh*meshSurface*meshBBsurfdataPath[240]bbStart[3]bbSize[3]typeFlagsdomainNovecgenvolumeInitTypepartSlipValuegenerateTracersgenerateParticlessurfaceSmoothingsurfaceSubdivsparticleInfSizeparticleInfAlphafarFieldSize*meshSurfNormalscpsTimeStartcpsTimeEndcpsQualityattractforceStrengthattractforceRadiusvelocityforceStrengthvelocityforceRadiuslastgoodframemistypehorrhorghorbhorkzenrzengzenbzenkambkfastcolexposureexprangelinfaclogfacgravityactivityBoxRadiusskytypephysicsEnginemisimiststamistdistmisthistarrstargstarbstarkstarsizestarmindiststardiststarcolnoisedofstadofenddofmindofmaxaodistaodistfacaoenergyaobiasaomodeaosampaomixaocolorao_adapt_threshao_adapt_speed_facao_approx_errorao_approx_correctionao_samp_methodao_gather_methodao_approx_passes*aosphere*aotableshemiresmaxiterdrawtypesubshootpsubshootenodelimmaxsublamppamapamielmaelmimaxnodeconvergenceradfacgammaselcolsxsy*lpFormat*lpParmscbFormatcbParmsfccTypefccHandlerdwKeyFrameEverydwQualitydwBytesPerSeconddwFlagsdwInterleaveEveryavicodecname[128]*cdParms*padcdSizeqtcodecname[128]codecaudio_codecvideo_bitrateaudio_bitrategop_sizerc_min_raterc_max_raterc_buffer_sizemux_packet_sizemux_ratemixratemain*mat_override*light_overridelay_zmasklayflagpassflagpass_xor*avicodecdata*qtcodecdataffcodecdatacfrapsfrapefraimagesframaptothreadsframelenblurfacedgeRedgeGedgeBfullscreenxplayyplayfreqplayattribrt1stereomodedimensionspresetmaximsizexschyschxpartsypartswinposplanesimtypesubimtypequalityrpadrpad1rpad2scemoderendererocresalphamodeosafrs_secedgeintsafetyborderdisprectlayersactlayxaspyaspfrs_sec_basegausspostmulpostgammaposthuepostsatdither_intensitybake_osabake_filterbake_modebake_flagbake_normal_spacebake_quad_splitbake_maxdistbake_biasdistbake_padGIqualityGIcacheGImethodGIphotonsGIdirectYF_AAYFexportxmlYF_nobumpYF_clamprgbyfpad1GIdepthGIcausdepthGIpixelspersampleGIphotoncountGImixphotonsGIphotonradiusYF_raydepthYF_AApassesYF_AAsamplesyfpad2GIshadowqualityGIrefinementGIpowerGIindirpowerYF_gammaYF_exposureYF_raybiasYF_AApixelsizeYF_AAthresholdbackbuf[160]pic[160]stampstamp_font_idstamp_udata[160]fg_stamp[4]bg_stamp[4]simplify_subsurfsimplify_shadowsamplessimplify_particlessimplify_aossscineonwhitecineonblackcineongammaparticle_percsubsurf_maxshadbufsample_maxao_errorcol[3]framename[64]*brushtoolstepinverttotrekeytotaddkeybrushtypebrush[7]emitterdistdraw_timedname[36]mat[3][3]cornertypeeditbutflagjointrilimitdegrturnextr_offsdoublimitsegmentsringsverticesunwrapperuvcalc_radiusuvcalc_cubesizeuvcalc_mapdiruvcalc_mapalignuvcalc_flagautoik_chainlenimapaintparticleselect_threshclean_threshretopo_moderetopo_paint_toolline_divellipse_divretopo_hotspotmultires_subdiv_typeskgen_resolutionskgen_threshold_internalskgen_threshold_externalskgen_length_ratioskgen_length_limitskgen_angle_limitskgen_correlation_limitskgen_symmetry_limitskgen_optionsskgen_postproskgen_postpro_passesskgen_subdivisions[3]edge_modepad3[4]dirview*session*cumapdrawbrushsmoothbrushpinchbrushinflatebrushgrabbrushlayerbrushflattenbrushpivot[3]brush_typetexnrtexrepttexfadetexsepaveragingtablet_sizetablet_strengthsymmrakeaxislock*camera*world*setbase*basactcursor[3]twcent[3]twmin[3]twmax[3]editbutsizeselectmodeproportionalprop_modeautomergepad5pad6autokey_mode*ed*radioframing*toolsettingsaudiotransform_spacesjumpframesnap_modesnap_flagsnap_target*theDagdagisvaliddagflagssculptdataframe_stepzoomblendximyimspacetypeblockscale*areablockhandler[8]viewmat[4][4]viewinv[4][4]persmat[4][4]persinv[4][4]winmat1[4][4]viewmat1[4][4]viewquat[4]zfaclay_usedpersp*ob_centre*bgpic*localvd*ri*retopo_view_data*depthsob_centre_bone[32]localviewlayactscenelockaroundcamzoompivot_lastgridgridviewpixsizenearfarcamdxcamdygridlinesviewbutgridflagmodeselecttwtypetwmodetwflagtwdrawflagtwmat[4][4]clip[4][4]*clipbbafterdrawzbufxrayflag2gridsubdivkeyflagsndofmodendoffilter*properties_storage*gpdlviewquat[4]lpersplviewverthormaskmin[2]max[2]minzoommaxzoomscrollkeeptotkeepaspectkeepzoomoldwinxoldwinycursor[2]rowbutv2d*editipoipokeyactname[32]constname[32]bonename[32]totipopinbutofschannellockmedian[3]cursenscuractaligntabomainbmainbo*lockpointexfromshowgroupmodeltypescriptblockre_alignoldkeypresstab[7]chanshownzebra*filelisttotfiletitle[24]dir[240]file[80]ofssortmaxnamelencollumsf_fpfp_str[8]*libfiledataretvalmenuact(*returnfunc)()(*returnfunc_event)()(*returnfunc_args)()*arg1*arg2*menup*pupmenuoopsvisiflagtree*treestoresearch_string[32]search_tsesearch_flagsdo_outlinevisstoreflagdeps_flagsimanrcurtileimtypenrdt_uvstickydt_uvstretchpad[5]centxcentyautosnap*texttopviewlinesfont_idlheightleftshowlinenrstabnumbercurrtab_setshowsyntaxoverwritepix_per_linetxtscrolltxtbarwordwrapdoplugins*py_draw*py_event*py_button*py_browsercallback*py_globaldictlastspacescriptname[256]scriptarg[256]*script*but_refsredraws*idaspect*curfont*edittreetreetype*filesactive_filenumtilesxnumtilesyselstateviewrectbookmarkrectscrollposscrollheightscrollareaactive_bookmarkprv_wprv_h*imgoutline[4]neutral[4]action[4]setting[4]setting1[4]setting2[4]num[4]textfield[4]textfield_hi[4]popup[4]text[4]text_hi[4]menu_back[4]menu_item[4]menu_hilite[4]menu_text[4]menu_text_hi[4]but_drawtypeiconfile[80]back[4]header[4]panel[4]shade1[4]shade2[4]hilite[4]grid[4]wire[4]select[4]lamp[4]active[4]group[4]group_active[4]transform[4]vertex[4]vertex_select[4]edge[4]edge_select[4]edge_seam[4]edge_sharp[4]edge_facesel[4]face[4]face_select[4]face_dot[4]normal[4]bone_solid[4]bone_pose[4]strip[4]strip_select[4]cframe[4]vertex_sizefacedot_sizebpad[2]syntaxl[4]syntaxn[4]syntaxb[4]syntaxv[4]syntaxc[4]movie[4]image[4]scene[4]audio[4]effect[4]plugin[4]transition[4]meta[4]editmesh_active[4]handle_vertex[4]handle_vertex_select[4]handle_vertex_sizehpad[7]solid[4]tuitbutstv3dtfiletipotinfotsndtacttnlatseqtimatimaseltexttoopsttimetnodetarm[20]bpad[4]bpad1[4]spec[4]dupflagsavetimetempdir[160]fontdir[160]renderdir[160]textudir[160]plugtexdir[160]plugseqdir[160]pythondir[160]sounddir[160]yfexportdir[160]versionsvrmlflaggameflagswheellinescrolluiflaglanguageuserprefviewzoomconsole_bufferconsole_outmixbufsizefontsizeencodingtransoptsmenuthreshold1menuthreshold2fontname[256]themesundostepsundomemorygp_manhattendistgp_euclideandistgp_erasergp_settingstb_leftmousetb_rightmouselight[3]tw_hotspottw_flagtw_handlesizetw_sizetextimeouttexcollectratememcachelimitprefetchframesframeserverportpad_rot_angleobcenter_diarvisizervibrightrecent_filessmooth_viewtxglreslimitndof_panndof_rotatecurssizepad[8]versemaster[160]verseuser[160]glalphaclipautokey_flagcoba_weightvertbaseedgebaseareabase*sceneendxendysizexsizeyscenenrscreennrfullmainwinwinakthandler[8]*newvvec*v1*v2panelname[64]tabname[64]drawname[64]ofsxofsycontrolsnapold_ofsxold_ofsysortcounter*paneltab*v3*v4*fullwinmat[4][4]headrctwinrctheadwinwinheadertypebutspacetypewinxwinyhead_swaphead_equalwin_swapwin_equalheadbutlenheadbutofscursorspacedatauiblockspanelssubvstr[4]subversionpadsminversionminsubversiondisplaymode*curscreen*curscenefileflagsglobalfname[80]*ibuf*ibuf_comp*se1*se2*se3nrbottomrightxofsyofslift[3]gamma[3]gain[3]saturationdir[160]donestartstillendstill*stripdataorxory*crop*transform*color_balance*tstripdata*tstripdata_startstill*tstripdata_endstill*ibuf_startstill*ibuf_endstill*instance_private_data**current_private_data*tmpstartofsendofsmachinestartdispenddispmulhandsizeanim_preseek*stripfacf0facf1*seq1*seq2*seq3seqbase*sound*hdaudiolevelpancurposstrobe*effectdataanim_startofsanim_endofsblend_modeblend_opacity*oldbasep*parseq*seqbasepmetastackedgeWidthforwardwipetypefMinifClampfBoostdDistdQualitybNoCompScalexIniScaleyIniScalexFinScaleyFinxInixFinyIniyFinrotInirotFininterpolation*frameMapglobalSpeedlastValidFramebuttypeuserjitstatotpartnormfacobfacrandfactexfacrandlifeforce[3]vectsizemaxlendefvec[3]mult[4]life[4]child[4]mat[4]texmapcurmultstaticstepomattimetexspeedtexflag2negvertgroup_vvgroupname[32]vgroupname_v[32]*keysminfacusedusedelemdxdylinkotypeold*poin*oldpoinresetdistlastval*makeyqualqual2targetName[32]toggleName[32]value[32]maxvalue[32]delaydurationmaterialName[32]damptimerpropname[32]matname[32]axisflag*fromObjectsubject[32]body[32]pulsefreqtotlinks**linksjoyindexaxisfbuttonhathatfprecisionstr[128]*mynewinputstotslinks**slinksvalostate_mask*actframeProp[32]blendinpriorityend_resetstrideaxisstridelengthsndnrpad1[2]makecopycopymadepad2[1]track*melinVelocity[3]angVelocity[3]localflagdyn_operationforceloc[3]forcerot[3]linearvelocity[3]angularvelocity[3]butstabutendminmaxvisifacrotdampminloc[3]maxloc[3]minrot[3]maxrot[3]matprop[32]distributionint_arg_1int_arg_2float_arg_1float_arg_2toPropName[32]*toObjectbodyTypefilename[64]loadaniname[64]int_argfloat_arggoaccellerationmaxspeedmaxrotspeedmaxtiltspeedtiltdampspeeddamp*sample*stream*newpackedfile*snd_soundpanningattenuationpitchmin_gainmax_gaindistancestreamlenchannelshighpriopad[10]gaindopplerfactordopplervelocitynumsoundsblendernumsoundsgameengine*lamprengobjectdupli_ofs[3]childbaserollhead[3]tail[3]bone_mat[3][3]arm_head[3]arm_tail[3]arm_mat[4][4]xwidthzwidthease1ease2rad_headrad_tailbonebasechainbasepathflaglayer_protectedghostepghostsizeghosttypepathsizeghostsfghostefpathsfpathefpathbcpathacconstflagikflagselectflagagrp_index*bone*childiktree*b_bone_mats*dual_quat*b_bone_dual_quatschan_mat[4][4]pose_mat[4][4]pose_head[3]pose_tail[3]limitmin[3]limitmax[3]stiffness[3]ikstretch*customchanbaseproxy_layerstride_offset[3]cyclic_offset[3]agroupsactive_groupcustomColcs*grpreserved1groupsactive_markeractnractwidthtimeslidename[30]ownspacetarspaceenforceheadtail*tarsubtarget[32]matrix[4][4]space*proptarnumtargetsiterationsrootbonemax_rootbone*poletarpolesubtarget[32]poleangleorientweightgrabtarget[3]reserved2minmaxflagstuckcache[3]lockflagfollowflagvolmodeplaneorglengthbulgepivXpivYpivZaxXaxYaxZminLimit[6]maxLimit[6]extraFzinvmat[4][4]fromtomap[3]expofrom_min[3]from_max[3]to_min[3]to_max[3]zminzmaxchannel[32]no_rot_axisstride_axiscurmodactstartactendactoffsstridelenblendoutstridechannel[32]offs_bone[32]hasinputhasoutputdatatypesockettype*new_socknslimitstack_indexinternstack_index_extlocxlocyown_indexto_index*tosock*link*new_nodeusername[32]lastyoutputs*storageminiwidthcustom1custom2need_execexectotrbutrprvr*typeinfo*fromnode*tonode*fromsocknodeslinks*stack*threadstackinitstacksizecur_indexalltypes*owntype*selin*selout(*timecursor)()(*stats_draw)()(*test_break)()cyclicmoviesamplesminspeedpercentxpercentybokehcurvedimage_in_widthimage_in_heightcenter_xcenter_yspiniterwrapsigma_colorsigma_spacehuesatt1t2t3fstrengthfalphakey[4]x1x2y1y2colname[32]bktyperotationpreviewgamcono_zbuffstopmaxblurbthresh*dict*nodeangle_ofscolmodmixthresholdfademcjitprojfitshortymintablemaxtableext_in[2]ext_out[2]*curve*table*premultablecurrcliprcm[4]black[3]white[3]bwmul[3]sample[3]offset[2]innerradiusratergb[3]cloneactive_rnd*layerstotlayermaxlayertotsize*pooleditflagvel[3]rot[4]ave[3]numparentpa[4]w[4]fuv[4]foffsetrand[3]*stick_obprev_state*hairi_rot[4]r_rot[4]r_ave[3]r_ve[3]dietimebanksizemulnum_dmcachebpialiveloopdistrphystyperotmodeavemodereacteventdrawdraw_asdraw_sizechildtypedraw_stepren_stephair_stepkeys_stepadapt_angleadapt_pixrotfromintegratornbetweenboidneighboursbb_alignbb_uv_splitbb_animbb_split_offsetbb_tiltbb_rand_tiltbb_offset[2]simplify_flagsimplify_refsizesimplify_ratesimplify_transitionsimplify_viewporttimetweakjitfackeyed_timeeff_hairgrid_respartfactanfactanphasereactfacavefacphasefacrandrotfacrandphasefacrandsizereactshapeacc[3]dragfacbrownfacdampfacabslengthrandlengthchild_nbrren_child_nbrparentschildsizechildrandsizechildradchildflatchildspreadclumpfacclumppowrough1rough1_sizerough2rough2_sizerough2_thresrough_endrough_end_shapebranch_thresdraw_line[2]max_velmax_lat_accmax_tan_accaverage_velbankingmax_bankgroundzboidfac[8]boidrule[8]*eff_group*dup_ob*bb_ob*pd2*part*edit**pathcache**childcachepathcachebufschildcachebufs*target_ob*keyed_ob*latticeeffectorsreacteventstotchildtotcachedtotchildcachetarget_psyskeyed_psystotkeyedbakespacebb_uvname[3][32]vgroup[12]vg_negrt3*renderdata*cacheCdisCvi[3]structuralbendingmax_bendmax_structmax_shearavg_spring_lentimescaleeff_force_scaleeff_wind_scalesim_time_oldstepsPerFrameprerollmaxspringlensolver_typevgroup_bendvgroup_massvgroup_structpresets*collision_listepsilonself_frictionselfepsilonself_loop_countloop_countpressure*pointstotpointsthicknessstrokesframenum*actframegstepinfo[128]sbuffer_sizesbuffer_sflag*sbufferTYPE_charucharshortushortintlongulongfloatdoublevoidLinkLinkDataListBasevec2svec2ivec2fvec2dvec3ivec3fvec3dvec4ivec4fvec4drctirctfIDPropertyDataIDPropertyIDLibraryFileDataPreviewImageIpoDriverObjectIpoCurveBPointBezTripleIpoKeyBlockKeyScriptLinkTextLineTextMarkerTextPackedFileCameraImageUserImageGPUTextureanimRenderResultMTexTexPluginTexCBDataColorBandEnvMapImBufTexMappingLampCurveMappingWaveMaterialbNodeTreeGroupVFontVFontDataMetaElemBoundBoxMetaBallNurbCharInfoTextBoxCurvePathMeshMFaceMTFaceTFaceMVertMEdgeMDeformVertMColMStickyMSelectCustomDataMultiresPartialVisibilityMDeformWeightMTexPolyMLoopUVMLoopColMFloatPropertyMIntPropertyMStringPropertyOrigSpaceFaceMultiresColMultiresColFaceMultiresFaceMultiresEdgeMultiresLevelMultiresMapNodeModifierDataSubsurfModifierDataLatticeModifierDataCurveModifierDataBuildModifierDataMaskModifierDataArrayModifierDataMirrorModifierDataEdgeSplitModifierDataBevelModifierDataBMeshModifierDataDisplaceModifierDataUVProjectModifierDataDecimateModifierDataSmoothModifierDataCastModifierDataWaveModifierDataArmatureModifierDataHookModifierDataSoftbodyModifierDataClothModifierDataClothClothSimSettingsClothCollSettingsPointCacheCollisionModifierDataBVHTreeBooleanModifierDataMDefInfluenceMDefCellMeshDeformModifierDataParticleSystemModifierDataParticleSystemDerivedMeshParticleInstanceModifierDataExplodeModifierDataFluidsimModifierDataFluidsimSettingsShrinkwrapModifierDataSimpleDeformModifierDataLatticebDeformGroupbActionbPoseBulletSoftBodyPartDeflectSoftBodyObHookRNGSBVertexBodyPointBodySpringSBScratchWorldRadioBaseAviCodecDataQuicktimeCodecDataFFMpegCodecDataAudioDataSceneRenderLayerRenderDataRenderProfileGameFramingTimeMarkerImagePaintSettingsBrushParticleBrushDataParticleEditSettingsTransformOrientationToolSettingsBrushDataSculptDataSculptSessionSceneDagForestBGpicView3DSpaceLinkScrAreaRenderInfoRetopoViewDataViewDepthsbGPdataView2DSpaceInfoSpaceIpoSpaceButsSpaceSeqSpaceFiledirentryBlendHandleSpaceOopsTreeStoreTreeStoreElemSpaceImageSpaceNlaSpaceTextScriptSpaceScriptSpaceTimeSpaceNodeSpaceImaSelFileListThemeUIThemeSpaceThemeWireColorbThemeSolidLightUserDefbScreenScrVertScrEdgePanelFileGlobalStripElemTStripElemStripCropStripTransformStripColorBalanceStripProxyStripPluginSeqSequencebSoundhdaudioMetaStackEditingWipeVarsGlowVarsTransformVarsSolidColorVarsSpeedControlVarsEffectBuildEffPartEffParticleWaveEffOopsbPropertybNearSensorbMouseSensorbTouchSensorbKeyboardSensorbPropertySensorbActuatorSensorbDelaySensorbCollisionSensorbRadarSensorbRandomSensorbRaySensorbMessageSensorbSensorbControllerbJoystickSensorbExpressionContbPythonContbActuatorbAddObjectActuatorbActionActuatorbSoundActuatorbCDActuatorbEditObjectActuatorbSceneActuatorbPropertyActuatorbObjectActuatorbIpoActuatorbCameraActuatorbConstraintActuatorbGroupActuatorbRandomActuatorbMessageActuatorbGameActuatorbVisibilityActuatorbTwoDFilterActuatorbParentActuatorbStateActuatorFreeCamerabSamplebSoundListenerSpaceSoundGroupObjectBonebArmaturebPoseChannelbActionGroupbActionChannelSpaceActionbConstraintChannelbConstraintbConstraintTargetbPythonConstraintbKinematicConstraintbTrackToConstraintbRotateLikeConstraintbLocateLikeConstraintbMinMaxConstraintbSizeLikeConstraintbActionConstraintbLockTrackConstraintbFollowPathConstraintbStretchToConstraintbRigidBodyJointConstraintbClampToConstraintbChildOfConstraintbTransformConstraintbLocLimitConstraintbRotLimitConstraintbSizeLimitConstraintbDistLimitConstraintbActionModifierbActionStripbNodeStackbNodeSocketbNodeLinkbNodebNodePreviewbNodeTypeNodeImageAnimNodeBlurDataNodeDBlurDataNodeBilateralBlurDataNodeHueSatNodeImageFileNodeChromaNodeTwoXYsNodeTwoFloatsNodeGeometryNodeVertexColNodeDefocusNodeScriptDictNodeGlareNodeTonemapNodeLensDistCurveMapPointCurveMapBrushCloneCustomDataLayerHairKeyParticleKeyChildParticleParticleDataParticleSettingsParticleEditParticleCacheKeyLinkNodebGPDspointbGPDstrokebGPDframebGPDlayerTLEN   L4( H\$8Tpx(x T8l|LDlh88,< L   @ 84DX`D`t@<l<<\hd4Dd@L@@@<lht(T8pd(4H8P HP`<$$X P$88 x P4 088,@0,Hh(H,(lDLP<< \PLhT`<8l (DtH@,@t<h4,,D,@,4` l\4<$x( (@   ,<8HSTRC6                     !"#$%&'()*+, -./0!!!"1#234./56789  :;<=>$ ?@.AB%%%%C=/DEF GHIJ& %KLM= N$OPQR'STUV%(((WXY) ))Z[\+]^_*`]a b(c(def ghij kl+mn]% ,opqrstuvwxyz{|$O'} ~- . " /01%++ 2 394   %5C@6$@57 .8qr35-$O.4679 -:P     ;Fqr !"#$%&'()*++,-./0123456789:;<=>?@ABCDEFGH2I$O'}<$O=JKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrs tuvwxyz{|}~+<662I>$O?F'} @%A+BBBCDC  $O=# "%EEE"1#2F%FGH9C     $OI&= FbC  @ @ @ @%GFFJ'C $O&=KLMNOPQRJ S!T"T#T$6%&'()%*+,-U.V/ M 0123 45K6789%:O67;<W=PW>?N@A<QX.03 45YBZ%RCSDL1.03 45[E\F]G^1_`_2aHIJbKIcccaL`MbNO P QdR6&%%NSU TNSUVWXYZ[T"T$\]V^_K`Oa&%6%eee bfecdTe] f ggec hec hiiec[jkljec mH k ec n o p qrsjtuv]wlecxy zmec{]n ec|}%]~oec%p ec3 %q ec .]%recsectec muec 3 %+vecF w ec xecyecz{|}~ecNNNNNNK%ec %ec %6ec9ec -ecec} ec  i ec  x%F%"$O&PC% m &    $OIC      =      '} ! " # $%D&2'()*+ , - . /01?23456*789:;<=>F ? &@A$BCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_3`a%}bcdefghijklmnopqrstuvwxyz{|}~,%Q}0JJJ$ONB +PRQ  +  $O2I'}     !"#$%&'(%) * +,F- ./012]3456789 =:?;<=%>?x@ABCDEFGHIJKLMNOPQRS_TUmVWXYZ[\]^_`abc defghijkl mn%opqrstuvwxyz{|}~ +F+Fm*mJ2I;+]J+ .      > '} g <% .-m !"K#$%&'()*+,-./0  123456789:;<=+s>?@ABCDEFGHIJKLMNCO PQ3RSTUVW XYZ[\ $@]^_`abcdefghij;i#$%&#$%&#$%&kFl m n$OPopqrstuA.vw$#$%4&xyz{l|s} ~ %+#$%&l|%Y!#$%&+F     #$%&l s9 ~ #$%&l.-;  vsY #$%&vl#$%&*]      ] #$%]+ #$%l#$%&lP >>%Y*#$%&l b%+     86     _ !"#$%&'%()*+,-./0123456789:%2;B<=>?@ABCDEFGHIJKLMNOPQRSTUVW XYZ[\]^_`abcdefghijklmnopqrst%uvwxy6z { | }~% k%A4#'}    [  88%988      -  [$O~0  %    %9p   %  ]j 99-\Ql% !"#$S%&'()?*+E, -. / 01% 2 345%+F=6%789:;%<=%>?%@A Fpxl>BC +D EFG0HIJ+F K -% LxMNOPQR*STJ0UF KVWX% - Y\Z[\]^_ `\abcd`\eh  -Jfgh%ij%~  < -  0klmn  \Z+@op  -qrxs   t%uvwxy \@op?lz{|}~B F+FG\_*_ -_ S0  - t% ++ $Oh]#$%l `vF - %? & j  " ,&       % $O    g% #$%&l sv!!!$O" "" %$O# ## %$*  %  & ]%' ( ) +F* + [\qr%Y, - . /  %+F0 S1 %2      3    S4    S5    S6  %7 77 -888 $OY [\[ 9qr  !::::"9#$%&'+()*+:,;-<<<<./0% T 1 2()3456789:=>;;;;<<<=:>:,> ? @9A BCDE F>G:H:I J KL?MN%@OPDQRST%UVA WXpYZ[%B\]Z%C^_D]^_.E`abcdeFfghiGHjIJ klmnOopqrK s tL _ZpumJvwxyM7Ez{N|}~%OP OOO; @PQ.X%  mX+%2IQRA_ TR% S@%T@UV T=TST)m%Q_Wp " ]^\9mjYWX  ?2?   $O0 %W VUX Y Y 1    Cl   9   *      }{"Z    ! " # $ % & ' ( ) * + ], - . / 0 1 2 %F|Z3 4 5 6 ]7 8 [9 \\\[: ; < ]]] = > ^ ^^ ]? < @ ^A  mB C D ENDBAClock-0.4.0/main.m010064400017500000144000000016671156423065300132320ustar multixusers/* Project: AClock main.m Copyright (C) 2003-2011 Free Software Foundation Author: Riccardo Mottola This application is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This application is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ #import int main(int argc, const char *argv[]) { return NSApplicationMain (argc, argv); } AClock-0.4.0/Resources004075500017500000144000000000001164704140700140135ustar multixusersAClock-0.4.0/Resources/AClock.gorm004075500017500000144000000000001164704140700161125ustar multixusersAClock-0.4.0/Resources/AClock.gorm/data.classes010064400017500000144000000023461156323073400204630ustar multixusers{ "## Comment" = "Do NOT change this file, Gorm maintains it"; AppController = { Actions = ( "openPreferences:", "setFrameColor:", "setFaceColor:", "setFaceTransparency:", "setShowsAMPM:", "setSecondHandColor:", "setHandColor:", "setShadow:", "setMarkColor:", "setFrequency:", "setSecond:", "setNumberType:", "clockUpdate:", "setCuckoo:", "setRing:", "setRingLoop:", "stopRing:", "setIncreasesVolume:" ); Outlets = ( prefPanel, frameColorW, secColorW, handColorW, transSlider, ampmSwitch, faceColorW, shadowSwitch, bigClock, markColorW, freqText, secondSwitch, numberPopUp, alarmWindow, alarmClock, cuckooSwitch, ringSwitch, freqSlider, ringText, ringSlider, incsVolume ); Super = NSObject; }; Clock = { Actions = ( ); Outlets = ( ); Super = NSControl; }; FirstResponder = { Actions = ( "setIncreasesVolume:", "orderFrontFontPanel:", "setCuckoo:", "setRing:", "setRingLoop:", "stopRing:" ); Super = NSObject; }; InfoClock = { Actions = ( ); Outlets = ( ); Super = Clock; }; }AClock-0.4.0/Resources/AClock.gorm/data.info010064400017500000144000000002701156323073400177530ustar multixusersGNUstep archive0000300c:00000003:00000003:00000000:01GormFilePrefsManager1NSObject% 01NSString&%Latest Version0& % Typed StreamAClock-0.4.0/Resources/AClock.gorm/objects.gorm010064400017500000144000000403411156323073400205070ustar multixusersGNUstep archive0000300c:0000002a:000001c4:00000001:01GSNibContainer1NSObject01 NSMutableSet1NSSet&01 GSNibItem01NSString&%Clock  &01GSWindowTemplate1GSClassSwapper0&%NSWindow1 NSWindow1 NSResponder% ? A D C&% C D;01 NSView% ? A D C  D C&01 NSMutableArray1 NSArray&0 1NSBox% @ C B  C B&0 &0 % @ @ C B  C B&0 &0 1 GSCustomView0& % InfoClock @@ B B&01NSButton1 NSControl% @@ B B  B B&0 &%01 NSButtonCell1 NSActionCell1NSCell0&%Stop01NSFont%&&&&&&&&&&&&&&%0&0&&&& &&01 NSTextField% B B8 C A  C A&0 &%01NSTextFieldCell0&6%6Even a stopped clock tells the right time twice a day.0% A`&&&&&&&& &&&&&&%01NSColor0&%NSNamedColorSpace0&%System0&%textBackgroundColor00 & % textColor0!0"&%Box&&&&&&&&&&&&&& @ @%%0#0$&%System0%&%windowBackgroundColor0&&%Window0'&%Alarming' ? B F@ F@%0(1NSImage0)&%NSApplicationIcon&  D@ D`0*0+& % AppController  &0,1NSMenu0-&%AClock0. &0/1 NSMenuItem00&%Info01&&&%02031NSMutableString&%common_2DCheckMark0405& % common_2DDash2submenuAction:%06007 &0809& % Info Panel...0:&&&%24%0;0<&%Preferences...0=&&&%24%0>0?&%Help...0@&%?&&%24%,0A0B&%Hide0C&%h&&%24%0D0E&%Quit0F&%q&&%24%0G0H&%NSPanel1NSPanel% ? A C؀ C& % C D@0I % ? A C؀ C  C؀ C&0J &0K% A C- CV C[  CV C[&0L &0M % @ @ CH CA  CH CA&0N &  0O1 NSColorWell% @ C# B A  B A&0P &%0Q0R&&&&&&&&&&&&&&&0S0T&%NSCalibratedWhiteColorSpace ?0U% BD C& B A  B A&0V &%0W0X& % Face Color&&&&&&&& &&&&&&%0Y1NSSlider% A C  B A  B A&0Z &%0[1 NSSliderCell0\&%00]1!NSNumber1"NSValued &&&&&&&&&&&&&&% ? %0^0_&&&&&&&&& &&&&&&%0`$0a&%controlTextColor0b0c&0d0e&%common_SliderHoriz&&&&&&&&&&&&&&%%0f% A B B A  B A&0g &%0h0i& % Transparencyi&&&&&&&& &&&&&&%0j% B B B A  B A&0k &%0l0m&&&&&&&&&&&&&&&0nT ?0o% C B B, A  B, A&0p &%0q0r&%Marks&&&&&&&& &&&&&&%0s1# NSPopUpButton% @ @ B A  B A&0t &%0u1$NSPopUpButtonCell1%NSMenuItemCell0v&&&&&&&&&0w0x&0y &0z0{&%Roman0|&&&%%0}0~&%Arabic|&&%00& % common_Nibble%00&%None|&&%%&&&&&&%0&0&&&& &&}w%%%%%0% B A  B A  B A&0 &%00& % Number Style&&&&&&&& &&&&&&%0% B BX B A  B A&$0 &%00&% AM/PM00&%common_SwitchOff&&&&&&&&&&&&&&%0&0&00&%common_SwitchOn&&& &&0% @ B B A  B A&0 &%00&&&&&&&&&&&&&&&0T ?0% BH B BT A  BT A&0 &%00&%Frame&&&&&&&& &&&&&&%0% A BX B A  B A& 0 &%00&% Shadow&&&&&&&&&&&&&&%0&0&&&& &&00&%Face&&&&&&&&&&&&&& @ @%%0% A A  CV C  CV C& 0 &0 % @ff @ CH C  CH C&0 &0% @ B< B A  B A&0 &%00&&&&&&&&&&&&&&&0T ?0% @ B B A  B A&0 &%00&&&&&&&&&&&&&&&0T ?0% BDfh B B A  B A&0 &%00&%Hour and Minute&&&&&&&& &&&&&&%0% A A C A  C A&0 &%00&% Show second hand&&&&&&&&&&&&&&%0&0&&&& &&0% B @@ B A  B A&0 &%00&%Refresh&&&&&&&& &&&&&&%0% A @ B A  B A&0 &%0± 0ñ&%00ı!d &&&&&&&&&&&&&&% ? %0ű0Ʊ&&&&&&&&& &&&&&&%`0DZ0ȱ&d&&&&&&&&&&&&&&%%0ɱ% BL BD B A  B A&0ʱ &%0˱0̱& % Second Hand&&&&&&&& &&&&&&%0ͱ0α&%Hands&&&&&&&&&&&&&& @ff @%%0ϱ0б&%Clock Cp C7 C0 C4&0ѱ% Cp A  C0 C  C0 C&$0ұ &0ӱ % @ @ C" C  C" C&0Ա &0ձ% A B B A  B A&$0ֱ &%0ױ0ر&% Ring&&&&&&&&&&&&&&%0ٱ&0ڱ&&&& &&0۱% A B B A  B A&$0ܱ &%0ݱ0ޱ&% Cuckoo&&&&&&&&&&&&&&%0߱&0&&&& &&0% A @ B A  B A&0 &%00& % Ring Loop&&&&&&&& &&&&&&%0% A A B A  B A&0 &%0 0&%00!d &&&&&&&&&&&&&&% ? %00&&&&&&&&& &&&&&&%`00&d&&&&&&&&&&&&&&%%0% A BL B A  B A&0 &%00&%Increasing Volume&&&&&&&&&&&&&&%0&0&&&& &&00&%Audible&&&&&&&&&&&&&& @ @%%#0&%Window0& % Preferences C C F@ F@%(&   D@ D`0 &0 &01&NSMutableDictionary1' NSDictionary&<0&%GormCustomView0&%Button20&%PreferencesPanelG0& % MenuItem1D0& % MenuItem2/P&%Box1P& % MenuItem38P&%Box2 P& % MenuItem4;P& % ColorWell1P& % MenuItem5>P& % ColorWell2OP& % MenuItem6/P&%ViewP & % Button(3)P &%MenuItemAP & % ColorWell4jP & % MenuItem78P & % ColorWell5+*P& % MenuItem8AP&%SliderYP& % TextField1UP& % MenuItem9DP& % ColorWell(0)P& % TextField3fP& % Slider(1)P&%ButtonP& % TextField4P& % TextField(1)P& % TextField5oP& % TextField7P& % TextField8P&%View(0)P& % TextField9P& % Button(0)P& % GormNSMenu6P&%GormNSPopUpButtonsP & % Button(2)P!&%BoxKP"& % Slider(0)P#& % TextField(0)P$& % GormNSMenu16P%& % Button(4)P&& % CustomView(0) P'&%Box(0)P(& % AlarmWindowP)& % MenuItem10AP*& % MenuItem11AP+& % MenuItem12/P,& % MenuItem13;P-& % TextField(2)P.& % MenuItem14>P/&%NSMenu,P0& % MenuItem15}P1& % MenuItem16zP2& % Button(1)P3& % MenuItem17P4&%NSOwnerP5& % NSApplicationP6 &^^P71(NSNibConnector/4P8(*/P9(/P:(+/P;1)NSNibControlConnector+/P<&%submenuAction:P=($+P>( $P?) P@&%NSFirstPA&%orderFrontStandardInfoPanel:PB(,$PC(.$PD).@PE&%orderFrontHelpPanel:PF)*@PG&%hide:PH)@PI& % terminate:PJ(4PK(+4PL),+PM&%openPreferences:PN1*NSNibOutletConnector4/PO&%menuPP*4+PQ&%delegatePR(!PS(PT(PU(PV(PW)+PX& % setFaceColor:PY)+PZ&%setFaceTransparency:P[*+P\& % faceColorWP]*+P^& % transSliderP_( P`(Pa*+ Pb& % markColorWPc(4Pd(4Pe( 4Pf(4Pg(4Ph*+Pi& % prefPanelPj*+ Pk& % secColorWPl*+Pm& % handColorWPn) +Po& % setMarkColor:Pp) +Pq&%setSecondHandColor:Pr)+Ps& % setHandColor:Pt(Pu)+Pv& % setSecond:Pw*+Px& % secondSwitchPy(Pz(0P{(1P|(3P}*+P~& % numberPopUpP)+P&%setNumberType:P(P(4P*+P& % ampmSwitchP(P(P*+P&%bigClockP)+P& % clockUpdate:P((4P(P(P*+(P& % alarmWindowP(&P*+&P& % alarmClockP)+P& % setShowsAMPM:P('P('P(P(2P*+2P& % cuckooSwitchP*+P& % ringSwitchP)+P&%setRing:P)2+P& % setCuckoo:P(P(#P( P)+P&%setFrameColor:P*+P& % frameColorWP) +P& % setShadow:P*+ P& % shadowSwitchP("P)"+P& % setFrequency:P(P*+"P& % freqSliderP*+P&%freqTextP(-P(P*+P& % ringSliderP*+-P&%ringTextP)+P& % setRingLoop:P( P) +P& % stopRing:P(%P*+%P& % incsVolumeP±)%+Pñ&%setIncreasesVolume:Pı&&AClock-0.4.0/Resources/AClock.tiff010064400017500000144000000273261156323073400161070ustar multixusersMM*-66.v 2.~.@-..(R/home/gurkan/debian/aclock-0.1.0/GNUstepGlow.tiffCreated with The GIMPHNHNAClock-0.4.0/Resources/clock.png010064400017500000144000000113111156323073400156650ustar multixusersPNG  IHDR@@iqbKGD pHYs  tIME7zdVIDATx]euk=ϳ9yv[VɇQS$. T*7 $HD.EUȦ#7@%3yz>#j睴Yңsq~^w_ܱ;vcwjrɿwMOn9f?O:TM:2W7g{K$t}lrުmIy)C킛:u!Toi}0LByzs=fw÷_}Uv͹|$D7B ] >UNdwkf=U]?sjkt2S/$<%1[ Nu!RTUELU~BpnJqw=jO.{{O?ԒybXӫW^僃R `d9TlnmY3 Z#qw7pEbIN"[¹of)sD]/a_> ''?["Tm;ի׸qs# 1l EJRO75^//qUZ 1 } N|h]"&aylh,om뺭˓SI*J\~#>ѧB i FGTP_} 0tNJjpٳC2:GĢLQ,VmV?Vb=P)FN t3wQol'p) 3MU*i`gT0.nryTX:]f1d C2l41m72ye rs[*‚W…ϸ(#`ŠP,a%"8J`Bpas7-ss  \E7'I.\R*R3TdBUMW&3H$d(Rb#C1T27^G~vbɼ8^ږV:|'J=>hp}>XnC M>\H"bUT)d'=9FrXNbRR03R3~/]k̛.b*srJeZ^+wrA>"N6Oo7Tl6QDA}`Zq|t`cH#9XPBXcᓂ* 2WxkG7]\(Vho2^2ô2iPx -Si91JΊ쌕2>8et;DqJu13(@zR1 e.x%7 .}.^)9_  GP2cⅉO!ϔlzbTUaf)JN ށA]pٹ}eRHq 9[52*hb~Lb#%uj L)bcwY"YJ;?PZo +V.4&X1oe,0T 8^kr+>&!(9)ԁe$Gl0? f#j8Q0 *a6>A0:#u+^yG0ef``&T13 \S{V͂Uu%]B. G{QpÊQِcꅭ*_=g9}9ڦAںR)hQw.PH1ӵ]е+N,JIKӒ31$kFpG &d oFC)X;ѫ=ˆwR"Vȍ#׫*'S!9!j;YhW`Y)!RP;u z0#EÌ m{ke~LnBxZZq{Ь躆73Œł!]T)> P(Np 8xTj4׶/>ϻ}{-RDp*8?֓#@U+VmopxxbqL1ĮiTJw]lN̔aĔ& EŭWC0uԓ 9о陋SRBAN)6:Zܼ|' %FfeIsbĜK)Y@)Fu]Gu(Ft] u+vap.1#>f!*0@/ h|A7W JQ0+XNw'8չ©9AOj@\l{EmRRAP@ʤxIli_ 7L t9[Q{H03r1 TF3!hfEݙc5]I="t!+Wr)JX6R1 WMSRzlFS;:p=޻黁(9()#"Lf3SQ$#B)oCfPI$21)Az؞8WywTcdzVaIӶl?NEǩ </wNU(yIZ˗DszlCuM'ƞ]qt|<P1|?pNNL !SQ(fF"]۰Z3t+vE. (uݞЅ9k{7w!'L9E"1CTq#dԌvdVyb<0G5}l0=OǸjN u>:8߳LzfIs|HyfΟ=}wxkox[9Q AHV sRIbfAԘM*fRt2Cyλ[]  3U85HZrߐJ:x6{"ʫqIPr4`Zp{$'Ǟ;No\o[xF:jszw~N QeI%+y(C?NxJ& {47Ƅ5ڵ7x/Z!?E͊r=)h(Z 1KV79:rrwr=l5JC]-~Y/o~~U0 |xS 9cU8;ysg!5޸yDC^26Mʛ:A12 9'a5欖-%gF~?2ߣ/T{yH`P,ǬT^iK._}c)ƵSsn\:w/F<`9s"ǁv~@i8t˶hPyOzRBAފO\WoOg69  x/;|W_gli!!F1%N2ā";VG9ڿNӵ+"1bC{R.KQ;kފOoC}1>^~U&TӚ=>]2DY+L GQ.'"]А9;Jl/z|+Kl'ڥu}d6[D?5'c/׻:S;\|>6/[yDlJ*,JA()ヰQ(̏#% 8"m;pcR ZsXt\I/ŷ0/]~yY%?w_6(vgΜbw{44 n\#GYcjL,1f#L P'LI }ED?س~[x~=\xЇpv{V{oGGG4mC9 ľm;ڦOѬ[֬bgcBX|屟{w כnju}O @;DbLI9a92rtR9duz;!x ?3 ?}]^!2x뇝t8)Jym:ci]1qB)zuoS1ߩ_Ț܉oռiu]Iia(grAe1 lW3;TuA(kԅ}3*|>҉.J޶U4fsʏ\>rfl[Kٮڊ[vNs9᪊[~mYҿ%|r)!]bNlksN1MYʍs>??mܱ;vcwݱyߠ~[IENDB`AClock-0.4.0/Resources/cuckoo.wav010064400017500000144000002542641156323073400161060ustar multixusersRIFFXWAVEfmt DXdataX_1yue_G24[z,IVw3,<12*,!% sFiJ/~w|0R6[(5@GKH=,zpiUP/mc{u`wduX1Q`5 2tV Y  uK8V  C~z$S3Y{s*Ue [l.e\ Er_m"EFkvnU  9h{cIm N|PCo3^O9G h=vr!"#!ed A8&EDp 7 A: -6  R $=  q kTp=Y"#[{ b:_ 5A:[ c2oD@/: ]! $ A  i ? ehq|e<~.'4   K + `#S bQy4v M 4u!C%6()*p($A5'%֍ӟs "2sL13  U(~V0#" k wtY-t'I7?]: v  ~ r9c n 1wܲ޳Pq Xe-! %'h))})/(&# a>M 5fX`مٖmމX!FrU5[D> !Pv"%s())'$' e xspay k$OMkoQQVrTU 6MH 3 )H YEwOgSS o $&'3(E'&%!D! ;GX8i:כԛӛՈc +CeoVW:LLQvJ >9݃ۙx+۸VTެۙ<^hgRR" < {( = ~:mmp _U&`Ld93 S,_ 0  :Q ?ލ-5  )"%(+.0X222/,&Np64ݚaՉ҄qׄڛמ*sн'E[sN bu %*-01`220.,($Y *\ J7lKI78P*L_| 0( _%0Sr@ U20Dx^)E .,L6X\< (~$\VڙЛiӺط܈=$ 5c 0Ou"e'*8-.-,s*'$"&')i l a%(OyҺXdt2ֽp!<0Q *~*rq *#i515RCb [ +ML!#r#" Q [ ׀Iщg|=svPBg< U9 $~(+-X///E.+(L$Co {fd>cqZٶ(6v )EnyUY&IF /U; 3v"<*C@ s!5;bks b4\!O$!Yݵ.W4gVpM !+%(~*K,q---o,*'s$R R Xc  )cӻl/Fݚ;L"$Z),. /&.+(S#jl Tb]:Hr,T"oQNI | ! @ G *2:3i&cߦY'~ QxA,"m !#;$L%$&&&U&!%"/XNwҥƹX›ZzǞ˯HVܕ(I" 52Sa M!!c V J t9as8Qfu!i2h/cL '9  1o0;]B[lMA#5 ^4 %*. 234742/7,'"o F=E8ܚ֦ыtʃlC:"J!M2,G. t 1dT !##$$#" 3K+ epQ;K5YC) J72m0Y  Q uv)7ZpqCd 0!#'H+./t0 0.,z($@C% 5E}@sԆї}HMpԎZH Ig}e#&'''f%#^ l O S  kb.([rK~U"8) Xlv  |`J>[Zi7* n Xi'"1%'a)***'$ ( *?nЀФ_Ӟ9FۖM1`6VV ;Q \ ;!!!h! =QN_D N$7Q`ۙتxrO'CG  3^-w )1& {=vN+(d\ r##&(P**<*(&6$ 4 Xj!5cޓۣ~Bسwe݇ߣ}1\sWF S>4#T(-083U44'2.W*$ys MDXRa{3O#7=P b?>:Es' $$G!("@+Ly) T27"V$j%q%z$~"=O3!Z  M3hHjٳsБ:DQf \y!N#$O&y'_((((H'S%}"W4~l @'6<1ڼRzf X #* e={+It  # .BvEs6> 4{b9t b܌vٯ ۆܠ;v%c/@ 5aS #&r)c+,-./.]..-7+b(${ >%ٵӺ[͛hͥӓ܎E{ l a N *AN : 09 B;XRSs x   qP?C=A yb\8sa<#kޖݮSܷDi@ Ji$+\27Z;==<950* $` ']Gz'ݍܫ*'ۧ۟9UM3(VC Xg4[sve(  kw!~(:@  R A saYcg<t  CްBpҼhW  #&7*%-/D162/241%/,(J# qRy5G _X oٟۂd/ Q8@4%3 t ~ e -  jE?^*KsC5/GE ]PE#CWh* [kӳԑRr<[/ ea"$`')+,--.-I+N(($ >ށْ|Vپߨ; ?UYQ1 -"#$#s" *j T>KAN6 1} U j`YXeAV&ۆ@Hk(  ?&*-r//.,)&" `  H`/K4V*}^كڶvݦ?1eC M "$R')**{) '~# TJDZ)uldUE.4c9* Xcr>)[ *Uo7w05B N~P'[ (W!#@$$$#~" 7 }} |@۔֑pF#&Xͩ,Ӫ=Tx vx?bj !7""Y"m!=) /X}yq߷߇B(4dt /'oo=7  ;\#4~UWPyH`W,]4 zp4#<')e++*(*% j G=x23ה6[ nخC[' f+L"&G*,-V.-,*{(%!-# V--r^we&/=| \ \ t  _q} q@5*c74V1\_k!rL XW 9d;;{.V !MMT_у|@6?WNJ>hNZ&;,0945;64B2Z.)$".[ `eCtq8 3jXn6QL f 7 ~ eU{NL3@4 w)[i z n- x*A(ErkkmoGbbj QB%!_#p%'(Z('&$!H 1#<< ;f#07+9/+ G - $ R0o(]$O5(!V  $) - /// -)%>! w !#h\ݤSOԣ hչGnD  !#% &&&&&$# x |z#Ouc}*> nZI4k$ im`Qs. #Go) 0n!"#.#!;QV 0q\nG׌n֬ֆ,0$^nJ et >$G&.' '&|$"^ 9:y  _ @\t>!`Թԯzn- ?cu Q W6 (Qv{7OQYASiBb X H%#W0mݩfգK׾]3jKf>S ~o #&)e+,,Y,+")u&"#8 :h")zV٪UړޯQT_; @4U6G@ b 2u,dL  J }nO= #+0 H^ ZkB^,\L \$b)-03@4<420,J("AR!:AS-H.N܉6ڵdpAY]YF u[f[  "$2%v$"{m ?b]rxxP[  *- U ng.6 =bSHaٳڇ0]_ _g!a"#$%D&&&&%$"   8f̛ʟ:Ίx٭ޙsV) '{2 4cg, [w+ c,H fK*;X\5Ncy  t`$A@LGNT:d\&n  9j %7),3/0110"/,Q)W% v l?+ъ̿Z8[{p߳}nKqD G = ~) jh&`&1E71!X l0   &Wpab>E/"qMW :&t,<1477L7[5$2-}(q"*mUpD H_kh*ֿس۫ߑ.Q7{:$],?4R* j'0D{B'4Eji"h Q 97oc .F@*ܻ;pu"Z, i\j #$&'W(j('X&$ {W (CwKEuh$غޘs T TQ+W[Nic7 > Gm'lcsYcb I'*+ !"~##1#>" 1' 'P7::$ק1=ܒ=7>aR]5Q \e (y\$).i1l34A31z-(##e.R(]xmkGKvC:;:v #*w'S$ *9rC\` # Oa!## #!Z<M" ,;}R'7?=ݵ'qφCԜ.tC "%(<+,..f.-+h)(&"C @OgRk_cc.O7D 6(* x!3{a:(~   2q/  pK/! ,ܶpab֤4ދ{j WQ @#C%&'{((((('&m%Z#t  o &R0װHjITRt@.BG~4z_ p-P4ju]p?> Qu H!1! - :(0P EZo۰?HہT;I@&,157885`2-[(U"  R GS }f2?i*/w d 0v^ C1 l<\O&pD Z 6 fI_*~ @cZeL'͌yvݟ)!Z} W!&),.D00$0.,(}$n DV5fzZhva7FC6 27lEN_ $  K Q#B ~|f%hg[2dD #'q$1 d \ c}> !b"7"n!> <u][d TO| 7lj'?ɶɛQZrc s~Mw'0}QY F\M~AF9PBx[ | ,4p  ( CL m5%Lv0^ "K %),./.,I)$: x Y=`3Xb^UNQ";T K "$$$#"x!Nx- 'PKu<-_dp e { | x8:D+cCZtp =TS dK "$e&'x(('u&$ FQ "*"Y2ؚ֘"եՓ 8@6#'+-.-+,(#u( h/_pyNG(e=ge9  V t.PRR=lF}+W  k_U G p {  B `-[E)_:ʴqEѓ֜"G 0 %)2ArG FJ& c <'-zZ_A#[z D  M6 T^?6ma=gjSg-D Ua #(7,./ /g-*&! z~tޙ)Dԧ7B!j2r {"& !#&%&a&%$3"" *sKa >?o>\^Edy OY+K yCaZHAsg`lr ^!$%W&&$l"!aF {VG- - ڿ<ܣ nxzW N !l$%&&%$'#!=:_ k Mm$IZp6Zvlc s 7St'; 5bZt  A"O\V,JL /+v߲ق*޹y[O6I v{r #&(2***)(%2#F/ 0>%3RҗԿրX%2x<J h @ C ) / m1= +/qm6_u! Wl\4?AZ  0=F[(}a߿ dlG[H= wu~E%*/256530X,&_ F& kh7e9o޹ސdH:QifVI5O;hkf L}!v} &a\' 9SH|Xbc ]WIC dy%X-R^yIH#).2>5{6<64u19-'!U s5Ko`Q=%ۆ ~QR^ :k=m f,:P# 2nN< yB55Q UyռNܦ!K8 qI~0 !"####!P #yR] %xk8ZzߺS0]ٿI\MyhJLVhsW8f  P#<h:AYo r7EqeI VywT VAQʹA܊eibZ 0"#s$$$;$#"! Y* 13bypAVfxZ U/ $4-.{GT&eeRkv G!$%&&@$O!<> 7,--a6ْTjػM2ۋUޖGw? #J(+>.//.,)&!@ql 0F@PM3V8Qv-Pd /Im?7[ tD%5);EWWs.P Dk}r"tXN Nf2Dog?Փ-T<ۜ߯ Oe n!%-(*,,>,*(%!& Xya~,dFROp߃i>?jT \^uK *  Bn[LxZ^'  `{#Tm  +=plz3Mӗ:0WO -B}m\aUQ !o"""l!{]; I.}ޖalwm^k hXe]EEs/ j g%.\C6=q  ]"v#b# "x Hu;x* I]#Ipq1 Q- @";####e#"! "Q? 3hjN܄nު-A7 1O"#$K$"7  :YhV,z ] s5_ fSO Nae.1D'$ r{!#}$$Q$Q#!@ Xfbfys` m S 1jRuӪ"ҸbFy uD5Y t 2-"[9}y A<h o  U 9 fA+M^,-mCsY_( DsNB3F $($,./0 /,\)$, Y֨ԫw\ՉEڵݲ F. D h:D1U Hq;2.&ABsw)<  6 C O JZ2n H'xg:RA }M_ H ) $#B'7*u,...-t+a(U$ru +.ߍܜچxFZ۔}6>?Yj 8!"B#"!_ ~iQc\+k(5N pmrq [ . ; o ~ :/7MoޣxL/ !"z##A#"!! !| f2gpXؑ%М"кDԢ׳A.Be\A}p e}e!/DZ^\w_' q  k Z5du}1yI = %Q r Af(B!_pv  $' *+,+)t'-$% }# It;Zޅܣ?مeٰf+[ d b hT'!#m%V&\&a%b#\ `'C *<dO .mD$ * * \ P Rn^hX^b\> d Y%!"$&((B(&E$ 9 3{u v f!akw e@ܦ6ӣSGd܊6L (@ l$b')++,,+*)'"%," KH md!nAQB<(0 X D \'P C>5pX# Lsj &L& FlPqI W`OAY>1\pٲ7iG?_3U6A> 02!#t%&6'H'&,&%#!Lc 4 n*ܒ٭3$D\(ImgpVoc , {q]N [1w(7ox}q'  ; Z tc\k,?/,߹Bt?p {# (a+-.s.-*Q'%#\8q R|(FFxYhiKPKH ,6H Uv)^F- y n1y_~ Z PLrJ!Ga{ׯ }SpX ]k;C!}"F##{#"!j ^ ~ l~.*YZܽڡYG-ކ>zr W T LS\X Y T aX1D{pVEzO GN )c= C,m\+:ri0:f- Y`gr !"""  rYtR۩Md1@wNO%/ E b= d"#f$&$!#A!ke$ kyqzzUg5s 6r xThro$P-?s^ u!###=#5" JZ :ma-_]!1*z|܂i]S< X #a&*( ) )(!&B#z ; EHUymS: ?7V"l$&G''(j'&#!`K[/ pi kޠNݫݤ'Qc ) Q\B[s  r=nbFDCqi~w! S:FXhiow 9 7 {ERNC$ S $E')*+*})(&# wT N5=סf"؆9'GS"  VCh 4,0.Xl%&JO,[_c  Zx=j =WnU,v&LoFn{5 Ntc PZ#&)*++*)L&"E 1<RD 37` z s  6 z u !Tf^bUVO {~  ! Y J7Co !E%icj r[ $'*,.P.-+($ o0 %b`|ݓ5B߉ypQoS{! Rd   %:1Snl13k]6J [ A S 4 D x fon[<ۣwowݤu "$6&','&%s$"!1! @>ۋ'ޢcPn pWU? '2v'!Y* y 4S1_& /oHKS*|) 8H!/ cpi|W "v$%&%$G#&! pi -oT.8>;|r!m` y ?\C/m ! v>9 chCLAg x jI4".:X Y)M{vٍۡ%fbb |9"%(5+,'-, +i($e HT ;k'/GJL7a'r\PQo 6:mX.K g mW:EWrC > D> ܶmRլp hw (qK!$&B(()m(0'=%"5 w{}T 6z;aKa@94K  X1r0P l R'}^\`%e 70Jf {:jTL ^Djc=rI:cv^'۹ zFUgW 1$ !*"'"! hMviz 5aaap}g95\VYx| r *_ 7 c*F/T<c  wJ? r[},ph#߳}ݢ0g xU0I  "2%&''&k%A#s F 0B }=VT*6n! BUKr U2E!8$?f 'Ek<NTC - [\^g'$8-߀"zelz <,9F# !k"""! #"} 0nVABJhw c O??ډ۴Tp1 [n `_S_)  \x#{rfgw9v * e t  vG||I{M - uhl !! x.5 7btBJ؛կmֲׯ8E `_< Y3!zMi  `QCU"~k=k"z9(? S "$%&%$N#)!l5tO ND߶iڼעRi6_WPVs E !a"! ;" #Go kdIntvh Wq4UTMF%%}a|IIANvNej\S Oh ' "k$%%v%j$" ~H }3;ڣ:ի ӅԊ {ߟQp )#c)l "  R _^;rO5 P ]#f ov!zWMY"B xJP!>$|& ((n(.'$! }o;0<ܸ'[Lٿg?]Q q ciik# A,Tv&xw.Uq@mgul.:~U0i[3x@yv4  "#$$$" ?`0 d=-yB?'݁ݛ%*pl7X** =!!"#"!D tGU]t4C\IWsep 1XXN $ ' :H"c[ H )-4uDP< mk[ه ;K6: Ula/K{ = *c ul|M%=-a2Tc "# )qm~e; }42&$ B mHXO>' fV<(f\ F$ !#%'''&$'"^_ _6p#ޜb\U.2E9m Q |+e R _ [}V8_c,:vAF- o xwb[ ~k 7Rlo~ߖ'F_% !$Z'$))) )l'!%U"  &.DRt06 NG+DFy $ e}X|Z Q 'P;+W 0  ;RRaV  P WHW x q s%nuܵ݁{CV < d#]%&d'^'&a%p#! @ .,A|UQނe9\zZ L L9s j b Q e , /-yu  @rZHt R[>[  r}>%{;ߺjGKS<OT HE .$&)c***_)7'$9 K tupl Kj &8:DIeYg,_ #JIVzD$ M : -xEeK15cn2  ? j g 2 b7+lz6t.;LH=n\^M  R"#$ %$#"< 4KO,  x'xqi6 ; K4\ 9J;Q %ivAi,k2 g!d bkx Tn:ޔ#x^RCcz ;N9K!"{"q"!&! 0  >*rt#)ٟݫ߾8EhZ . ~c0JA74.<6g  K"i  4JbIK1)!J  YM "L$6%O%$*# !S ZL"i` b+J x0  =@7 u \{>n #Ma+N?P>^(LgX4(dTYr,b2x&lӐc1K*}>8 \"z!#c%&%-%#" s KQ S'} nܬև=ɤlK, Lz5[aM0  .%Z) -7024555^30-)$ CnyBWL.~(2'/X, u \9K &JU H?FF!e4.5h:kpk;B1] , !!2!$ r 7$;fh+߽+ނߙ%>;733-'M!@@ y4ָ${/ Ϥݣ,SGt#`).369;X===tYуυLҵאۙF(, k!$'*+#-- -+z)W&e"~ =n&9ߨzޓޅ`x J <B!$'"*+,,+3*'$ l[ @{?ő#ҕ.So Q1#)/49=cADEFZFDLBh>692;+"  I}_ CݭƬL̰Tϸ7iY> g`&Z/7?FLQZUW%Y YWTPKcDv<3)EflJu^Ub׬AB)CB@>:(53/g( n=GIy~߰_Qa95*xN?,~9]P}{EI"Y#x l7&.6=9DIENQ`TUUT6RNN IZBi:B1']P1JY×ԶδNw*  k"s)/n5%:=m@A B'A>;7j1*q#o V0l{lemzĔįλUّcE y%O*a.145666420-)%"!& _c.忱pÿD,V~vY&"-238<@CEFF*FD B>9: 5.A( j!x+"콜 r2Ȋ̍#6 W"j6#g'+@.03466:77R643X0,(#(= Z7kHQνLMƂɍMҩf݀p C'"&[*p-/122G20.l+'"55 {XNPr9pΝx@8͋Ͻ֠!J$d z$6*/M3691<=>>=3(Iy޹҆$"ԣ͕';ȿO˩צs y&Q2[=^GAPWf^}c gli;jigc^XPGa=1%Kw .c߀'Ǭ?Qad͏;ߤb&uy'a*4l>FNTX[]7^]ZV9QJB9/O%)GP̱֗ɻ\ T%f&EѺĎ֥KRt(A3BdFHJUJIGCEA=83-R't 6 NќƣH.hǽ\x>׈$o  M#&(g*+j,,+,@+)' %!"` & sjwޚHH[yr-ڻR v;^$(,/13A4M43a2r0-*P'%#Ki 7 lHҒ˷Ůɼgu3ʾעߨ0:b&,28<@C0FGTHGFDA=82,y% U/@͹L>p |aF хf 5",U6>FM@R,VXOZZYJWSlOI/C;2o).A1k D"ƴ2͈@P '0S7=ACGJLMMK1I>E=@6:23p+"T޸ ԽЪ9 h8S֚j ,7LBoK+S]Y]`a a^ZtUNG>^4) >9֏ʍM x54֚ܠr8ՕbY$ &2?>pH}Q+Yp_!<94E0*$ B"HjBOnjm/ʚ϶Mآݏ7M5!(/5:>dABBA@?;71o+$hde'`{(ljJbIJ΂H$8|2P! '+^/256-888764#2/b+3'"js \,;*˯Y  վT~&7-26:97652S/.+H& q .t2z9ӭͬ3޼òLj͘Թ7$}.;7>9E8JMOYPtO*MID0?8 1)~ 6(]] @26_X RJA8o-! Fn7-L5VޚژH=88v~ɐՁ5 3'i4@JbSZ`c#edb^YRKJB8u.# 0eд.v޵o,J >%-5Z;@DGyIJmIGDo@2;4-%8 h!ŷ41й6w//1&$-6>EKPRJTSQ\NCIB;P2(w 0VVXE3괵oJjI%5oG ,%>-39>BEG8IIH2GD0A<71<+$QC _ ,SО˵ǫp^5Ȳmԫn߲lp zv%+/3*67i886B41S-(-$ pEan\ߣ~ܴ]y0!,! ZG"$+&+''#'&:$!] Q|8VU@֨A-).yI5  $)+.14z55x541.7+'g"`( N]޶UCΗyDjٽ,Ȥkۀ(]b,%.i7`?{FLQU6XcYYEW THO=IAc9/%{-49趲7X+Ųb "-I8AIPUY[_\|[>YUPKiD<4C,P#wh ݿt*ޯ"٪٫T=Y͘y T *3;7.'&0 Վ5 es/ 8M.  .* 3';BHaNRURWWVT'PJD=4O+x!; c)F9?2 xF9.oWܚ Uj!'-269;=K=<\;^963K0},(B$X o6t,.թѿ|ɗ =T 2 C,"&J*,.//g/2.X,)&#T h&rA"'A6:׷Ըw5^V IARYZ\a"gkn3pEpnk g`(YPE&:-u N1ZŢ`yWh"s⣬h %0{:1CJPUkY[\Y\ZZXTBPJD=O64.%cgS_-<5l -i5f='.B5:?CFHIITH FBs>C9+3h,$ " pX*w=۷ɻŎB@IR[cjnqrGrokd\;SkHErbfJ% Qh2rxU@B eg!tVRxCW: cvX@pJ  Ktb>ybՌԐ]oّB~W3 tc!#(%V&'%'&%$!VS /EKLw+f  Bc%j s  @ITTm9J P|j  }@AsnR S *<޼1#ڮڎ@]dG W59!"$$o$#" WAd y0B__`EsLqF @j MT\  ]  4L/(E66racvhDL|X?) K F nkU/w<mr YlQynzZX #YG ;zR`ay?G =ohP|* OE7cgo6;  $Qhw<]ioY7eoO9Q +:!"*$%p%_%$# "Y /!7y\04>V k dv*ymJ; [ |=}i*V:{m ! B"#*#k" !R0 ^ [Ywـ؛bا߀ x"#%&'(y))l)x(&$["S yW ۔ۘݩ޿f]I?%C U4 ! uU@ M/HHYydX][kn}xmI   A ( 8V&S O8fQEr ?H+S,)] Is9 jQ  @ !T;q@@Vt\ X prJ2W+ & M:LNZ["b L*} 3 Y  { < [YhG1fd}]B{ f%3?  _xOc!h"""! / I#;hOݠw޺ߗ|ys] T+b>  <|0;$+#7T=#_\/ZbdV #'<Gg' D{t ;{D gG> * g=x n {S#$NHd]:aepy4 4WC\T@ SdAW0h  KVIq k9j#"|mk h ..-0G^7o _6 ]#Mh].;Y x  G>_%/<GO7} NN5 F /"JYA3 Wr\=VDݹݵWa^bR ,` = #Z&@(S)))'&# R @$ ?P`qK;p#< ,b ot9r(h$w]D e n}y9GtPmYb[~Kr w ~  G  F5uPYAJ q fhP 8 4+:YkiQXkx3N"Nn "" pH+`rnM4GD3 t   g'Ox-dI[ % jlA6ma9! [BVHU1`b&VQcO c acOH( ) Nv]2)icg9 gK  1t^u-I[ =(  qo !""""!n' d!Q7I-حׅ@B[4W  !#}%&%%m#-!j.#L +&jg&mTz 4 n 9 ec( U!fEFsC.[6X *'$[: -%T0b.[<x( : ~ B]h6 G a qd |$R]$?@'27I\SLOX|5fqEJl 9  k+IG myt:KJ Q 7TS@9W{ B yqvwn~bT?7/@3S=K$S9Y YuR: R_}Nl eJ 0X]__])]1T\k*q#MHV5 P Z!X1`  MB\|jd#/L23RQr Q Vr9d %f iPS9  F: q'LH"j08 R7) ? T _ I$[MHC@Os[  X8a/&jC7{~Y Z]~l>' d7_j  g #3%d|/ n^n{NQ?!T# |2,Y1Xc 0n_n[{&Eo U kk%*`*6xWNnEXfT e 3  W:Jm + 6UkaHEV{ H[$pRaV 8n+ N>yl|I(.n ; F{&$S/\;ua #5J Q ?Aq1@MO}^@D[|V;i[ N f0]K Y.rS ;{KXt94r}4 hrP(fDp[!Ls QyJN}z/67 h0}  H!JM E L}B|77le_A=]b_I3vR 5pqr@$j`x  7 %FkpZ UaAXjSq'^6 ij-5z+F84pg&*(  { / / ^hAz=TXKD`#y Dhg; !""! 9v k(q EE`\aTw#5e`& %7IBGcP ] 32(LYv0,BL[CWvu 27[2*@&N)Uf@.@EB +ASDaL8 QcG]{ =v|vVpz K z[X&y PcZp|5 E/9 m  B Z " w5n2*FMA&-sm'm *LYFX2 RKdK 2id7@7H+ 2QM MXyC"[5? =-&WYD 'zcl <WI h w  Q  G  ] ALRtb,Fa;}  2  =3BIw 0 +Ccu^: ly;7$ ]Kow B (/Mj#p# h%TVMM DsB<3r< -sr>2^Lm ; 9z}%8 .c/<kwr!MyZr Q^0 fpg H%  EeIG.E@q;wqmk f re;\pZ 3 0$"R?$YfY\T8 eNwn6n9 =M4]8,< YQzO  ." CPk{ o"uD=of/[d* J`&J#Q  _r0w# rK>>VVjQ, . / C? -!|ieQ2?lqh 8 - c _  ziqWY+u2_t?`^*  G G@~Q6V s t {8fM @)H*DR-9?F(H i ) :gIL  a)cL@GVXK/AR O K ^z.xb >Feyj!pvy#.?  {! nu%@ B\b- @bp 3goqs2 J N=e -  U n 7\cy1)ha-8SQ-FK5R<Y  _(h\?;?R  ?B?+(9qbZKD6%d7+' _g(;.S 9<#~#8_# B 4 P[-]=Z,Dz?a o y>-Df<  k 6}($+$pgw Uf,'U o  * dX~,W8V7;=[pWqV_jg c:@t&W&m]pO  IC</Y) s|A\'8,pP " @ .OwX_e mWW p A,s|334`{;>I;D7!j1RJ56a0N X)m6f  ^"(~e.CakbU]Y %x`k 7M]@ # b^3m=-N(m&"wnP (   Kdx1I El;Z]~23 X J u o % kdG=N*: 2P, :eU+k& V ` U  [Mb[=`sltFd>N7 s OE*2 Myxr*\l0Cx AF w6Rcq.T u ~%!,#iB]zM' J6^-K \RA] 0l]^\C_,S' \Vj. *]G{Hܟۈݰ]chRf  #Spqz}- { 0unk;Hvh!M0rf & ? 6  s 6  ` 7 T i Z N 9 , 3LoeMDA&/޺ܷYs.g6d Uu6 g K*k@"$&( **Q++d*)"'$!.R Pٿ ՛׸; hsXl_ p}?-o7 o 8&OY -GH Xi+J߄ݯ!^+ئ{ٳ@)gow  %*.14q7q9:;; ;9751-])C$L Qg!LA8ԼC`_"WX%¶Ҧߕ8 M"t*a17:.681+n& %?o Em{~VIGEʲ˔vqն:V/86 T"U%(*,.(0n1^22833v2l10 .+(%! d }j7Q^׾,WjIho".F 4l#3+v29 ?8DHKN%PPPwOdMJFtBN=751^* #qp J3`ܑLώtC;}δɵ%ťZe܍kYG< bC"'+/r36"9I;<>>>=<:j8i51-&)=$ykmEg? 2ݟWLra&<Κ;$biCҦtڑw Q"(4.]37BEbHJJK JYHE-B=83,%D'_Xqdڰ՚? o~ ^+ǂI}bpb6 V+uy"4%')+->./////F.!-+*(%"/ ۶Yy<ůNGt@ dQsf hW-%&,*27<)AEHYJKL?L$K!I4FbB=881*\#5 Z~2έ ѲLش5N'µTgNL -R! 'r,1 518:C<=;=ACDVEDCA?;7'3".("4 =pR=җz;EEB#ˆϕ*>ݩh_r$ |j"%')~+,(-e-H-,-,7+*(&$"k d G0Lߍ|ۑ8ԵI@kimdt r#b).3 8;>'ABnC[CjB@&>:6Y2@-'!; 1Җ̉ ٵ7@ ps  &-27BFJ}LNNNMKIfE@;5.W'Y89#p/w^ąFMӲԷlsķUDf۰$ oS %*3/K3690<=>W??-><:84x1-s) %X n ];)1OjwsӷbcʣȎȮ;Dʩ˚ϢҴ1(A5B~) "QS4#'G,m0Y47(;>}@uBCDEDCA>H;61+${,  [٩чP\/~Sx{a̼5: em%?,28P>BFILyMMMLJ HD@;60* $,wf~kVeÈC6@ȃhӐئ0r&  "I%')+:-.&0S1L23v33]321H0^.,.)%("f3 X=8}˾)NĹ{4* C Z (3/5;gA+FJ2MhOPP[PNWLHD@:}4- 'D=' ԉ͂63$[?-ڱn:3TrD"'5,H0368M:C;;z;:985z30-**&"c Z ^) 9VxRzD\ՎxaW[( `!&+/K3f68:M<=V==#<:8f63 0T, (^#J ~/Le1-e |")/K5 :->qACEqFFEmDSB?0?S@?@Y?=-;734/)$ p5gW%Ӑϔ1rJǶƸ?\̉·ԹS&o%r J!>%m(.+v-2/y01>10/H.G,)&#/ r  o Xߝޑݰܸۛ<UBoqU\ A A?NE.!$n(+~.02'444d43)1.7+U'" p'%ׁӣL̔~ FŢŻsʉШ،ݐrm c$)P.u258:B<<<;97z40,"(##_ 1k(%d2& xuԕֈb! u, 1rKhyQ#M6  /|Mo6<׋ָ0 ՜wְGO۲݊v_ V#(+X/@24]67-8287o64e2/!,0(# 3L4x'Tegđok̜GՆ 10[J "D#i&.)|+>-.c///{/.-j,*(&1$g!p# BSD=/ءط ١jw۵3,]Dg&e#f 's C#%')S+,c----,++*<(%,# +n o("{ xǽ@u}[PNN%s ;w# (,0s479;8==>v=I<:85x1T-(#L z~ؤZn˿tˇ l1KسXE_ & IaC:E!#R&J()++(,',+ +*('E%;#!RTxmR ):xf6J׭mУ[˙ɂ,(̷{՞2$![ Mto%%*|/37L;>@mABAAs?=:w642_-(7" k/6~Ȏ>áR-˰`Kܣ3$Z6 Y< #',/246j7707$64c2/,)>&"=[ 2,Rq^,؊28ןbhiaޮ@!L\*Ao0 1x#'+M.,1357 8j8%8G7530t-|)% QE[B)bR$|RYhʗԺ(>k B~X#)/49_=@BfD%EE1D~B+@=a95R0+v%w3 G&5f![$̮ʢʦ̊Τ!!~$Rn DZD"b"$&(w*+,4-T-,(,*1)'$!q  XNq\sTʹ͐^[`J+Q ^#(|-158;k=>?>=7<96U3)/*x% 7& gIey:kp7Jߒޱ ݆:&kܐ݈޵7q,+v8p x3"%(*,./04110o/-+(_%}!,N mhG0-eٲWw0ɘȖ8l,x:zt[ '% #1'!*,.00111*1$0.,)&#F * h(V;g?&ܸ۞. ߀(/4_@7R I 0 c ::6XC !}!!!2!` <S} S S$T^IRԧbс'Q זمhWv1 ` $'T+F.023u4g43\2h0-*#'!# J9 ߆[خrӽъIUڅu$w'B ?'k9_J [  {-~-\s HL g)Wa s+G!#I%i&'n'P'&%$"   ^W+:ݷُӿϨΨӻؘXR,) O57!7$&()****)'%#~!=WC H 9i.TUNzDU6%(2YTB agqadvgU m .hAdו֦X׍iܫT4/. Q!r$'J) +],---l-,+"* (%"=y- *^o-){4}y؜30םi؞1 ]yC %7] D ?7p uRFlk*q !{W{FAn'l. 1VJ #]%c'($**+* *(&$"hT- UcmoX/܁֣ұҟԢߍTjC I""&D)+-)///f/A.,0*u'6$ [ '_KXx$/xpQV;.?U ]nk } k!!!!#!: M? m"RܳM0բkԏb*e<0,  /9 N%:),/134|5[54K3Y1.+<(;$ 'g&)Z߆ܖ vg.lAxWtbeV?K H 0o _ h EMY+ + d~J4O@4Hߛt+(gs:F16t 'y#U&1)+-(/#000/.1- +a(C%!x 2E8!؃g̳!:ei՘؉ܽ8M B {X!#p%&!((O)J)((&[%r#=!/ h&.GT D@7sO}M}A e'wW @"c#M$$\%o%:%$#x"  ),FڿӼ adоx~ܵa:  rFH t#&1)u+7-.d///.- ,)G'*$ Q &Ug 3F!ڱrCT(-Z{ Yy_.Z!pp e 3mPe7ޛl۫>Oڦ~ۣ.H,TEGRW Z? "$:';)*+!,,+h*(&T$x!O {g('2'u&vmL&t+ r Yla--;P -5b]ܢkڊ@b/_ $19 x\!X#$%.&F&%%#"[`l AxB:wb0<; `B d )>kZyj I - & 3 R,^ PosH~4Gi%#yX HT([ w}k !! {y e{oOw);#4#L*h  RTrvIgVT  ^A2EiV*$MH /R;}( *fOK]c9 OLg abkn.l u RpRme|QiwGw o$4|qV 'UAu!"-#c#&#"h!T}G v {eLa5u-6RXxxG?KT: R(m pL ["MR!I ? #?QK.b-5E&]|WBdxR[1 'K~e us]I/e 8HG! = z = k7 ?P00Th@9U+9_-~Y:IMj ,/x^p`["s< cKY^1o+ڬ٣یy]=^4_,V .VAO_!x"}#$D$$k#a" ,q <tssS!dh*#apG6Tn LVxz s [ H % vGkBoqD<b>7V2 CzW;#4YD.CBߜMDުJRC-ldh M 6 "a$%&&&Y&~%)$" -6 @_w;1p i?܅8j{Jky@| a  URmW W] D 4  (:QzE3n3 TW)5%D|P /` !";#b#B#"! $>tkK qhM!݃ۚ'5׽dv }VxlaZ\A- h gM IB_gnu D Kh1p<,,Qsj\-}/ W y{\8J'N_;CyQI  Avכس,T` O3 "#$X%]%$!$"^!|L8jvdJ ' jt?2^Q Z|b~TBB?z' & ;(0jf IU ?&@T^q*ZLmߟݿT-us+)l{qho\ 4[#f H"#$^%%D%$#"- J (X>CsD }9Mtߒ6^] $dm D L] >7L| p C vKJpKQT,rr4n%W6 70Ub( a YX0+a e LK|C2mUޗJUw[2d 6}H>J`7*NG>6 p ,h1YQY3k1wxhTNW{ G (&N[ t :m C  &nJ:@DIK? _6xT WrE$  3 dR]c cNJ7m.A['\ ) O z _ s 4 X J  < $8BOaZ~=0M%PS3d]9# rG+;Z_ N 6 8tfnhg{1vnzq ` -Lk&=OSNH(W&U+@eiRu 1s/91hn3)Kf~wI h |NY#36 W MmnIr2TO)&i{OFd31o}BuH_aGs2t*i9JUF1?N" 8||wocWUV[`g^_M5: E :  \jK7&-E|?u;9jI@'xG(v9:+AIh.W).YOXQloO 0 6  VIgss`Q+{epG/2yO@N}JgY2_T"}%z xB/Qtpx=t9,o>W#3ug *f=p d  t  q Jt>- JA07z>{ Y x * Q P $ Q =4@v`Xm~i!rq*p:7)ofD: 2  X  v e H(K j|3 V:d;:   E5} Fa`xj$j2d#ne ~)`,h[nnK 5 V X -  }8Z\S1zN&V9u#wC $ w \:W2M}T $`~\A|+5&\S``2U&;Nc+AHKO96x_6_{G)BcmO&sN^k E *>* eT?Q&  ROEG~=Fxz3 &D|?*MZdI" g@KJ$W;W ;}fKzp?]10Jcn+/a@ D \ :ML`nT29mAt'i1BH3 N  I 8GP@-  /Xj75rk2fL {` /N riKbWJW[+gypC%i*W'ybT_~-1|Ipi?fBmg5bRQOD]  "  z %Q> }cD\)b4!'HoDKte+Z  * & d N%+)-7C] n}6drV?|8#c452v)sw-S+d"VnXEBvh`khS8:e )"CWmhZ0 _ X |8y9X?PDs(gXm>ByC}o9%6t)2TSfpX3TTA ec^"Ry%o@i0;R"*>`zzT E^q;zZ h{/!c5]F>>CHD<5>RL&$,!#A8}LeH1J{NuUr>Y 4^uj/[(1jJ0Su|hF W7/rg+P)v@\0Zw;tk+Y6/}4$h+$NAh*9?>, k!yQ'j m(unl0T{jA\-_oS* 3u!285oot~tVVBK< bg4D'tMKEZo"YHZ1x?RUB!=WJ7DA 1hM EIhQq*r H;]*iQe2s/f=~h0A8z\=~#{7 X"*Lkd"cp40D5v%VC>S%Vv>f !k_'IXz0#{79Zld9? 2_O#^`U$$OM;Q#M`A!! DI>j TVTSfP+>A;;YD c\PU Cnp12 f QO>u-eG*?c.k\E#2cQZf 3^^u..< k #6lxh8z4p{3dX$<d*Eg0\9s+e@GhV*[9(Y?Cajw]PYizzK9hl[#kc-BKzrfp{(6@D?2U^\)xe n.w:"XX I>5o![&n@Eg,hkB8xs   D /&Ii%\dn+^Aj:GK=2&W1yI)xbC-Hdk\JN0c 6PC/\u$ + { / ( npR) ,q=r1 )U0]='{W+3 Boz]7 4h+,"2O5Tj8/\30mb^m:3 s [  [ *euW( *V7-m`;82^kiPK0}-X;+"!)2KZz#AQdhj\@FlY+mg|VVsr|R?4=@GIA(W:xk(N vDn'L|z RS`H1#n@an0ncoXjnxSAFYZq@ M`cN&Ar0;=|^C1OM*=^8ytNn"/sIKIMt&LJ+]ppwE4T*`(;98$ `-o+d/MkQ Jhf6lTVWuTA9:Sm)u0})bfL`X.5~Vr"~wp%M@Mfwh+n\YzHl>$DiR/uW(kIo]'+'(Q sQNWO$|%;83Q$<Rzq, MfZmo:LY:0QRSZw^X*3h H)NL2*mIEq!d]8/r!W]ALD4W [(\V,[cN4.PuVV]2.;xFft(\rpQr}PO?dYG\ ()NsL2pWG+#Df#Hav|aB<z +K5-UUuBv  oLON6v$]*\Ad.T`:z9[pvX:r7x<}wt6`W%T j~.l8EHXaa M?/;3n0oQ8m) OG+1[A5uS;]~IRkA* <^,h;ayy[3s"{"Q#e%c117`quX.>XM'Z d\,; !q(^ by%__$%{N+"Cc9' 2Pd(TKn7R 9n(m=V >lzFNfS'nj?>joB5~>-FVT7UN:o=Ng R`:UT 5]ty[?~X8 .Rr"Ov`"QNPj&bD/&&1Jq5JAvAW(~neDRd3 Fv g@4413s  z>z6y@ "&?AQURU?6Mp"a+#MAb9cvkU&>2nsR,}B+%!1|m9I{4cq=,PbXX}d2mo"?F6Kk#x6d}zV0MNHT8%_?2!lB~$IrnGG<&|:~}`Zud$281Wv!sy+^IDJaZ" s>5KK=u+#ka w>~dQJGTd B#|.A&Zw;]2lm.'c@6G6v-s0q% IGwHk Q!!QnJr70 YZ"PI,EclvodI*FX\f@2#1Cjhm\,.WYCK y^OJOaw-i@385&GZ`T=TBu E?{FEvWvD `CmF6Di-Hy#P yCHrF'NhD["'h xo~ zEkss[4y'|*3q; L} =enFP#}gOC>?O^},l7jE*VolL&>(lKSb5&%@kZ86DL@xU|wH|*qTOY7#7[~,R*>?IBC=5)$ xu`bY`jvEe:w|4(OjXO/(HwJ zdXH"^j5WB|$v"sE*#>Sp6m <w,370u:T#0c%k?I_stsX@VMWQ s[SToWuqb1D_~}lU2 c#KPOYg@$"<]WPRGrb8c'S68^+\J{"B=xMf)D ] cs#}^2Nboi_Cka Bm ^~~D5UeI +6,# \%YX)Cv%^3DMLA0vCM$rUC8*0*:F\}&c(kG <iuC<DGi)}gYV[lR=QK564dP b8@a 8a wT*wA|O)H{:kG(SrnJMK+q!e@)%7XLN[3ma8 wEiU=6%(")2@Ri8g ,+'mBk8 pT@/%",2J`Cg Z8sY_,]KoXJOYv)^$cQ#?Tdmsng[B- rC}ocabey1C^psW=|K"|L8  !>hdq096@9&UP0rw+~S7+InaOBEzpM'T.fU@5*%&(2h$}[?+)#7JhQAmuTI(vrosx%Dc\: mG%'P*fEsc8VzQ$4Vu8SjrW;hPC21+5;M^v)Gd   iAtA gK?28=Tn#b] 9fvT*uDf?#Be 1YvoQ6p_G;)&!*.GWz9k;Qoy{rS8v=IkUD@?K[q7f.]$EYoz}iY<M!y^>)(:I_s !7G[fu|{sbT;)yildnwHl2;NII=+}U b6 wea\`nw(P(W0NfvxgW;#yL(rN51Gh4^s~eG+*=Wk~x`:vS&|!Lw7o +BZiw~|sfX@+ V%j<yqfls+X 9^uZ:"|&B[sw[?cH& &Db 2X4QnwY4 p?a'mXJ??BQ]x+b"U)3FFJB7$xU2!!*&'$ tg_TQKKNQ`g~*Lt4E]bpmobZA,uDR)zbUKIIVby3i:l1KTcc_WF2mJ5{wrsrw{ -CXnrT, b5Ju(S}!,475/& uT9maRHCA?DHS^m} ,9DPTZ[]WSN@<,#.M`nO*sW3!/Mf "J`   `E"r\N<6.+-19AOZn{ "2IYk|j\A*~ecTUV\hu .Id~~aM/lWJ91%#%&3>Qb| F[yveP7%ub[JG@?AEOZjz 9Ndv}oZD0z1AUeqk`G7 }le\YWW\diw(9KWgt|ofQ@-~tlkgmp}+8HS]djimgg]WMC6* /<LXdlsxyzuskcZLC1' yxxt{y%@Kaq|smUG1 (4AHPXU\VRNC:.'1>JO^_fkknmii`_QP=<' ytihahcqs&7IZfuxq`SE1%  &$&%!  "*02=<EDHJFG?>5,$ *>CZ^nu|xse[K?+  "&)*--.-+)&%  "")''+$( ! 18ENU[aaea`ZVLG<2)   %$%($'!!    &/4<>FEIJGJE@B66.&# !!%%)$*%&$!!     #%(),+-*.%-(  !$"&"% !             ]\SNC>3*"  AClock-0.4.0/Resources/cuckoo0.png010064400017500000144000000003211156323073400161340ustar multixusersPNG  IHDR@@iqIDATxQ@G"#qv 6gKh Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt=}, IENDB`AClock-0.4.0/Resources/cuckoo1.png010064400017500000144000000003211156323073400161350ustar multixusersPNG  IHDR@@iqIDATxQ@G"#qv 6gKh Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt=}, IENDB`AClock-0.4.0/Resources/cuckoo10.png010064400017500000144000000037761156323073400162360ustar multixusersPNG  IHDR@@iqIDATxYeUk}νukꦫjh D"4>``4&&~1&DAh!hkNg{p]7Z{5S%_>d e(C&P6Ml (@ P61lec(@P e(nM.=V1z$kh) ky2y{۶̸ 61}"T61ٌz/[ߏ/bƮ`.ZyTrlNNܮ\Jhk盋i4ĝgqM32}M}ĵNDඨ>?=~4Z{k6bz9G~*&FT^{ڥq 6K8yg59kT\ԣ ]Dv'u+yNN%1оi63 &`a>tں촌d>Sr6@#N0mtSU5×_?U/^*ٍPX?PUꉧGUPubFqxa⋇hoRZIZF ݷe*#KL[-F1p^;M뜽851=NO"'T\3\`>E]~Ylf =k6LmJߓ{%3}+F 鸓Zq,gSPfszFᶅ$|`(>BtT)j@ FnBQ;q<$VכL9`uPBC,WZisAU E`gNPDA3ݝqT= [B܀7ރbtFHlv5%4` ݛn׀t+o5 {KN&l4?&MxC0ԫ`;o -]`A\LM9bXZ-Dpe.\,m#='p4"Πt1vsW 1v:]@DxDUieF{:w@U!v hvZ CyVA*"*K>꼎OmF.[G{,6W|mV׉j?[͂iﱦ Հvpknp/-=i( |68lec(@P e(C&P6Ml (@ P6!&IENDB`AClock-0.4.0/Resources/cuckoo11.png010064400017500000144000000040561156323073400162270ustar multixusersPNG  IHDR@@iqIDATxo\Wk}ΌgƱ8q.ڦE@QKHTU Px!WR !H< *ҢZQ I8v|۹x8q|qZOŜ'Ygo>O$Mh (@P41hEc @@ E(&P4Mh (@Ѱ,ɾFQ!iÅ7SoQA;TU4G5k-&5qrleo/C}yo1i.ؑ lfD`OX?7\|t.mkNNcoTThc㹇SDSSgU57λ˖?Y<ȖVn>e1WAe\Af|+ |CRd!viC/S HL5t# p?>Ϫwu>Qq\Z [Z`4Շ|_0hV #5!Gzj+qiƎfH2O#v,[7=iOglړRnP҅~=[z/5+N=hƷ/-^=G{ WHԼvf`x|:Q%p$jg V dd$i\v-ROp#/K˭ƨ$0;6\yP= `YΎf HмD,.+eGX9s(bI%R5V6l `\J@AW!B3?v< a;Zw>x,6S2)ա߯ PJA6gE#v[J޹ s N8ο5Jjyk*5N2Wh+q\:2mXk.Nw_:%uz']xƆan ^'?oꚋ[_Tvͪ}ߟބj^3yE*c)A#BoH!g#nvk A e ~4AWVi368HjaL2OxUDTt/F-SIn;^l6p'ލVBnlZd]e8 $A,Uێ?KM6W}ݝ+ܽ>ԡ$]_]Hiogz@Ŷul~DFOMh (@P41hEc @@ E(&P4 %mIENDB`AClock-0.4.0/Resources/cuckoo12.png010064400017500000144000000040771156323073400162330ustar multixusersPNG  IHDR@@iqIDATxKpWsowF3z[ȉmpB*I!2(:E ;V,@QPlXൠJ*PR8N$e)ǽEH3RP/2B3ݷNH6g(}h (:'F(}h (:'F(}h  %I.z@UExThbR ,bUPʀF&0h@-Z>XZM@ɸừs \|TRŤrfINΦ//J3$KGKdW#6[L03Ⱦ&HkGGv#V|4hoTTSnG?3=',$3wW/=̽|:f Npң=IoV2[xܥqPoQ.M`KÃ<5nkwV5W[Yr7.?Ϟ^|8>lF]2KGqiV&NKPZ@t |.>a4HBkfWL{%<шIǎZzjikWg OvVPVӥs_ɖ/pc@6>L\UH\J<쥯|oekpD _yjk:Jv? P"Sqi<2窠ٮQ J k̕%CQEcDdN٬ln0F fEFlpX]Ƈ;̛<9m>]YY7ZC)Ro9j B)S ]6 } t\(}℧sK?g^;̜R)GR5B5B>yXkMǏ*~U{O [Hi]  ikN)@sl%&wC ]9'߿`rS-w^+LsSJ%=`o Bd m}9 0 Hg c)A~@`MGv8tzb66Tp`O^Wє V3 a8U@ovsTI3E6ރ1ڑ"05Go[2!R `O2/YhsO%ovҵ%cp;iZm7Af80u&Fa ;q¯?Sϯ"k;9S&L1zVjo3?frvxЮ$2Roec.]c! ,T;px,7,ZSgր`zoN2l]#mTz{s,G0lܚQ5\I  ޛ9웄=)^S;_jrdUofک$v`{|7{4brU: o;?\ZJrM`|rx6'Wo_^?^;JVi?5"!.u\4 Vؚo ƅm>]u+`] 0؝xxUi%ZuN}nS[Mz#S.xUDTt/FMSI.çl evdjޱ5nz5 |96UE_,%<+6wx埥L67p+l kO!%A,̱K7ܿ'h`n:cp?"?Ѹ9> (:'F(}h (:'F(}h {IENDB`AClock-0.4.0/Resources/cuckoo13.png010064400017500000144000000041151156323073400162250ustar multixusersPNG  IHDR@@iqIDATxo\WksΌ=c͹(HKEVV"T @ $ψ$$ E)B&JoI8v[GQ[L0WЮL4xs"0֏ 6ZJ<ۘűߪ x$g:%ƕ+/S~/ʹǓg_\JH n<c󓿶"7;r!7KdW(EA)# kj66o7\xWxz/Ui$jĎf9ęK=00Nh4}_/Oߚ'Fݦ_]^C;O|peɲ1yEbJN$*$YkJ<ҝc{o\rзe%#Qs'VwgWp=7z@Q][B<>kʋx u W a ͸\Y2TjN>;*(bt+S|{'@pbV4k,"P3#%bivOÏ^Gx=/~ݩA)ʪ9|Nc-m^Yl9[?B)/}[oCT?N3d^;2 sJe ں FRhXw㰣W/*Px>Ǟ1 ofH3X*4/wo绯>?D)?0Z,wy@!sZ8Jz(Bk )}~Ϗ m6&bF`{g]`TִRBbJz5U@5'm;V`N̴r齌Q=KT p@"kZoNK*E{;!pɨex9atXx-w!sw˼./H2඲Ю("к*p!xa3 `^(;ǀ 8YCQ祟{϶,UXЙSح*+L\GyUydᡣGmw4B ~1аP{~|.\ zh&wM%ڠmg@ _ 1>BN][[ /> ÐehޟyxxA$O8HvJ^68Y\V8 >SW!5 7^37&%sW"4}gL2sIWrpϬoހwm sν>W%s`YJ$iޗl|atz-fϧ_g s1}R_Vϙ:7>"(Qsh#B+ &3׹ݰd}Vի, A`mPUxqi^7ͧۜdNi$ D*"*M Tt ,Ԏ]xzB.GjdRN'$3ms6|g3H/,]6HhmOT+lZto( ]';%p6{-̵|0w7Qc,O2vo}&P4Mh(@ P4hE/@F_ E(? U#rIENDB`AClock-0.4.0/Resources/cuckoo14.png010064400017500000144000000041001156323073400162200ustar multixusersPNG  IHDR@@iqIDATxo]ks~;@Җ2(*4muPڪttIJ*TL:HB޶}ޫcǽ7πI<8go{o}l/2Mh(@ P4hE/@F_ E(}&P4Mh(@zyi(HL6z$p*A#*h"ff bR `Û"FUPʀF&0h@-|0[q_^PI6fʩY;~9}cU:jO"*9{-\}4[oߍhb) FvnakkEap#an+>R 6vL}ӟTT oN ݃ctR9rnʻg7Q\ZA#7fyhV (0]^Gd+qiĎzH2O=v՚VfF&鏞.򷂺~lTqK?$ӏךIԈ$_qbDO&)Q9wf󗿃um~ 67C[h>2c@J#m.ѓdyE+ na>܅ݾuso/1jSG߳>`5pm}{% ;ۣG,%xd$#_v-9h]bePyT1f"W2j'@pb,ƾ4q S8`ě NK^""+bbLc-mP x[ZV_# R f | :OP`O=^a|2ϼz1&0~{\]Ie@J9ڸ FRh5 ,Q\~}*eglDG 7Ji/"c ڨ [I %|g 8~jFe rNJd"@)>-u=[ f(_-MMDtrC3z-f@yzXQ-Ý[aL{0枃AFQku.עOH[G"I4/4Sd=ޒ;`.TlFI6 +?>:sGW~y<&X -]mKEr<wy IV&[ʖ)q:m>W*} #KBNsj<jMx-x|qlax|puNϮMpzg@doEf1N$8k;&9ϼv"wP.N™E]V«\0hbFA9pH~^k15 =o0hzY׶KG%lMn+@'dA 0!E0^UZgm&Hn瞰f$K"^]LJu Tt ,ԶSUBy a|hU#sɗ"KI:B yol@zg v(Hnq-= < OJlMk=-̵|0woAbQO`_ E(}&P4Mh(@ P4hE/@ͧ0IENDB`AClock-0.4.0/Resources/cuckoo15.png010064400017500000144000000040721156323073400162310ustar multixusersPNG  IHDR@@iqIDATxo\?sy8'$!Դ@ @*F(J+uEU.袕KVn@ P#g=8ŵ3x.4ҵǖ=O3LP E(C&P4Mh (@ P41hEc(@P `FPd(ꐴ =*u`dU] @ *#6/tAY4N|ٱ%]G7JT-+K M>1:@:wwQm][L2s؍у/2U86 'i+>R o|sӪoj4⽩SBɛ+sOLU=sznnud2֓̃clk`udVt&Stk+{"7GJ+zQK1qDl[:rώď\^۸+BژmV ؒr5\cʛ?ua%㾽t VmuߛA)/^AxhV(0gc/ğJyZ8ӌFv=v{ujig2]w.K6{N?$0=Ρ*O]y'c=:9ZR n44;njpqΞUNL5aÍ W!/U+_l.c "gN7ZwBoc8b3<詌_w9s :{D@؝UQl`bMA|EXrf[0kX)0 y 3O'I2mK_)Clͮ )0 iS]""=I0`J)e F'ӹ L rF0NcX\V}EYnl8xoK2vVCKhMƖ"xx w'ڗ36 &at _ ~:uE0w8s l{"yxکcXVpn8E?*8h2ӆ^~xߵd^ P -Q%Z+~Nܕ 1{ƪ<60mp<\]kµ5# 594;سP% ؼ[ yο_: i+ZW)4?y:mP(G0Zj%$o YV{Z48z.V(GMoBkh'# |n|o%Xw=*bY?r1{ac+h.Aw{ټ!3ӭwCr3l^k.V7SQA#Q=Z#T3 I ?u7B A`QE0^U:g=a~IA!Nا K"^p*|Ud.Uwc0NmlE}e4Z}gRVNAYzdqk b`Q>w-,tv@5z:6zt?!\V?|68hEc(@P E(C&P4Mh (@ P4_[x0IENDB`AClock-0.4.0/Resources/cuckoo16.png010064400017500000144000000043071156323073400162330ustar multixusersPNG  IHDR@@iqIDATxˏ\Gg<=r(VHBDCbB<6)+$6 bA N8aϣ{qoU=~vpӷΩթ#c[ƀ(Nh (:1 ƀ(Nh (:1 -O@-jm#&A^%ςiEo  BJ26iB/H0*;}#פNև_YlO:J"D'*Ե^[Ln6]1`jY(kRܯ֝]3Y%{RwH=ձ׎OߵY "*|};PzI MOgjGgnJIJ3SյipQ x>=Z# ,&NNd;?{Ysfg|֭8pj{ԭ|dbJwV'Gw7Nк~ vL6D&<<yW;2vA%&i|+۶< ھ|fgЮ݆z߮OO?*~"sc'JbJj(YFC~ëO4oM'VNi3o#򩯹_Bc߄? kr8=.}}BjFFՒ{?\w~oqqέy =M 3ߴ/OV>M?X(}#ב(uHL Jj];8≕ х?$:fkMyEmHz`$`b%JOhB=@Qk@3d.RJJ"v*f <"@0ˢ 畡556 ~?8:yfbM 5F qc}wi^ПfYYw(J)1$FP+kPƫ 8Pi04T[TFxkz P-M.%V R,-?11 -6KHE⩫C1(J+ECF2:+T+0&' ]YH?ۭ1WAq>`D.[%\r gRa4ؑ<h/C\5@ "!!dLal(!(D `!O9Ó]` EC$<|H31mGA3A hdz Kl4B%w<~!DrhڂvSiZ//VVԛW4icH?m@jﹸ-n=F+3K8OIR QS= nK(: 誠po  1@4dEP#FD0^xif!{Ls=$:`'VavkWjk);aԍ$FCH Z>8=+ akfWtM\:s-o-,rvikƸDG& wu)TY{c%3VYvM{oqAMS TkD@b!P$v^$#aݗuA(xsGCg^g"D kL:1 D kL:1 IBOG|p;@HTzZ>8en¡I@ J+ߝ/&^陠Aomz߆m}XZ/*8vϟ+E)V?J;)XX'3 P"7!6`f әjR+u{P~< ˀ&RQa,v|t֟ӝ;d FyH}T,Q ?ka< !B$PLOdC|WY+Ưb0}B*)o"X hkap*AUΝw[+/0K;,{au(ޒƒQÊ>*۠@)(D)Z5UҭQEռn*Nꬾ;eh*L%z l*TW|a33S x$ʢhZOf{&Ӈ4ݍuzHUH>g$|@fcG.( WnWnNMZ/HIޗW A`ãBŋ?~FzKr4)D<̒Gp>TZVGݳxxn $Pxկ,߈Q3D[5JQy %  F;V!ٯG#i#XYH CԠS֎'%jqwuzsx^c2o^MCF\ 0nb`l-\q-ܞs{d@3^Z. 6H%oxn"+_.aF, R=jsOkA^mڌa('vҗڌ#slww#A 3( Qs''0XON`o R#Zr* 'jnXN͙} xP (0{٪sMqUeީ HI'umH,MǦjٵ<334}O^K>{p _[@膡Uz=o3C) BИ'AIjj{O@w(޹f dm ="2P?088xtݛTQDQ,? ,? Bi6AstkʵhaJ}A" S%xcLDXj+j?NJ̓aq/ ӛԅ2y½u@Ko\{mKWfY)7>D&__)FˊNbyZb# ʊ|: BvQ% EY5&d@֘uYc"@dY5&d@֘uY3/'˷;B3IENDB`AClock-0.4.0/Resources/cuckoo18.png010064400017500000144000000015561156323073400162400ustar multixusersPNG  IHDR@@iq5IDATxjQs'I3iֶ"X*;>;] >>*݊""nXZkUklҦ.ƈn9bCBNo=a%6ke X+`mZkXVڀ26` ku Uyƶ~xLP/_Fv!ްً̎/WNjg 7u!ἆ'UKAc$,|];!mvWO})X3q2Z_'Q2ȀK~ڀ a.(ajVx;MC xB8;Wn3~}SGs`@"U8}<09nzOSO>23s2@!Lý C -B"(P,@ap; 04.|#<#A_ ֟weRN'R a%冀 @ߝ!t_YOb%'A lbZ b4[]ߋ2$01 )=4O_y}~L>*w A /˞H+J \+W$wG Ql2'4z)H,wb$T|^-3hֵ|]g{/4.Xq -եrG'Duy'ēn GE0]g4fXVڀ26` ke X+`mZw'kIENDB`AClock-0.4.0/Resources/cuckoo19.png010064400017500000144000000003211156323073400162260ustar multixusersPNG  IHDR@@iqIDATxQ@G"#qv 6gKh Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt5@h Zt=}, IENDB`AClock-0.4.0/Resources/cuckoo2.png010064400017500000144000000015721156323073400161470ustar multixusersPNG  IHDR@@iqAIDATxKoWǃ@ ]F}l-~Z%!E| Rliy5`{Y)9"Ful9玏,S|A6`k X`mZ%k*XV ڀJU6`-UI:t`1ou.!T< GWy=~l'B^,W''K OB 4x'I ag,lnMn@j }W.kS|wŧ#&83#cy<&{Q/$UÍ[9?Bw zr S~{_nC@E-Na( 8D^8ap.le_K :)JB5.tGv"W,Թ Q0 Ñ%2z"3{&h@Hg00`c0[@{W7X݀Px}sЬ?B u@ sx= p,.`Cv:TP*xnAF%Q2'D}O~j#o<%23JN\кv/\ftL=i>~M׀N&BG՛x =6`k X`mZ%k*XV ڀ<MCIENDB`AClock-0.4.0/Resources/cuckoo3.png010064400017500000144000000033441156323073400161470ustar multixusersPNG  IHDR@@iqIDATxZKo=߽3!Ň$lI %,0Rvx E& oM?(M @:0jV⪶czȖem]c əsI73DdY 5d- k Z@10 kYc`@IB\p']*H="=27xhlbi'S WۡesTaǧwй:qŘ:Pn+ѪO+LaGI( `fɑrlعU>]?H N `e@HE_(#߱C׉ ۭ4͍us-_Q^GGyɿħ"(l&|ݚ[@v#CHLgvt:347'W~ﰎ+WGs]]p/da)ojwfpéZ3-hx_?ӻ+c`6nΪauϽ ܖi."NoRPGhUw\Uo|wWn*ڝ¨2(N; `@/9ZWgZ}L[=񴙺u RHS}U6jӴ蒑X c]c$żOZmUCY3Q6am{ @;Q}'w s>V k^c DT[+S)S^P*)Z{ƫO?6qW5^=3hL)Oq7 % uK)O A߯XHx`@71w5:)F;wmwp `zX dۇS`xy'\ʣex\ལ!P,ge19Xs 3"e 1`f"- @ZnZ0y盡Rx4Xǀ&046nQo'N Po_G6@3^Ak){ ;g 灱a N*PƤߓỹit?@)/āE pĞIqj@7N_1-P:H}K<f w 4—E=t} P>   nKxY$=05πͽ_'no#԰fo|'A %!n \2mzWfiû |ݟ IHI! K2%Սte9d:4k7Ӧhhp0o//nTٺ><'*MA?4͉ȀK,_@<2)x/wp kʒ?V'=$#+Yi80&"A,5dA3<^{dB!#Z{,vu~FiҵuneAhPжXSk.abYI·P#|z;ʊ>O2 @E-""+5d- k Z@10 kYc`@d둡iIENDB`AClock-0.4.0/Resources/cuckoo4.png010064400017500000144000000043061156323073400161470ustar multixusersPNG  IHDR@@iqIDATxُ\ޞ}DZf5C$V' @eSD,"!I䁷H"E"cCc{=˭3@Zsgn|gS}GF73LFO E(=&P4zMh(@ P4hE'@M/@-jm6X 5EA d% 6\* K/q4lluોY}\Ƙ$'mL U9|iʉQVf)T6 gW?Gg@ġSwHCå{#7WTf#ADPUBm儯=*h(}d IFxєA(ј+/YF&Ҕrv~f:@F(YLtN4eXե`2wy'5Fݫ2wʭ^z6?`g[wzEEwJ]u A5=,Y߯՟*N(?ָf+164*Gs?m^}7Q}RfU D`u.P+kJ1=>TՒflo{ZPrn5g踿]*G38.v!ЗFDjɼ[λѿ8֮<ϡlyvxWkS_ȧJ՘+H Jj]?1.=}~]~9|u\PڼW]}C,PB7.&XBlB,nh\&k3{Yݠ. Fd&1`v'1ջq\P[#vV/r}5R800 Î֬4O@9Vǔfe Jp!༢IYmJȪ/{ඃY4=6gBf% im{3"F{+rSe{jcԟ±em`a%05@i%~'n8#(H(dn CX& B0=͏^==vk8}v5 *1W|w8y `R 'oF&;Dcve.'nuLad !(835~2>'=!=&لWex-QDANgfS{ 6c3³Yp0X Uc/j4Me '"q.:oMt>B FFF.(>iF(%M#pQx\11ƤVl;۲` <-Ĕ̷A`JV^<? Wt{Xѻiܐ5Ҟ/-n}-=eg X" XZak=$5 A9p= |stۯ^χp.gFfq._#Ul4h"kb8ǹtӗ y I=I\63foFb;?rkw^UA|^W?[sMBPu<|vҷI'['u=,c_eLB愊oJ&Y>-*-HzˌL]p#Z(DiLrPqu/@ NV/O7oݾ:c y8 F>GF=K-gZM9Xv5_f qH=ڄٌq~KUh[lbTYG)g+t Em+Ihh tVQJWc 땂a8s&<-AzNjXmVaVD]ol1\8 gIE"1#؞kfN0F;GT>&Z+z ea~y*p^Ƚ>@E3A 2 5j= "1(-ԇc0Y3䑡הjF+rDWgR\яn+7\YJnlHbmaC"۟}`{s/~ RTHCa?Ts '7_||(؞Px@ #Cl{xqn ^zJsG@XՌ7_)&kcFw[{Xi$(@'v:hU'g?_V|r:@"Z`gG{;EAȝt @%VG P=< 6#/'ꑶAE-Ħxؾ'C( Ɋ1Z@#(&(>*06^?-r'hCngo xuAl=i*.4ʩbֺ(8* GހV 9^_ގ_} ]A&7&xyf`OJ!ayxsA y`mn| 5}]Y^lR QǬ50AAD@]"Bd4aIܼ{|n3UPAD!^Z/*gQz@XِftN=w}m$2RQxW]_I@U#k=߿+@ N2R6NLEHATjtgsЗt]vԓ&Ke(&P6Ml (@P61lec @@ ~W#IENDB`AClock-0.4.0/Resources/cuckoo6.png010064400017500000144000000040351156323073400161500ustar multixusersPNG  IHDR@@iqIDATxo?ޙz'!$@RBC* @U_[UK }hVU TAU)MI*BHbDZɮa։]'xQ=f={9gƖ{)_e e(c&P6Ml(@ P61lec,@X e((5`S(ꐬ=TU4O4 WEPJS&gG Vvˮwck?;.*R6yϧS.ŕ[bAU v|mW>n[L5桿}]7\?q_~@>=J;=Q@PSs,LL 7L/o6֮?.};_]xA Ȏ֮?Lсof"7+<>y[zgISr{ Eex[9|jWj6 Y5@\}v \&n}dW/`ԥS:&3TV@?ғ˿8,l4 #5-ٿ'&Jy:Ӊ^}.Hx6[V޾ʰe՗{k?uӨ:ziΐ8ܳCɸ#F*Q`To8P\nhKw>]p2"v4ޗݼmxȾSVS5N&;E`wKA$WH2%kMy7.ꃣ؀[TԽ#G&+]7F0c$6*1CJfzY~YCQͿ:-ؾ[)60FAUI7-Р|M(~`Ÿ=:ză Q T1@g k`4LN 4潧npsLV#^e5B#T&zeM܎Zcsp`>/E@Cmb{E- [ɣ@ q +?aȝ9zΝ+F Fٶ'^(LCRuz Qb3wnO>sj8FlJ{oPd5q7u8y^|V:K+aIO7^ $7s?Epfqic~Uֻßs^qbsJQ<Ep2D/@'Nr$L7XӋ<5LYj ڌC`>6!s ,gK=q6x`Uk|[ T#K[8qA = J| [:dȜ޶"dH (HoDǯ( gq.VHV *MxQǿMDF3.=b B!~c| ?ًz Vס b8Aщ!߄ I Y| Rij!ŋ3}ݴ8"p`1|} JCO&\[*lV̖p/\y[YQyT+YCu|!gm;NúVH@$X 23u{z /sTOזŚWཱི0\\3osI0u{Q`PAƠ"_?<_`5B!Y?ֳ~l(Ž ؽ("*ӉsZߔb\(@G#w8-VA*"*7{>Ap({y00; _[EC#sՊ Yg^+]M2?KWM>W]-$ #.NDETw@ Z7nTbcNt zɿamp,@X e(c&P6Ml(@ P61lel0IENDB`AClock-0.4.0/Resources/cuckoo7.png010064400017500000144000000040251156323073400161500ustar multixusersPNG  IHDR@@iqIDATxo\WksΌgqqڤMV(JPo;xAo $"UjPU5UZiͱc/s9nc7 '[Y[kX&k0e(#&P6FMl(@ P61lec$@H e(#&P6anMCҶ o> :~@UExRbRTẈQRI̢=$ P1nk뿙 Lmg)_Zթ7n$-*Ww$⻫n⓾vQb4Ojg_3Qm_8nφ'9#>R ;s|}Ϫojjφ)q/Ϝ-|z_'p;_ڙ۸Lr+i73ƭg?'[ U֟z+n{>!C *ele t 5X 5&m|=pUxSg}a%:K~m *kV~xaOa`$E?q?g(^SO'vtGy=Fq]|KHL/ֵJ~?K/dkϪ0k5#K?$Q'qt<~;vęgC`ջJ)M?-t3Oek7% M;ʕ7N>PmUcX ST y5 q$٠RO6ɕi[hp:~|xfߣJ1l {S'I,T7_h,voѷZ68> gN\[b0V L2ZR8`7q##ga‚飐:1{)}Nrw{}f.^V'JCOI`ZֆO1x1C+EfWNxa!b ~F0рOnpt l.NcVÅ|$>6vNN_EE+^0?eu`t@q; N.ШA/;ky_ 6;2U!`  XcPk~V7EHR8{*}9~QkA`a"*eZ՝UyQ]X]ϧ8)>eKa_$*WEDEp*t6]8r(=k66E$n{5"sCkgjV|dl24Vo'!V( V׉jAw#PA烂ѽGlI{Cŗe(#&P6FMl(@ P61lec$@H h([lIENDB`AClock-0.4.0/Resources/cuckoo8.png010064400017500000144000000037551156323073400161620ustar multixusersPNG  IHDR@@iqIDATxo\WDZI42E@KڀZR@T-l@blرg,RT@[˱c;ǽvkܱ]t%Ϲy>{VGc>e'P6@PvecH@ !e'P6@PvecH@ !e'P6@ٰ4fәvQYG`7JsR Q qc δ.c  (4MV^.~ v g90z|2nk7shDhQ3z욲uƏWj54} d!Ih%VI]6Sf;O՗_Ēuw~Z$ >gw"!n}rvGSjF+['q>'2j  ^_՚K+gK?!Yd֛fcֿVڌDю JcZLH]t@>w,qkll$6ֽo͞56L|5"D6*?c YkR:uTA#ұj{IUي:3@"@kEl::v}JԮJՠcZ?6O+Gj},&>;ҾB`p-jL8, ]olZb gO$;=X|?fd#[gc4sH !7vw#h(0>_z Ҁ3"V ȝ>RX>@E3A 2 5ܘ *<= uF'h*ƀmPH\ uaW?\FӘ KywIA|aC";`{3/t0L 0`fO4Z B?L -n h&ZV >wp鳆z%L?+ ~{)4jQٶ2/k0CvdN'"p8w~ s-A2hC'CWn6]9)7J P'Y0#\&S2'  +Mf7aa+Qbť.>AȇAoBYx/FaH 9'{ ȜN] PjT"Ml5BV<jրFր5Ħ 6k0=;"GF1] `{f{@U+j A;[j|^X T⼓|^EEF`  !H$y_3I>%)sn܂Ӱ;GU8 ۠VjP6FkDv`A"? #qNsV^J;h@"|Z9 T DT; 4;n ф.y;'*_.|P7 * R_/*}nGݏ#!z#! #S}_T]OU`={AYD}wH^íDA:1%Rp#'bW;  vm J1'M*oCNl (;1$Ɛ(CNl (;1$Ɛ(_ٱ9IENDB`AClock-0.4.0/Resources/cuckoo9.png010064400017500000144000000037551156323073400161630ustar multixusersPNG  IHDR@@iqIDATxo\rΌ3;'1 n Hд !ڪǾUUyhTЇJkBPB r $s9W I\w:c'~7lec*@T e(S&P6MlL(@٘ P61lec*@ʆ䦆M*:GJ{.z(QJ)DDIK-V:ն "2Јl~FZkup5s\,@E~~2x Deb쥖,̿U>ۓR~:붯?m=V%'YןW^ {7vR.BS~zí?Ӹ26QwQe3r܁Wn~>j"4V?8k]]]{*^yYlvshqɼY3 rn% VX qkWD&~'$"Gk{P?n~P}H(it4]O՗J~?Kid/]Q~q1Hg1/&2j/ $*y xŸ.Z:4Nǫ,4Ztcz'x!_ L M0ゥ(ЬCc4 ryÅGz6p^p>D<w&8B[ЋG;L=gÆ& du8EGW`4jQslR'k0CAQVd%| ^`8q%NS tXl\<׷޿я뼐fRn@ &s @(XY2'&seL"Lf3' 2'%gL"Lrs%2q @(g2r $?X#LgY( e'@ 3#?s s%rf&%sM $'3 @% 3X L&Lf!s3 e$s@ ?!@fs2L"% %& &#@LL"LssrL 'r ge&e3 LLsL   &r2ZL &L3s & &&L@Y % YX1 &&32 Y esr'~ %L  L rM? LYX LY 3Lssrf&??3 LLZ&er XfX'3YMgf3r @ Lf2 LY s 2LL% Y@@ 3 rf2@feL% s32?@e&@L@f ?M2 % Ls L" LZL gr ? 3@L & L Zf @ e fXreL&L@L 3 gL?(3!L !s 3f 2'f@e$f3 3%fs%?L"LY&?f $f 2' '%L$&  ?s?f&% @e$%3M%Yf#X@Y% $ e2!grL3ss%@%%re @!3Y#@ ' @%s3 2s%%3'!2Yr%&L @( r@%q42g?X!r&@g?Zs3&Z 3ZKsX LY? s @ Y? 3 ?3Y Yf2f3Y@ f@g2fgs&Xf331%&?Y&X&Lf@r eZ '%Lr  3L3  sLL& Y  e3 sXfg 3 L   fYL% XfYLY?!? eL!?@2 LLL"@ ML 2 LLY# LYgr YX2 @&%s& L fL #Y 3LX XLYeL@@s @3M2Y?sL&sX ef3 3(&L!Y2@'X#( L& L&ZL&f@@L"L3!@ e$& eX# frLg%3@2$@3%&  L@!@LYL"M2 3's ee$ s&?s3se$f@%f"@?3L" L3 2's Y3X%&r%?e$ 3%Y@!2L?( 2 r LsLf r YYX&33 Y%sL Y  M3 s@ efs L & X%f%f%L?  L@?3 Y3e? &% @fsXgX% L>r L  fXf2 L &@%%L Y ?@! %fr!@ Xs &e# 3 f?&% "L fs4% !K & Ys "L g @33 %LLg f2LsL2fgX & Ysf  X %r3eL # ?3r%3Z" XY&Zre$Xg # rs2e%L LL '!@3r@X3 s X#e2s' sLsM $3&f$ &@!%Z2%?!YX3 r% g'3$Kg 2%sYf&&%X !e%&! 3'3 2X#&@ r3?f$'%r%ss @Yf"X& % s% 3M"&f&&&s%3&3r%r Y2%f$s23 %& g"sYsM e3%2f%ge L%@!33@ %&r % %f @!&s?fY $sL'% &gLgs@X fsf? Y%3 X@?ffY@ 32?X Lg %LL2 2 X 2Ls& LfYg %3YYM3LfLf3Zr ?@?? @f3  !%?LY @e&f 3fs "efY" ss $ s ?% ?2 f' &  YZ2f && 3 Zs & Y% fYf% & %f ? &? LXsg? 2' gsq L@f& '& f  ge 3' es"r  Y3seL sL @ %g &   2 LgY &Yr%X2rs#2 $2 YY $X3@Ys  2&r&3  '!Yf r% eNX%fL &@3s%&&e?2'YL!gf!Y % '& Lf$%L&%Mf3 $ L L3q% X?!?r"r@@ &&%L3fr&&3Y@ @(sf "3L@X#f? ' 3&YL2 s sLs%LZL3's 3 $@3"2 ( @s%YYLMfMg s2? g& 3 @ f@3s&%L L3f@r@@YLX3LM2 sLL f% rfYY2s@Y&rLLXL g%Lf K3 s&2 LfX#L3@32"& 3sYY#@ #L@ &2 Ls%X&Y Lf & ss X!XXYs@' ?'sL@L g &3@feL&2%X#&X 3X%f@@s% ff !3L3Y& @'$1 f @3?!@3' L &X'?sۦ!&3fYr#&r X* &r3@3K)'e@( sZ%L &@e$2&s ?( &L&&sXssY'L)"LX33s $f X* %&@&Y 33L%s%L%&g??!?Y#s@@Y %2 Zf$ s%3' sL"&r%@Z @(% &r% r~%3fM'sXXMZ#32$ ' 3~&fsX2LY 3?ff@srL 32  3 ?L %32s Mf &&'@Y @efL XXegL%LLL X&ZfL X&LM2Z3LL&e??& 2LLYY% MfegLY @2 fL sYef &YZ%L' fs 'fX&? Xe L fY "2X3 sL! s?M " !%& f  @%sf!%s f !3 M?  r@2L3f3r&sZ LsLYY@2sffrss%"@ @&L3 3Y@ Y%Yes% 2&Y!L@@r@ s3@r 3 LsL %X2&@L sr# &s3 LL Y#& %@"'@&YX#L3$rL?!3!fe$ L"s%&Z?#g %s @ @  L"Lf % eYe$Yr $L%r f@!3L@# ' 3%&sYs&&L3'gfL!X@@%f$ & @( Y%%'Ls?!& &%'@X@'s 3 @? &rYZMr% & fe  Lf@? @%L? L  f Y f2%2L? eXLYe>%&?@M ?MLr ?e&& sLL qZsLsL Y2@!?gs3LsfY!rMs?sLf Ys3 ??&% Y f L"LMf@!L&@ sL"@@@ f3 L  '?2 2LXs@M $Yf3?&Y&L3e&Zr? %e3L?LL f ( (YLLY@!L X#rs& 3%s 1 s?#X2fL e 1ZL3&s2  Y#%s#@&LY32 YfY#%f&Ls $ @XsL"s&@!$% "f@L"fsX f$ r2 2Y@!@#Y@  $1frsr&XL $   $ 3egf f@ reg XsfYf g3@%LL3 3LL &  s%YfZL@%L  LX?2Yr'e%3f2Z23@@33LZL@f2ssfXMXL@?Y@ssY &LL Y 'L  Yf@2Y# %& !2@@ X@Y#&3 LL"XL L#sr@ X ?#  LY$r e"sL @s $e f%@ s%2'@& srX'22 s@rgr 3'gL s& f&r %% $s s33r@!  @2 3 geLgX Y 3% && M srrsM@f@%3L M?Y &f &Y3Y%! L)L&XL @L #  e%@LYL!%LYX#@ @>!XL@  L@ $   $rs 3@rf# 3rr s% L"LYLe  ?Y%3g % Y&%fLf?!g X&g%& f3&Y#2@ 3es3e$?s%s@!LL3L@ f$?Mf & &L3e$&L sfLf&L YrL)Z Z"Z%Xse$X @Y 2' 3YYX @&@?Y Ye Xq@&  LLY  &eL?3f2?&  &Yf eLY?LY s LY?  Y LL XYL 23?fL3L3?fe@3@3L?3qs2Y?L g@ %!@>3gX ? egeL"L@Lf  LLL @? L@ %XsXYL%rfL&s3e@ rXYr X X3'?sZ L)rX3X Y3e  @% & g!L3 Z3  LL% e@s'LssX & 3fr3g"&Ysf3 3X& # % @"eXMe$ &Y !32# e& $ X3% $ 2X sf#XL%@X#r &X@?#@Zr % LL%"X'3 %&&s%Z&$ &f?e$3 3%&ssf gL " M% !@L !@ % ffYs"@r'2"3s2 2'3 fr $?L"@ L& ) @ & gL  ?  sXs 2%@ f @@&?X? @'2 Lr  eZ&sY% Xf  3& L @fLs?M 3  Lee r% %3  &s&q 3 3sLg@2 ! %2 !s r @ f$Xfr Ls #3er?r%fr 3rs2%2e L@ $L 3%L2rZsL'>( &fX3@es%Lg f&&rq f% LL  L(L 'ٿ f$r 3 YM&X#3%'&@!@Ys# L!3r33@& # sL' 3?3L2 Y eYr Y@ "sX#%&sL $3 fe$fL?!?@"& 2'& fg%%X%'%%@q%s&2 3X@X&3 $% ? # r%s'#  $%3X@fLe$Yf && fL"3@@&3Y#3s & X2r%f&s2'X&M%Y 2fs@fgr r X3f?3r e3Ys L& X@ eLsY2 LsL L %frr sX@ X' fL @s?3 Y srZ   sX@ LeLY 3 fL@Ls~ML%3@s?3 3&L&L?!s?X@L"?@rX f3gfe %Le!Z@s@e"@@ & @ %3 Lf&LXZr3  L32' M@gY2L@Ys 3X& ' Z ?%3fXf 2L"@r Y&3&"ee32$f3%fL"X@X&r2 s @& LX@Y2 %s L" %&LZL' $ fX#?& X&X#&%e Yf?!2! & ?% 3g&@e$YL 3'% L@!23& s  % eL@ $&Y3@esL $YLe$ %g Y%"@L@ r% L$L&XL"sZ@ % sL#33'L3f?f s M sX@ LXg %sXrsYL fX32@ ?ssY '@??&sLXX Y@  @@ Yg?  2&2r  L3??g  r@3   @3 %@ rLL  3Lsr'LLf ?L3@sr2 @LLLr1 @@g&Z@Y3 %Z@33&% %3&rsf3ee>@& f% > X & M3eLrYY#2 es%%3& & %r L ? L &Lff$s&fsX* ' @3Y s%r Yf?!Y2sMrr  ? & @XsrsLL"LfL"%'f3LfL&  !3% r%L L3 ?33 s%Xs&e $2YXLL!es % @!sL332 ? $eL $3 &rYL $YMfY&? 'XfX#&3L"33X&Y3e% ' sXX%Y@ ' @X#2rX#sZ &f s%& ?Me%3ff@3Y&  Y3 LLf 3f e 2f? &2' r3 YX'&LfLLe@L&L2f X Y f  g3& e Z & " fs%s # g %L $%   $%  3e $s  ?r%s23 %&Yssf$ee23%s3%2@ $3&3 3f@r%3?' sZr2s2&XL3? %Y %ss M% Le gY#2 K#L@?  ssg?!3@ fXs! f 1 &XX'@ 3%? " 3@@!M gs"3&"%2 &%!e%3 $ 3K" 23% $XsL"s@L@"LXsr $% eY?!f& 3Lr%&#gY2L"qssLYK2@Y23 se 2f?L@  YsL @@s fs? @!L2@%eYrYM@X  3@  s@ L@L&sL&LrfX@s&XfXsL  X3%s33fL%r%&f2s2X@Xg3eLfYYs LYL?3 L %? YXX>fs X?!ss YLr2 & L Y # Ys!L2@s ZY$32 YYs%'@ 3&&'& @s&2 3 ''2 @@Y'e&? 3sL1'Ys L%&s 2f L"s@3 LL3? L & L@!#s&3 L%L&&L3 YYM > 3s ? L)3?(e'!  $ ff#eXs % " 2 2 Z X@3&X# 3%rL&? #2r@" sZY&X3 & f$s X3"LYYf%L"fe$ !@%%@! L& s%eY3f$X @%>Xs%e Z!@!@ LYs% r%&sf$?Y&  L 2 's@e%@fLf Z@&  X'K3  33%2& 3%Mr&Ys 2Y' L2 LY@ &Y@g3 gL?Zf %3? Xe3~ 3@3Y ffL Y2?3M& 3  sL  ss 2 @!eLf@ ! rf& e& f$? 2 Y#3 e% f %% 2Y% %s" & Ys%e$ f3 Y#r &3 2s2' e&3%s& & s2'X& se?f%L&LM2&Ys!3L&L#Lr 3MeLXZ& fL X? 3Ys L X&?3&L%L?#r33s &f&L"@& #f&s res22#r&s g$ LeY!2!f&L %ff f $re&&&&r@Y"@!r %3 Y&"X&'X3#@LLL $MZf ~!r? %&fM%LsL sr %? &gLY!3?32 $?3L 1' rf$gf &@f?&@' L"Y2 2f$%Lf&r f % ?r @ '@? %@f  2L 2s @efsYs 2 g@@K& XsL@rs@@ 23Y@se@ 3@sM@3X32f 3L%2LL2e LsM s@@ Z  L"ef ?f MLXee%LY3f @L3f3sL""Y2eM Z%g $3 @% Le@Y&Y%24 @Xr Y3LL & LL@2 &ZL3 & %&sf%' ( &3'f3s! LX3'@3L'fLLL"Y?@r e$ZZ ' e3 $ 3YL s%@s%s@@!LY#r? & 2$Y3eL?$LLg'eg?"@@Y $ ?@ && Lr%L &&?2eY&?%MYY#XY3#XL3f ' L2' &@% s&@L%Xsf% %f?%?3X  LY XsL' X3Y2q &   ss@2 @ZfssZrses&es&f3Y'%e@'Xf?srr@X2 f g?e@ss?Lr3@M   Me ?L LKg LY LLKLY f YYX  f  @L YL L X YY