SVN-fs-dump-format-version: 2 UUID: 0457777e-be4a-0410-a59e-cd2fa5f2afb7 Revision-number: 0 Prop-content-length: 56 Content-length: 56 K 8 svn:date V 27 2008-04-13T10:18:52.907662Z PROPS-END Revision-number: 1 Prop-content-length: 143 Content-length: 143 K 7 svn:log V 44 setting up addons repos based on 005 release K 10 svn:author V 4 theo K 8 svn:date V 27 2008-04-13T11:01:22.605597Z PROPS-END Node-path: branches Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: tags Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofAddons.h Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 1311 Text-content-md5: 2d9d9a7041e3d87384cf3052a0dfdc48 Content-length: 1321 PROPS-END // here is where you paste any "add me to ofAddons.h" code // for the addon you want to add // you will also need to follow the other steps // like adding the library linking paths, etc,etc. //-------------------------------------------- openCV #ifdef OF_ADDON_USING_OFXOPENCV #include "ofxCvMain.h" #endif //-------------------------------------------- obj loader #ifdef OF_ADDON_USING_OFXOBJLOADER #include "ofxObjLoader.h" #endif //-------------------------------------------- dir list #ifdef OF_ADDON_USING_OFXDIRLIST #include "ofxDirList.h" #endif //-------------------------------------------- vector math #ifdef OF_ADDON_USING_OFXVECTORMATH #include "ofxVectorMath.h" #endif //-------------------------------------------- network #ifdef OF_ADDON_USING_OFXNETWORK #include "ofxNetwork.h" #endif //-------------------------------------------- vector graphics #ifdef OF_ADDON_USING_OFXVECTORGRAPHICS #include "ofxVectorGraphics.h" #endif //-------------------------------------------- OSC #ifdef OF_ADDON_USING_OFXOSC #include "ofxOsc.h" #endif //-------------------------------------------- ofthread #ifdef OF_ADDON_USING_OFXTHREAD #include "ofxThread.h" #endif //-------------------------------------------- ofXML #ifdef OF_ADDON_USING_OFXXMLSETTINGS #include "ofxXmlSettings.h" #endif Node-path: trunk/addons/ofxDirList Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxDirList/doc Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxDirList/doc/Instructions.txt Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 1193 Text-content-md5: 63b5b16d1f8c5076192ce5b379df06a5 Content-length: 1203 PROPS-END ofDirList - July 18th 2007 - by Theodore Watson Installation: 1 Copy ofDirList.h and ofDirList.cpp to your ofAddons folder. 2 Add #include "ofDirList.h" to ofAddons.h 3 Add ofDirList.h and ofDirList.cpp to IDE Changes: 1 Now takes string type as argument 2 Fixed wildcard * for allowing all extensions 3 Extensions are now case insensitive 4 reset() function to clear extension list Example Usage: //////////////////////////////////////////////// ofDirList DIR; //Allow only certain files //by specifying extension //Extensions are not case sensitive //so 'mov' allows both 'mov' and 'MOV' //To include all files either don't //call allowExt or specify the wildcard // '*' DIR.allowExt("mov"); DIR.allowExt("jpg"); //if you wish to keep the console quiet DIR.setVerbose(false); //now lets list the directory //listDir returns number of files found //with the specified extension int numFiles = DIR.listDir("images/"); //you can now iterate through the files as you like for(int i = 0; i < numFiles; i++){ printf("name is %s - path is %s \n", DIR.getName(i), DIR.getPath(i) ); } //if you want to reuse ofDirList for different files //call reset(); to clear the allowed extensions Node-path: trunk/addons/ofxDirList/example Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxDirList/example/src Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxDirList/example/src/main.cpp Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 351 Text-content-md5: 391569a9e3d138ab580b7c9e86ae35d4 Content-length: 361 PROPS-END #include "ofMain.h" #include "testApp.h" //======================================================================== int main( ){ ofSetupOpenGL(600,320, OF_WINDOW); // <-------- setup the GL context // this kicks off the running of my app // can be OF_WINDOW or OF_FULLSCREEN // pass in width and height too: ofRunApp(new testApp()); } Node-path: trunk/addons/ofxDirList/example/src/testApp.cpp Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 1280 Text-content-md5: 9be8d5d944db07580c029e3f77f44d73 Content-length: 1290 PROPS-END #include "testApp.h" //-------------------------------------------------------------- void testApp::setup(){ ofBackground(127,127,127); } //-------------------------------------------------------------- void testApp::update(){ } //-------------------------------------------------------------- void testApp::draw(){ ofSetColor(0xffffff); ofDrawBitmapString("this app doesn't do anything :) \nIt's just a test to see if many of the common addons \ncan work in the same place w/ no include \nor linking issues...\n\nif you're seeing this, it's good!", 100,100); } //-------------------------------------------------------------- void testApp::keyPressed (int key){ } //-------------------------------------------------------------- void testApp::keyReleased (int key){ } //-------------------------------------------------------------- void testApp::mouseMoved(int x, int y ){ } //-------------------------------------------------------------- void testApp::mouseDragged(int x, int y, int button){ } //-------------------------------------------------------------- void testApp::mousePressed(int x, int y, int button){ } //-------------------------------------------------------------- void testApp::mouseReleased(){ } Node-path: trunk/addons/ofxDirList/example/src/testApp.h Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 1094 Text-content-md5: 8ef762b0b26c3ccaf83675c265db716b Content-length: 1104 PROPS-END #ifndef _TEST_APP #define _TEST_APP #define OF_ADDON_USING_OFXOPENCV #define OF_ADDON_USING_OFXOBJLOADER #define OF_ADDON_USING_OFXDIRLIST #define OF_ADDON_USING_OFXVECTORMATH #define OF_ADDON_USING_OFXNETWORK #define OF_ADDON_USING_OFXVECTORGRAPHICS #define OF_ADDON_USING_OFXOSC #define OF_ADDON_USING_OFXTHREAD #define OF_ADDON_USING_OFXXMLSETTINGS #include "ofMain.h" #include "ofAddons.h" class testApp : public ofSimpleApp{ public: void setup(); void update(); void draw(); void keyPressed (int key); void keyReleased (int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, int button); void mouseReleased(); // we don't actually use these // just checking to see if they // all work in the same place :) ofxCvGrayscaleImage cvGray; ofxObjLoader obj; ofxDirList dirList; ofxVec2f p; ofxTCPClient client; ofxTCPServer server; ofxOscSender osc_sender; ofxThread thread; ofxXmlSettings settings; }; #endif Node-path: trunk/addons/ofxDirList/install.xml Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 1103 Text-content-md5: 65265e8e2b025477975484f57ca89c9c Content-length: 1113 PROPS-END 0.01 theo watson //--------------------------------------------- dir list #ifdef OF_ADDON_USING_OFXDIRLIST #include "ofxDirList.h" #endif ../../../addons/ofxDirList/src/ofxDirList.h ../../../addons/ofxDirList/src/ofxDirList.cpp ../../../addons/ofxDirList/src Node-path: trunk/addons/ofxDirList/src Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxDirList/src/ofxDirList.cpp Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 4828 Text-content-md5: aa1dcfb1e412c9b7169b17bf5aa6d482 Content-length: 4838 PROPS-END #include "ofxDirList.h" //---------------------------------------------------------- ofxDirList::ofxDirList() { allowedFileExt = new char*[OF_DL_MAX_EXTS]; nameArray = new char*[OF_DL_MAX_RESULTS]; pathArray = new char*[OF_DL_MAX_RESULTS]; for(int k = 0; k < OF_DL_MAX_EXTS; k++) allowedFileExt[k] = new char[OF_DL_EXT_SIZE]; for(int k = 0; k < OF_DL_MAX_RESULTS; k++){ nameArray[k] = new char[OF_DL_FILELEN]; pathArray[k] = new char[OF_DL_FILELEN]; } //an allowCount of 0 means no extensions are to be checked, allowCount = 0; verbose = true; } //---------------------------------------------------------- void ofxDirList::reset(){ allowCount = 0; } //---------------------------------------------------------- void ofxDirList::setVerbose(bool _verbose) { verbose = _verbose; } //---------------------------------------------------------- bool ofxDirList::allowExt(string ext) { if(allowCount >= OF_DL_MAX_EXTS -1){if(verbose)printf("ofxDirList - no of extensions > OF_DL_MAX_EXTS\n"); return false; } if(ext.length() >= OF_DL_EXT_SIZE){if(verbose)printf("ofxDirList - extension is > OF_DL_EXT_SIZE\n"); return false; } sprintf(allowedFileExt[allowCount], "%s", (char *)ext.c_str()); allowCount++; return true; } //---------------------------------------------------------- string ofxDirList::getName(int pos) { if(pos >= count) return 0; return string(nameArray[pos]); } //---------------------------------------------------------- string ofxDirList::getPath(int pos) { if(pos >= count) return 0; return string(pathArray[pos]); } //---------------------------------------------------------- int ofxDirList::listDir(string directory) { directory = ofToDataPath(directory); DIR *dir; char *extension; struct dirent *entry; bool skip = false; //if no dir is specified look in same folder as executable if(directory.length() == 0) dir = opendir("."); else dir = opendir(directory.c_str()); if (dir == NULL){ if(verbose)printf("ofxDirList - error opening directory\n"); return 0; } count = 0; while ((entry = readdir(dir)) != NULL && count < OF_DL_MAX_RESULTS) { //make sure we are not looking at ./ or ../ on unix based systems char * pch; pch = (char*) memchr ((char *)entry->d_name, '.', 1); if(pch != NULL) continue; //by default we don't skip files unless we are checking extensions skip = false; if(allowCount > 0) { //we will skip this files unless it has an allowed extension skip = true; for(int i = 0; i < allowCount; i++) { //if the wildecard * (42) has been entered for an ext type then don't check any extensions if( allowedFileExt[i][0] == 42){ skip = false; break; } //get the lengths of both the filename and the extention int extLen = strlen(allowedFileExt[i]); int fileLen = strlen(entry->d_name); //the extension has to be shorter than the filename if(extLen >= fileLen) continue; //lets check if there is a fullstop/peroid where we expect it to be if(entry->d_name[fileLen-extLen-1] != '.') continue; //so now lets see if the extensions match bool checkExt = true; for(int j = 0; j < extLen; j++) { if( tolower(entry->d_name[fileLen-j]) != tolower(allowedFileExt[i][extLen-j]) ){checkExt = false; break; } } //they do match so we don't skip this entry if(checkExt == true){ skip = false; break;} } } if(skip) continue; //if the file is too long for our string if(strlen(entry->d_name) >= OF_DL_FILELEN) { if(verbose)printf("ofxDirList - file name > OF_DL_FILELEN\n"); return 0; } //Otherwise lets copy it to our results list //MAKE OUR PATH ARRAY //lets check that the full path can fit in the char * we have for it if(OF_DL_FILELEN > strlen(entry->d_name) + directory.length() ) { //if some muppet forgot the trailing slash lets add it for them if(directory.substr(directory.length()-1) != "/") sprintf(pathArray[count],"%s/%s",directory.c_str(),entry->d_name); else sprintf(pathArray[count],"%s%s",directory.c_str(),entry->d_name); } else { if(verbose)printf("ofxDirList - path %s too long for string",entry->d_name); continue; } //MAKE OUR NAME ARRAY //lets check that the filename can fit in the char * we have for it if(OF_DL_FILELEN > strlen(entry->d_name) )sprintf(nameArray[count],entry->d_name); else { if(verbose)printf("ofxDirList - path %s too long for string",entry->d_name); continue; } if(verbose)printf("ofxDirList - listing %s \n", nameArray[count]); count++; } if(verbose)printf("ofxDirList - listed %i files in %s\n", count, directory.c_str()); return count; } //Clean up //---------------------------------------------------------- ofxDirList::~ofxDirList() { delete pathArray; delete nameArray; delete allowedFileExt; } Node-path: trunk/addons/ofxDirList/src/ofxDirList.h Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 8617 Text-content-md5: 6a35f4bd809dfc1ad97e7ec03cde29f8 Content-length: 8627 PROPS-END #ifndef OFX_DIRLIST #define OFX_DIRLIST /************************************************************ OpenFrameworks Library File: ofxDirList.h Description: List the contents of a directory Notes: Now takes string arguements and starts at the data/ folder level Last Modified: 2007.07.18 Creator: Theodore Watson ************************************************************/ #include "ofMain.h" #ifdef TARGET_WIN32 #include #include #include #else #include #endif #define OF_DL_MAX_RESULTS 200 #define OF_DL_FILELEN 512 #define OF_DL_MAX_EXTS 100 #define OF_DL_EXT_SIZE 64 class ofxDirList{ public: ofxDirList(); ~ofxDirList(); void setVerbose(bool _verbose); string getName(int pos); string getPath(int pos); void reset(); // resets extension list bool allowExt(string ext); // returns true if ext is accepted int listDir(string directory); // returns number of files found private: char ** allowedFileExt; char ** nameArray; char ** pathArray; int allowCount; int count; bool verbose; }; // this is WIN32 dirent included in here for ease of usage // since windows doesn't have dirent by default. this is just a wrapper.... // because we haven't written win32 version of the same code //--------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------- /* * dirent.h - dirent API for Microsoft Visual Studio * * Copyright (C) 2006 Toni Ronkko * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * ``Software''), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL TONI RONKKO BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #ifdef TARGET_WIN32 #include #include #include #include typedef struct dirent { /* name of current directory entry (a multi-byte character string) */ char d_name[MAX_PATH + 1]; /* file attributes */ WIN32_FIND_DATA data; } dirent; typedef struct DIR { /* current directory entry */ dirent current; /* is there an un-processed entry in current? */ int cached; /* file search handle */ HANDLE search_handle; /* search pattern (3 = zero terminator + pattern "\\*") */ TCHAR patt[MAX_PATH + 3]; } DIR; static DIR *opendir (const char *dirname); static struct dirent *readdir (DIR *dirp); static int closedir (DIR *dirp); /* use the new safe string functions introduced in Visual Studio 2005 */ #if defined(_MSC_VER) && _MSC_VER >= 1400 # define STRNCPY(dest,src,size) strncpy_s((dest),(size),(src),_TRUNCATE) #else # define STRNCPY(dest,src,size) strncpy((dest),(src),(size)) #endif /* * Open directory stream DIRNAME for read and return a pointer to the * internal working area that is used to retrieve individual directory * entries. */ static DIR* opendir( const char *dirname) { DIR *dirp; assert (dirname != NULL); assert (strlen (dirname) < MAX_PATH); /* construct new DIR structure */ dirp = (DIR*) malloc (sizeof (struct DIR)); if (dirp != NULL) { TCHAR *p; /* prepare search pattern */ #ifdef _UNICODE /* convert directory name to wide character string */ MultiByteToWideChar( CP_ACP, /* code page */ 0, /* conversion flags */ dirname, /* mb-string to convert */ -1, /* length of mb-string */ dirp->patt, /* wc-string to produce */ MAX_PATH); /* max length of wc-string */ dirp->patt[MAX_PATH] = '\0'; /* append search pattern to directory name */ p = wcschr (dirp->patt, '\0'); if (dirp->patt < p && *(p-1) != '\\' && *(p-1) != ':') { *p++ = '\\'; } *p++ = '*'; *p = '\0'; #else /* !_UNICODE */ /* take directory name... */ STRNCPY (dirp->patt, dirname, sizeof(dirp->patt)); dirp->patt[MAX_PATH] = '\0'; /* ... and append search pattern to it */ p = strchr (dirp->patt, '\0'); if (dirp->patt < p && *(p-1) != '\\' && *(p-1) != ':') { *p++ = '\\'; } *p++ = '*'; *p = '\0'; #endif /* !_UNICODE */ /* open stream and retrieve first file */ dirp->search_handle = FindFirstFile (dirp->patt, &dirp->current.data); if (dirp->search_handle == INVALID_HANDLE_VALUE) { /* invalid search pattern? */ free (dirp); return NULL; } /* there is an un-processed directory entry in memory now */ dirp->cached = 1; } return dirp; } /* * Read a directory entry, and return a pointer to a dirent structure * containing the name of the entry in d_name field. Individual directory * entries returned by this very function include regular files, * sub-directories, pseudo-directories "." and "..", but also volume labels, * hidden files and system files may be returned. */ static struct dirent * readdir( DIR *dirp) { assert (dirp != NULL); if (dirp->search_handle == INVALID_HANDLE_VALUE) { /* directory stream was opened/rewound incorrectly or it ended normally */ return NULL; } /* get next directory entry */ if (dirp->cached != 0) { /* a valid directory entry already in memory */ dirp->cached = 0; } else { /* read next directory entry from disk */ if (FindNextFile (dirp->search_handle, &dirp->current.data) == FALSE) { /* the very last file has been processed or an error occured */ FindClose (dirp->search_handle); dirp->search_handle = INVALID_HANDLE_VALUE; return NULL; } } /* copy directory entry to d_name */ #ifdef _UNICODE /* convert entry name to multibyte */ WideCharToMultiByte( CP_ACP, /* code page */ 0, /* conversion flags */ dirp->current.data.cFileName, /* wc-string to convert */ -1, /* length of wc-string */ dirp->current.d_name, /* mb-string to produce */ MAX_PATH, /* max length of mb-string */ NULL, /* use sys default character */ NULL); /* don't care */ dirp->current.d_name[MAX_PATH] = '\0'; #else /* !_UNICODE */ /* copy as a multibyte character string */ STRNCPY (dirp->current.d_name, dirp->current.data.cFileName, sizeof(dirp->current.d_name)); dirp->current.d_name[MAX_PATH] = '\0'; #endif /* !_UNICODE */ return &dirp->current; } /* * Close directory stream opened by opendir() function. Close of the * directory stream invalidates the DIR structure as well as any previously * read directory entry. */ static int closedir( DIR *dirp) { assert (dirp != NULL); /* release search handle */ if (dirp->search_handle != INVALID_HANDLE_VALUE) { FindClose (dirp->search_handle); dirp->search_handle = INVALID_HANDLE_VALUE; } /* release directory handle */ free (dirp); return 0; } #endif //--------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------- #endif Node-path: trunk/addons/ofxNetwork Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/docs Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/docs/Instructions.txt Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 3317 Text-content-md5: 715cab92bc022e75dde10ad7945fa82e Content-length: 3327 PROPS-END ofTCPServer & ofTCPClient install instructions NOTE: ofTCPServer and ofTCPClient require ofThread - please checkout ofThread first and follow the instructions to install ofThread before installing ofTCPClient and ofTCPServer. NOTE: Windows users will need to add ws2_32.lib to your project. This is part of the Windows SDK. For Codewarrior it is here: C:/Program Files/Metrowerks/CodeWarrior/Win32-x86 Support/Libraries/Win32SDK/ For Visual Studio it is here C:/Program Files/Microsoft Platform SDK for Windows Server 2003 R2/Lib For Dev-C++ it is here C:/Dev-Cpp/lib -- for Dev-C++ it is called libws2_32.a It is strongly encourage to copy the lib to your openFrameworks libs/ folder and then add to your project. +++++ Step 0 ++++++ Copy ofTCPServer.h and .cpp and ofTCPClient.h and .cpp to libs/ofAddons/communication/ +++++ Step 1 ++++++ Duplicate a project twice and rename one tcpServerExample and tcpClientExample replace testApp.h testApp.cpp and main.cpp with the replacement for each example. +++++ Step 2 ++++++ Drag the ofTCPServer and ofTCPClient files from libs/ofAddons/communication/ into your project. As well as ofAddons.h from libs/ofAddons/ in ofAddons.h you should have: #ifndef _OF_ADDONS_H_ #define _OF_ADDONS_H_ //-------------------------- // utils #include "ofThread.h" //-------------------------- // communication #include "ofTCPServer.h" #include "ofTCPClient.h" //-------------------------- // graphics //-------------------------- // app //-------------------------- // audio //-------------------------- // video #endif +++++ Step 3 ++++++ Add the folder tcpUdpManager to your main libs folder. Then drag folder into both projects. +++++ Step 4 ++++++ in of Constants.h change the line // then the the platform specific includes: #ifdef TARGET_WIN32 To: // then the the platform specific includes: #ifdef TARGET_WIN32 //this is for TryEnterCriticalSection //http://www.zeroc.com/forums/help-center/351-ice-1-2-tryentercriticalsection-problem.html #ifndef _WIN32_WINNT # define _WIN32_WINNT 0x400 #endif +++++ Step 5 ++++++ To run the demo app make sure in ofConstants.h you have using namespace std; #include #include //for ostringsream #include //for setprecision +++++ Step 6 ++++++ Also to run the demo make sure you have in ofUtils.cpp //-------------------------------------------------- string ofToString(double value, int precision){ stringstream sstr; sstr << fixed << setprecision(precision) << value; return sstr.str(); } //-------------------------------------------------- string ofToString(int value){ stringstream sstr; sstr << value; return sstr.str(); } And also in in ofUtils.h: string ofToString(double value, int precision = 7); string ofToString(int value); +++++ Step 7 ++++++ Add ofSleepMillis() add the line bellow to ofAppRunner.h: void ofSleepMillis(int millis); and add the code bellow to ofAppRunner.cpp //-------------------------------------- void ofSleepMillis(int millis){ #ifdef TARGET_WIN32 Sleep(millis); //windows sleep in milliseconds #else usleep(millis * 1000); //mac sleep in microseconds - cooler :) #endif } +++++ Step 8 ++++++ Make sure you add the fonts needed and specify the corrent path to their location. Node-path: trunk/addons/ofxNetwork/examples Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample/data Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample/data/type Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample/data/type/frabk.ttf Node-kind: file Node-action: add Prop-content-length: 59 Text-content-length: 152700 Text-content-md5: e130d119682ecb567748343bf7f263b0 Content-length: 152759 K 13 svn:mime-type V 24 application/octet-stream PROPS-END 0DSIG9<LTSH2OS/2ehFVVDMXk^rcmapL*cvt I)9%fpgm'gasp -Hglyfli9-Xhdmx"` Ppheadۄ6hhea$hmtxJ*- Pkernr<loca&*maxp+ namelG, postqFb<prepP|0 *H 010 *H 0` +7R0P0, +7<<<Obsolete>>>0 0 *H se{^ӯ 0@0Ǐ7ے(<g0  *H 0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CA0 960409000000Z 040107235959Z0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CA00  *H 0ieRT(bTUDEJ;~Ȁ k)vsb<ulMԘisbN1 }GQod5}gwQ>wCʣA="HH0  *H ujdxç2ur&`0LH4RJQS-{1eAA/czszAЎ:84Duqā85J>2!8\8dT_݈)Oqd1<<00M,3{TT0  *H 010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.0 991116000000Z 040106235959Z010U VeriSign, Inc.10U VeriSign Trust Network1F0DU =www.verisign.com/repository/RPA Incorp. by Ref.,LIAB.LTD(c)981.0,U%VeriSign Time Stamping Service CA SW10"0  *H 0 Ԙgm*2,/O_rϩEA/@˒-Mb/3@հmՆO_I޷ Ne E# );7FдX#`Rv p#aܲpb Hrɇ7 S,)H2&,4PNJJ0b+GqS EQ22w0򹅒RנI93才`YVB%00U% 0 +0OU H0F0D `HE0503+'https://www.verisign.com/repository/RPA0U00 U0  *H |C!{XyKl?!^5˓QC-,qǵ1%$sLGu ;맕O`fcHd(r_XiU(42P[0<U 5Digital ID Class 3 - Microsoft Software Validation v21 0 UUS10U Washington10URedmond10UMicrosoft Corporation10U Microsoft Corporation00  *H 0I&8bURDF3aѲg@ 6@YQmQt+n]n: ;Q]NZ0V0 U00 U0U0{Ch8n; c0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CAǏ7ے(<g0!U000  +70 U 0@06 +7 #0)'https://www.verisign.com/repository/CPSThis certificate incorporates by reference, and its use is strictly subject to, the VeriSign Certification Practice Statement (CPS) version 1.0, available in the VeriSign repository at: https://www.verisign.com; by E-mail at CPS-requests@verisign.com; or by mail at VeriSign, Inc., 2593 Coast Ave., Mountain View, CA 94043 USA Copyright (c)1996 VeriSign, Inc. All Rights Reserved. CERTAIN WARRANTIES DISCLAIMED AND LIABILITY LIMITED. WARNING: THE USE OF THIS CERTIFICATE IS STRICTLY SUBJECT TO THE VERISIGN CERTIFICATION PRACTICE STATEMENT. THE ISSUING AUTHORITY DISCLAIMS CERTAIN IMPLIED AND EXPRESS WARRANTIES, INCLUDING WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND WILL NOT BE LIABLE FOR CONSEQUENTIAL, PUNITIVE, AND CERTAIN OTHER DAMAGES. SEE THE CPS FOR DETAILS. Contents of the VeriSign registered nonverifiedSubjectAttributes extension value shall not be considered as accurate information validated by the IA. 64https://www.verisign.com/repository/verisignlogo.gif0U000  `HE0This certificate incorporates by reference, and its use is strictly subject to, the VeriSign Certification Practice Statement (CPS), available at: https://www.verisign.com/CPS; by E-mail at CPS-requests@verisign.com; or by mail at VeriSign, Inc., 2593 Coast Ave., Mountain View, CA 94043 USA Tel. +1 (415) 961-8830 Copyright (c) 1996 VeriSign, Inc. All Rights Reserved. CERTAIN WARRANTIES DISCLAIMED and LIABILITY LIMITED. `HE `HE0,0*(https://www.verisign.com/repository/CPS 0 +700  *H A s#piafH)1ئnǨ{ x3eXKZnffD]dXՍN6?+2ojQm<LOJuϼB!w B]1:060u0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CAumRKe\0 *H 0 *H  1  +70 +7 10  +70 *H  1W3 'ZC:{[0l +7 1^0\42Franklin Gothic Book Font$"http://www.microsoft.com/truetype/0  *H SƖeK@$gTe TXtO UvU<7`NMJ#|F%2ά +x (v$]0~U]'2F3ޯ}dRc׺LM0I *H  1:060010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.,3{TT0 *H Y0 *H  1  *H 0 *H  1 010110213244Z0 *H  1,3Kc 0  *H J/ f#LG]'tO@7Dk]G~ fښbשۗ:/WZԖSR I֤{ұzSaT#tmMD߭yyU)U HSF"!jPRMiMks(5Wc vDg }1@sMG밐ߟ)t >Fð7x3]3D!bb.//+++%1//-$+%///+++-%%%%++++1+++++%1%--++-- +++%%%%%%%%1+++1+++1-1  1.%++#""++-.2 -/12222+_33f ITC @ {pU    !" #!$"%#&$'%(&)'*(+),*-+.,/-0.1/2031415263748596:7;8<9=:>;?<@=A>B?C@DAEBFCGDHEIEJFKGLHMINJOKPLQMRNSOTPUQVRWSXTYUZV[W\X]Y^Y_Z`[a\b]c^d_e`fagbhciajakclcmcncocpkqlrlsmtnuovpwqxryszt{u|v}w~xyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~<~~ O\_   " & 0 3 : < > D  !!!!"!&!.!^!!"""""""")"+"H"a"e###!%%% %%%%%$%,%4%<%l%%%%%%%%%%%%%%%&<&@&B&`&c&f&k ~Q^   & 0 2 9 < > D  !!!!"!&!.![!!"""""""")"+"H"`"d### %%% %%%%%$%,%4%<%P%%%%%%%%%%%%%%%&:&@&B&`&c&e&jv0*jyޖޢދާq_0?2#ED;852/(!ܹܰܨܜIFE(&%"ttfjxlRRTP bcdefghjikmlnoqprsutvwxzy{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmno$%&->@~UU`U{UaW"5ixn5P~jvx>(xDk/bNkLfy Z~xIVUcNeNSRdv`Y@89876543210/.-,)('&%$#"!  ,CXEjC`F#D# FNM/!#3Y-,CX+iv/@8+!#3Y-,CXN%!M!#3Y-,CX!!%%I%%Ja dPX!!!PX8 8 88YYY-,CX+gv/8+!#3Y-,NFCDF8<(+%<-,/M-,CX+iv/+!#3Y-,CXEdj#EdiCd``F#D# F/!!#3Y-, C#Ce -, C#C -,F#pF>F#pFE: -,+%E%Ej@`%#D!!!-,+%E%Ej`%#D!!!-,+!!!-,+!!!-,CCe -, i@a ,b`+ d#da\XaY-,%EhTX%E%E`h %#D%#D% Eh #D%Eh`%#DY-,% Eh #D%Eh`%#D-, CX!CXE+G#DGzEi G#D QX+G#DGz!GzYYY-, E#Eh`D-,EjB-,/-,CX%%Id#Edia bj%%aC`F#D!F!!!!!Y-,%E%Ed`j%Eja %Ej e%#D%#D!!-,Eh#Eia%Eja %Ej e%#D%#D!!-,Ed#EdadB-,%C@T%CTZX% E@aDY%CT%C@TZX% E@`DY!!!!-,KRXC%E#aD!!Y-,KRXC%E#`D!!Y-,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,KPXED!!Y-,%# `#-,%# a#-,%-,F#F`F# F`ab# #KKpE` PXaFY`h:-, E%FRX?!Y-, E%FPX?!Y-,CC -,-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-,CXY-,CXY-, +# <+-,%8(+# #+CX, TJրnT+|W$Kwc %/@fu 7 @0 7,,t 7 7 r&&t7 7  t7@/ 7rt)u#7#@ 7#..#.u@# 7u 7` p  @ 7  u@0+/]33/+q+3/+3]q/++3/3/3?33/]++/]++?33/]++/]++.+}10]"&54632'2654&#"#3"&54632'2654&#"eVUWZ~;|]VUV[Д؎OrUғ؎Ps{Y q!,5D@ee###ev555W1d1 7 7",,5---b""55-?,?,,,"-3(5 3(7@; 7(50,"- i%x%%%+@77+  70@ 70  6 +/]+3+/]+/+3/9/]99?++??3/9/]399.+}ć.+}ć.+}ć<ć+]+10]]]]%#"&'#"&5467&54632632>54&#"327 [9*_[ -=AQ%BfOH^3k{q^9ztڈLGYl2Gg[9X=jmjE U)@+/3/q2/q?/10#3dEkU T@ 7X   77 7 3/++++/^]^]]<3+3??10#3i&i$:_U < 7@7/  +/3<23/]??10++3#_h'hU~+@my*Um@ 7   @& 7     9/99/33/3/33/3//?3/3/+3/<33/<<10+]3% '%71&%b/|~~}.xLXDXL{7 M@/  /  0  +/<3/q<3/q/]<3/]<2/]10!3!!#!{mm[[m@& 7 7!#7@$7@ 7!$7@ !$77@ 7 73/+9/3/++3++?3/3/++q10+++q%##5mUvf=$@/o@ 7XW+/+/+/]10!5<=zzp@ +/?10%#5p^U+@H/]8/8??10]#3&8T^q n@   7@- 77 7   7   7+/+]+/+]?++]?++]10]"3 '25#"Z  󭦪/*TZ9Xxq V@/7`7@7  7    9/3/3/2/9/?3/+?<9/3/+++10%!5!5$73xD zjj3q 7@.7 9  K[f7@7   "$7@ 73/]3/++<]3/+3/]?+]]?<9/310++%!554&#"'!237>ݺy} d}쎎}0w<Iq%@:  7 7  z@ 77"@"7 7' U e  V&c+/]3/]+/++3/++9/]9?]?9/=9/++9/]39/310]]532654&#"'!2#"$'7!2654&#|Xdt4Hdn,:Ֆt鶗5mv?dr 7@ 70 7@F 77-F?         c+/]3+/9/<<3/3?3?9/]<<3/.+}10]+++++!#!533#'47]rݥ+VEsZFQO1cXDU@cV/ ?Y 7+/]3/3/+/+]3]/]3??9/]]99/]33/310]]]!632#"$'732654&#"'a۬*Z,UE2h_q!@/u (JV@277FIH  # @ 7P"3/]+2]+/]3/?]]?]++]9/]9/3]310]]q&# 6632#"! 2654&#"IO =}Gθ>*m:3ƅ{$U =@%@7Z Y+/]3+/3/+9/?9/?10!#7!7!?WߖfJgq *3@ ! г7 @7!7 % %zu  @#779! !7&@ 7Iy 77 @7  77@ 7 !  77 @4 7)7j)z)) , @7 7 7f#v##++/]3+/+++/]+3+/++9++++?++]?++9/]]9/9/]10++]]+++]$54$32#"$54%6654&#"32654mWqל^c\.xZimsa`RlhTHq!@8!'EY6E7@7I 7@# 7#xG  @7  " +/]+]3/]3/++2?]++]?]]9/]9/33]10]]7732!"543 ! 2654&#"uUY2He}ńp'@  73/+<<??10#5#5pm {@!$7@$7@7@ 7  !$7@ !$7'7@7  7 3/<<9/+3/++3q++??3/3/+++10+#5#7#5mۗSufY@&7p@ 7Y+/3/+q]+/3/3+/]8/810 5-{7'@/ ZY+/<+/</]3/10!!!!{DD(Z@ @,77@7Z+/3+/3/++/3+]/]8/]81075 5,w˜KK_)q@!0777@ 7  7  @7V7 7@ 7 } e+/q+/+9/+3/+]+]?2+++/3?2/<10]q]++#>7>54&#"'!2#5$-T[E3p8Kp2#TMM+/39e@*y   7 }7 7 +/+/+++??10]3! #%!254#!!BUvs0BU B@  /@7   +/<3/+]33//??9/10%!!!!!`K&ږUNU D@   7@ 7  +/<3/++3/??9/q10!#!!!!VDg'UQUqзz@ 7P`@7  7@ 7@ 7  7 W @'7@77[  Z} 7+/++/]3/+9/+9/3+]?+]?+9/++9/33/310]+]+]#'# ! &&#"32654'!5i/~>ys#r׹>"6t'տ+zU D@ O/@7    +/<+/<?5`cdbPrl%ULDlyU @7  7 @G7&              @ 7  +/223/+]33/]8399?33?339/393.+}ć.+}<10]++]+!##33hǫi{U"U'@  7+/3/+??10%!3گUAU  7 7 @ 7  @ 7 @7 7:  2 7 7 @ 7ih @U 70 7 9      8   0_  +/2+/]29/+?33Z3# U_8+Uq k@   GX@' 7W 7}  7  } 7+/++/+?+]]?+]]10] 32%2#"42ѭ)6sQF&JU =@& wi}/d +/<+/]]]??9//10!#!2#!5!2654&#!V:y}U掑wfUq"@%  GX@1 7yV 7 }  7 $  } 7#+/++/+3/9/?+]]?+]]3?3/10]]] 32327#"&2#"6;WFDI ѭ+>v0 0F&U p@28f     Yhv } @7 +/<3/+]9/33/3??<<9/]3.+}10]!#!#!2%!2654&#!yvepOUm+bllx;q#@K< \ #YPl{sSV5Vlxw  } @$7 @7   7"@ 7"O  ~X}@& 7% 7~@7@ 77} 7$+/+]3+/++++/+]3/9?2/]3?+2/+399]3++3.+}10]]]]7!2654&'%.54$3 &&#"# ]6}Rj^tuqp^Xk#sWjDMg.x{vl5=T۱U;@@@ 7@ 7 +/3/+2/+]q?DU}@ 7@@798VU+/3+/]]29/+?<<t8L _ @67 7H < d  c+/<3/3+/3/3?2/?<.+}10]++%!5!5!==/rU!@00+/2/<??10!!#3bi(DU)@/8/]8??10]3|Ȇ8VUU!@00 +/2/<??10!!53#UbUVi2Yj@6777??/3/83/83?3/3.+}ć.+}10+++# #3Χ٥i px ///10!!D@' 7@ 7/O9//33/3/q/]33/++3]10]7>*LxQD(@ &&@7 $ 7@&7'' *7 7!@ 7!)+/]+3++/+/2/<3/?++??39/9/3+]10]]!#&'#"&54$!24&&#"'!2&#"32654 h8*\%xb'5ѯ`2oi0Ѵ~xk@SkzuJh΋Uj@ Vf@ 7 @) 77  7  +/9/<+/+??+3/+3?+/3/310]3#3632#"'732654&#"Lln ^x~cU囌еߟ~N@% (& uu    @77@ 7y@47v  7 x  p+/]]+/<]<]?+]?+]9/++39/+310]]#"5432&#"32Κǥ(ʂ~b41ŜݰOUn@0 7@ 7@ 7 @ 7  7  7+/++/<??+3/+3?+?3/310++#5#"54324&#"3265jձ⻶sluynU)5мԸ|Ny@ i@ 7@ P  @*7d 7  7   +/2/+/3/?++?]+9/]9/+310]]#"5432!32.#"8( "kF4|Wu -#)U]{qQ@.   3/<<3/9/3/?3/?]<32&#"@𝬬?Q3.gc{w{} [})4-9G@$!#%;F?.@ 7. 4?@7?474'7B@ 71@27I]7 $< 77$7$$$H$\+/]+3/+]39/++/+]3/+3/+]?+3/?+9/+9/9/10]]"#"'&#"!"&547&547&5463266322654&#"32654&&'&lI aӲ(7Lṋrݚcr]mo j+cLB{bdwnbyU0[MUIW/<UL@  7@ 7   +/<+/??++3/]3?<10]!#4&&#"#3632eBykYJellOƦUFro?U+@ 7+/3/??+?10#5#?UBUF@ @  7 @7 +/3/3/+??+?3/10#5#"'53265BzN \uyz 2F{H޶ц[@ $7@"77@% 7 _ @7   X+/+/]+?3/?3/+++3?10+!#3>32#":IM& cžv  @  @C7  7'3  <   @7 p@ 7@&7@ 7  7@ 7_" 7  7 @ 7 ! +/3+++/+/r3++]/9?2]/++3?2/+]399]3+]q3.+}10]]+]]+]]7!2654''&&5463 &#"# 2 b}ʫIM>`{5XPw (sOGp#8g\@  @7  73/+<3/<3/+3/9/?<53l֛}KL{R̼{qV^9@L   79=<8@PpX@ 7W8+/+3+/]29/]+?<<54632~Kq#;:9<qK)7kMjJ]McMWczjKcCyMU@ +/??103#UV)V D@%000@7 !3/33/322/+??9/]=9/10&54&'572#"'5>546c~Kq"z6@8>ypL*7JkMjXPcMWjKcZGvlE:A@&      ]\+/]3+/]3/3/]33/2/]10632327#"'&#"lkTAjN\rTpH`OIF@6Q4B6$%A@ & %+55+55B "ѷ&w @Q 7 @7  7  !"!!!"!! @7@ 7 "!!$V#U+/83+/839/99993/+3/+?3/?39/.+}ć.+}ć<3/3+/++10]#"&546324&#"326#!#3iIKkjOFiY4%&77%%5¯z`cJjjKIkkK%65%&65qUpUeyq*@ 7ej*u''* 7@!7  )((( &B7@ 7 7 7 7@< 7  Ŀ)7[(7([0)I)),)f##}7@ 7E++/]++]+/]<++9/]2/92/+?++]+?++]9/]39/3?3/39/+3/+210]]]+632#"'73254#"7&! #"3  DqrgiXSGs544mX̨UoPOHDW2H(KP;~I FV#=6(IA@  & %+5+561A@ &%+5+5U62A@ '&* %+55+55C68sA@ "&% %+55+55D6D@**&+*%+5+]5D6DC@@,,&,+%+5+]5D6D@ ,&-)%+5+5D}6D@88&;)%+55+]55Dx6D@22&3*%+5+]5D6D@,,&/)%+55+]55N+3@- 7+ 7 7+&(+|+uu*!)7@7 Ā  7 @ 7   @7 )(7(@7(( &By@7 v7@47  (((x(()-)p##,+/]]+/<]<]9/2/92/+?+]?+]9/++39/+33]/]++q3/9/++3/10]]]+++2#"'732654#"7&5432&#"327g_ZdhKIG,8t1.ǥ(ʂ~4BL99Y-@#'G-1ŜݰN6H@&%+5+]5N6HCR@&%+5+]5N6H#@ & %+5+5N}6H,@&- %+55+]55J6@&%+5+]5Y6C@&%+5+]566@ &%+5+5 }6@&%+55+]55x6Q2@& %+5+]5N6R@&%+5+]5N6RC<@& %+5+]5N6R@ & %+5+5N}6R@''&* %+55+]55Nx6R!@!!&" %+5+]56X#@&%+5+]56XC8@& %+5+]56X+@ &%+5+5}6X*@##&&%+55+]55U 7@ P_  3  3+/<<3/]2/]??9/<<103!!#!5!||UrlJThq @ !'7  7 @ 7 @!'7 @ 7 7@!'7@7@ 7 @!'7  p7/+]+3/+++++]?+3/++]+104632#"&732654&#"Jppslt[;D\[A?[bopopAZ[@@[[@@ 7 @  7  2 @ 7@"7@ 7G_i~ 73/+]q]3/]<+<9/+<<<</33/<<2/+3/33/2/3/+310#.54753.'67p;pdj>%>p9b[{>#&9,9q(@&2 !!%%% # @7!# #  7 @77*)3/3/3++9/+3/99999/3]+9/9/?]3/3?<3/39/<<10#!5>54'#53&54632&#"!!!261j›q֞ƂogjRx%>2Ujs'iIukSVmNuU8wN+q+7^,7/7@07"05[Y Z6y{&5,60@!F0 !57&г7&@ 7 "t"&@! 766!!!%//  %o@v7% !%,/16 * !%,/16 # ~#~''7''#4~I###9#7~  7.~ 8 +/3/+3/+]+/]]3/+]3/9?]?99/]3]9/+]]3.+}ć.+}10+]+++]]]]+++732654/.547&54632&#"# >54&'[tϯү$CjyrzJD[WHxa87/jzZzeJQd!4"\\pPw=8$p,4k @   P/]3//3]q/10#"&54632ĥtwutuuvJ>UT@ 00000@7 7 +/]+]+3/3/<?22?<9/10#####".54>3#"3>dbcY[pruFlU_K*7$54&#"kk 2^a,f@!/8t[Wn~򤈂#c|!rHBnEbT"FYVq %.@ %%&.p@# 7E7.J @47 %%"7*"J   7"/"?"" &E@ 7Vf Yi@77/+/++]]3+]/<3]+]/3/3+9/3?+2]/]+2]/+]<9/9/10! ! 4#"32###!2%32654&+aa##ebdyZLQSQVAa#"`cd]3XAxDS=?AVq - @H"""#$$$@ 7$$@ 7,y&!7!!@ 7&!J!7v,,@ 7E7 @%7 $##J   7Vf @ 7)E@ 7Yi7.+/+]2+]/+]2+]/q<?++2]/+]]+3]/+]+]9/+]39/+]3/10]! ! 4#"32%!"54632&#"32aa##ebdhuGǥ@y4gxyea#"`cd~¯KU@I 7  7 7 x =       @7@7@ 7 /3/2/3/33/+++39/33?3<33/<E S ]onkka$l/pp}%&{0%&0 ,'$,68$8*6,    '.( & &+/99/q9//10]q]6632#"&'#"&5463232654&#"7&#"326G|_ZuϕòP@j~s7U@ `n`Rk鹺~џT~+QLm!יz{{7 X@5   /    0 [+/<3/q<<3/t@ @ ('  /9//99q10qrqr]]%5!5!5whip;5 `@> x@ @ ('  /9//99q10qrqr]]55!5!5w))p;xU@p ?>     B        +/3/32/39/////9?3?9/223/32.+}ć.+}<<<<103!!!#!5!'!533 3K[ddZjmOvu9uvsK@/9  !7 7   +/<+/?3.D'@xyRf9. %ZT)O@9 %%&%5%np##' !/99/9/910]q]#"&#"#"&546323265476632Z;.%.'<1S,1J3'"?  "P,9R'22"DgN)*F2&6BYm%@;:FDA4pq%#@((*7t#""@ 7t t  7!t7 7@( 7tB B$@ 7&o+/33//+]2/?3/+++33+/9/3/9/+310]q+#&'#"&546324&#"'6!2'&#"32654pxBpv2:[prs6}Sm&,boL]yTImrCdvO :q _ @ 7 t 77@ 77t@ 7 @7 o+/3/+?++3/+]+++10"&54632'2654&#"W}~~G^bDE^ZﯔZrwwnovvsF)m@F  "LO" $)#?$$0()N_$ A P  /]99]/]/]//929910]!!654#"!33!'&5! !2673!ւ!0HC%%CH07;$;LB;9A8MA9;B@k'.;@E8U8i}--d3t399@ 7"&11//(&@ 7""+&@ 7EU7@V77+ 7./##p.....(4("=" 7  74 < +/3++/+/3/9/]3/9/9/?]<]3+]?+<3]+9/+3/3/9/39/+310]]# !"&54$!2654!"'6632632!32&&#"&#"32654̎(j %?Lr kʶ%vF{y8HlX),gE٬i eLi$4#@#777@ 7je @0 70 7   0  7@= 7 7 7   "i  % f$+/]3/3+/]3/39?++3/3?++3/39.+}<<<<<<<<10++]++++]]7&543273#"'#&#" 32654j•nZpϞfWNbt WOiw!RxȕWsN/F҇rLђR7@!7 (7 7 7@ 77Y@$7@ 7 f 7}+/++/9/+3/+]+]?2/?2+++/310]+]++53332!"&547665ʨ%,T[E2o8Kwp3.ĂLO*/39d=r(!mݩ߅;CFa@ 7  !,7-67@!,7 73/+3/2/99/++/+88?2/+?103#3#ASJs" @ZY+/+/?3/10!#!5!!wV\@<(8Uiv/9//9/910͇] '%!+Lf`Dbd-@@07   /3/39333/]33/3/3//3/2/9/+9.+}ć}ć<10##"'732>7#73>32"[b!93Nd% +v^56W{AbҠz$Vw31s(p@O%**%XX%hh% ( (?"""'0@  /9999/]]]q]q10]3#"'&#"#6632323#"$#"#6632323paϋH/l/xvK3p`J/l/vKjuN'X>ϛº+R> Q@7 !1L_c//910]q]!!A/FAL#ARa/ @3    `@ 7@#7   7  / p  /]38+3/]2/+38+3/]q/qr3/3/3107333Zjj\kk%%`n/ u@, P @ @ 7@ @ 7  7 /+383/+2/383/+/qr3/q3/]310###¬Yii[kk/$$g M@   @#)7 @ 7 #)7@  7 +/3/++2/++?332210%#5!#5!#5nB6$C!A@ &%+5+5B6$%A@ & %+5+5U62A@ !&" %+5+5Upq#!@77X# @" 7   7  # 7@  7%} 7$+/+3/++<3/9/<<<<?+?2/3?+?239/10]++%!5# !25!!!!.#"3267pD܈bS'ٵɁw&..NMwN&-@wgh,@  7'*77@I 7**""7 7P------'$'/ $ . +/]+/3/9/]]3/=9/9/?++<<]3?++<+39/9/+310]]#"'#"5432632!322654&# .#"2؈͐ʾ:1^~>yh 0!#xtXz=@/o3/3//]10!5=zzR=@/o3/3//]10!5R=zzU 4 @ !'7 )   7#7@ !'7) 7@#7@)67  @$&7@7@$7@ 7  !$7!$7")7@7@7P@  7 !$7 !$7  @ (7 @ 7 @7 @ 7   @ 7 @7 3/++9/3/]++++r3++2/+q9/3/+++3++?3/++++q<<3/+<10++q+++q+5333533GpRfJuS ū U  @- !'7 &   7#7!'7& 7#7 @$&7@7@$7 7@ '67  @!$7!$7@")77@7@ 7 @!$7 !$7   @#7 @  7 7 @ 7   7 3/+9/3/++++r3++2/+9/3/+++3++?<<2/+<2/++++q<10++q+++q+#7#5##7#5GpQgJuRUĪgU@ !'7) 7#7@%&7@7@$7 7@ !$7!$7@7@773/+9/3/++3++?3/++++310++q+5733GccgU@!'7& 7#7@%&7@7@$7@ 7!$7@ !$77@ 77 73/++9/3/++3++?2/2/++++10++q+#7#5gFccU{$7@ T } }@$'7 / } @ 7 }+/<3/+<2//]3/]+3/10#"&54632!!#"&546329''99'(8D=9'(88((8(88((88(88((99. _@?(& O@ ^Q  6 &6 /99/9910]]]q]#3 szszOtt R}6\@&" %+55+]55)6<A@ & %+55+55BU9@H0 /83/83?3?3.+}10]##3p;nUsq*C@'&7&gweH)X))))Z((((%2 """"""" " 2(X (**(*x(% g*x#% [*[@ ,f  +  g G w    /_]_]_]_]9/<9+_^]M999/<_]_]]?]_^]?_]_]9/39/39/_^]q<<^]]]]<<_]]10_]_]_]_]_]_]#"'#53&547#53$3 #"!!!!32s32&#"#5#@Ʇ/f&Zkc>qc@ @# 7 / 73/+<3/<+/2/]3/?3/?+<32&#"#3@Ʇ/f&ZkUUc P  @17 _@7P 3 _    3+<<3/]<<<2/]<?3/+]<uSvQ"f@#7 6FF  t 7@ 7 7 tu7@ 7@7 u  +/]33/3/++3/+?+3+/+]2/9/310]q+!5$654&#"'632goHLtp@a^MGWbY!c4f" 7@ 7   7t@ 7t@* 7t  uu@7 u u  # +/]3/3/+3/9/9?3/+9/+=9/+9/r39/310++53254&#"'632#"'732654&#hbJ.mT|JaRp+mbuh]>Hŀ^0lNg#X>CRXf &@67 %6%FF% %66%FF%% 0 !  @$ 77t  @ 7 &t t @! 7 t /   @*u#7##u&  _ u'3/3/3/22/]9//]3//3/+/8]39//8]3?33/3/+]2?2/3/+]++9/3?3?3.+}10]q+!535673#3!5654&#"'632nz_VW~;|rhoHLtp?{YYWl>uSvU a^MGV`Z d`Ϳff   @ 7 0t 7@7@ 7 t@' 7 t / @7  @' u  _ u!3/3/3/22/]9/3/<33//3<<2/3/8]33/+8]3?33/3/]+2?3/+]3++9/<<9/??.+}1010]+]!535673#3#5!533#'nz_VW~;|s^s{YYWl>uSvUM8^^)f"&16C5 7 76@"7&&%&##0$%$$%$%++*.2t1))(3 73@&73--@ 7--(   7t@ 7t@ 7t %& ?&P&&&(#$@$$$ 00.1u)+6*,,*2))@7 uu u u  7 +/]3/3/3/9/+92/<33//3<<2/9//833/]83?3/+9/+=9/+9/r39/3?3/+]3++9/<<9/??.+}10]+++]53254&#"'632#"'732654&##3#5!533#'hbJ.mT|JaRp+mbuh~;}t^t]>Hŀ^0lNg#X>CRbUM8^^Us @7   7  7@ 7 +/33/223/++3/9/+??9/q9/+<<10#53!!!!!!#Cg(EQU6*A@ '&% %+5+546J@PP&HN$%+5+]5g6,D@ & %+5+5e;q8@)\#\0V5i l0|0t2 !9#y3,VP58@$755V2l5xw7553! }4344 7@!7 3!!@$7!@7 44!.@ 7@7*O+++.(@4 7  @7@ 76%!34 1+~**X}6@& 76:6% 7~@7@ 7%711}% 7%9%+/+]3+/++++/+]3/99/]++2/92/+?2/]3?+3/2/+3993++3?3/39/+3/+2.+}10]]+]]]]632#"'73254#"7$7!2654&'%.54$3 &&#"' DrsgiWSGs55y]6}Rj^tuqp^PNIDW2H(KQ(X#sWjDMg.x{vl5=T۸v55( 7"@ 7" 5 7@!7  7'3  <33!1!)71@711 ,)**'Ā,,7,@' 7, ,    @7  p@ 7 44 @7@ 7$/@(7//*3! ))4    7@ 77 7  7 @ 7 6 +/3+++/+/3++]/99/]3/92/+?2]/++3?3/2/+]399]3+]q33]/++q3/9/++3/.+}10]+++]++732654''&&5463 &#"#2#"'732654#"7$ic}ʫIM>`{5cc[dhJKC.8s1.jUXPw (sOGp#8BJ;9Y-@#'GUy6&A@ & %+5+5N6F@&%+5+]5Uy6&A@ & %+5+5N6F@& %+5+]5O<U#@!0 7 @ 7@ 7# @ 7 @% 77##% 7 $ +/++/33339//??+3/+3?+?3/39/+3210++33##5#"5432!5!4&#"3265jֱ⼶s"muwnUvt)5tм͸|=$@/o@ 7XW+/+/+/]10!5<=zz_0///]10!!w@+//]10#5wB{6$$:@  & %+5+5DA6D@++&+*%+5+]5B6$%A@ & %+5+5D6D@11&)/%+5+]5U@ 7 7&w @X7>?  VU+/83+/839/99993/3/3?33/?39/32.+}ć.+}ć<<?+3/10]++!#!#3327#"&54 Lzr-+BT]d\qUMQ`E"SFNpD*7@* 7 7#$$!&&@  7&&55@7+ 3 7@:7#$$)@7@ 766+ ++97 70@ 708+/]+3++/+/2/<3/3/++3/3?++??39/9/3+]<3/+]3/10++]!#&'#"&54$!24.#"'!2327#"&54&#"32654U= h='\%xb'5ΰ["o&1ASZbG`2oi0Ѵ~xk@S@<:V ? L@n8zuJh΋Uy6&A@ & %+5+5N6F@ & %+5+5Uy6&D@ & %+5+5N}6F@& %+5+]56'nA@ & %+5+5OU6G_@ &!%+5+5#U f@Cy     7}7 7   +/3/<<2/+/+++??9/]q910]53! #!7!!!254#!#!BF=vr1D{6(]:@ & %+5+5NA6H"@& %+5+]56([A@ & %+5+5N6H @##&! %+5+]56(aD@ & %+5+5N}6H#@&! %+5+]5tU@ 7 7  7 @,7  @7/@7+/<3/+]33//3/+3/3??9/5VccbPqm$ULDlyUi@  {@3 7@7@7`+/3/+/]3/3/++?<{cMM'\"@&7 7 7" 7 7@ 7 @27  7!@7@ 7$ #+/+/3/++3/3?53327#"&54Y.l֛}KL{R[#p&0BRZb̼{qV^9<:V ? L@n'c6:SA@ & %+5+5&)6Z@ & %+5+5)6<A@  & %+5+5 R6\׳@ & %+5+586="A@  & %+5+5D,6]@  & %+5+]586= D@  & %+5+5D,}6]@  & %+5+]5q +@ 9//2/?3/?10]!#4632&#"u?Q3.tVڥ} eB # 7 @ 7 7 @!$7 @g!$7#"!""""!# 7ď   @7  """x%V$U+/83+/]839/9999?<< ?   8   V U+/83+/839/9999+?3/?<<<9/.+}ć.+}ć<+10]!#!#3Bz`qUpU  }@ 7 7 7}7 7i @ 7} " !+/<+/+]3+/+++??9/9/10+]3!2#!2654&#!!2654&&#!)|nBxwUȄL%x _^t̂hI}DU'@  7+/3/+??103!!UAU{@,?@ 7@7 VU+/83+/8++39/39/3?33/<&VU@+]/??10!#3VUU @7  7 @A7&   >  ?       @ 7  +/223/+33/8399?33?339/393.+}ć.+}ć<10]++]+!# #33hǫi{U"rUu@E 7Y? p VU+/3+/]39/3?3/Z3# U_8+OU <@"    +/<+/<3/3/??9/]105!5!5!OrrʖwUq k@   GX@' 7W 7}  7  } 7+/++/+?+]]?+]]10] 32%2#"42ѭ)6sQF&GU"@ ++??<103!#!UAJU =@& wi}/d +/<+/]]]??9//10!#!2#!5!2654&#!V:y}U掑wfTU @ 7 @B 7 7> ?    +/33/33/3/9/3?2?29/3.+}ć.+}10+++]35 5!! !Tj0KH U;@@@ 7@ 7 +/3/+2/+]q? +/3/32/39/?<<tfr~@ 7@$77@ $7@ 77}@7  7 @ 7} 7 @ 7 ~`@ 7+/+]<<<<2/++++]3/]+++]?3/++<]       0P V  U+/33/3+/]]33/39?3?39.+}ć.+}ć<ć<ćć10 # # 3 {+2UF~Ub@  7 @' 7 @ 7   7 ++]<<3/3/?<53L(.E j :j:q@ 7iz  }@/7@7@ 7}I y   }7 7@ 7}Fv+/]3/2++]/]++/]3/2/]+++?<<<32#"'32654ᘖ&#"B$VVurU^%c_SڸxN kzdyDr] 7@L7)7<@7@7 a@ 7 `+/+3+/++39/9/?<<75"32654&REܕwJqqwU{f{'ԻֳXq"@ !7@7 @ 7 7 @ 7 7@79  $ X @7  7@7#+/]+3/+]++/3/9/3]+??9/=9/+9/++39/+310]++]]"327#"&547&54632&#"4dGxW; չջ(pQOE\d~HW<=@ 7@@ 7 a`+/83+/+839/39/83]+?::_hpM@T8'F+A8^othy3c^`YN T 7@+ 77 7i   f+/]+/]?++?++10]"5432'2654&#"xru4 Ձҽ۽>  _@3  @@ 7 k 7 j+/+]q3/q+/+]q3/]q?<32#"' 3265{=֡hyzOnv {@ 7 @ 7  7 @7i  `@p 7 7  +/++]3+<3/8]?]++]?39/+3/310]+]654&'.543 &#"8/NmB=$rs\8Dky>0 o٘'_TN@ 770 7@2 7   7 @77i @ 7f   +/]++/]+3/+99?+]??+]10+++##"5432"32654&6=~olnz"tҽ״A7@ 7@7@ 7 +/3/++2/++?53#".5% mURn"K|Ylc>53jUBkl8Iն:k$ܭ{>uE$ܭwY "7 @77""   @7 @ 7  7 @ 7P   7@!7_@ 7"""p"""#$"+]=9/3/+]+2/+]33/]++2/++3?<35`cdbPrl%ULDly5U@7 0,37 0,37@W 7   p     ? y@7@7f  U+/3+/++]9/]39/33/39?<3/ ?   8   V U+/83+/839/9999+?3/?<<<9/.+}ć.+}ć<+10]!#!#3 Bz`qUpLU _@$@ 7iy  7} @7  +/<+/++]3/+??9/]q103!!32#%! 54&#!ɀ8Ua=ɔז}zU  }@ 7 7 7}7 7i @ 7} " !+/<+/+]3+/+++??9/9/10+]3!2#!2654&#!!2654.#!)|nBxwUȄL%x _^t̂hI}DhU'@  7+/3/+??103!!UAU  037г7@f7  ?  ~ @_o@7V ~ @  U+/3/]32/+/+]3/32/9/3?< >   ?  7@`7@Pp       @ 7@PV  U+/33/3+/]]33/+39/32?3?39/3/  ?       @ 7  +/223/+33/8399?33?339/393.+}ć.+}ć<10]++]+!# #33hǫi{U"rU77@B 7? p VU+/3+/]39/3?3/pfr~@ 7@$77@ $7@ 77}@7  7 @ 7} 7 @ 7 ~`@ 7+/+]<<<<2/++++]3/]+++]?3/++<]       0P V  U+/33/3+/]]33/39?3?39.+}ć.+}ć<ć<ćć10 # # 3 {+2UFU 5@  ~  +/+/3/2/?   hy7   }+/+/<9/33/3+]??339/]3.+}10]!#.5463!#!"3!ywveOx+m|ihD(&&@7 $ 7@&7'' *7 7!@ 7!)+/]+3++/+/2/<3/?++??39/9/3+]10]!#&'#"&54$!24.#"'!2&#"32654 h8*\%xb'5ѯ`2oi0Ѵ~xk@SkzuJh΋j'@- f  75U\ "7@2 7 7 7  7  %h  ) (+/2+/]3//?]+++?++]39/10]+]]3632#"&&5466766"32654&oplPi~AzwR;xzya\6@& %+5+]5@ g &6س 7 7γ7γ 7@  77I@H7 7 = 7@ 7X  +/2/+/++833/839]3?33?339/393.+}ć.+}ćć10+]q+++++]q##3673tdΝ4/uq)l8L5j7W@E 7<=@7@Pp XW+/3+/]39/+3?33/?3.+}ć.+}10+]+33##MG37 7 γ 7 @ 7x 7v  @ 7 2 7 @  72 7@D 7 = =      d P@ 7  +/22+/+]229/]33?3?33/3/.+}ć.+}10+++++]+++++3!3####,= ê ghv :@# @7  +/<+/<?`{5XPw (sOGp#8?U+@ 7+/3/??+?10#5#?U }6@&%+55+]55BUF@ @  7 @7 +/3/3/+??+?3/10#5#"'53265Bz=XA3VOU﯏|Ti@0 77077@K7 =  0      = 7@7X  W+/3+/++9/9/33/39?<3/?39/]q.+}ć}10+++++!2#!##33254+4ȺMܘqm3j 7 @7    @ 77X  +/<+/++9//<<?54' ֞ƂogjTv, >,1jštufuJ:VmKrufuuNNUjs'f"U 'E'0@$700 7#| 578@ 788>:())7)@\ 7))0+0>>+:|5@755D|D&|+|D D"@ 7" ##)((<2 7228727-A@ 7AGAdYi}v@ 7 F+/<3/+]]3/+/+33//]+3/9/3223//+//??39///<3/9/+9/39/++]39/+33/332/310+]+!#!2+532654&+#"5#53?3#32?3254/&54632&#"#"T}yv?&ppqZ#\sbr2m%u{X{ʗzU玑wmWaV VU_r\A Ni_S<#Uivq%1@|,| 7 &|@7 0 / ?  |@7|  7  # /@!7)#3#]  8 2\+/]3]/<<+/3/+9/839/83?+]3/+]99/]3/]3?+3/+?3?3.+}10#"&54632&#"32#3"&54632'2654&#"Pk4ቧ.kZ__Wp;n*SntNQol򿣚r~UΘʘ]z|*m!)@ )!j!z!")@7>)))" '7 '7@ 7") ' @) 7")% @ 7 O _   +*9/]333/]3/+393/+?33//?3?9/33+++/3.+}10+]327632#"&547#"5476732654#"eA%52QFFN*,:IĄ?Cx/8Y&Y5o%5mPPN #&D^?wSU'+@  :D  @ 7  7 @ 7 <"7 7@"7 7+* * +B%?@7(B-  @7P  ,+/322///]+22//+/3/+]?3?32/++3/++.+}+10++]+!##3'&53"&54632'2654&#"!5>G]dAF]\nZ3# U_8+$’krw{invyp{{Z|HT@0  I@ 7 7 7  3/3/<3/33//++//+]9/9/310327#"5432'&#"AxHvz+0 |zy+j=9J)yyff $/9k@279 799 0 070%@ 707%t0@ 70005*t@ 7@`5@7  75t  t@! 7t / #  @ ((u@78u--u@,72uP#`###  _ u:3/3/3/22/]9/q/]33/3/q+]/3/3/+]3/8]39//8]3?3//+]2?++2/]+9/]+++=9/9/]+?3?3.+}10]++!535673#3&54632#"&54%>54#"32654nz_V<~;|YPgVNem5qo^q{YYWl>uSvUTA_{x[9Pd_D3w@76Nx/t>LK:q"f!%9DN@7N7/7N 7N/N$%""0#$##$"#%$E7&000E&&:@ 7E7:tE@ 7EEEJ?t+@ 7+@+`++++J@75 7Jt5 7t@ 7t@ 7t $%% %%%28"##@ ##==u.0@700..Mu2BBu((@7&&&(2(Gu878@ 7 u 7u@ 7 u u O +/3/3/+3/+9/+9/+33/3/q+]/3/3/+]3/8]39//8]3?3/+9/+=9/+9/39/3?++2/]+9/]+++=9/9/]+?3?3.+}10]+++53254&#"'632#"'732654&##3&54632#"&54%>54#"32654hbJ.mT䀛Rp+mbuh}:|gPgVNen4ms^q]>HŃZ00k#X>CRbUTA`z{Y9Pd_D3w@76Nx/t;OK:q4U3>H@?H7)7H 7H)H0?7 ***? 4@ 7?74t?@ 7???D9t%@ 7%@%`%%%%D@7/ 7Dt/@ 7tt @ 7 t/ ,2@ 77u(*@7**((Gu,<54#"32654z aXoung;fsqP{J^~;|`QfVNem5rn^rUeOn\"nVYdnUTA_{x\9Pd^E3w@76Nx/t=MK:qcU #.8l@78778 788 0   /7/$@ 7/7$t/@ 7///4)t@ 7@`4@ 7 74t@" 7t@ 7 "  p  @ ''u@7O7u,,u@71u"@7"u`9+/33//]9/]/+33/3/q+]/3/q3/+]3/8]39//8+3?9/3/+?++2/]+9/]+++=9/9/]+?3?3.+}10]+++#!7!#3&54632#"&54%>54#"32654{"= 73!!ytt{L.?97B-=.=`gIEk`Sh;^@ IH/oGF JLM KML KpLpMAp/FapGpHLpIpJSp?]<<<10>73.'#=-=agHEk`ztt|L.@8[6B.Ol^@ML KLM J IH/oG FFapGpHLpIp/]<<<JpKpLpMAp?10#>7!5!.'ztt|L.@86B.l>-=agHEk`Sg;^@ IH `G FJLM KML KpLpMAp/FapGpHLpIpJSp?]<<<10#.'53>7g=-=agHEk`ztt|L.@8[6B.Ol@7MMLK L MJI  H/ o  G IH `G FFapGpHLpIp/]<<<]<<<JpKpLpMAp?<<<10!.'3#>7!#.'5>736B.Lztt|L.?9%7B-Lytt{L.?\Dl`>-=afIEk`=.=`gUh@6I H `G IH/oGF JLMK M LKpLpMAp/<<<<FapGpHLpIpJSp?]<<<]<<<10>7#.'55>73.XDl`=-=`gIEk`=-=ags%6C.Myut{M/>:6B.Lzuu|L.@[g#@?#K I H `G IH/oGF J"# LMK M LKpLpMAp/<<<<<<FapGpHLpIpJSp?]<<<]<<<3/10>7#.'55>73.!!WDl`=-=`gIEk`=-=ag1s%6C.Myut{M/>:6B.Lzuu|L.@ϯ{KKKp////1033!{#>@)77*  ZY+/+/?33/]++10]!#66$32#4.#"$  atu^}ړѧuxE( A @"7@7/ Z Y+/33+/33/]32/+/+10!!!!!!www(4 g@2 K  KK KKL KLKQpLpM"p/</33/<33/].+}ć.+}103 %! zQU" @ZY+/+/?3/10!#""h"":@ NMOPLKKpLpMgpNpOpPp/?10#4632#"'.#"qCG3%/ A,(4 I !jHA NMOPLKPONMgLKpppppp/?103#"&546323276765"qCG3$. A,(4 H  j @ KLKp̹Lp?10!5!(~-HMLKKp/Lp?MHp?103~ K~1AKMMLLKKp/p?p?10!#ků}2,1AKMMLLKKp/p?p?10!5!#}lC~H(@ KMLKKp/LHp?Mp?103!~2},H1AKMMLLHKKp/p?p?10!5!3,~HBANNKMMLLHK Kp/ANNKMMLLHKKp/>GHQFRRKT]F^^WhaFbbkluFvvo##//33GGKKWWkkoo%&=>]^uv$'xxxxyyyyxxxxyyyyyyyxxyyyyyxxxxyyyyxxxxyyyyyyyxxyyyyH}}}}}}}}}}}|}}}}}}}}}}}|}}}}}}}}}}}}|||||||||||}}}}}}}}}}}}|}}}}}}}}}}}|}}}}}}}}}}}}|||||||||||}}}}}}}}}}}}|}}}}}}}|}}}.H=AEIMQUY]aeimquy}@40,($8GNJFB>!f %FAci{ &#&*.26:Fyp9/"32654.knvvo]b֗brrsrL^^֗^^# MNM Mqp/Np?102#"54>knvvrrsrT'@LM LL MLL pMp//103!"32654&TvwSTvv,vTSwwSTv*5@KLML KKLMKLKpLLpMqp//103!"3254.2#"&54>*ovvo[b՗b}rssrL^`՗`^pf -@ L@MLL@M LLLpMp//102#"&546"32654&khhhiIfgHHgfhhhhLgHIffIHg~+7C~@78>9=&;FAK2&H, / ?  LFGFJ>=/598#H)I5H/IFG FF]pGpHpIpJpKpLLp/9999?]<<9102#"$54$"32$54$2#"&546!2#"&5467327#"&2Хѩ2"//"!00 "//"!0/>ON?2abͦѩ/3]/"!00!"//"!00!"/^$$_dd~'3x@0(.3/1F+K"HLGJ./%3(H%%IHIG F]pGpHpI8pJpKpLp/]]9999?<<9102#"$54$"32654&!"32654&3267'#"'2Хѩ2T!00!"//"/0!"//2ba2?NOͦѩ/3W/"!00!"//"!00!"/^_dd_$!FU/?@`*+/),0& #8 &F##H0F/G8FH< ),4*+#$F/#H 77>7"32>54.LfX"4I&O|9bkLpP3BD P BE0$e\#U?G5_J`YE2H9 Q>=3TjEjT9F=II 'S@$FG!F  FHHF $FGFF6pGpHp/9/<</<<3/2/<10!!#!5!".54>32"3254.5;4gv~~n;I;yzzyoT&s@7 F GFFFF#F#FGFF6pGp/9/9/3/9/33//992/33/39/39/310#".5432 '"3254.$93NXh v~~TfEK25yzzy#V@ JIGH GH FFpGpHpI%pJp/229/<9/<9/<10#"'&'!726'#"&547>7>lJZRH6/K-SZ -0JClE_9*[c %%__YJ;S6S73A5 # ) . 3JK3G&HI.GHI.F KJ%I H]GFpppppp/22/<9/<9/<9/<9/<10)767>54'#"&5467.5463267632.'&'J6Qg=[t[?g*wuET"dtMs2#4Y\>"#"3n|rvt3EH)soXb(tx:3%X=)&@  GIFF#pGp/</<9/10.'&'.546767632sy.)jqQ=& 32&#"#5#@Ʇ/f&Zkc>qc@ @# 7 / 73/+<3/<+/2/]3/?3/?+<32&#"#3@Ʇ/f&ZkUC"f @ t  7  7 @7   u@+#&7  @ 7 @7   d c+/]+/q++9/<3/2]+<]<?33/++/+9/]<<9/10#5!533#'Yt^t"N7^^U`77@#7~@ 7@ 7 079//+]33/+/8+]?33/+310++3#MU*vs7@ 7P7@# 7~@ 7@ 7@P79//+]33/+/8+]/+33/+]310++3#ЦMmd&'@!    @! 7 q %@@ 7q @ 7 V@- 7 BqBBY"@ 7qBP/]3]3/+]/]3/+]9/+3<]<3/+/<]<3/+9}<<<<<<107&547'76327'#"'4&#"326hff\ƕ[ff[ōBˏˎċ[gg[ė\geA͍                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        "                  "                                !#!                #                   !!!!! !!!!! !! %'%             "    $   '  !!!                "     "!"!       $"%!!!!%%%% %%%%% %%"*-*     ""     "     !&#  #  ($   -   %%%         "&#   "      !&!"&&"%   """  )'*%%%%***********'  .1. !  " %&  % $$$*!!& #' " ,'   1   (((       &*'   %"#     %*$%"**%) ##" #&&& ,*.((((....!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!.......*###252 $!   %  )!  )  )!!  !'''- $$)&* %  0+!   5    ,,,               !!!"    )!-*    )! %&   "" " (. '!!) % -.(, #&&"% &)!)!)!! 0.2,,,,2222$################################################2111122.&&!!!!&!696 '$    (!###",#""!!,  ,$ #"!  $ ***1"'  ',)-  !("4. $   9"""!!!  # 000##"######    ! "   ###$#"""!!!!!!!!!,$ 1-"#"" ! #"",#""')"  "%$ $! +1!"#!!*##",#""'# 11", 0!"%")*%( "),$,$,$$   42 6 00006666' !!&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&!!65555!!!!661))####)$:>:""*' """""""""""""""+#"& &%$/&% %$!#/  /'"" &%# """""'"!--- 5%)" ")0 -1" " #+%81"'"" ">  %%%###  !&!""333&!""""&$&     &&&%%    $ $   &&&'%%%%$$$!!######/'"51% %%% #" %%$ /&%$ *,%" " $'' ' $"!.5$$%"## - &&$ /%%% "*%"45$/ "3#%($,-(+ $,/'/'/'' ""85":#3333::::*"#"##))))))))))))))))))))))))))))))))))))))))))))))))##:9999####::5,,&&&&,'CGC''0- '''''''''''''''"2$)'+%"++*!6,*%*)&!)$7#"#"""#$$#!$"7$#$$$-"'$$'%,*)##########$#####$$$$'''''-'&444""%=*0'%%'$!07%38#"'%'%)2$$*A9'-'!"' 'G$%$%%***)))""""""""""!&#"+#"&$'';;;"+!&''$"$#$#$#''+*+%#%#%#%#%#+!+!+!+$+$**""!!!!,$,$,$-+$*#*#*#)))&&!!!)$)$)$)$)$)$7-"##'$#=8*#""$%+*"+$)'%#+**%6,"**%!!"1#3+"'$"'$"$# $#$#""*.-"#"-%)'&5=**"+$'))%4$,,*%6+**%'!"1#+(==*6%';(#$# #+$$ .$##$*#!34". 2"#" *3" #7-7-7-"-" "''A='C(;;;;C"C"C""C0'('((////////////////////////////////////////////////((CBBBB((((CC=22,,,,"2 ""-KPK,,62,,",,,,,,,,,,,,,&8(-+1)&10/%=1/*/.+$-(='&'"&&&((#('%)&=)'((#)"2  &,((+)1/-((((((#'''')''''')))),,,,,2,+:::&&)D/5,)),(%5>):?'&,),).8((/H@,2,%&,$$,P()())///---&&&&&&&&&&%+#' &1'&*(,,BBB&1%+#+#+#(&((((((+#+#1/1)')')')')'1%1%1%0)0)/"/&&%%%%1)1)1)30)/'/'/'...+#+#$$$-)-)-)-)-)-)=2&' ' ,((D?/'&&()0/&0(-!,)'0//*=1&//*%$&7'90&,!(&,) &!('$("'(("&&/"32&'&2). ,+,206-*654)C74.43/(2-D+*+&***,-'-+)-*D-+,,'-%7#"#*1,,0-742,,,,,,'++++-+++++----1111171/@@A**.K4;1..1,);D.@F+*1.1.3>,,4PG17!!1)"* 1((1 !X,-,--444222**********)/'+#*6+*"/,11 III*6)/'0'0'-* ,,,,,,0'0'646-+-+-+-+-+6)6)6)5-5-3&4**))))7-7-7-85-4+4+4+333/'/'(((2-2-2-2-2-2-D7*"+#+#1,,KF4+**, -54*5,2%1-+544.C7*44.)(*=+?5*0%,*0-#+%,+(",%"+,,%*"*4%88*+*8-3#1/BL34*5,02#3-A-664.C544.0(*=+61KL4C.1I2,,+(+5$,,'$9,++,'"4#+)@@*9''>*+*''4?*'"+%D7D7D7*"7**1 1PL1S2IIIIS*S*S**S<12122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22SRRRR2222SSL>>6666*>(( **7\b\66B=66*6666666666666/E185<2/<;":-K<:3:84-81K0/0*...11+20-2.K2011+2)='&'.61152<:8111111+0000200000222266666=64GGH..3S:B63361-BL3 GM0/63638 E11:YN6=%%6-&/ 6,,6 %b12122:::888..........-4+0'.<0/&4166$$$QQQ/<-4+5+5+2. 1111115+5+<:<2020202020<-<-<-;2;29*":..----<2<2<2>;2:0:0:08884+4+---828282828282K=/&0'0'611SM:0..1 2;:/;18)620;::3K/0/>28'64"IT9:/;158'82H2<<:3K;::35-/C0;6ST9J36Q7110!,0;(11+(?1001+ &:'/-FG/?+,E.0/!,+:F/+&/)!K=K=K=/&=..6 !6YT6\7QQQQ\.\.\..\B67688AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA88!!\[[[[8888!\\TEE<<<<.E,,$..=djd ;;HC;;-;;;;;;;;;;;;;3K6<:A73A@%?1QB?8?=91=6R434-22256/64162Q6456!.6-B***2;66:7B?=555555/44446444446666;;;;;C;9MMN227[?G;77;51GR7#"MT43;7;7=""K66?`U;C((;1*3 ;00; (j67677???===222222222219.4*2A43*95;;'''XXX3A19.:/:/62 656565:/:/A?A7474747474A1A1A1@6@6>.%?221111"B6B6B6D@6?4?4?4=!=!=!9.9.11!1=6=6=6=6=6=6RB3*4*4*;65[T?4226 7@?3@6<-;74@??8QB3?>8113I4L@3:,53:6+3,$540)5-)455-3(3?-DC343C7=+;9%P[>?3@6:<+=7N6AA?8Q@??8:13I4A;Z[>Q7;X<554$04@,55/,E6445/#*?*41MM3D//J243$/.?L3/*4-$RBRBRB3*C2 2; $;a\;d<{ON<YqaY(NaYGhU ]M$Ihb=Z66y{$ U yUf)+b;Itf)D;D=j1*N~%BBH(N%FNR Rd m!&u" ;*N OG 'P&'P&'P&R U{8kWv*Z f " 4 cOOO{"~~~~~~~T0 0 *pUo@@7@@%UCUd~ p$57: <3'sw{ V'sd$$#$$&$*$2$4$7u$8$9$:$<$E$F$G$H$J$R$T$W$X$Y$Z$\$$$%9%:%<'$'-'7'9'<)D)F)$)-j)2)D)H)R)U)X*$ *7*9*:*<-$..&.*.2.D.H.R.X.\/L/&/*/2/7{/8/9y/:/< >>KnA-sFJO W n !!""6"""#$V$m$$$$$$%%.%H&"&:&R&h&&&&&&''.'D'^'v''''( (u()**++,^-4--..u./0f001I12233R34+4556_77778@8909n9:$:b:b:y::;0;;<<=h=>>r>>>??@8@n@A4AAABCCCCCDD&D=DVDmDDDDDDEETEEEFF_FGGDGGH?HVHnHHHI.J J$J?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~uni00B5uni2126dcroatuni00ADuni00AFuni00B7AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflex Tcommaaccent tcommaaccentTcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongs Aringacute aringacuteAEacuteaeacute Oslashacute oslashacutetonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammaDeltaEpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsi IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdanuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonos afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061 afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109 afii10110 afii10193 afii10050 afii10098WgravewgraveWacutewacute Wdieresis wdieresisYgraveygrave afii00208 underscoredbl quotereversedminutesecond exclamdbluni203Euni2044 nsuperiorlirapeseta afii61248 afii61289 afii61352 estimated oneeighth threeeighths fiveeighths seveneighths arrowleftarrowup arrowright arrowdown arrowboth arrowupdn arrowupdnbse orthogonal intersection equivalencehouse revlogicalnot integraltp integralbtSF100000SF110000SF010000SF030000SF020000SF040000SF080000SF090000SF060000SF070000SF050000SF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000upblockdnblockblocklfblockrtblockltshadeshadedkshade filledboxH22073H18543H18551 filledrecttriaguptriagrttriagdntriaglfcircleH18533 invbullet invcircle openbullet smileface invsmilefacesunfemalemalespadeclubheartdiamond musicalnotemusicalnotedbluniF001uniF002uniF003uniF004uniF005EurouniF006uni2206uni00A0 Idotaccent@ sVUVUVUVfefefefccdcdcdYYZYZYZ.opopopjkjkjkhihihi`a`a`aWXWXWXWл/@?,36@<,06@x6@!$6@|%266!ɘ,Ș83U2 0 !,UUUU_,Ub=U֘U@=0;6=U|3,,Ux},tuBu%,,,U,}UUU7<,U[}6,~}U}U6;6*+6$6@6 ,-*+()&'$%"# !  m   l      B!B,B,B,mBUlBUB,B,B,B,//OO//O/Oo;:98P3KKTBKKSB3+KR2+KP[XY3+TTCZ[XCXYY+dKSXpY2KSXY++++sststss++++++++++++++++++++++++++++++ 2+KdRB^++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++s+++s++++++++++++++++++++s+++s+++s+++s+++s+++s@EAE + #B #B??+</ #B#BY Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample/data/type/mono.ttf Node-kind: file Node-action: add Prop-content-length: 59 Text-content-length: 65704 Text-content-md5: 75f171bc535016d4d2582e6f88d52796 Content-length: 65763 K 13 svn:mime-type V 24 application/octet-stream PROPS-END LTSHqPwOS/2r`8VVDMXfnI1cmapay9(cvt S-fpgm1w>gasp glyfΥ>.hdmx-Nqhead84g6hhea/$hmtx9Hlocajpmaxp  namegwH7gpostełprepwO :7777~ar1^&z  h E , X |%]N 0@"V\F.u,Hw$=X x ! !5!"G"#*$$z$%O%&^&'3''(u(()n*****6*B*N*Y*d*o*z*+#+.+9+D+O+Z+e+p+{++++++++++,F,--.../01~12(2c23Q4#445/556`67B7y78r89V9:;J;< <-<===>:>>>>???@@@A A\AAB BtBBBCCDDqDEMEpEEFFFFFGGGG+G7GCGOGGGGHH4HyHHII6IuIIJ@JJKOK[KfKrK}KLLLLMZMMNkNO OPvQ*QR@RLRWRcS;T T,T8TDTPTTTU UU$U1U>UKUXUeUrUUUUUUUUUUVVVV(V5VBVOV\ViVvVVVVVVVVVVWWWW,W9WFWSW`WmWzWWWWWWWWWWX XX#X0X=XJXWXdXqX~XXXXXXXXXYY YY'Y4YAYNY[YhYuYYYYYYYYYYZZZZ*Z7ZDZQZ^ZkZxZZZN/.]NmmG||j>vH!.~!~ID 8W q>!]}@FLq/GFOq.J]tcO]j|~ Ss~Ht}eFR-g ->GUVruz'.CUzAM'F/e{ms3HTeo}~*UX,0INemTUa)G')06?HOUV_cfltv'.6CWcuKlt'VQ(0gm3488?JVYhmu|J'?FF>>?emtzlrF6 nN"x]mOO|$P y@210/.-,+*)('&%$#"!  ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-,@ -,@ -, ECa}hC`D-,E#DE#D-, E%EadPQXED!!Y-,Cc#b#B+-, EC`D-,CC -, i@a ,b`+ d#da\XaY-,E+#Dz-,TX CTXDDYY-,E+E#Dz-,%FaeF@`H-,%F`F@aH-,/-, %E#DE#DEe#E %`j #B#hj`a Ry!@E TX#!?#YaDRy@ E TX#!?#YaD-,~;! -,-A-A -,;!~ -,;! -,-A -,~ -,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,Ei C`:-,%# `#-,%# a#-,%-, ` <<-, a <<-,++**-,CeC -,>**-,5-,v#p E PXaY:/-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-@!/NN.g/k/0kkϕk/=0====j-6!"PAss`tpttt tttPtt@2Q 33 11ö$$/$²$A :R5&:8CR$.$5'@ j-6*--A "b%!b%##:@#J--#?#6---Rbb###E##;nbcbSRH#G#GC#B#)b%(b&#%#@ "#C!#C#@;U  w`O@>10+*  @+J E`Dv??>9FD>9FD>9FD>9FD>9F`D>9F`D+++++++++++++++++++++KPyl J++++KSyl J++++KSXY2KSXYKS \XEDEDYXERXDYYKS \XED-EDYXERXDYYKS \X$ED3EDYX@$ERX$@DYYKS \XbEDEDYX@bERXb@DYYKS \XR-ED--EDYX2RERXR2DYYKaS \X##ED:#EDYX#ERX#DYYKS \X##ED'#EDYX#ERX#DYYKS \X##ED9#EDYX#ERX#DYY+++++++++++++++++++++++++++++++++++eB=}kEe#E`#Ee`#E`vhb k}Ee#E &`bch &ae}#eDk#D =Ee#E &`bch &ae#eD=#DETX@eD=@=E#aDY.PNgEe#E`#Ee`#E`vhb NPEe#E &`bch &aeP#eDN#D .gEe#E &`bch &aeg#eD.#DgETXg@eD.@.E#aDYEiSB++++++++++++++++++++++++stust+++ssssLB2:IJ_<ʨBW" sQ x             !%*  .##2&&6) ) :,################################################################################################################################################################################################################################################"#,###############################################################################################################################C3(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()(3(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((K9--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------9-------------------------------------------------------------------------------------------------------------------------------   !!""#$$%%%&&''(()**+++,,-..//001112333445566788899::;<<===>>??@AAABCCCDDEFFFGGHHIIJKKKLLMMNOOPPPQQRRSTTTUUVVWWXYYYZZ[[\]]^^^__``abbcccddeefggghhiijjklllmmnnoppqqqrrsstuuvvvwwxxyzzz{{||}}~ZZ`g   G S :a      1990-97 Apple Computer Inc. 1990-97 Type Solutions Inc. 1990-97 The Font Bureau Inc.MonacoRegularApple Computer Monaco RegularMonaco2.0Monaco 1990-97 Apple Computer Inc. 1990-97 Type Solutions Inc. 1990-97 The Font Bureau Inc.MonacoRegularApple Computer Monaco RegularMonaco2.0Monaco  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~J@ ~+17H~    " & 0 : D !"!&"""""""+"H"`"e% .69L    & 0 9 D !"!&"""""""+"H"`"d%6xTjyޖޢދtq_/0H^bbcdefghjikmlnoqprsutvwxzy{}|~     qh !"#$%&'(+,jk/01234n978:;<=>?@AopDEFGHIdefgLMNOPQRSTUVWXYZ[\]^_`abcmE@ @  ,+N54&DC~RBUkьv#]puYem]mML%"0-:{) * @[cYx;jGC{4'qFDa> '3@4!h"(!.!" ! !1+L+%%1%%@L %% 446+NM99?BZKج׭}lmml>mФͷ|vf>"09@2L #//!12""!//("27#)!)%"! 7% c;Fn&3@ ,n 4n:46+NMv9/??32>=3#>54&#" 326qcpRSbhqb FevSXL`Ntk|BhIgM]`eʇL2@1/BGDA]pQ-]i 򤾂.N@ ^/99?10#!iUm0m@@*   E EYY  %%z S8|+NM??9910]$54%0|Ӭ-mD@.   J JVVX X  % % Szla+NM??9910]56$54$'|-m&&xx(>@F    ( (   e e   5 (5l|+N &@ ee e  e <<?<<10!#!5!3//ќm/ќ/N$''@!_ I Lcr2K+NM?105>5"&54632HK-]XbATz`N|GmMi?@O+N99? @ $,,00==D@JNTQ[_cajni hrry}   - %%j g gC C  BB  R R  +N]MNM9??9.+}10Cy@0`@ @  ``@@ `+++++<+<++]] ! .#" 324f '3w@z+pE>CCzy~I]AAIIg @?  88FVyC C } b }} +N]M<<?<#@S) )&&&&FI!WY!jjjjl!uwwy||zzy!   " " #"@  R%"!$Y+NMNM?<?>54&#"5>32!@U6Uj Ed9jw~Rycr`[pBWl!>dm#6<-O^iܭq^\wK>&@sJWV"j # # '4:4KEZkd{{uu $    $G@ $ RvR!( _'Y+NMNM??v9/99999910q]q]7532654&!#532654&#"563 !"&娚gîrGJtka]GߏjI(tb0 f@     b C@   b /<<<9/9??<<+}10rqrq!!53!!m3>NNXO@49 ;pp%,FVkzz  @ GR bY+NM<54$!eU OjUYY^'I.;VVf>%@J;6;KNKK"dduu + ++9T\if% % @ o  @#  0'## #0#B#R#d###G!@  0  &+N]Mv]N]M9??9/]9910]]>32# !2&#"2>54&#"$HՀyrV$mKWkvӌ_.OlYmӗ}@E88K j |||| |   b  @%      R   Y+N]M]N]9??'3@888IZW+Z/d",  '%&&'9DFFF%F&D'F+F/TTT&T'U+U/eejj#e&e'k(m)d+d/l1m2k3t qqq&q'z(|)|1|2|3 1 2312+/>(-!!-@  (*0$ vG0R5$vG*R4+NMvNMv99??910]]'.54632#"&54>54&#"32654&'"Gsd.[TfGhpublwm)E2uS`B{ynCxlBk>K{HF|M˱ige Gf>%@W&5CRjjzz"$$"%%% %645f u   %@ `    !@#+#;#M#]#k#{#### # '&+N]M9/N9]M??9/]9910]q]#".543 !"'532"32654&HՀyr ܝKW8kuԌG9|=/N~%YnӖ | (@ pp ^ p2K+N5"&54632"&54632HK-]XbATz`7C`aBBa`N|GmMiN@շ /<<<9?.+}ć.+}10 G>G*o@   ,+N<</M10!5!5>G>N@շ /<<<9?.+}ć.+}10 5 5qu> ,@&99 eey y c  % o'@!    Sm$ n*@ ?6?654&#"5632"&54632OO>"BTxWyBNG'5A@146"8?6" ?%%$8_,! 4! 76  @Co(!C<%0!B46+NM]NMv]<<??<9999910Cy@j9A32&%&&%"&*&.%:%30O%(# @A6><+ (O- 0O9<14O'$!$A=?) ,O/ ,O;8++++++++++++<<+<+++++++++++%#"$! #"&'#"&54;32>54&#"32#"326TKNGTbL`tcg )'O)zӇ䌟K$vh<0*;{ȝ7#klpmCyA{JWI&KP; J_MT! 6@ / ()/ & gghgj          $ ) @=  ;k{ ; k {  G ;+Nv]M]]9999?<<<]<> ># >> >>! $> <+++<<++++++++++]q]3! #3>54&+32654.+/\6jeoܯg_/T8ShRy6JlghU+_uFnl'jNMv@?@< rq q r  . 9 9 3=+NMN<<<?M9?910Cy@  &%%&+ +++++++++++]q]%#"$54$32&#"327@Ϊ2xz~wAA]ú]| s@/+ H3 $=/<<??10Cy@&%%& ++ ++++++++++]q]3!2#'32654.+p|ͯKX dP   @  j?  $ #+Nd'  H@' ' '  $ [+N]M<<?< >++++]]7532>5!5!#"nړMK'q̟"s<Wu @!== @F$$    0`p  $0 Z+N] @Y   79 9 3 3k+NMNM??10Cy@* ++++ + +++++++++++]] ! %2#"f Ò/zyCCKPPKn i@( (H H3 $=<]??9/10Cy@ &%% +> +>+++++++q]#!2#'32>54&!#ztRWby6kajGN>$W@!# !#  !#!#' ! #  dcd $ ^ "&9i@ 99 "3 &3 %k+N]MN]M???999910Cy@C$& % %&> $"++ + "+ >#+++ !+<+<++++++++<<+++++]q]q;#".'.5! "32Fnk/@|IݒÒtZ,PRDKPPK@{      1   $ H'  3_ P  $Z+N] + >+<<++++++q]q]#!2#'!>54&+_iF{te_]0їmSaZ@+4lz=mO>&@L LZez tp && "#&% KYZ ff #  #   $  @j9@j9$  3!(3?'Z}+NMNM9?KRXY?KRXY9.+}99<<<10q]]7532>54&/$546!2&#"!"&RMjfgz_NaR\!r?vEQU;;0B`_~5/;00<;$;@ o;+N]M<<??<<10!!5!!/m.e~Op@' + 9 ) $=}+N> >>++++++++]332>53#".~CUZCОrɓMS |l!@$('*''(ywZ@` )$ +;{ +;{$4t ;+N]M]]9999?7@UU+N99?@@NA@$$44DDdd{{ @ @!=?10]#3@Ff^m @\  @% E#  : "iup"-p!N~+N]MN]M<99??32#"'&'#33254&#"GVd4l eU~PWbϱ N7! 槨G|@Nd t   (  # : p-/.P+N]MN]99?M9?99910Cy@%%****++++++q]]%#"$5432&#"3267GKÚfb=v ? PAYeq6r@N@B  @%E #  :  -G5P+vN]MN32&#"!!dѬpYMEe4Ԉ0BHr/@m".@&(  -  @,E@3$#&, $)E&# ,: #"$i0E)-/G5P+vN]MNM<???<9999108Cy@2'+! !!!&+)1"*' )**,1!*(&*++++<+++*ITy@-..,J-#J.#<<++q]]%#"&546323#"'53267>5&#"326Udߔ5k (OlU//"cU}PW1 }@h6S633p{妩>N@0@:  p  /.P+N]32#4.#"Pq_S1bINaE5wgBum>@ && @ e+NM?<?>>?>>>.m{@   @ #   W+N]MN]M??<5!5!#"4632#"&k]I&wU''UU''UJ.A^*`?>>?>>>N @Xv          /]<<9?32>32#4.#"#4&#"GMDQc!]dAHf $4w>:3u5]|u|@0@:  p  /.P+N]32#4.#"PqcAS1bI]igBuWv| @W    7# # -p  -pNg+N]MN]M??10Cy@* **** * ***++++++++]]"5432'2654&#"g  ONN[|@Q @%E :# -p /.~+N]32#"'&'#33254&#"GVd4l eU~PWbϱ N(! 槨rN@m@E  @% E# : -G5P+vN]MN32#5&#"Wee/h_]mw4|)X@"////); ; 66d"d#d$xxs!s"s#s$'')      +((<KE E![T T!li i iiee zy y y yyyuu ! &J"  "_u#@ #( Gp%%+@ /i*.+NM]N]Mv?9?9999910Cy@4'0'0 #000&0$ 0#" 0<<+<<+++++++]q]7532654'&/&'&54632&#"#"pW|s@67ﳠv:9~FF;I;[D- /3QEDb4BS><$$/.?JJo`A|@  9  & @ # i @    NP+N]M<<]?<<9910Cy@&%11++++]%#".5!5!3!!327Av7uc@kI-7Z›>Ao4U2]@4@  :   /   .+N]<76XOUCMFZt-0FFA?] _@@ E E 5P+NMNM999?<,]r\9@c^>@+N]W*_ }YY _*W|1^c@9\r]-=Un,]r\9@c^8tJ@  F6F  ,+<</991054632326=3#"/&#"8!?PPyoFJGjcftG(E* -C=k?];B*\#!2$!e#@6 )$ !@$  %$/9999?<<<< * *'(,'(*$*# *  'f a!-+.P+NM?????9/99999910Cy@,# %% 0!*#!*  0 *"$*<++++++++#"'532654'7.532&#"3267lBY]SL:<$7]mRÚfb=vY07[Y*DIAYeq68 LN2H|LN2HCNLN2H'L2H6N2N2CN22@2QWvN2R'WvN2RC'WvN2RWv2RWv2R2N2XW2N2XC(2N2X22X @ F /?@F  3@ F 0@F3 8a+NM d7 VնVV շVq+NM?10Cy@*   ++++++++"&54632'2654&#"grooqKgiIJignqqn]lFIjjIFlve$s@ &@  & %&"-%5+NMN9/73.'>767_vѢy$XbAPVW xZb%  ( 1R0~W>!@@ % @! Q #( "l+NM<=#535>32&#"!!!]W-f|~9i3F,jūS{ӛE p:SKOubO>6Da@l$73+5CC7CCCDT7TCTD`+b7`BbCbD{p+q/q0p7pBpCpD. 5B5Cq&'(($=>><7. <$( A 7!.9(<>>$$(><($cQ%5@+$cQ%$><($!S1L9n,Fs!SLAnE8+NMNM9??9.+}9999999<10Cy@N:;/4)+# &3&!4 /#!;*9 20 /. "$#$:+<*);<<<+<<+<<++++++++++]8]532654'&/.547.54>32.#"#"654&/f^'(ġ@Aoʝ=N|##E9?98\%dT^:n7>zF:,+JSnm0{Kac9 0lB#>7"#XrVWhLx.^]PjH05iBQ%Q}rU@  8a+NM/10".54>32gqvrqprvUnurrrrunW0 @ x  me +NM/<<10.54>3!###(ppnsm?U@:? $#  u07-G(@00A>?@G5g+vN32#".'532>54'&/.546?>54&#"sϒFgDP;@~jGF&j;7wY:M((+/WHUUs$Q*><wJ7j]7,W/A=C>-6m@ԥ  %  &+, 99661+1,LLDDE+E,[[TTU+U,jjjjf f ff+,+,+, +, +,A-+*,*-..$"+,6#@ ,*+G222@/'''''''@@ 86!!!P""i7]]<]q]v]3??<<9/9<10]]"$54$32'2654&#"#32#'3>54&+g€ㄌܰ}TZRt@?Ss-/|t}XZRK3X{o$]:;D>9'@ 46 !   ::66KKFFZZTT[)T3S7jjf fi$i%j)j*7 % 28###@2+/+?++++@% .. .0.@.P.`...5'/'?'O''' ;:]]<??]r]10]]"$54$32'2654&#"#".54>32.#"32g€ㄌZ|wsf&ZER/|t}XZc!  Ϊ@9P P   $ $ 4 4   LLm oo{    @   D @ o  FF/vv]qs7g5o7mdy&1gt&N#I)0f6B2q+4mG+:Q@(  +1%)%L7%L#% /!&!4&!; ,+NM9/10rq#"&54>32>32#"&/&#"326732654&#"gQmEuAkD@M"._JzDBlA?zM}-#!=/*EC>3U(,<-'IJ>!;9,HҊXjs[*hZUL_c`7%#@oTX[(,1CfXf-WGt ;@ eem   e  e ,+NUGt v@մm @   ,+<<<<<<9?<<.+}ć.+}10 5 5!5>Upu'4@6 (    o e@ (LƷe  ,+NM<<<<<999?<<<<<>‹?~Œz4]@(@@  #   5+NM3!##&5ۻds,A`jJEFC נH0>-@/X(+%(x!"A% %S+mSm(.|+N @7$@& x!L ! <"%!+NMNM<<???<}999910Cy@  <++++ITy  ll <<++#"&54>323#&/&#"326H:Wpuŕ-T$ $ NEdDH$L\vk$1[B: YXht> c@7 !!% %8a+NMNM?10Cy@*   ++++++++"&54632'2654&#"f||{t֏Ր|xqqxxqqx!>!o@!  ! 9 @  j 3(!(@ 3j";+NM?<<<<<5#"}M  M}Yh??hYvB㎲(8bˣ(@|#09@,u$/%61 ($;21G(# 6# /E.@#  1%$+2u;+:MY+NM9/<<?<?<9/<<9999999910Cy@T48!.&"% %&-+*!1#' %0 &%) +*530790,.*-.#1& (0*(*460860+++++<+<+++<<+<++++++%#"54632>32!327#"..#"76354&#"P4@poj#O?0IPl-T4ezqJ|[/.uu!!3i"6478 +!62Sy;O@3f\vUU vWv&@7 )     "  % @% u u#"# %--'Ng+NM<3<3??<<.+}9999<<<<<<10Cy@#$#%**$"**++++]#7&54!273!"&'7&#" 32654앖2dO8^?yb YeX/`U]ݽU!62Ɩd5t ,o@c % o!@'  Sm* n$@ =7"&54632<PO>#BSxWyCMH';T;TT;:VV#RowTC+ShLFl.D[DPI-qf.U;;TS<|Q@ /o @32'&#"!! 2S  (Q8\n( vٛ4  ,+<<<</10]54632326=3#"/&#"54632326=3#"/&#"8!?PPyoFJGjcftG(E*x!?PPyoFJGjcftG(E*U -C>l?];B*\#| ,D=k?^:B*\#!w@JGT@(@  D  U+NMN<9=/9<?<M<<9v+<v+<10)53)t }VQ>c ^@      c@@ cm4+<<<<<</<<<<<105 5 rq8qp7pm}qbm}qbj>4 d@     c@@ cxRU+<<<<<</<<<<<10' 7' 7Zq8qYq8q|]mb]]mb= #L ö !²@ %$ ,+9/?<<10"&54632!"&54632!"&546329WW98WWa9VV99WWa9WW99VV/V::UU::VV::UU::VV::UU::V!2$C$!2$ G22$/'@ (%@9 %9 )@??)"3 (;+NMNM<<??9/<32!327#"&54&'.326354&#"q;6XTPv',vJwl1U2gunUq E)URO\CX=u7NG@ " ,+N/M105!G>||m#=@!G I_scdscd %$/?<<<v<102#"&54>%2#"&54>HK-\YbAUy`HK-]XbATz`m}FmNi;F_~oŠ}FmNi;F_~oŠm#7@G_I sdcsdc %$/?<<5"&546325>5"&54632HK-]XbATz`rGL-]XaAUz`}FmNi;F_~oŠ}FmNi;F_~oŠ$m#@ I_Gsdc/?v102#"&54>$HK-]XbATz`m}FmNi;F_~oŠ$m#@G_I sdc/?v105>5"&54632HK-]XbATz`}FmNi;F_~oŠG' ?óm  mõ _ @ _ ,+NM<<?<<10"&54632!5"&54632f9VV99WW9VV99WWV9:VV:9VV::UU::VG@6@ ճյ ,+NM<<<99?<<<99.+}ć.+}ć.+}ć.+}10! fe1.2\042<>;@" R6+N99?322654.#"sI Is[g11g[sI IsXo,,oXwSKKSeef}CDf_00_fDC}fe66?VQQVK]`@2 +$;4LD[Tkd@DD @ cq+N32&#"!#!dѬpYM.e4Ԉ0BHe~ma @#   `@  'g+NM<323#.#"!!dѪCBH8YMde4ԈBH@F@F5@F@ F Ӳ 3@ F @ F 38a+N>ee>>eN$''@!_ I cLr2K+NM?105>7"&54632HK']XbATz`N|G^\i7"&546325>7"&54632HK']XbATz`rGL']XaAUz`N|G^\i32#"&'#"&54632"32654&!"32654&yyyyUFFUUFF2j9{s1s5&lFwBiVEEVUFFVVEEVUFFm[\^]&&nD-'K9985\\^^\\^^!2$2(!2$$2(2(C/ 2,' 2, 2, 2,C'G22'G22U+9e@6$,*#4,)% .292$<*< 2L.44;: ,+NM9/?<<999939910#"/&#"#".5463232?632#&54>76dR;#@Kzc-$=!()3$$LY92  8DHtF?lDB9sC5XO'UJ  }  >I 5uR G22C'~O28'~O28~O28C']:@ && 22.+NM<<?<@Ne@;)'INM9999?<9.+}ć.+}10q]#3#g|F!N@/     L \+N/M<99910]]#46323253#"/&#"}gN>@*S!<*W4AL,",|(4uf^=1.O~@ "q+N/M105!O/||@N*@ !!!]+NMNM?<1032673#".' b==` Y~CCY NMuwKoNNo N @ p ^ 2K+NM?10"&54632fC`aBBa`_DD__DD_ | 1@VF rVFVFr VF2K+NMvv?vv102654&#""&54632f'66'&77&NlmMNlle7&&77&&7]pJKooKJpM^@   V mc !t+NM?9999910Cy@   ++!#"'532654'7IkBX^SL:=#8mY07[Y*DNG@InmnƑ+NM?<<<<9910#3#3t{}v~FFNR@    "@ %sK+NM/999910Cy@   ++!327#"&547Zo8A#-B=]y*08adMy@Ne@7I]+NM9999?<<<99.+}ć.+}10]73#3g|F! @         ˳   ( $&h+NM<<99?<    @  ͳ5+<<<<??22.+}999910!5%!5!%!N]]SYO264N2VzS2=?N2]>1@o+N<322654&#"v&uyg"wegS8~aZu(+ty=Y㱰㰱42<'1.N2\nq@ )H@H3 $[+N + >+++++++#332#'32>54&!#zʸtRWby/k~`iNW@@)E @ :# -@  ~+N<32#"'&'#33254&#"CVdNŽ4l eU~PWb\` Nu! 槨Gm@  ,+N/M10!5mG> @=         @  8a+N2<3M2<3?3<32<3.+}ć.+}ć.+}ć.+}! ' 7  SQqMqqPLpkRkJS ' Cx @    ɹ+NM9EeDM? at Q @ L LDF!+NM??<10Cy@    ++!546?67654&#"5632!bT=m65+21+}8uYBABeA65]5m>&@ G   @F%@F@%QF%"( F'+NMNMv?KRXY?KRXY9/9910Cy@5$$  #!   <+<+++++++*532654&+532654&#"5632#"Sr{ta(1L]oxӠ;eGUT|`:0>+#CU*5t(}X> / @'(+"  .! @ x  !/.@ <$.Q3%$$I@ 04+N @:75 _&"  "c@x x  @+ x_ xm@  46+N<$(36@$z&''((%566"--.$   -5/6$@ O_ @ '(%& 5c./*16@2,x* 6-,_5*(x2x).m//3)M@ %F!%%&@/?< 7 6+N(z+~E7[$U:T!/5*.=m›|||% 8\   F@  Q(4|+NM<8@;B !"0.13(8# 8(1'+6""$ " jj.3@%8H'9' 1 6" +669: 3$:1 @ 3?9Z}+NMNM9/9999????9.+}9999999<<<10Cy@.45,-%& %>4-6w& >>5,3w %>&'<+++++++"&'532>54&/$546!2&#"#"'532654'9RMjfgQNaR0kBX^SL:=#8/>r?vEQU;90B`[0/;0WY07[Y*DM4|>@BX!"## 79.>>.7-1< ## >>4#- 69@4 7#1<~DDC7/ny:lBY]SL:<$72'I;[D- /N2d4BW9N'%.BIInN'!( fY07[Y*Dv@2&GN2Fv@2&GN2FvN&@@$%$G@$E #  $: (!-'5P+NMN'KG'+'>N'K w',o' ',n?'X ', Xm'L kW'. WN'N !'/ny'OW!'/ yWN'O !'/ylN'OH'!'/yJN'OA|~O'1&n>('Q,BWO'1 UW>|'Q ~O'1n>('Q>|'QTG '2Wv^'RG'2Wv('RG'2Wv('R'5dn@('U]mW'5 W@|'U '5n@('U6O'664('V.O'64('V0W'7 `LA'Wl0'7n`.'W0'7`A'W~Ow'8o2'X~O'8n2?'X~O'8n2 'X~O'8n27'X~O'8&n2 'X~GO'8a<]'X+':n 'Z4'<n . '\zS'=&n? ']"zS'=n? ']O>'6D4|'VT0'7s`A'WTv@?'*cDr/@&J^!'/syN'Os'.NsN'NSs~O'1s'5>s@|'U7s~N$'GG!G0fGGGG!vv~n8~GG0~!04zc!CGG@frryGWr`!8 ~8!!v~G~ffffffWWWWWWvW@GGGGGG4z@[!0!@WG 8!j=!!G$CGGGG14GK!!GGUG~~~@!O@@vzW41GG  vvvvv!f!f!fvvrvrvrvrr~~'kyyyy~BU~GWGWGWm0`0`0`~~~~~~4 zz0`vry~"shh  APPL@ NN 4fs  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentGcedillagcedillagacute Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIogonekiogonekKcedillakcedillaLacutelacuteLcedillalcedillaLcaronlcaron Ldotaccent ldotaccentNacutenacuteNcedillancedillaNcaronncaron ncommaaccentOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteRcedillarcedillaRcaronrcaronSacutesacute Scircumflex scircumflexTcedillatcedillaTcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccent Scommaaccent scommaaccent Tcommaaccent tcommaaccent Gcommaaccent gcommaaccent Lcommaaccent lcommaaccent Kcommaaccent kcommaaccent Ncommaaccent Rcommaaccent rcommaaccentDcroat commaaccent Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample/data/type/verdana.ttf Node-kind: file Node-action: add Prop-content-length: 59 Text-content-length: 171792 Text-content-md5: 562fa31bba08b3f71cb71257ddb880d5 Content-length: 171851 K 13 svn:mime-type V 24 application/octet-stream PROPS-END @DSIG% kernu~SpP locas,Lmaxp name)VD0postmJ&Hprepyen*#_<~D) Y   R , }}bk/V3%3x MS @ Y  (CCJ2Q /      d  ( @ ^N         (6 F R$^-l  z     Typeface and data 1996 Microsoft Corporation. All Rights ReservedVerdanaRegularMicrosoft:Verdana Regular:Version 2.43 (Microsoft)VerdanaVersion 2.43VerdanaVerdana is a trademark of Microsoft CorporationNormaloby ejnnormalStandardTypeface and data 1996 Microsoft Corporation. All Rights ReservedVerdanaRegularMicrosoft:Verdana Regular:Version 2.43 (Microsoft)VerdanaVersion 2.43VerdanaVerdana is a trademark of Microsoft CorporationNormalNormaaliNormalNormlNormaleStandaardNormalNormalnyNormal1KG=K9NormlneNormalNormalNavadnoArruntaNormalNormalNormalNormal  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~r~ #~ O\_   " & 0 3 : < > D  !!!!"!&!.!^""""""""+"H"`"e%%%%%   #~Q^   & 0 2 9 < > D  !!!!"!&!.![""""""""+"H"`"d%%%%%LxA( Vw8+#jyh<ޖޢދަtq_/0۞ۖs]888BhdhvjjXXD|bcdefghjikmlnoqprsutvwxzy{}|~DEFGHIJKLMNO    PQRSTUVWXYZ[\]^_`a89bcdef ghij:klmnopqrst !"uvwxyz{|#$%&}~'()*+,-./0:123]^_`abcdefghijklmnopqrstuvwxyz{|}~LMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqtuvwxy84z;<=>?@ABd!|Yr#,W:  N c ! ]  e 7)1^?MX3ry?u0PRU y![""###%%&{'A'(y)o)*++,+,,-*-E-. .&.//////0 0060H0[1!131E1W1m1112[2m2222222333S341455567x88v889(9:;,;l;< <=/=> >{>?+??@ABBCC5CrCDvDEEUEEEEF^G9GSGiGGH H3HoHHHIIIJJKKKLLXM,M?MRMeMyMMMMMMNNN+N>NQNNOO&OlOOOP5PjPQ QpQQQQQRS+S>SPSTTTU(UzUVV=ViVVVW XY%Y8YJY]YoZ/ZFZ^ZqZ[&\(\;]]]^h^{^^^_/__`T`g`y```````aa$a6absbc$cmcccccccdCdef&fgh h_hii;ijjjkkl lmPmxmmmn=nOn`nrnnnnnnno oo,oAoSohp9ĦzjުMbi}JRĴj󵇶e鸿cyYj޺༸x%+OV»qqqqq3Ŕ[ơƷƿGǿ(fȣ t6ʂPIZn̝̳̈ #5Kg͗ͬͅ; !@[l}Θΰ+AWi{Ϛϳ$BVrЋУе7Pgxђѧѽ /@Vg~Җұ$5PfwӍӦӺ԰Ը5}0    2#t -$ 2,2.     *  22#      3    0 ''22    2#2##tttt  2  t2 2 2  # # --2-  **2,,    &  $ 2 # # #      tttt -   *2,  I. 2 3 ...  .2 '2#t $0  ,t       #  2tt 2#$  ,-"-  $  0   ' 2      -( 2 2 2 2 2 2 2 2 2 2 2 2 # # # # # # # # tt       -----  ( ( ( ( (         !!""##$%%&&&''(())*+++,,--../001112233445666778899:;;<<===>>??@AAABBCCDDEFFGGGHHIIJJKLLMMMNNOOPQQRRRSSTTUUVWWXXXYYZZ[\\]]]^^__``abbbccddeefgghhhiijjkklmmmnnooppqrrrssttuuvvwxxxyyzz{{|}}}~~̹T@)26 @Ppв @p6DVVOU_UoTTTQSRSSRJIRFI7GI2HI2I59?!C?B?RA?R@?R?5223d35454T45444%H6೴#6@ 6Hv%H6@ $6Hplpxߞ@6@6@6@6/@ 6rr@q 6m  ? @bbb@aa[-,%+9*)! C <EG<29Hp@AC6* K K K KKKKKKK**@V!!! @?O/?o϶ 7 PKRXYKTXYKSXY+++++stss++++++++++++++++++++EEha#DsEEha#DEEha#D+Eh#D+s++++++++++++++++sssssssss+s+s+++++ss++++s++++u++++++++++++++++++++stsst+st++@UT76&% , %E#E#ah Eh #D`D-,KRXED!!Y-, EhD ` EFvhE`D-,+%E%Ej@`%#D!!!-,+%E%Ej`%#D!!!-,%EhTX%E%E`h %#D%#D% Eh #D%Eh`%#DY-,% Eh #D%Eh`%#D-,KRXED!!Y-,F#F`F# F`ab# #KKpE` PXaFY`h:-, E%FRX?!Y-,KS#KQZX E`D!!Y-,KS#KQZX8!!Y-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY@cTX@C`BYYYYY-,CTXKS#KQZX8!!Y!!!!Y-|]xdYvo s,D\s~L=DP\rx=V]jn*=Tdjqzoz!!t ]dbjL&#s&MzqZ ]x|s*4s^,tLsLsxx\{D{~FTh+iljDl22jlj+n'>=V<=4]zxxsLphhhhhh+ijjjj2222jjjjjV]ZLs l"q]]ykh]]q&#2((xxLsxj&&=DD& ,xx^^]^~^LsLsLs26!-aV2~Fx+n{~4]z4j=#V#VV<4sl^x+ns+is+ilxhxh*.l4jjt2t^tLsjjjx+n'>'>{~4]{~4]Lsiljm j Rh#] Oupxhs+is+ijjj4sl4sl4sl ^,2^_2^2^2,t2LsjLsjjx+n'>  \V=gxhhLs]Z\V\V\V=&aaxQ C2x|{~^|1rLsav{Dl^~lm2 =l2==hji 0q2 j qWsx^^~,x||  QLssi{D>\D]raF,ht jb42AjFj =o<( [`SCj`j+n22PP= `VVVVVVVtsj G !T66%BBB% 6BBBB6xhxhxhxxhxhxhxhxhxhxhxhjjjj)jjj^2^2LsjLsjLsjLsLsjLsjLsjtsjtsjtsjtsjtsj G G G G G====l                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             !                              !                                                                                                                        #                      #                                                      %                      %                                                       )                 )                                  ,                   ,             "                   "  1 "              "    1          % "                     $#!!!  & !2! $   ! !     !!  !  # !   2   !!!      & $       !  !!! !!!!       %$ """ !' %8% (   %%   $ %%$$%#($%   8  %%%   +  (         % $#%%% %%%% !"     ))$&'"& ! ""%+  *@*"- """"* ! #!!*"  )""! **)"*!*"""""(""""!-)* "" @!!!  !""***! !  !!"!1%-!!!       !!*" *(!*"*"*" ****  %% &  #! %"  #" "!/." ) # ! " +,!'+"#%%!# &&*1"   !!!!!!!"""""     .F.&2! &&&&. #$# '"$$ "-  &  -&& "$" ..-&.$.&&&!&!&,&&&!&$1-. && F$$$"""   $&&...$  #$ ""$  ""  $&$6("2  $$$##      ""$$ """"-&.,$-&-&-& !.... #()#*   # '"$# (&  &% %$ 33& # "-## "'#$# & #!/0$* 0 % '()%' **.6%#  $$$$$$$%%%%%""#####2L2) 6$  ) )))2""#' '&#*%''#"%"1"")  1  )  )""# %'%    221 )2'2))) $)# )0)) )$ )""'51 2 ))   L" " '''%%% ""'))222 '"## ""' '  % % '##"% % ""') ( :,%6"##   '''& & #% % ''#"% % % % 1)"20'1)1)1) $2222 "&,,&-""# "&#"*% '&"",)     ))  ) (#"87)#&"""% 1&&#%*&'&#)"&$44'."#4#( #  * ,, (* ..  2; (&! """"""""""""        '''''''(((((% % &!&!&!&!&! 6R6,":'","""""""""",,,6%%&*"*)%.(+!+&%!(%5%!%,"" "" "" 5"!""" , "",%%&"(+(  "!!!!!"""""""""!665"",6+6,,,"#"',&",4!,,",'##,%%+:5"6,, !""""R%"%""+++(((""""""""""%%*!! !",,666"*"%&&""% % *#*" " ("("+!&&%!!("("%%+,"!"+""?/!':!!% &&" " " *"*"*")")"% ("("+!+!&%!("("("("5,! % 64+!5,5,5,! ""'6666 """%)/0)1%%&"%)%%.(#+)!$!!%/,!"""! "" # !"" ,,"!","+&%<<,%!)%%%("5!))%(.)+)!&!!,%)&88*2%&8& ! " +## "&"!"" - #!/0#+- "11" "6?",!)$"""""""""""""""% % % % % % % % % % % % " " " " " " " " +!+!+!+!+!+!+!,!,!,!,!,!("(")$)$)$)$)$! ! ! ! "":X:/%>*%/%%%%%%%%%%/// :(()-%!-,( 1+.#.(($*(9($(/%%#$$#$%"8%#$$%"/""%%/(()%+.*##########%#####%%%%%%%% %$::9%%/9.:///%%%*/)% /7# //%/*%%/((.>9%://"$%$$%X(%(%%...***%%%%%%%%%%!((-#$"#$//:::%-$())$%(#(#-&-%#%#   +%+%.#((($$*%*%((!.0$#%.%$ C3$* >##(#))%#%#%#-$-$-$,%,%("" +%+%.#.#(($*%*%*%*%9/$"(#97.#9/9/9/$"%%*:::: %%%(,23,5(()%(,((1+&.,#'$$(3/$$%%$"%$""%"#$%"0/%#%/%.!)(A@/($,(((!+%8$,,(+1,.,#)$$0(,)<=-5')<)#$#$#.%%"$(%#%$"1"%#33%.! 1##% 55%""%!:D%/#,&%%%%%%%%%%%%%%%(#(#(#(#(#(#(#(#(#(#(#(#%#%#%#%#%#%#%#%#.#.#.#.#.#.#.#/#/#/#/#/#*%*%,&,&,&,&,&$"$"$"$"$%CfC7+H1+7++++++++++777%C../4*'42.%825(5/.)1.B.).7++(*#*(**(A*)**#*(7((#++7../*251((((((#((((*)))))****+$+++%+*CCA++7C5C777+++17/+%%7@)%77+71++7..5HB+C77()+**+f.*.**555111++++++++++&.#.#4))()*77$$$CCC+4*.#/#/#*+.(.(4+4*(*(%%%2*2*5)//.#))1*1*.#.#&57*)"*!5+*%N:)1%H((.(/#/#*(*(*(4*4*4*2*2*.((%2*2*5)5)/.#)1*1*1*1*B7)(.(C@5)B7B7B7)(++0CCCC+++.2:$;2=../*.2..82+52(-)).:7)*"***(**((+(")*"*(77*)*7*5&/.KJ7.)2...&2*A)22.18252(/))7.30EF4>./E/()( *(5#++(*/+)+*$!(8(+);;+5&%8((* %#==*((+& CO+$$$$$$$6)3,+++++++++++++++.(.(.(.(.(.(.(.(.(.(.(.(*(*(*(*(*(*(*(*(5)5)5)5)5)5)5)6)6)6)6)6)1*1*3,3,3,3,3,)()()()(*+KrK"=0Q7""0=""0000000000""===)K334:/+:8"4*?8;-;43.73J3.3"""=00-/'/-//,I/.// '/,=,,'0"0=334/8;7------'----/.....////0)000)0/KKI00=J;K===0007=50))=H.)==0=700=33;PJ0K""==,.0""//0"r3/3//;;;7770000000000*3'3'":..,-/==)))KKK0:/3'4'4'/03-3-:1:/-/-***"8/8/;.4 4 3'..7/7/3'3'*;=/.&/%;0/)WA.7*Q--3-4'4'/-/-/-:/:/:/8/8/"4,,*8/8/;.;.4 3'.7/7/7/7/J=.,3-JH;."J=J=J=.,006KKKK00038A(B9D335/3843?81;8-2..3A=./&///,"//,,0,&./&/,>=/./=/;*53"TS=4.8333*8/I.8847?8;8-4..=395MN;E35N5-.-#/-<'00,/40.0/(%,?,0-BC0<+)?--/#)'EE/,,0*#KX0)))))))=.910000000000000003-3-3-3-3-3-3-3-3-3-3-3-/-/-/-/-/-/-/-/-;.;.;.;.;.;.;.=.=.=.=.=.7/7/9191919191.,.,.,.,/0S~S!&D5Y<&&5D&&5555555555&&DDD-S99:@40@>"&:.F>A2A:93=9R939&&&D5524+41451Q5244#+!51D11,5&5D99:4>A=222222+111152222255555-555-53SSQ55DRASDDD5555>5A2:#:#9+3!3!=5=59,9,/AD42+4)B54-aH3=.Y2292:+:+414141@4@4@4>5>5""""&:11.>5>5A2A2:#9+3!=5=5=5=4RD3192ROA2&RDRDRD3155H-I?K99:49>":9F>6A>28339HD"34+5431&541151*24*41DD424D4B/:9""&]\D:3>999/>4Q3>>:=F>A>2:33D9?;VWAL9:V;231'41B,5514:5254,)1F162IJ5B/-F215'-+LL5115/'Sa5-------C2?75555555555555559292929292929292929292924141414141414141""A2A2A2A2A2A2A2C2C2C2C2C2=5=5?7?7?7?7?73131313145\\ $*K:cC**:K!*!*::::::::::**KKK2\??@G:5GE'*@3NEH7H@?9C?[?9?***K::79097 9: 6Y:899'0$:6K660:*:K??@:EHC77777707777:88888:::::2:::2:9\\Z::K[H\KKK:;:CKA:22KX82$KK:KC;;K??HbZ:\**KK69!:**:::!*?:?::''''HHHCCC::::::::::4?0?0*G89689KK222\\\:G9'?0@0@09:!?7?7G99?PK'99/::96*:966;6.8:/:6LK:8:K:I4@?''*geK@9E???4E:Z9EE@DNEHE7@99K?FB_`HU?A_A797+97I0;;69@;8;91.6M6;8QR;I52M77:+20 TT:66;4+\l;2222222J8F=:::::::::::::::?7?7?7?7?7?7?7?7?7?7?7?7:7:7:7:7:7:7:7:7''H8H8H8H8H8H8H8J8J8J8J8J8C:C:F=F=F=F=F=969696969:dd##'.R@lI--@R$-$-@@@@@@@@@@--RRR7dDEFM?9NK*-E8TKOIDcE>E---R@@<>4><#>?";a?=>>+4'?;R;;5?-?RDDF?KOI<<<<<<4<<<<?=====????@6@@@7@>ddb@@RcOdRRR@@@IRG@77R`=7'RR@RI@@RDDOkb@d..RR;>$@--??@$.D?D??****OOOIII@@@@@@@@@@8D4E5-N=>;=>RR666ddd@N>*D4F4F4>@$D'>'I?I?E5E59OR>=3?2O@>7tW=I$8l <##<#DN>N>K?K?****-"E;;8K?K?O=O=F+D4>'I?I?I?I?cR>;D;@@Hdddd@@@DKW6XK[DEF?EK*EETKAOK>EWR*>>3??>;.?>;;@;2=?3?;RQ?=?Q?O9FD**-pnRE>KDEE9K?a>KKEITKOK>RELGgiN\DFgG<=;/>F@=@>52;T;@=XY@O97T<;>;>;>;>@//10!!%!!#a@U ] U+]ݴUU Uش U@ U/]++++++]?3/?10##537/&@ @ ,@,/3]/]?<3/<10###++++CC@q@!V tp {{{{ g  hbbp         O  ?]?]9/9/9/3/]9///]/10]q]q]!!!#!#!5!!5!3!3!!!\4hhhhM\Wiiii*5^[[xZZ(,3:@}~pv p,z6++# 5 <<$5+C JL$C+ZS S3Z5ke e)c+j0d:@ 78.""&G1-'74  G <<!!4 1 ? O  -&7 0@p/]392/]9//]9/]/33///]933/99/+10]]#.'53.'.54673#.'%4&'>vUb.4O(DveHKFklux|e1'5!)y,.G Q eZ[\X^Wb b '3@r  5 )& )&F H@5V Xhyv%y+v1%Q/OQ +Q @1Q O @ .*(* @*"*/33/]/]993/]//]?3/]???3/]]10]#"&54632%# #"&546324&#"3264&#"326t YdfXXfdYYdfXXfdY4/s E@o < 005->=OGODy j%`?{v{vz%p>p? *7*7?) *&700 @@ I AOCF L!A-A#5?# , >/8/? E /8&E &sF3/]3/]999//9???9+/999910]]]4&#"66326#'#"$5467667&&546766326676&5qX\tObe">$]k2<zs4##h5na552a v^s_m{YKtO#1*'nE[``mq\1/SHoCy20<,o,1Z (`480@ ,/]?3/10#++CdV@C  ((OHHO__ooxx z0 U U++3/]<]??10]#&73ıQ?IJ=?Q< E{({I vq@ O@ 7@X 7[[T Tkkd d{{s s   OP    @ O    ( p  /]392/]99/]99]?3]3/]39/3/310]++]%#'-73%q@A}Ajk@wnhnngn 9@#T @ 0 @  *@/]<]<]]/]<<10!#!5!3!ߦ!!<!!?5@&*+59EHUYdt V/]3/2/10] #?撮q1  @BOO__/3/]/]10!5! p1 V-@ U/?/]+?10!#3\6@%%8IDVgw //3/?/]10] #\3D #@"69 4 ;;4EI D KKD I !I  U!U@ U U%%% U!@U U U$++++]++++??10]! ! 6654&'&&#"326  #$#y_^{$"$!yd^|o|{QۚNMNNOJSNRN<@5F H  U U ?op U@ U U@ U U U U U/++++++++]3++92/]/3]?2?3/10!!5!!52676673!<6?%.50MA @QP`$;8 5??9KH EOOI_]][ V_^]__jdebopt% U@? U-/0@@ U@ U JJ! U U U@ U U """!2/]2/+++++9?2?3/++]10++]]!!56676654&#"#56632!i[[e Go+*'iKkc!ZYt@B#:ݽUB>xIiT|=@ / /) &/)<< 51"4/J EC"C/VYY U/j f/j]++9///+++?3/]?93/]/99]10]#"&'5332676654&'&&##532654&'&&#"#566320>JCKy|MUk?,.-3--JZF.)+b>__ GomCHJw0|+gf?FC;#8J*),jQPiz6QD>#;(,0[|3M @!  $ 4 D p   U H  I@ U? O    U@ U O@ U U U@2 U?&UU U U U U/++++++]3/++++]933++99]/]??9/+<29910+]##!533!7Ѹc]Hr`*@= +=5=KDZT)jz I%%@%%!J%   J " O@. U U U U!   U,,, +]+99/++++]/?3/]?9/]2/10]#"&'5332676654&'&&#"!!6632LBHǃzNRjG4,-5/4\X;A+Z!yLPXhAFK3$4I(2+xOMj & t)47"7@8  9%3137I%B1C7_V P P!e!u1)IJ5I ,/#! U@ U U@ U999/! U 8+]++++9/99??92//910]#"&'&5476$32#&&#"66324&'&&#"326nEV]U]X;P) q;Tk_LXY7?.p=UMA9.k?DCS2wq 35#5=]z- (*)5,)O@2  $HKXy J{/3/]9/9]??9/10]#!5!^"z(7& U% U$ U# U"@v U-+43"4'43DA"D'E3P[ZZT"_+Y,_1T3T7`bbb`#`'vv{,&/& /G5H  / )!&  U999 ! @ U 2!83/+]+99993/q??9]CTX@Y,,),25/)/6#E#V#d#& #&9]9]Y10]+++++#"$54675&&54$324&#"664&'&&'326ᐃxs ~z~QR%BcLQv/p]Zm|;@r֥e7<OkxfHi):Bs\o8&"1jq"7@9)<%<+5.L%L+C.X_]Rp{%2I)I J 5 #! @#U U999,! U U8++]++9/99?2/?9/910]#"&'53327#"&'&&54324&'&&#"326766YZ[4\$ jA]a\KXY,lEU\@8/l?6@-lBNFBpr|  80$4=CCS4-'_x-*()ZI]%@VV- U/]+<<??10#3#3I@]L@7  *+59EHUYdtVV?O-/]2/]3/2/?10]#3#II撮@qM_s,@& 7 7/@0@@P/]3/99]]/]3]/++10KSX@ TTY]%5~rM|uuj5@ TT@ 0 @ /@@/]3/]99]]/]3/10!5!!5!^^ Ma|,@( 7 7/@0@/0@/]3/99]]/]3]/++10KSX@ TTY]55~rN i@G""$5OOOD\Tiidtt p  4U +    /3/]9/]3/?3?2/99]/10]]#6676654&#"#56632#53F98RA0:@yl8 F`usb;9d/1%X-4oVqoD#+NBO@  ?@"'?A%,,//$" '/?/AG@DHVH 'YIn e ih!e'f?fAt{p't9t;GR@7MS--*Q=1Q1=--C-J?  Q Q) 7 $)7kP3/]99]/]/322/]?3/993//3/+/399/10]]!'#"&54325336654'&$#"3267#"$'&5476$32&&#"326NQKHJXIpA*+[XX_`mh_c VTaYrstt>4jjq?d9t{Ckt<@!!0KY ``gtbbaegrsBù?uu|pp@>^ ij@  U U@v UJE  |s4 @U @ U0 @ p  z   $9BZjtn   +6MUe{d ]]/]9]?]34@s#@"  WWS_ X X_S@U Uv y4!4  U U U U@4 Us%%%%?% U U U U Uh$+++++]]+++++??]++10]#"$'&5476$32#"32[acY\ZZa`\XG&d޸aefhcc !gbhia";7@0:=KKPTe4 4  !! 0@p U@ U U U U@ Uo!!?! U U @ U  U U U U U l ++++++++2]++++++]]??9/]10]###!24&'&&##326766E>MҠHU]670{^ħx//'c>MM-09Mr$+/0jsw%1@G  \ Y Y\SWWt Ueut-%%!5 )4 v y/4 3s&@ U&  U U@( Us3333?3, U U Uh2+++]]+++92+//??]99?2/10]]#"&'#"$'&5476$3232673#"3264Vr1 _m+ g100[,(6-B*D@g@U@ U9u? >  @    U U  U U  U @ 7U U U@ U. U@ U U@ U U++++++++++222+++++2/9//]??32?2/10]++#&&#"!!##5354632 d&ymSƻ?e*^ k&A% lYC|#0/@-=>*2,:0D KL*B,K0[]Zjlj|p "!(@ U@U @ .A!$2@U U U@ U@QU UU U* U UU U U22?2+ U+ U+ U@%U U U U U U1+++++++++]+++++++++9++++22/]??3/++?99?10]%!"&'5332676655#"467663273&&#"326CYR .d`~##UxQFA\aI K@R5.)'nDfDC!LGO'(0a"Ƽ?_3@u B  U U U UU@ UU U U@ U" UU@4 U U U` U U  U U  ޴U @ U U U U @ U  U U U +++++++++++++2]+++++++++++++++? @ O  ` U U U U@ U` pU U@ U U@ U U U@ U U U++++++++++]22+++++/]/]?2/??+10]#53#"&'533267665#5! Ȩ(, _-HX   (((qQ @D(    -/ 0 @ T iz       ` p  @(U @  U U U U޴U@ U U U U@ U U U U +++++++++++++2]3/+3/]99?@ U > !@+ U) U) U)5@ U U U U U U@ U! UU@ U U U U@' U555?5_55 U U U4+++]+++++++99++/++++++++/?3/+?3/+]910]]#"&'5332654'&'&&'&&54676632#&&#"|F Yd|&&l(5{9:8kdD Hcg+*^4+GGB;#COPVB"" 'nEz0/71#5IONE##  IJ>@B + > ? O  U U U U @ 7@U U U U@ UU U@ U U++++++++++22++++2/2]?2/?332/10]%#"&5#533!!326735}1|MO.d RAXc+(% W]@ z B  U U U U@UU U" U UU@3 U U U` U U  U U U@ U U U U@ U U U U+++++++++++++]+++++++++++++2???<910]!#5#"&5332673W_iļVRIK|KPUy+,(L;B=]@A&)69FI)9@Q`('87JGuzu@$ 7 jzeu U+]]]+99??]9910]]]#3>  ? _ o   ]99/99/?2/?2/10]!!5!5!!zgr5xY%V@8/:JV#g#u#:J S? O  Q$Q @   @/]33<7>323267)-.d^Tf\2^d ),+`]UPf=gacKMXOf}@dMJ[Mhb[ʩ^P6$/u@ 0@p%+5]5^!@D+ @ ZUPU iee   JFYVxw ! !{tQ @o 7 4!@U!@ U!@ Up!!! OP`@ _ o  #  $9BZjtn## +6MUe{d"]]/]9]/]/]?Va|bE 6"*0݊=~9 hCa@ ''> 0BMO C2@B\^Q2c nj+c2R_ _%_'[-[9PBkj e=e@aB| |t+t1{Pt__P):/ 337?/?   _V3:P&)G)3"V"/3/]9//99//99/]2/?2/9]10]]#"&'5332654&'.'&'&54675.5467>32#.#">54&'.'.'>hvcaXBAH|W\ Ol'-)RRSrfeT@C@ǀW[ :y+++[ZY!N,']F>&Q,&`CBYj7.ZM286%2aW8A%4QQb90YQ42:<\W9G%.OO!A:3F  -V12F  /!   2//3/10#"&54632ܚۚۚR ;@$SaO ))  /3/]3/]?3/]/]<10]###.54$3!R֕F6@A...,499476IF6S!f!{ 43=<- = &04 0% U@ U8% U% U%&޴U&U& U&@ U& U&U& U&@ U& U&7+++++++++++++9/]/9/??2/?9/9910]#"&'5332676654춮&'&&#"#4676632,s$ *c8Jn!#ƝX=9\(%-H@<^q :14Lw#B#'$_8|>:;p %.a (7@z| |ppzt's6 ##(,#",!$#?6#IG"Rkddkj*()*%%(1*O (11@0P P ?3/99//]<9/9/3/9/]q3]afftII668^z;?;qc !F5>Zff6DDc"aIa&$8 <.a 3@m| |ppyr#,#",33$3*3.DA$D*D.TT$T*T.kddkbjd$%,* 3 333/R%/%%%)R!P! P ?3/99/2/]/2/]/3/9/3/]<10]]! ! ! ! #"$5432#.#"32673afftII66rVN Y>6YSHff6DDW''0(F:4_@#{xzy  P ( 7 @ 7(( (//3/++?<3/9]CTX]m]Y10]#####33###5!|O{Ii=~uKu$@GVfvP`p/3//3/]10] #vZ&@D`/]3/]/]<<10#53#53c@T  )  SS   @0@    /@@/]3/]9//9]]/]3399/992//10]]!#!5!!5!3!!!hhWT^ii$S/jO Om@/ *+;JJMM u|  U UU@ U U@ Us @ U Uִ U@UU@d4 5 @U 545?CBaef:7&d,Ķ!gbh77d:.-MNL哌LKC-.PLR_|&5r@T1&/)#&,;4DK4QV_ _ZQYU0cm ci#l$d,d-!3 *{t0'*0 7* 699]/<3/99<10]#"&'#"5432>32.#"3267>%4&#"326_υEOӏʆDOՍh?`wn|9"% vXJ3<` uua^9GGx0g,swE@)T T  @0@  *@/]<<]<]]</<<2/]<10%!5!!5!3!!!"!ߞZq c@ ,&)69@$ 7 7 T@ 0 @  @P/]3/9]]/3//++10]KSX@ TTY5!5!~y~/| q e@ ,&)69@& 7 7 T@ 0 @  /0@/]3/9]]/3//++10]KSX@ TTY55!5!~y~jjrl@ 0?BOT[ejs| 7 7 7 @L 7FUp2   \ U U \ $ U* U U@ UU@U U U@ U/]+++++++++33++922//]??9/9910]++++]!!#!5!53@tt=LP^VITmdd]@ B   U U@ U U UU@ U` U U  ޴U @ U U U U U U @ U U +++++++++++<]+++++++99????<9910!#'#"&'#332673d ;[VB []6vAJF@'RC<@y"1f@H.)$1 5A CV UVP V*dfd*c.up.&? ?,? #) ) /3/999/??2/9/910]#"&5432>54&#"#5>32.#"3267>yNRUq ZONN Q`>* U U@ U U  U@ U U U/]++++3/++++?<754&'.#"#5>3253261,-QI]MN$!"W0T'-MپE6@N[^R*^%j$$5@ 0 tMDLLCy 1@ ]]RR jeS S *@*/3/]??]10]#"54324&#"326xzzx  묬k!'@I   , , 4004FFjdd!j$% 4&5%U U UU U@ U'"@U". U" U" U"@ U"")U U@ U U U/+++++3/+++++99/+++/+++?<Df%',k5K [S_\V]lq!+@? )&%% %=2+MB+!&%)> )> !&%" U"@ U"  -@ U U@?U U---?-o- U U  U  U  U  U ,++++++]++++9++9??99CTXK QX9.]YY10]]]]#"&'#&&53273%&&#"4&'326qT;nKSW6toLT%c7"#D#"@'_;.*'M=,#La6+a6aq m@L""#::K@ @@C\Roeezz U 4 +p  /3/]9/]3/?2/?399]/10]]#53#"&5467>75332673SpE;:D<.6Dyg9 W(ѫb>>e)!a(/|NqoB%#'@U ]+] /]]??3/10#53#3 /79)@T@0@*@/3/]]]/]2/10%#!5!9!iJ@,3Dr )YiQ//99///3/10]] ##5! f9m\7+w@M .' '.!)%5 0@AY"ff   !""-- "  F!!(I(I/]2/?2/9/990//9//]10]#.#"!!#"&'533267#537>7>32 r)y~#*Ag\@A\)P4 !^,#g*\>>W:O4) wŠ45* {33, P3m@I   (-[R[R+h d2y t2''0T#T** T T*)3) ) &)'/3323267#"&'.#"#>323267M8Ah,KTH;=k-LYH9'.NVM:#|6KTPK-47`|J.0;m}K-Ln|J.Ocz2O@1HGZj96kd{uT/?9/3/9]10]])! 2'PQ{zv Y@ss @ 7 @ 7 7 @ 7  @/3/]993/3/99/3/99//10++++]%5 5 zeR&sUYv W@|| @ 7 @ 7 7 @ 7  @ /33/99/3/]99/3/99//10++++] 5 55 5s&<e`B&&CW]^ %@ U +++ /3/3/?910!#53#53#53^6$Cdu  %+5^6$3u  %+5s62u 1$%+5x%@"00"@@"rr rtr# 5@#U45 45 UUU@ U U UU@ U U@$ Us' U U Uh&+++9/++++++++++2??9/+10]!!"$'&547663!!!!!#"3gO.@z_tqm[В6A[F<`3Dhy 6BD9(jv|$+7 @W& 20 2);.2024;6@@ @)M.@0@4M6S S\\SS"b bb"p r"<++(=!/? ? 5? +,@ U, U,@ U,, %@ U%,U U U@3 U9?92 U2 U2 U U U U8++++++]++++9+3//]+++299??3/??9/10]!32673#"&'#"326632'&&#"4&#"326v<44RmF biJEуDG׏h11/O8*4zhox<9yrj*}<}@ T/]3//10!5!}<<gT/3//10!5!g2<R 7 7@ 7 7 7@ 7/3/?<3/]<10++++++#3#3//P@ 7 7 7@ 7 7 7/]3/?<3/]<10++++++ ###񆥤//. 7 7@ 7/?3]/10+++#3/9/@ 7 7 7/]?3]/10+++ #9/ A@)  VTV@ 0 @  -@  /]<<]]/]]]10#3!5!#3++TW@;HGXWhgpp0`0` /33//99/]]910]] ffCC::##=d6\@`p %+5]5P6<u@@P`p %+5]5K@8Hhei/3/?/10] #K /3@X/7GWgw:JZjz,P)  #P (X'4(333/4 ' # ), & **(**!! q544&  U U h4++9/<<9/_]99_]?3/_]3?3/]39/_]]<<]<<_]_]_]_]10_]%#"#73&&5467#7332#&&#"!!!!32673l~1,Kw,]:tTP|0,<|,1D>3&.v/4v()-A=ϱv4.v?=l,@ r@ 7@ 7/3/99/3/10++]%5 &sYl,@ }@ 7@ 7/3/99/3/10++] 5 5s&`LMDS@! :`tD? >   ` U@ U` U@U U* U U U@ U U@ U  U U U @ U U U U U @ U ( U  U @ 7 ++++++++++22++2+++++++++9++//?e) j"yj%>1 k(DG@lz> >   U@ U U@U U* U U U@ U U@ U U U U@ U U U UU U@ U U@ 7++++++++++22++2+++++++++9++//? <>)& )&(<%>F HV Xhyv%y+v1yCvI%Q/OQ C+Q= @I1Q7 O @ F*::@*:44.*4(* @*"*/33/]/]9933/]/]3/]//]?<<3/]<YdfXXfdY4/߬^6$(u  %+56(&u  %+5^6$u  %+5P6(Pu  %+556(C<u  %+56,u   %+5]6,'u   %+5~P6,$u@@P`p  %+5]56,C>u   %+5s62xu %%%+5s62u ($%+5s62Cu %%%+5)68nu   %+5)68[u " %+5)68Cu  %+5w]t@' U U U U޴U@ U U U U U++++++]++++]??10!#3w]6:@'YVifzsP`p`P`p/3/]/]3/]9910]# #3៹{,S9@#95IE  RR `( ( /3//]33/]3//10]#"&'.#"#>323267, o6\)/A'44g2]*/I!39S'%++ZL'$))\F7@ S/3//]10!5!7 V@:ee uu  P`p @ѐPPY **/3//^qr^]^]q^]^3/]<10]#"&'33267 ũ k[Yk֨xx!D//10#53-  E@.Q 0 10 P ` p  Q ) 00`)/3/]qr/3/]r^q^10#"&546324&#"326̒̒ˑuXXuvWXu^ŐďVwvWWvvaYp$@ +9 S */3/?2//10]#"&'5332654&'3p%t- X2hbY NXI4VwBEE7@7P`p/33//3/]/33/]310++] ###wvv_| $@+; S */3/?2//10]#"&5467332673|4K* SZ$Qy &><RN2:@'TYdkt{P`p`P`p/3/]/]3/]9910]#3䟹{ @.; K Z z     5    U U@ U U U UU U U Ul++++++++++222]3/9//??9//910]!!573!R]x6 @/IYi     U U޴U@ U U U@ UU ++++++22++22//??9/3/9CTX 7 7++Y10]#57376z`q66Mu 41%+5n6V߮ 74%+5~6=2u  %+5]6]ߔ  %+5zx()@ O  O/]<<??99//10]#3#3(d%@'8Hfh< 4 4v U޴U U U@' Ut''@'`'  U U  UڴU U U@ U UU U U Ul&++++++++++22++2/]+++++9/]??9/9910]#!#53!24&'&&##!!326766ftXzyXƊiYoo[?8^?7_֯E2'L*9Gjq1@[ ) 24 9+6-EL D J+D-Z+T-ott! )?  ?O/>  &/# ,/3/9/]99//??]3/99/9/910]#"5432.''7.'5!7>54&'.#"326qlV WBT]'#b%B14KVB{}55pJaCQ/Cam; 7-+,6<u  %+5=d6\  %+5!@&9IU44    ## U@ U U@! U 0@po##?#  U U @ U  U U U U U U U l"++++++++++222]]++++]??99/]/]10]###3324&'&&##326766F733-l%,6z8p ,(6E@-$%65L^mef}u  RR*/33//93/?2?3/10]!5>7>54&#"#5>32!d3JkZY0 GWas7B 6>n)ggTEL=#}cZ+f).w@*9E JT \kd#}t# '@9 7,+RO_!!R% R*("*"(,  /3/]9///?3/?93//]q9910+]#"&'5332654&+532654&#"#5>32B89Y^J)]dvppkchM,JZnY_1Kq"#!$;GKU$#jYro6;77< @@` + [ k  ]5]5?5A6;77>&@_ + [ k  ]5]55?55y&='>6@&6660661141K1_1k1{1 ? O ]5]5]55?55<t@F  Q/? 4O 4 / U  U  U  U @ U U  U  U @ U/ ?  /]++++++++33+22/3/]3/9/]?/9/]9/]9910!!!!!##53!t>vJ&U4s6*ulYC6J 71#%+5P6,$u   %+5YGOFUDUE@U/U.U-U, U+ U 6: 6/ *)/$6$F? 94'9*464AHD'H*C6K>DA_ZR2W6UDkoj0d2d6fB`Fyz-p6p7uAuD)+ @7@7(1?488<44!!%4 S * U 7?1 U1@ U1(17  U@ UtIIpI jH]++9/++//+3/?2/?3/?3/9CTX@X(W?h(g?y(v?(?(? ]Y10++]++++++++#"&'5332654&'#"$'5332654&'&&'&&54$32#&$#"QI,h>%t- R8hb%q(acKbƿ<eU둟`y@RW;#7, NX)<;^fsc^*ˣ<,H_h]j(,nYxJA@Y 7 22$ +;4 :;C K;Z\-R7SFRIkk-b7bFbI||(t7y?tB$1?%/@59@ U999=>5@ U"> S *U@ U U U8%@ U@ U@L@ U/ U/ U/%@ U%/8 UU@! U ULLL?L_LL UK+]++++9+/+++++//++++3/?2/?3/+?3/]+910]+#"&'5332654&'#"&'5332654'&'&&'&&54676632#&&#"o%t- X2hb(|F Yd|&&l(5{9:8kdD Hcg+*^4+GGBk*6 NX-;#COPVB"" 'nEz0/71#5IONE##  IJsF6&nu -, %+5i6F $# %+5sF6&u .+%+5i6F %" %+5l(@:;8 <"2$>(KJ N"E$O(Yip Q A&B  U@ U*@U@#U UU U* U U@ U U@ U**?*# U#  U @U  U U  U )+++++2+]++++++++++2++2222/???99?9/<<10]##5#"46766325!5!533&&#"326MnRDD`YLkOsIP uBR.MLO$'Άy"GP/3//10!'!x@ V-/?/]?10#3^6$1u  %+5h6D :4 &%+5_+@.>@p8JEYW w   w   WX}s 4@U@ U0@p  S z  *  $9BZjtn   + 6 M U e |  d]]/]9]/3/?]64Vr1 JQSZ$Q4K*+ g100[,1 0RN 2*B*6("u  %+5j`6H # %+5v6/u %+5Q6Ou/pp 7@ 7O%+5]5++]v @ 7 5  @7 7U U@ U U U UU U U Ul ++++++++++2/3/++]3/???3/10+!!3!#vRdT@  7@#7 7 U U޴U@ U U U UU U@ U U+++++++++]++2/]3/++??33/10+##3Tv @"V/5-  U U@ U U U UU U U Ul ++++++++++]3/9/??9/]10!!3!#3vRW b@$V-op U U޴U@ U U U UU U@ U U+++++++++]++3/]??9/10!#3#3w 861xu   %+5_6Q %+5861u   %+5_6Q %+5s62u )&%+55jq6R %+5565u "! %+5r6U8  %+565 u #  %+5r6U`  %+566u 32%+5n6V 652%+5Y@/ ,< S 5 *O[ U@ UU U U[@ U U U U UO/]++++++++++2]/3/?3?2?2/10]!#"&'5332654&'#!5! %t- X2hb2!H" NX6!>Y0@0  +/< S %>" 00,? O22 *U U@ U#2"% U% U%@U U U U UUܴ U@ U UO1]+++++++++22++2/9/+++3/]?2/99?332/?2/10]%#"&'5332654&'#"&5#533!!32673 %t- X2hb|MO.d , NX/RAXc+(% 67u  %+5>z@Q ***::JJUdity > ? O!!!  U U @U U U U UUڴ U@ U UO ]+++++++++222++2/29/3/]?2/?3332//3/10]%#"&5#533!!32673#5}1|MO.d } RAXc+(% R)68cPy@[ !@!P!!!!!P!!!@!p!!!!!!Y!!!!`!!1!!!!@!P!!!$ %+55]qr^qr^]qr^]r^]r^]q^55W6X  %+55)68xu $ %+556X  %+55~6=u  %+5]6]h  %+5~P6=9u  %+5]6]ڒ  %+5@5ҴU U@ U U U UشU U U Ul++++++++++]3/?/10!#!!s#'@"  WWS_ X X_S@'U U%5`&&& v y4!4 '&'& U U U@( Us))))?) U U Uh(+++]]++++99//??]9/]++10]#"$'&5476$32#"32!5![acY\ZZa`\XGs&d޸aefhcc !gbhia";7i$*7@$,2%+2  *%2ej@U2+% U@ U U@ U989?9o99]9/++++9//+]/?99/99/9910#5&&'&&5467667534&'&&'66766$YOUņWOYVLQŔOKW@;:j^2ABj::AC@1IO]ZRJ،LQ^bNIc9849/<z677ap:-<lC| @** <08 OBH Xh @ 7AB  U U@#U UU U* U U@ U U@/ U""?" U U U U U!+++++]+++++++++++22???99?10+]!#5#"467663253&&#"326CQgQEDaXKLxGPuFN4NLP,'4|"Gjs(@) &; ::>!L IJO!Sk{z {!6&F& U@7 7 >&?   U@ U*@ U U@AU U***?*o*# U# U# U U U U)++++++3/]++++9++993/??2?33/+++]10]#"467667&&'5!!4&'326sV@E\Lf*D]vnnBB?U'/@HR?H .TV052mx=@C&&;6;IDYTjo dyz ty"t5 ,?++>==9? +@ 7+$ + @( 7???3 U3  U  U  U >++++]3/+9//+/?3/?3/9/910]%#"&'&&54675&&54676632#&&#"33#"32673ksOFEWqy[l_A@ObZ Bd-N*#380-h5o>d*)14)%e8fG @0* ('^`&\Yu"! !38 C,=D J;5JH>j|@:5JE? > ? @ 7  U U U@;U Uo U U U U U U++++++]+++++93/+???]10#"32!!4&#"326q7j>D¤.<; I ]}@?@O U UUU U@" U UU  ? O p ]9/]++++++3++2//]?2/10!#!5!llHhdz$@5t! 7!>"w@ 7>  uz@ 7" U UU@ U U U@& U  U:&&&O&`&& %]]]+9/+++++++993/+]??+]99??+10]#&&'&&5473663 4&#66QU^v刔!K'0]@rQEJĆc Y @PP  /33/3?9/10!5!!5!xx#6@ _ o  /]55/]55*M 7 7@7 S* * 7 /+23/??3/93+10++#4&'.#"#3>32ƬM@AAKT*Fj$$#C2Eh>EN]5@! M. MU1jf1eMyuHyRsZ  7=@17F;?@ 7??C>;O55;57!>4$14,W4P)))+V4,@W 7> +:OJO74 3F8>>>__O"3 U3 U_3333W* U* U*+U+ U+@ U+ U+ U+ Up++/]++++++++23/]++9]3/33//993/9/99]//?3/+?9/]9/9933/]/3/+910++]#"&'5332654&'&&'&&5467######32353!6632#&&#"4&'&&##326766j= G-5aEfyCU*b7~nݵ| ;/M̠0HGX x$s1U> @[Yr;V.d.r^67/W.x//'B<"1LZHD &n%D&NEy/MM-0/d0$5INOFH  OMu$-/0m>6,-T?@ #!U!U!޴ U!@ U! U! U!/++++++5]Y=6LM(@P#`##P `   /]55]'@E 7 7 7u B @ U U 0 P p  U ܴU U @ U  U U @ U  U  U@ UU@U. U U@ U U@ U U U+++++++++++3/++++++++]3++2/]3/?*2,:0D KL*B,K0[]Zjlj|p /4?4O44433"!(@@& U @ .A11P3`333!$6@U U@ U@#U UU U* U U@ U U@ U66?6+ U+ U@U U U U5++++++]+++++++++9+++22/]9/]3/??3/+?99?3/3/]10]+]%!"&'5332676655#"467663273&&#"326#CYR .d`~##UxQFA\aI K@R45.)'nDfDC!LGO'(0a"Ƽ?v;6+vu   %+5_6K"u@Oo&%+5+]5 9R @U @ 7 5@U   UU U@ U U@ U U@)U U U Ux@P ҴU U@ U U U UU U U Ul++++++++++93/]+++++++++++93//?9/q+9/++910##!##5353!5335!ƨƨU'U_$@uQ B  U UU@ UU U U@ U" U@ U U@! U  `  U U  ޴U @ U U U U U U @ U U +++++++++22++2]++++++++++++//?_< @2 2 2/?@ 7m  Z Z U U޴U U U@ UUm+++++++2223/+/]?2?23/10!!53#5!#3!5!L*`_ 6@'Sp   U U޴U@ U U U UU U+++++++]2++2]//]/?3/10!5!#36:7/] @ p 2 2) @ 7 )@ 7 m Z Z U U޴U U U Um++++++2223/+/+?2?23/3/]310!!53#5!#3#"&533265L EMIH_;Ϩrn0h @ P )@ 7)@ 7 U U޴U@ U U U UU U+++++++]2++2]/+/+/?3/3/310#"&533265#30AEAD'hzkb]_ @7 7 2 2 S * "m  Z Z U U޴U U U@ UUm!+++++++229/3/?2/?32?210+!#53#5!#3#32673#"&546tL BX!A $Q" _)&QP "5_F@ 7S D@ 7 * @ 7 @ U` U U`޴U@ U U U UU U+++++++]+++]3/+3//3??+?210+#53#"&54673#32673$Q"%<BX!A  ?o 6QP ,M6-lu@ 7%++5Y@) Ueu> @ O U@ UU U@ U U@ U U UU U@ Up]++++++++++2++//]/]3/?2/?3/3/99]10]#"&'533267665#5!7##3 Ȩ(, _-HX  (((qQ{Yu6.@ U %++5Y6N|@ 0@  %+]5] @[(    -/ 0 @ T iz       ` p  @  U U޴U@ U U U UU U@ U U +++++++++++2]3/3/]99?Y@. 7S * U U޴U@ U U U UU U U U+++++++++]++]9/2/?/??2/10+!#33#"&'5332654&Il%d( N(^R7$ OW3Y861@ 0@ %+]5Y_|6Q܋@## ## %+]5Y8H@aq  6FTeu @C 7v&64FDVS`ypZUS    U U U U @3U  U  U & U x@ U UU U@ U U U UU U Ul+++++++++++]++++++++993//?33?<99?2/10rq]]+]q5#!3#"&'53323δ'Q% :>` Y_|&@ u B "S  U UU U@U U U" U U@ U U@ U((`( U U  ޴U U U @ U U U U @ U U '+++++++++++2]++++++++++++3/?2/???910]54&'&&#"#36632#"&'5332676^KMMXc̴'N& <La%VKM&*)L;]|IR &&&sF62u &'%+5jq6R %+5s62u *$%+5jq6R %+5Y65$ U$@ U$  %+++5Yr]'@-  ! 7 C  &&S" %%* U U@ U)@)p)  U U ޴U @ U U U U U U @ U U (+++++++++++2]3/++9/+2/?2/?/?<2/910+]32654&'#36632#&&#"3#"&'53#@! 7Q  >##? O%%@( 7%   U U @ 7@U U U U@ U"U U U$+++++++++2++9/9/29/+]?2/?332/9/9910+%#"&55#53#533!!!!326735}1|-MO.d ˨$A܆SXc+(% )68au + %+5WS6X $ %+5)F68cu  ! %+5W6X  %+5)68cu $ %+5W6X  %+5_)4@.##= =!9"L L!K"ww 3 7..*S2 $ 4 //'*@ U# 6 U U@U U U U@Uv666@6 @ U  U @ U U U U U U U U k5++++++++++]+++++++9/+3/??99?2/10+]467"#"&'&&533267665332673#"& GQG!',jk-'!GQ-h=SZ$Q4K*t'IHR{{y9ABAB9mP,;<RN _g]* @" z' 7 B ""S& ##*) 7)) U U@)U U U& U UU U@ U,,`, U U U@ U U U U U@ U U+++++++++++]++++++++++22/+3/?2/???<910+]75#"&5332673#32673#"&54_iļVRIKSZ$Q4K*|KPUy+,(L;B5RN $\6:iu  %+5V66Z  %+56<u  %+5=d6\  %+5@?  U U ִU @ U U U @ U U U @ Uo   ]++++++++++3/??2/10#&&#"#4632 d&yg¿?e*^ k} ^!%M@+ 7 @ ZUPU iee   JFYVxw !7 !7 &)78FIXzu $$ p%%Q   ?  4!@U!@ U!p!!!  @ @l997Pp$@7$/$""$@ 7$)/O) @  ' $ $:BZjtn'' +5MUe{d&]]/]9]/]/]/+3/]+?7#535#535432#.#"!!!!!gbi@ >VlmpZE{"*0e, 2"_@8 9IX j!z!  7@* 7)&iy2""2 3 &$"/23/]3/?3//9/]++10]!32673# !2'.'.#"fB<:`zY B &)(Z x><;VH67[A:v*T33:Ա6;77A@   @  ]5?5556=7A8@&6 99 9@99911[1{1 ? O ]5]5]555?5556?7A8@&2 55 5@555--[-{- ? O ]5]5]555?555o6@71A6@$ o + ; D [  ?]5]5]555?555aY,@ 7 7 7 /3/?3/]10+++3aY/aYp$@ +9 S */3/?2//10]#"&'5332654&'3p%t- X2hbY NXI4 @ -/]/3/10#11  ?@ +@ 7 + @ 7 - /]32/+/+/3/9/9910##53#5311^6$E@ O]5?57(EM@ @ @ U  U U U U@/]++++5/]+5]?5.7+EK@  @ @ U   U U@ U( U@/]++++5/]+5]?57,ER@"  U U U" U@ U: U@@P`]/]++++++5/]5?572Ea@')''( U'UU@ U8 U@ U Up]++++++55]+5]?57<E\@ /  U@U U U U@ U@p/]++++++5/]5]?57E[@+++"U&U U@% U U U - -P-`-p--]/]++++++5]5?5g @   * @ U @ 7 * U@ 7 U U޴U@ U U U U U++++++]++]3/3/++3/3/++/?3/3/9/9910!#3##53#53w8T8]/^$+%X@%++]5d_6@ U%++56@ U%++5\6"@ U"%++555d7O@> 7JC&C7V&y). 73 7 7 >_!!!+> 5@    (UU@ U U U  UִUU Uд U U@ U992 U U޴U@ U U U UU U@ U U8+++++++++++2]+++++++99/+++++/]9???9/]9910+++]+#"&'#46324&'&&##532676654&#"326O?Z;9DE:;I$$B'.-mIh! BH,*$+.+[%ǗYo "bUpt5,,u>&=d] U@JUu *JYiu%EVfs U U@ U U U@ U U@ U U U@ U  O _ ]9/]+++++++++++/]/]??10]++#37CWZ],%<ld/@FWe(x }!>-? @ 7  U U U@!U11?1# U# U# U@ U U U0++++++]3/++++33/]+/99/?/?910]%#56654&##"&5476675!5!332 ZCZL=/\NKl4uZYr 1'$y8VGfK([(T?OwE9Lwp^ Nxu"H(&K4d_| @s B  U UU U@U U U" U U@ U U@ U` U U  ޴U U U @ U U U U @ U U +++++++++++2]++++++++++++????910]#4&'&&#"#36632_^KMMXcdM&*)L;]|IRu$1/ֳ 7)@ 7!* 7* 7f,&>$$$$>@ U:J,> U5E %U U U U U@4U U33?3$& U& U& U  U U U U @ U  /]++++++++2]3/+++++++2?]+?]+9/]]10++++#"&'&&5476632&&'&&#"!326766u.$:Ҙ:%--&9ӗ9%.1 )lOOl)"/r.$(pOOp($.TTSTT6F99F7Տ>E>>E>w]_B@;&EVf:iz    @ 7 @:U  ? *6%w @ 7? U U޴U@ U U U UU U@ U U+++++++++++<]3/+3/9]q//??2/9]+10z+qqr]q]q!##366323#&&#"=pH?< / /Mm]O8/!=@"U U@ 7+& h@& 7 KZjy  DUev]]]+9]/??910]+++!##3= de]@ 7 7 B   U U@ U U@ U U@ U U@ U` U U  ޴U @ U U U U U U @ U U +++++++++++<]+++++++++99????<9910++!#5#"&'#332673eJNKxT []6vN=6P'RC<@=]YhdF@A $$(466(D(G@   U UдU@ U U@! U:J  o  U U޴U@ U U U UU U@ U U+++++++++++2]]++++++???910]#"&'#46766324&#"326AHGB>f IwKA$++"{B>Bm"idw)@   %#66#@#z@7?O? &? ַ 7 UִUU@6 U U U+  U  U U U U*+++++3/++++++33//+/??3/]10+]#56654&##"&'&&5!2#&&#"332^>VM<-\uKIS7TC ^D922Kds`W;KyG6O2p-,'\]>@ UU@ U Vfy  U U@UU U& U U@ U U@ U U U U@ U U U UU U@ U U+++++++++++]++++++++++?]+++?310#"&5332676653\ k\Vs]x.++,,,{Z0d] @I*%94KDy      JEjezw   U@ 7 /  U 7/++]3/++9??]910KSX@     Y]##33OOSOdkXd]#@&u=9 I  "  " U" U"@! U"?### U UU U@ U0p#@U# U# U#@ U# U UU@U U U@ UP%`%%$%%%?%]]9/]]+++++++99++++/]+++++/]+++??9/]]9910#&&'&&5336676653`ORssSP_K48CC8;Dr577h496rq#&9'({xdq]=&@-662DD2UU2hhii7}}7 (;( ! 0> :@ 7 76@ U6 U U U@ UU@U:) ) U) U)@ U U U@ U UU(U(@U( U( U(@ U(((((?>???o?]9/]+++++++++++++99+++++/+/+++?99?9/10]#"&'##"&'&&54733267667332676654'53/37s`%'fq33/r䇟]G3G 9:F^r`KPYcCDb]LLal̷Bq?7I,H,G97zA4m-w\6 @ 0P`@ U%++5]5jq6R@  U%++5\6 %+5q6 A>%+5P6(Pu@ U %++55%@+e$v$45 5/?OYUִ U@ U U@ 7''U@U U U@ U U@U U U U/++++3++++++22/]/]3/+++++]9/]//?29/10]##532676654&'&&#!#!5!!!2SIWn][x/84152Rh SULIl:E0"(oNKs#""!h$B;65a@0@`p%+]5s9*@ :IXvy @ 7 7 4@CU**&4 4,,,,/,?, l  U  U  U h++++2]]3/]33/?3/?3/9/+10++]%#"$'&5476$32#&&#"!!326739c쑩aaiib__NmHFX4XGJpPA'5hcc fbl4'@R:;;rFHIJC6,~P6,$u$@@P`p@ U  %++5]5,-=F 0 7@ 747755((,5$47UU U UU U@ U U5 U U@ 7q?/?5@ U5 U5@ U5 U555(/3/]++++]+++9/++++++++2//2/?9/10++]4&'&&#!!267667#!!#"53267667!!2257684UGT %I/0eD<  $@GC RULIKr#%%'iUl7B8!qUYZk+,&GF-bD#B;'@!4!!4V  Uo@UU U@ U U U U U@ U UU U@ 7q)@)ҴU U@ U U U UU U@ U Ul(++++++++++2]+++9/++++++++++]+99]//?39/99104&'&&#!!267667#!!#3!3!2257684UGTeRULIKr#%%'iUl7B8"H#B;@&HX`bpp5 5U@2 UU U U U_U@U U U@ U U U U/]++++++++322//]3/++++++/3?29/910]!#!5!!6632#4&'&&#"sRh _ge==E ydjf!-3254sJ+.1&"u6<a@ p##!%+]5(@^ U)8FU 5!p!!!u%%("p!!!p  6Vev @ 7*P**@ 7 7/++]3/+9]/]99/]/?3/]]3/]3/2/910]+#"&'53326766773#"&'33267"]64a-(rF-H ?$!ɨ`^__Lb  42OOnpcbq; @4 U @ UU U@U U* U U@U U Ux @ p ҴU U@ U U U UU U Ul +++++++++]+++++++++9/++//3?310!!3!3!#$$%/^$,!@c4  54 UU Uڴ U@ UVq##@# ҴU U@ U U U UU U Ul"+++++++++2]]+++++3/??9/10]#!!!!24&'&&#!!26766,UGT\ULI257684l7B8Ѱh#B;rKr#%%'i+%@5ҴU U@ U U U@ UU U U Ul++++++++++]3/?/10!#!!  @ J4  4 U @ U  U @ U U @ U U U U U @ UUU U@# U U U  UU U/+++9/3/]+++++++9/+++++9/+++++/3/22?10]#!#36!3!!xrvUu( 7@. 33)3@@$A5TT$uqs$ '335  77@T 7 ',"27 35,-5 !,/ 7_ P7o `7,,7'35" U   @U UU U@ U U989?9_99]9/++++++392/+292/]/?92/99++10]!#####&&'&&'&&##53236676676633#"ikQXh %S<WW:i=WX$ifacp,U[:'Q@@TX;gi;  p1p2t8 2@F 7 7>=4 4p000)44   4 = 7 7#l: U: U:=:  U@ UsB11 /3/++9//++++?3/]?3/]9/9910++]#"&'5332676654&'&&##532654&'&&#"#566320?[FP慓JcqH461<33Yɳ5.-oLN;0d K~{KNR}4v*fiR-X;|.! 7 @ 75 5 UU U@ U Ux## U  U @ U  U /3/++++]+++++/2//?10++!#!#"53267667! %I/0eD<  $@GC !qUYZk+,&GF-bD0;+s2;@ 5 UU U@ U U@ U U@#U U U Ux  @ P ҴU U@ U U U UU U U Ul++++++++++]+++++++++++/3?10!#!#!;s!3sF&7@@ U)8FU 5p  6Vev @ 7P@ 7 7/++]3/+9]/]?/2/910]+#"&'53326766773"]64a-(rF-H ?$Lb  42OOni$*7@$,2%+2  *%2ej@U2 U+%@ U U@ U989?9o99]9/+++9/+/+]/?99/99/9910#5&&'&&5467667534&'&&'66766$YOUņWOYVLQŔOKW@;:j^2ABj::AC@1IO]ZRJ،LQ^bNIc9849/<z677ap:-<D8; @ 5 U U U U U@ U U U @ 7 U ܴU @ U  U  U  U ҴU U@ U U U UU U U Ul ++++++++++3/+++++++9/++++++++?2/?310!!3!33#ƍ#@5ETl t 5 @UU U@ U U@ Ux  U @U  U  U @ U  U j++++++]++++++2/?39/910]!##"&'&&5332673Ɓdc??G##rkqRv(*155rgWy0//(v @ 4 U@U U U@ UU U@ U UUڴU U U@ U  ? P p ]9/++++++++++++++/2?3310!!3!3!3vR..%%@#  4  U U  U @U  U  U @ U U U@ U UUU U U@ U?Pp]9/++++++++++++++3/++//22?3310!!3!3!33#G..ƍ%%!@454VU@ U U U@ U UOU U@ U U@ 7q##/]+++++9/]++++++2]/?9/104&'&&#!!267667#!!5!!2%257684UGTf`RULIKr#%%'iUl7B8!#B;#@D 44"!VUڴ U7@= 7! U U U U  U  U U x%%p%ҴU U@ U U U UU U Ul$+++++++++2]+++++++2/++++]/?/?9/10]4&'&&#!!267667#!3!2#3S257684UGTRULIsKr#%%'iUl7B8#B;"@44VU U@7q!!@!ҴU U@ U U U UU U Ul +++++++++2]+++]/?9/104&'&&#!!267667#!3!2S257684UGTRULIKr#%%'iUl7B8#B;a)*@ :Idv&@ 7 74@ U( $$ 4( 4 V$ Uִ U U@ Us,,,,/,?,$$   /]33//]]++++9]?3/?3/9/+10++]#"&'533267665!5!&&'&&#"#56632a`hicfWQ{DHI#\GGfW],`¬gjk6%AMWKPɀw997MC'5` '@2x  VYyv 44 4   U @+ U  U  U %U U ? X o  д Uִ U U@ UUUs ҴU U@ U U U UU U@ U Ul++++++++++2++++++9/]++++++9/???9/]10]#"32##33! ! y$j?l(560-Fcf,@ (5GZY@. 74@ U@4 U  U U @ U  _@U U U@ U U U@U U U@ Ux!!@!`!]++++++++++2/]9/++++//?9/]+910+]!#!#&&5467663!!"3Cޖ_NGsVh+.4%)-VPn3ճr72($2pCPj),hxDt|'9@ 5=)09@K)@9eus3 3@ 7"+A%%%%A7? "1 ( U(UU UԴ U U@/ U;;?;;@ U1 U1  U  U " U :+++++]+++++++9/9??9/]910+]#"&'&546766766766766324&#"326FHl@POM5HO6B@055Ke^WH:5.l>FdžIL_!Kl]5IY  >15M6I>"7.C@6-S]$3@ v# @ 7,  > U  U  U U U U @U U U @ U @U U U U@ 7/?/9/]3/+++++9/++++++++9/++/22?/310]#!#36!3!!yus SCbj`|H42]1@::-JJ-_ _/o o/& 7@ 7$--/  71@^ 7 $)<1 /-)*? ). !1^ Q1o `1 p1))1$-/   323?3O3o3]9/392/292/]/?92/99++10++]!#####&&'&&##53236676676633#"2[Q1KJT5E|-  !g@@i! ,}E5UKM-I`aUBd}CL?@KB{fFQYcAx=&4u}</@/ 7 7;?1?-----)>1 0  ? .#@ U#7.7; @ U U޴ U U@ U???  @ 7 /+]]+++++9/+//?3/]?3/]9/]910++]#"&'5332676654&'&&##532676654&'&&#"#56632WDDRtf Ij2j'*21*)t0q((4=0$%[#fC S_NCBTm\gz9^('$,.@FC:D/= 74"""uVXf] @  8 787@ U U U U@ U U U@ U U@ U  `  U U޴UU U@ U UU U@ U U +++++++++++9]++++++++9??9++10++]q!##33fCG];f 6@  8 787 P @+ U U /     U U@ U U U@ U U@ U` U U޴UU U@ U UU U@ U U+++++++++++9]++++++++999/]/]??9++3/3/]310++]q!##33#"&'33267fCk[XYZG];i^\k]@M 7'625 + ]!Ϲ 7 @ 7>!? U U@U UU U@ U U@ U U U@ U# U ܴU @U  U 0  /3/]++++++++++++++++/2//?10++!#!#"Ȕ3267667667!>_ ;""S1A  33> S>B>M2Rf] U@5 : EJp @ 7 @ 7{{y  * 7 @$U  @7 7?   U U@U U U U@ U U@ U U U@! U U U U޴UU U U UU U U +++++++++++]++++++++++++9/3?39/]++9+10+]++]!###33ٺ0&r>]q`] @ ?   U U@UU" U U@ U U@ U  `  U U޴UU U@ U UU U@ U U +++++++++++2]+++++++++2?3?39/10!#!#3!3`Ѽ/ ]<jq|R`]ܶ? U U@UU" U U@ U U@ U  `  U U޴UU U@ U UU U@ U U+++++++++++]+++++++++/3?10!#!#!`ѼE]d|Sjw!@g#O#_#+"*$:5:5IO DOAYUiezs? !!? #@ U# U  U  U U  U "+++++3/+<?3/?3/10]]%#"&'&&5!2#&&#"32676673sRzIIQ(aN ]U;u0&Q F6)GHHܓ ?6'GD5  ]v@?@O U UUU U@ U U  ? O p ]9/]+++++3++2//]?2/10!#!5!llH=d]\odK#0=@V" '5?!@7;.?7 9$68I$F8$@, U$U 1+ U U  8 U8U @U U  U @ U  ?>????P??]9/]++++++++9++]??+32?+329?10]#"&'##"4676632366324&#"326&&#"326KL?>YCc'=OTN?=R  >  U U@" U##@ 7/?O  @ 7 /+]33/]/++++9?3/]?3/9/10++++]!"&'533267!5!&&#"#56632]IPfC ? ?  U U @ U U U @ U U/  UU U Uִ U@ U / ?  U U޴U@ U U U UU U@ U U+++++++++++2]++++++9/]+++++++9/???9/]++104&#"326%##336$32#"輼.բ]; C]޳r@< 7<=   Up    JZ U@ U U U@ U U@ U U@ U U U@ U!!]++++++++++++2/]9/]+]//?9/910+]!###&&5467663!#"3xP=<\MD('%$%jAE(Y|'&x K,7Dj`6H@ 0%`%% %+5]5mb5!@0&(YirQ B/>*** _.o.... U U!U!@ U!U! U! U!@' U!" U!77`7 U U  ޴U @ U U U U U U @ U U 6+++++++++22++2]+++++++++9/]////]??99/9910]&'&&'&&#"##5353!!6632#""'5326665YFPLAXbTGFj*D K+P)+)M:􆚚IR/kK:p:PPNP"K.6   %+5j w!|; K @ 7* 7@@ 7* 7= > !!> 0@##@ 7 U  U "+++9/]?3/?3/9/10++++]%#"&'&&5!2#&&#"!!32673 N{}LLR+ hE @e< Ĥl> 0 )GHIܒE6 2ND2nxVL-wYM]= 0 7 7=7@ UO7777>5((,?$ =y@ 77 U U@ U U@ U U UU U U@ U5@- U?? U U 5055"U5 U5 U55(/3/+++]++]]+9/+++++++++++2+]//2/?9/]+10++54&'&&##326767#!!#"Ȕ3267667667!322#(*kddn()A8BvU_ ;""S1A  33> ~E:: 73M Q)2*S>B>M2RfM3+]'1=!@ UO!!!! =y@& 7! U U U$U U@ U UU U U@ U@! U))/)O) U U޴UU U@ U UU U@ U U(+++++++++++2]]+9/+++++++++++99+]//?39/]+99104&'&&##3267667#!!#3!3322#(*kddn()%A8BvU ~E::W3M G:Q)2*]MM3+_$@uQ B  U UU@ UU U U@ U" U@ U U@! U  `  U U  ޴U @ U U U U U U @ U  U +++++++++22++2]++++++++++++//?@U?O U U @UU" U U@ U U@ U  `  U U޴UU U@ U UU U@ U U +++++++++++]+++++++++9/]+?3/]?310!!#!3!3`/ ]Dk@ 75 UU U U@ U ҴU U@ U U U@ UU U@ U Ul++++++++++3/+++++/?3/+10#!3!@ 7?@U U U U@ Up   U U޴UU U@ U UU U U++++++++++]3/]+++++/?3/+10#!3uTH]q<5T/3//10!5!5j< !%@>:IDFXTVo`p  zu%S?"O"""@7Q0  @$7Q"##"#"   U U@U U UU U@ U U@ U U@- U ' U U UUU U@ U U U@ UU U Ul&+++++++++++++3/9/++++++++++++999/99//]/?9?+3/]+3/]]10]!##!3#"&546324&#"326!!r3PXegWWgeXbH4@cݬ`]ܶ? U U@UU" U U@ U U@ U  `  U U޴UU U@ U UU U@ U U+++++++++++]+++++++++/3?10!#!#!`ѼE]5!@P*/]39/??3/10##52673f~ 5u,V=C@% 7 RQ*&6fv/]33//]93/?2?3/10+!5>7>54&#"#5>32!P['m@XLF)AMRj17=Eh%gmRFJ< "z]^+j)s.t@l l"~ ~"U Z&@; 7 7,+QO_!!Q% Q*("*"(, /3/9///?3/?93//]q9910++]]#"&'5332654&+532654&#"#5>32s<05{ORA%OTnd[}W_RWB%@OaMPu:Gp"% #;IHS;LB#"bWqm= :@m~  Q  * /3/93399/??99/99210]##5!533!/ҕܹpu*H@oQ%%!Q Q@ 7!) * /3/99//+?3/?9/2/10]#"&'533267>54&'.#"!!>32u2/0WN<%N,RY5;l&UH1Tv47<cEz*+36C'*9"$o5A@%V*csQ 7/3/9/+9??2/10]] #!5!*N(7]@B  **99I+X+ %%&6/ &Q5Q* * )* p2*/3/]9//??9]10]#"&54675.546324&#">4&'.'326˛^YRFPRa[WOF]0-H.9&7BX*:8vPQm5yxOx&)dGjh?}#'kd3H?6&=  %Oy2;  ]0J_Ns(4ֳx@U U U @ Uv y@/ 7iO#  Z U,424 ")&) U U U@- U66666666/ U U Uh5+++]]++++9??]99?]+]++++10]#"$'&5476$326654&'53#"32cY\ZZa`\XYOC xIXcaefhcc !gbhia!!@D$[ /F2l";7j)@  7' U!@, U:!5'J!E'i !? '? ) +@ U U U U@?U U+++?+o+$ U$ U$ U U U U*++++++]++++++9??9?]++10+#"3232654&'534&#"326q3`+]ZJ slEHª.<=AG$[ /F2jMًu+@)* 7%+j &9Iv4 $ )((UU@ U U U@, U U U U U--@-o--- @ U  U @ U U U U U U U k,+++++++++]++++++++++]?]??10+#"&'&&53326766532654&'53#)GQMΉGQG!',jk-'!ZJ VPLFJHR{{y9ABAB9mAG$[ /F2% @# z# 7$j B )!! U@ U@@#UU U& U U U@ U U@% U''o'_''''' U U U@ U U U UU U@ U U&+++++++++++]q+++++++++q++2]/??9?10+]!#5#"&53326732654&'53##W_iļVRIKZJ |KPUy+,(L;BAG$[ /F2 BB@) P`@ 7 @7 )/]+9/+]/]9/]10#5>54&#"#5>32BBBn/0&!%I&Qf@NDy ''' i V!E@ D//]10#53TC6 M@77@7``p 7/3/+]/]3/+9/10++# #3!#៹ځ|{  J@77 @7`o   @7/3+]//]3/+9/10++# #3#3៹a{ 6R@77  P@ 7  @*7`  @ 7 @7)@ 7@ 7`/]3/++]+9/+]/]3/+9/+9/]10++# #3%#5>54&#"#5>32៹BBn/0&!%I&Qf{2@NDy ''' i V% d@ 77RR @ 7 @7` ))7/3+//]3/+99+<]<10++# #3#"&'.#"#>323267៹_5I:+"_6I;*${R)->G*.>GB <@%@7 ?`p **/]9/]/]99/+10#"&5332657#ղURSU^ځ|F|dd| B <@%@7 ?o **/]9/]/]99/+10#"&533265#3ղURSURF|dd|U B $c@@""@ 7 ?@ 7 (P`p **/]9/]]9/+/]99/+]9/10#"&533265'#5>54&#"#5>32ղURSU77\'("323267ղURSU_5I:+"_6I;*$F|dd|)->G*.>G BR@5 PP`p `@ 7 @7 )/]+9/+]/]^]^]9/]10#5>54&#"#5>32BBBn/0&!%I&Qf@NDy ''' i V6T }@JP  Pop@ 7 Y 1Pp (@ 7(/3/+/]qr^qr^q^+99/]q323267ᩯ pP%I>( oR'C!"0+TYYRk  -No#*BH Z@>P` P_oopYir **/]9/]/]q]q]54&#"#5>32իK]ZM...M#26J8XW0XY/a+8/T I9BH '@$PPo@R 7 P Y 0@`p1P?('( **/]<</]qr^]qr^]q^2/+]q323267ծl<( oR'C!"0+TjgW.((.Rk  -No#*6h@77  @7 P@: 7p  @ 7 @7)P`p`/]3/]]+9/+]/]3/]99/+]+9/]10++#'#3#5>54&#"#5>32៹BBn/0&!%I&QfhID@NDy ''' i V^6$K/  %+5hx6DK@ 667 %+]5^6$V/u@P@p %+]5]5h6DJ@ _EEE4 %+]5^6$N/a@ @ %+]55h6DN@ @8P8)84 %+]55^6$O/a@  %+]556DO@ @8P8)84 %+]55^6$\/@@ %+]55hR6DP@ @8P8)84 %+]55^6$W/  %+55h6DQ@ @8P8)84 %+]55^6$7/aK/@%@ %+]5+5h6D6K@==> %@8P8)84 %+]5+]5^6$X/  %+55h6DR@ @:):4 %+]55^6$Y/  %+55h6DS@ @:):4 %+]55^6$Z/  %+55h6DT@ @:):4 %+]55^6$[/  %+55h6DU@ @:):4 %+]55^6$7/uK/@P% %+5+5]5h6D6K@DDE %):4 %+5+]56(K& %+5j`|6HK "#%+56(V&u@P P` %+]5]5j`6HJo11@ 721 %++]56(&u@ P %+5]5j`S6H - %+5:6(N&u@ P %+55]55j 6HN $ %+55)6(O&u@ P %+55]55`6HO $ %+5566(\&@   %+]55jR6HP@ $ $$ %+]556(W&  %+55j`6HQ $ %+556(7&uK&@P% %+5+5]5j`6H6K@)*%$ %+5+56,V$u@PP %+]5]56J  %+56,K$  %+56LK  %+5s62K &'%+5jq|6RK %+5s62Vu"@ P4P4p44@ 74$%++]5]5jq6RJ@ p%+]5s62Nu@P( (P((($%+]55]55j6RN@ P%+]55s62Ou@ P(($%+55]55q6RO %+55s62\@ (P((($%+]55jR6RP@ P%+]55s62W@ (P((($%+]55jq6RQ@ P%+]55s627uK@P((-.%($%+5+5]5jq6R6K@!"%%+5+5s6Fxu@ P6`666%+5]5j6G ++%+5s6FCu@P6`6P6p666%+]5]5j6GC@ P+`+++%+]5s6FVu@ P::9%+5]5j6GJ /.%+5s6Fu@ PBB5%+5]5jS6G@7 7@7P77*%+]5s6FK 78%+5j6GK ,-%+5)68Kb  ! %+5W]6XK  %+5)68Vbu@ P##" %+5]5W6XJ  %+5u6H|u@ P.`..- %+5]56I@`(0(@(() %+]5]5u6HCu@P-`-@-`---- %+]5]56IC@`'P'`'''%+]5]5u6HVbu@ P110 %+5]56IJ +*%+5u6Hbk 9, %+5S6I 3&%+5u6HKb ./ %+56IK ()%+56<Cu@ P ` P Ӵ %+]5]5=d6\C` p ݴ %+]56<K  %+5=d]6\K@   / O o  ]56<Vu@P %+]5]5=d6\J@ P  %+]56<u@ P %+5]5=dS6\ %+5l(,@B;8 <"2$>(KJ N"E$O(Yip *+Q A&B ,+,+  U@ U.@U@#U UU U* U U@ U U@ U..?.# U#  U @U  U U  U -+++++2+]++++++++++2++2222/99//???99?9/<?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|.nullnonmarkingreturnspaceexclamquotedbl numbersigndollarpercent ampersand quotesingle parenleft parenrightasteriskpluscommahyphenperiodslashzeroonetwothreefourfivesixseveneightninecolon semicolonlessequalgreaterquestionatABCDEFGHIJKLMNOPQRSTUVWXYZ bracketleft backslash bracketright asciicircum underscoregraveabcdefghijklmnopqrstuvwxyz braceleftbar braceright asciitilde AdieresisAringCcedillaEacuteNtilde Odieresis Udieresisaacuteagrave acircumflex adieresisatildearingccedillaeacuteegrave ecircumflex edieresisiacuteigrave icircumflex idieresisntildeoacuteograve ocircumflex odieresisotildeuacuteugrave ucircumflex udieresisdaggerdegreecentsterlingsectionbullet paragraph germandbls registered copyright trademarkacutedieresisnotequalAEOslashinfinity plusminus lessequal greaterequalyenmu1 partialdiff summationproductpi1integral ordfeminine ordmasculineOhmaeoslash questiondown exclamdown logicalnotradicalflorin approxequal increment guillemotleftguillemotrightellipsisAgraveAtildeOtildeOEoeendashemdash quotedblleft quotedblright quoteleft quoterightdividelozenge ydieresis YdieresisfractionEuro guilsinglleftguilsinglrightfifl daggerdblperiodcenteredquotesinglbase quotedblbase perthousand Acircumflex EcircumflexAacute EdieresisEgraveIacute Icircumflex IdieresisIgraveOacute OcircumflexOgraveUacute UcircumflexUgravedotlessi circumflextildemacronbreve dotaccentringcedilla hungarumlautogonekcaronLslashlslashScaronscaronZcaronzcaron brokenbarEthethYacuteyacuteThornthornminusmultiply onesuperior twosuperior threesuperioronehalf onequarter threequartersfrancGbrevegbreveIdotScedillascedillaCacutecacuteCcaronccarondmacron overscoremiddotAbreveabreveAogonekaogonekDcarondcaronDslashEogonekeogonekEcaronecaronLacutelacuteLcaronlcaronLdotldotNacutenacuteNcaronncaron Odblacute odblacuteRacuteracuteRcaronrcaronSacutesacuteTcedillatcedillaTcarontcaronUringuring Udblacute udblacuteZacutezacuteZdotzdotGammaThetaPhialphadeltaepsilonsigmatauphi underscoredbl exclamdbl nsuperiorpesetaIJij napostropheminutesecond afii61248 afii61289H22073H18543H18551H18533 openbulletAmacronamacron Ccircumflex ccircumflexCdotcdotEmacronemacronEbreveebreveEdotedot Gcircumflex gcircumflexGdotgdotGcedillagcedilla Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonek Jcircumflex jcircumflexKcedillakcedilla kgreenlandicLcedillalcedillaNcedillancedillaEngengOmacronomacronObreveobreveRcedillarcedilla Scircumflex scircumflexTbartbarUtildeutildeUmacronumacronUbreveubreveUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexlongs Aringacute aringacuteAEacuteaeacute Oslashacute oslashacute anoteleiaWgravewgraveWacutewacute Wdieresis wdieresisYgraveygrave quotereversed radicalex afii08941 estimated oneeighth threeeighths fiveeighths seveneighths commaaccentundercommaaccenttonos dieresistonos Alphatonos EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaDeltaEpsilonZetaEtaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonChiPsiOmega IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosbetagammazetaetathetaiotakappalambdamunuxiomicronrhosigma1upsilonchipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonos afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061 afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109 afii10110 afii10193 afii10050 afii10098 afii00208 afii61352pi onenumerator twonumeratorthreenumerator fournumerator fivenumeratorsevennumeratoreightnumeratorDontCompressHTMXglyph579glyph580glyph581OhornohornUhornuhorn hookabovecomb dotbelowcomb gravecomb acutecombglyph590glyph591glyph592glyph593glyph594glyph595glyph596glyph597glyph598glyph599glyph600glyph601glyph602glyph603glyph604 Adotbelow adotbelow Ahookabove ahookaboveAcircumflexacuteacircumflexacuteAcircumflexgraveacircumflexgraveAcircumflexhookaboveacircumflexhookaboveAcircumflextildeacircumflextildeAcircumflexdotbelowacircumflexdotbelow Abreveacute abreveacute Abrevegrave abrevegraveAbrevehookaboveabrevehookabove Abrevetilde abrevetildeAbrevedotbelowabrevedotbelow Edotbelow edotbelow Ehookabove ehookaboveEtildeetildeEcircumflexacuteecircumflexacuteEcircumflexgraveecircumflexgraveEcircumflexhookaboveecircumflexhookaboveEcircumflextildeecircumflextildeEcircumflexdotbelowecircumflexdotbelow Ihookabove ihookabove Idotbelow idotbelowglyph649glyph650glyph651glyph652sheva hatafsegol hatafpatah hatafqamatshiriqtseresegolpatahqamatsholamqubutsdageshmetegmaqafrafepaseqshindotsindotsofpasuqalefbetgimeldalethevavzayinhettetyodfinalkafkaflamedfinalmemmemfinalnunnunsamekhayinfinalpepe finaltsaditsadiqofreshshintav doublevavvavyod doubleyodgeresh gershayim newsheqelsign vavshindot finalkafshevafinalkafqamats lamedholamlamedholamdageshaltayin shinshindot shinsindotshindageshshindotshindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdageshhedagesh vavdagesh zayindagesh tetdagesh yoddageshfinalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedageshpedagesh tsadidagesh qofdagesh reshdagesh shindageshtavdagesvavholambetrafekafrafeperafe aleflamedzerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark afii57388 afii57403 afii57407 afii57409 afii57440 afii57451 afii57452 afii57453 afii57454 afii57455 afii57456 afii57457 afii57458 afii57392 afii57393 afii57394 afii57395 afii57396 afii57397 afii57398 afii57399 afii57400 afii57401 afii57381 afii57461 afii63167 afii57459 afii57543 afii57534 afii57494 afii62843 afii62844 afii62845 afii64240 afii64241 afii63954 afii57382 afii64242 afii62881 afii57504 afii57369 afii57370 afii57371 afii57372 afii57373 afii57374 afii57375 afii57391 afii57471 afii57460 afii52258 afii57506 afii62958 afii62956 afii52957 afii57505 afii62889 afii62887 afii62888 afii57507 afii62961 afii62959 afii62960 afii57508 afii62962 afii57567 afii62964 afii52305 afii52306 afii57509 afii62967 afii62965 afii62966 afii57555 afii52364 afii63753 afii63754 afii63759 afii63763 afii63795 afii62891 afii63808 afii62938 afii63810 afii62942 afii62947 afii63813 afii63823 afii63824 afii63833 afii63844 afii62882 afii62883 afii62884 afii62885 afii62886 Odotbelow odotbelow Ohookabove ohookaboveOcircumflexacuteocircumflexacuteOcircumflexgraveocircumflexgraveOcircumflexhookaboveocircumflexhookaboveOcircumflextildeocircumflextildeOcircumflexdotbelowocircumflexdotbelow Ohornacute ohornacute Ohorngrave ohorngraveOhornhookaboveohornhookabove Ohorntilde ohorntilde Ohorndotbelow ohorndotbelow Udotbelow udotbelow Uhookabove uhookabove Uhornacute uhornacute Uhorngrave uhorngraveUhornhookaboveuhornhookabove Uhorntilde uhorntilde Uhorndotbelow uhorndotbelowglyph882glyph883 Ydotbelow ydotbelow Yhookabove yhookaboveYtildeytildedong tildecomb   $ ..$,-67j9:;.(nHǾo Eo$0S@H// H/H "N/N(@OH "Nr0B LN^NuNVH&n (n`RLJg:HH 9n HH 0l"p-gp.gHH// NHrPOg LN^NuNVH&nBGHm/N(@p-W@HPOgRL`2Hҁ ҀHHЁ|0>HH 9n HH 0l&JgH D`H LN^NuNVH(n~Hm/N -@ @p-W@HPOg .RHnNBH* np.XOf R|`<އ ހ nHH 9n$ nHH 0m nRH|0HހSFl H@B@"<'N.` .R nHH 9n nHH 0l H@B@,܇(Jg D` LN^NuNVH(n ..]@Hg D.*HEHU <"'HA'HABAЁ/l0H,Jg//Hm/ NO`//Hm(/ NOLN^NuNVH(n~Hm0/N-@ @p-W@HPOg .RHnNH* np.XOfb R|`<އ ހ nHH 9n$ nHH 0m nRH|0HހSFlHn/N3HnHn?<HnHn?< <@-@HnHn?<(HnHn?<HnHn?< <-@HnHn?<(HnHn?<HnHn?<HnHn?<HnHn?<HnAC 0Hn?<AC""2Hn?<HnN3.O ` .R nHH 9n nHH 0lp"iHABA,(Jg D` LN^Nu?NVH(n ..]@Hg D.p*HEHe,. HHƼGlH `H >HHźGoH `H LN^NuNV/ (n0.H/0.H/0.H/0.H/0,H/NL9@0.H/0.H/0.H/0. H/02(2 k2@2(22,{Z22(B22(2x?<2K2(2(w2h2(b22(22,2(22(2F>0: *H +0'10 *H 0` +7R0P0, +7<<<Obsolete>>>0 0 *H  )o)%o7W栂800%J8Y]s_]ܣ0  *H 010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.0 970512000000Z 040107235959Z010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.00  *H 0. h|,-.  WSu3* [4 Z%}XsjxqX)X^-bXq"X/6MJ;"V~!lJGj6 -Ӵ90  *H aU>{ǒ~"Գ+[D x~rȲ㉔LNaﳤF=P4 pV*cyis.(]  γ(y)gBHaSs?OUcc00kzm\obOC0  *H 010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.0 010228000000Z 040106235959Z010U VeriSign, Inc.10U VeriSign Trust Network1;09U 2Terms of use at https://www.verisign.com/rpa (c)011'0%UVeriSign Time Stamping Service0"0  *H 0 za벧c+aހ='9)fHOO^/Ǒ{!NXc-)pP햻@۾%BU狙1L$*MhaXr0HO/oc ىʂ{K(Łh@F:?6LTBZze{GT=3*^:.uk=`BO[?"1s+FLmP.K*xt=,G100@+40200+0$http://ocsp.verisign.com/ocsp/status0 U00DU =0;09 `HE0*0(+https://www.verisign.com/rpa0U% 0 +0 U0  *H -Oc`,$R 볼g#F M|z 02h2;'{>! Ř@W%误j;#)]@US6:9ess2үc@0  *H 0p1+0)U "Copyright (c) 1997 Microsoft Corp.10U Microsoft Corporation1!0UMicrosoft Root Authority0 970110070000Z 201231070000Z0p1+0)U "Copyright (c) 1997 Microsoft Corp.10U Microsoft Corporation1!0UMicrosoft Root Authority0"0  *H 0 p;N(x^0ꢩ%_L >|Q`2kBdyvT뜆fkzb#<Ŀ-fh&:, X&F >8,(9IBlUa|`-wL陴d;P1$+=c`Xe7RӿUE:TNzmtN̖ (!W`i7Kc@0  *H  5$w\`2 >:!W,Gb;;Z6Ti$m?̪|1=pjOiCZ Ob{+7%-e%cT!RnC2gl QRǽ0 1 )M[WeIRT(~ū7,zwvj?6A5jj5EZ38nM b T?FUp:uҠ00s a* 0  *H 01 0 UUS10U Washington10URedmond10U Microsoft Corporation1+0)U "Copyright (c) 2000 Microsoft Corp.1#0!UMicrosoft Code Signing PCA0 010329212726Z 020529213726Z01 0 UUS10U Washington10URedmond10U Microsoft Corporation1+0)U "Copyright (c) 2001 Microsoft Corp.10UMicrosoft Corporation00  *H 0oE1=ćNHV+cD0xrLFfbFnD;GQ^wg"{S*-"|N3va `4;I,َ.-kUnp`/@0<0U0U% 0 +0U@OE{uf50U#0)\3Y}. 4(tr0p1+0)U "Copyright (c) 1997 Microsoft Corp.10U Microsoft Corporation1!0UMicrosoft Root Authorityj Oު@0JUC0A0?=;9http://crl.microsoft.com/pki/crl/products/CodeSignPCA.crl0  *H gqMGŽik_&ӞZ'i5+} WK 00j Oު@0  *H 0p1+0)U "Copyright (c) 1997 Microsoft Corp.10U Microsoft Corporation1!0UMicrosoft Root Authority0 001210080000Z 051112080000Z01 0 UUS10U Washington10URedmond10U Microsoft Corporation1+0)U "Copyright (c) 2000 Microsoft Corp.1#0!UMicrosoft Code Signing PCA0 0  *H  0S 04:/{m7#MҌ4$T~tG2XQ)8~:G9NnT1 :mPJ&?ˏIm>U7/`̀aBITJKٓ0ZGudӻݶ Os;:MON3 :doD4J#N`)*򄚙 p{4Af\3T?=tC9泬Hzk*ba9vn>KFGO%(0$0U% 0 +0U0[pir#Q~Mˡr0p1+0)U "Copyright (c) 1997 Microsoft Corp.10U Microsoft Corporation1!0UMicrosoft Root Authority<<>c@0 +70U)\3Y}. 4(0 +7  SubCA0 UF0U00  *H EXAHwwW_Ej9Y'-M88d"B߹/*Ϸ*|Q="mD_ddĩ,ې7Javv%$VT:>Ky_I^2i:TuMd0 0 ){ msgRx = str; } }else{ //if we are not connected lets try and reconnect every 5 seconds deltaTime = ofGetElapsedTimeMillis() - connectTime; if( deltaTime > 5000 ){ weConnected = tcpClient.setup("127.0.0.1", 11999); connectTime = ofGetElapsedTimeMillis(); } } } //-------------------------------------------------------------- void testApp::draw(){ ofSetColor(20, 20, 20); mono.drawString("openFrameworks TCP Send Example", 15, 30); if(typed){ monosm.drawString("sending:", 15, 55); monosm.drawString(msgTx, 85, 55); } else{ if(weConnected)monosm.drawString("status: type something to send data to port 11999", 15, 55); else monosm.drawString("status: server not found. launch server app and check ports!\n\nreconnecting in "+ofToString( (5000 - deltaTime) / 1000 )+" seconds", 15, 55); } monosm.drawString("from server: \n"+msgRx, 15, 270); } //-------------------------------------------------------------- void testApp::keyPressed(int key){ //you can only type if you're connected if(weConnected){ if(key == 13)key = '\n'; if(key == 8 || key == 127){ if( pos != 0 ){pos--; msgTx = msgTx.substr(0,pos); }else msgTx = ""; }else{ msgTx.append(1, (char) key); pos++; } typed = true; } } //-------------------------------------------------------------- void testApp::keyReleased(int key){ } //-------------------------------------------------------------- void testApp::mouseMoved(int x, int y ){ } //-------------------------------------------------------------- void testApp::mouseDragged(int x, int y, int button){ } //-------------------------------------------------------------- void testApp::mousePressed(int x, int y, int button){ } //-------------------------------------------------------------- void testApp::mouseReleased(){ } Node-path: trunk/addons/ofxNetwork/examples/TCPClientExample/src/testApp.h Node-kind: file Node-action: add Prop-content-length: 10 Text-content-length: 660 Text-content-md5: 377aeb0b648ba7b020f25c296bb95507 Content-length: 670 PROPS-END #ifndef _TEST_APP #define _TEST_APP #define OF_ADDON_USING_OFXNETWORK #include "ofMain.h" #include "ofAddons.h" class testApp : public ofSimpleApp{ public: void setup(); void update(); void draw(); void keyPressed(int key); void keyReleased(int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, int button); void mouseReleased(); ofxTCPClient tcpClient; string msgTx, msgRx; ofTrueTypeFont mono; ofTrueTypeFont monosm; float counter; int connectTime; int deltaTime; bool weConnected; int size; int pos; bool typed; }; #endif Node-path: trunk/addons/ofxNetwork/examples/TCPServerExample Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPServerExample/data Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPServerExample/data/type Node-kind: dir Node-action: add Prop-content-length: 10 Content-length: 10 PROPS-END Node-path: trunk/addons/ofxNetwork/examples/TCPServerExample/data/type/frabk.ttf Node-kind: file Node-action: add Prop-content-length: 59 Text-content-length: 152700 Text-content-md5: e130d119682ecb567748343bf7f263b0 Content-length: 152759 K 13 svn:mime-type V 24 application/octet-stream PROPS-END 0DSIG9<LTSH2OS/2ehFVVDMXk^rcmapL*cvt I)9%fpgm'gasp -Hglyfli9-Xhdmx"` Ppheadۄ6hhea$hmtxJ*- Pkernr<loca&*maxp+ namelG, postqFb<prepP|0 *H 010 *H 0` +7R0P0, +7<<<Obsolete>>>0 0 *H se{^ӯ 0@0Ǐ7ے(<g0  *H 0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CA0 960409000000Z 040107235959Z0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CA00  *H 0ieRT(bTUDEJ;~Ȁ k)vsb<ulMԘisbN1 }GQod5}gwQ>wCʣA="HH0  *H ujdxç2ur&`0LH4RJQS-{1eAA/czszAЎ:84Duqā85J>2!8\8dT_݈)Oqd1<<00M,3{TT0  *H 010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.0 991116000000Z 040106235959Z010U VeriSign, Inc.10U VeriSign Trust Network1F0DU =www.verisign.com/repository/RPA Incorp. by Ref.,LIAB.LTD(c)981.0,U%VeriSign Time Stamping Service CA SW10"0  *H 0 Ԙgm*2,/O_rϩEA/@˒-Mb/3@հmՆO_I޷ Ne E# );7FдX#`Rv p#aܲpb Hrɇ7 S,)H2&,4PNJJ0b+GqS EQ22w0򹅒RנI93才`YVB%00U% 0 +0OU H0F0D `HE0503+'https://www.verisign.com/repository/RPA0U00 U0  *H |C!{XyKl?!^5˓QC-,qǵ1%$sLGu ;맕O`fcHd(r_XiU(42P[0<U 5Digital ID Class 3 - Microsoft Software Validation v21 0 UUS10U Washington10URedmond10UMicrosoft Corporation10U Microsoft Corporation00  *H 0I&8bURDF3aѲg@ 6@YQmQt+n]n: ;Q]NZ0V0 U00 U0U0{Ch8n; c0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CAǏ7ے(<g0!U000  +70 U 0@06 +7 #0)'https://www.verisign.com/repository/CPSThis certificate incorporates by reference, and its use is strictly subject to, the VeriSign Certification Practice Statement (CPS) version 1.0, available in the VeriSign repository at: https://www.verisign.com; by E-mail at CPS-requests@verisign.com; or by mail at VeriSign, Inc., 2593 Coast Ave., Mountain View, CA 94043 USA Copyright (c)1996 VeriSign, Inc. All Rights Reserved. CERTAIN WARRANTIES DISCLAIMED AND LIABILITY LIMITED. WARNING: THE USE OF THIS CERTIFICATE IS STRICTLY SUBJECT TO THE VERISIGN CERTIFICATION PRACTICE STATEMENT. THE ISSUING AUTHORITY DISCLAIMS CERTAIN IMPLIED AND EXPRESS WARRANTIES, INCLUDING WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND WILL NOT BE LIABLE FOR CONSEQUENTIAL, PUNITIVE, AND CERTAIN OTHER DAMAGES. SEE THE CPS FOR DETAILS. Contents of the VeriSign registered nonverifiedSubjectAttributes extension value shall not be considered as accurate information validated by the IA. 64https://www.verisign.com/repository/verisignlogo.gif0U000  `HE0This certificate incorporates by reference, and its use is strictly subject to, the VeriSign Certification Practice Statement (CPS), available at: https://www.verisign.com/CPS; by E-mail at CPS-requests@verisign.com; or by mail at VeriSign, Inc., 2593 Coast Ave., Mountain View, CA 94043 USA Tel. +1 (415) 961-8830 Copyright (c) 1996 VeriSign, Inc. All Rights Reserved. CERTAIN WARRANTIES DISCLAIMED and LIABILITY LIMITED. `HE `HE0,0*(https://www.verisign.com/repository/CPS 0 +700  *H A s#piafH)1ئnǨ{ x3eXKZnffD]dXՍN6?+2ojQm<LOJuϼB!w B]1:060u0a10UInternet10U VeriSign, Inc.1301U *VeriSign Commercial Software Publishers CAumRKe\0 *H 0 *H  1  +70 +7 10  +70 *H  1W3 'ZC:{[0l +7 1^0\42Franklin Gothic Book Font$"http://www.microsoft.com/truetype/0  *H SƖeK@$gTe TXtO UvU<7`NMJ#|F%2ά +x (v$]0~U]'2F3ޯ}dRc׺LM0I *H  1:060010U VeriSign Trust Network10U VeriSign, Inc.1,0*U #VeriSign Time Stamping Service Root1402U +NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc.,3{TT0 *H Y0 *H  1  *H 0 *H  1 010110213244Z0 *H  1,3Kc 0  *H J/ f#LG]'tO@7Dk]G~ fښbשۗ:/WZԖSR I֤{ұzSaT#tmMD߭yyU)U HSF"!jPRMiMks(5Wc vDg }1@sMG밐ߟ)t >Fð7x3]3D!bb.//+++%1//-$+%///+++-%%%%++++1+++++%1%--++-- +++%%%%%%%%1+++1+++1-1  1.%++#""++-.2 -/12222+_33f ITC @ {pU    !" #!$"%#&$'%(&)'*(+),*-+.,/-0.1/2031415263748596:7;8<9=:>;?<@=A>B?C@DAEBFCGDHEIEJFKGLHMINJOKPLQMRNSOTPUQVRWSXTYUZV[W\X]Y^Y_Z`[a\b]c^d_e`fagbhciajakclcmcncocpkqlrlsmtnuovpwqxryszt{u|v}w~xyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~<~~ O\_   " & 0 3 : < > D  !!!!"!&!.!^!!"""""""")"+"H"a"e###!%%% %%%%%$%,%4%<%l%%%%%%%%%%%%%%%&<&@&B&`&c&f&k ~Q^   & 0 2 9 < > D  !!!!"!&!.![!!"""""""")"+"H"`"d### %%% %%%%%$%,%4%<%P%%%%%%%%%%%%%%%&:&@&B&`&c&e&jv0*jyޖޢދާq_0?2#ED;852/(!ܹܰܨܜIFE(&%"ttfjxlRRTP bcdefghjikmlnoqprsutvwxzy{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmno$%&->@~UU`U{UaW"5ixn5P~jvx>(xDk/bNkLfy Z~xIVUcNeNSRdv`Y@89876543210/.-,)('&%$#"!  ,CXEjC`F#D# FNM/!#3Y-,CX+iv/@8+!#3Y-,CXN%!M!#3Y-,CX!!%%I%%Ja dPX!!!PX8 8 88YYY-,CX+gv/8+!#3Y-,NFCDF8<(+%<-,/M-,CX+iv/+!#3Y-,CXEdj#EdiCd``F#D# F/!!#3Y-, C#Ce -, C#C -,F#pF>F#pFE: -,+%E%Ej@`%#D!!!-,+%E%Ej`%#D!!!-,+!!!-,+!!!-,CCe -, i@a ,b`+ d#da\XaY-,%EhTX%E%E`h %#D%#D% Eh #D%Eh`%#DY-,% Eh #D%Eh`%#D-, CX!CXE+G#DGzEi G#D QX+G#DGz!GzYYY-, E#Eh`D-,EjB-,/-,CX%%Id#Edia bj%%aC`F#D!F!!!!!Y-,%E%Ed`j%Eja %Ej e%#D%#D!!-,Eh#Eia%Eja %Ej e%#D%#D!!-,Ed#EdadB-,%C@T%CTZX% E@aDY%CT%C@TZX% E@`DY!!!!-,KRXC%E#aD!!Y-,KRXC%E#`D!!Y-,KRXED!!Y-, %#I@` c RX#%8#%e8c8!!!!!Y-,KPXED!!Y-,%# `#-,%# a#-,%-,F#F`F# F`ab# #KKpE` PXaFY`h:-, E%FRX?!Y-, E%FPX?!Y-,CC -,-,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,&&&&Eh:-,&&&&Ehe:-,CXY-,CXY-, +# <+-,%8(+# #+CX, TJրnT+|W$Kwc %/@fu 7 @0 7,,t 7 7 r&&t7 7  t7@/ 7rt)u#7#@ 7#..#.u@# 7u 7` p  @ 7  u@0+/]33/+q+3/+3]q/++3/3/3?33/]++/]++?33/]++/]++.+}10]"&54632'2654&#"#3"&54632'2654&#"eVUWZ~;|]VUV[Д؎OrUғ؎Ps{Y q!,5D@ee###ev555W1d1 7 7",,5---b""55-?,?,,,"-3(5 3(7@; 7(50,"- i%x%%%+@77+  70@ 70  6 +/]+3+/]+/+3/9/]99?++??3/9/]399.+}ć.+}ć.+}ć<ć+]+10]]]]%#"&'#"&5467&54632632>54&#"327 [9*_[ -=AQ%BfOH^3k{q^9ztڈLGYl2Gg[9X=jmjE U)@+/3/q2/q?/10#3dEkU T@ 7X   77 7 3/++++/^]^]]<3+3??10#3i&i$:_U < 7@7/  +/3<23/]??10++3#_h'hU~+@my*Um@ 7   @& 7     9/99/33/3/33/3//?3/3/+3/<33/<<10+]3% '%71&%b/|~~}.xLXDXL{7 M@/  /  0  +/<3/q<3/q/]<3/]<2/]10!3!!#!{mm[[m@& 7 7!#7@$7@ 7!$7@ !$77@ 7 73/+9/3/++3++?3/3/++q10+++q%##5mUvf=$@/o@ 7XW+/+/+/]10!5<=zzp@ +/?10%#5p^U+@H/]8/8??10]#3&8T^q n@   7@- 77 7   7   7+/+]+/+]?++]?++]10]"3 '25#"Z  󭦪/*TZ9Xxq V@/7`7@7  7    9/3/3/2/9/?3/+?<9/3/+++10%!5!5$73xD zjj3q 7@.7 9  K[f7@7   "$7@ 73/]3/++<]3/+3/]?+]]?<9/310++%!554&#"'!237>ݺy} d}쎎}0w<Iq%@:  7 7  z@ 77"@"7 7' U e  V&c+/]3/]+/++3/++9/]9?]?9/=9/++9/]39/310]]532654&#"'!2#"$'7!2654&#|Xdt4Hdn,:Ֆt鶗5mv?dr 7@ 70 7@F 77-F?         c+/]3+/9/<<3/3?3?9/]<<3/.+}10]+++++!#!533#'47]rݥ+VEsZFQO1cXDU@cV/ ?Y 7+/]3/3/+/+]3]/]3??9/]]99/]33/310]]]!632#"$'732654&#"'a۬*Z,UE2h_q!@/u (JV@277FIH  # @ 7P"3/]+2]+/]3/?]]?]++]9/]9/3]310]]q&# 6632#"! 2654&#"IO =}Gθ>*m:3ƅ{$U =@%@7Z Y+/]3+/3/+9/?9/?10!#7!7!?WߖfJgq *3@ ! г7 @7!7 % %zu  @#779! !7&@ 7Iy 77 @7  77@ 7 !  77 @4 7)7j)z)) , @7 7 7f#v##++/]3+/+++/]+3+/++9++++?++]?++9/]]9/9/]10++]]+++]$54$32#"$54%6654&#"32654mWqל^c\.xZimsa`RlhTHq!@8!'EY6E7@7I 7@# 7#xG  @7  " +/]+]3/]3/++2?]++]?]]9/]9/33]10]]7732!"543 ! 2654&#"uUY2He}ńp'@  73/+<<??10#5#5pm {@!$7@$7@7@ 7  !$7@ !$7'7@7  7 3/<<9/+3/++3q++??3/3/+++10+#5#7#5mۗSufY@&7p@ 7Y+/3/+q]+/3/3+/]8/810 5-{7'@/ ZY+/<+/</]3/10!!!!{DD(Z@ @,77@7Z+/3+/3/++/3+]/]8/]81075 5,w˜KK_)q@!0777@ 7  7  @7V7 7@ 7 } e+/q+/+9/+3/+]+]?2+++/3?2/<10]q]++#>7>54&#"'!2#5$-T[E3p8Kp2#TMM+/39e@*y   7 }7 7 +/+/+++??10]3! #%!254#!!BUvs0BU B@  /@7   +/<3/+]33//??9/10%!!!!!`K&ږUNU D@   7@ 7  +/<3/++3/??9/q10!#!!!!VDg'UQUqзz@ 7P`@7  7@ 7@ 7  7 W @'7@77[  Z} 7+/++/]3/+9/+9/3+]?+]?+9/++9/33/310]+]+]#'# ! &&#"32654'!5i/~>ys#r׹>"6t'տ+zU D@ O/@7    +/<+/<?5`cdbPrl%ULDlyU @7  7 @G7&              @ 7  +/223/+]33/]8399?33?339/393.+}ć.+}<10]++]+!##33hǫi{U"U'@  7+/3/+??10%!3گUAU  7 7 @ 7  @ 7 @7 7:  2 7 7 @ 7ih @U 70 7 9      8   0_  +/2+/]29/+?33Z3# U_8+Uq k@   GX@' 7W 7}  7  } 7+/++/+?+]]?+]]10] 32%2#"42ѭ)6sQF&JU =@& wi}/d +/<+/]]]??9//10!#!2#!5!2654&#!V:y}U掑wfUq"@%  GX@1 7yV 7 }  7 $  } 7#+/++/+3/9/?+]]?+]]3?3/10]]] 32327#"&2#"6;WFDI ѭ+>v0 0F&U p@28f     Yhv } @7 +/<3/+]9/33/3??<<9/]3.+}10]!#!#!2%!2654&#!yvepOUm+bllx;q#@K< \ #YPl{sSV5Vlxw  } @$7 @7   7"@ 7"O  ~X}@& 7% 7~@7@ 77} 7$+/+]3+/++++/+]3/9?2/]3?+2/+399]3++3.+}10]]]]7!2654&'%.54$3 &&#"# ]6}Rj^tuqp^Xk#sWjDMg.x{vl5=T۱U;@@@ 7@ 7 +/3/+2/+]q?DU}@ 7@@798VU+/3+/]]29/+?<<t8L _ @67 7H < d  c+/<3/3+/3/3?2/?<.+}10]++%!5!5!==/rU!@00+/2/<??10!!#3bi(DU)@/8/]8??10]3|Ȇ8VUU!@00 +/2/<??10!!53#UbUVi2Yj@6777??/3/83/83?3/3.+}ć.+}10+++# #3Χ٥i px ///10!!D@' 7@ 7/O9//33/3/q/]33/++3]10]7>*LxQD(@ &&@7 $ 7@&7'' *7 7!@ 7!)+/]+3++/+/2/<3/?++??39/9/3+]10]]!#&'#"&54$!24&&#"'!2&#"32654 h8*\%xb'5ѯ`2oi0Ѵ~xk@SkzuJh΋Uj@ Vf@ 7 @) 77  7  +/9/<+/+??+3/+3?+/3/310]3#3632#"'732654&#"Lln ^x~cU囌еߟ~N@% (& uu    @77@ 7y@47v  7 x  p+/]]+/<]<]?+]?+]9/++39/+310]]#"5432&#"32Κǥ(ʂ~b41ŜݰOUn@0 7@ 7@ 7 @ 7  7  7+/++/<??+3/+3?+?3/310++#5#"54324&#"3265jձ⻶sluynU)5мԸ|Ny@ i@ 7@ P  @*7d 7  7   +/2/+/3/?++?]+9/]9/+310]]#"5432!32.#"8( "kF4|Wu -#)U]{qQ@.   3/<<3/9/3/?3/?]<32&#"@𝬬?Q3.gc{w{} [})4-9G@$!#%;F?.@ 7. 4?@7?474'7B@ 71@27I]7 $< 77$7$$$H$\+/]+3/+]39/++/+]3/+3/+]?+3/?+9/+9/9/10]]"#"'&#"!"&547&547&5463266322654&#"32654&&'&lI aӲ(7Lṋrݚcr]mo j+cLB{bdwnbyU0[MUIW/<UL@  7@ 7   +/<+/??++3/]3?<10]!#4&&#"#3632eBykYJellOƦUFro?U+@ 7+/3/??+?10#5#?UBUF@ @  7 @7 +/3/3/+??+?3/10#5#"'53265BzN \uyz 2F{H޶ц[@ $7@"77@% 7 _ @7   X+/+/]+?3/?3/+++3?10+!#3>32#":IM& cžv  @  @C7  7'3  <   @7 p@ 7@&7@ 7  7@ 7_" 7  7 @ 7 ! +/3+++/+/r3++]/9?2]/++3?2/+]399]3+]q3.+}10]]+]]+]]7!2654''&&5463 &#"# 2 b}ʫIM>`{5XPw (sOGp#8g\@  @7  73/+<3/<3/+3/9/?<53l֛}KL{R̼{qV^9@L   79=<8@PpX@ 7W8+/+3+/]29/]+?<<54632~Kq#;:9<qK)7kMjJ]McMWczjKcCyMU@ +/??103#UV)V D@%000@7 !3/33/322/+??9/]=9/10&54&'572#"'5>546c~Kq"z6@8>ypL*7JkMjXPcMWjKcZGvlE:A@&      ]\+/]3+/]3/3/]33/2/]10632327#"'&#"lkTAjN\rTpH`OIF@6Q4B6$%A@ & %+55+55B "ѷ&w @Q 7 @7  7  !"!!!"!! @7@ 7 "!!$V#U+/83+/839/99993/+3/+?3/?39/.+}ć.+}ć<3/3+/++10]#"&546324&#"326#!#3iIKkjOFiY4%&77%%5¯z`cJjjKIkkK%65%&65qUpUeyq*@ 7ej*u''* 7@!7  )((( &B7@ 7 7 7 7@< 7  Ŀ)7[(7([0)I)),)f##}7@ 7E++/]++]+/]<++9/]2/92/+?++]+?++]9/]39/3?3/39/+3/+210]]]+632#"'73254#"7&! #"3  DqrgiXSGs544mX̨UoPOHDW2H(KP;~I FV#=6(IA@  & %+5+561A@ &%+5+5U62A@ '&* %+55+55C68sA@ "&% %+55+55D6D@**&+*%+5+]5D6DC@@,,&,+%+5+]5D6D@ ,&-)%+5+5D}6D@88&;)%+55+]55Dx6D@22&3*%+5+]5D6D@,,&/)%+55+]55N+3@- 7+ 7 7+&(+|+uu*!)7@7 Ā  7 @ 7   @7 )(7(@7(( &By@7 v7@47  (((x(()-)p##,+/]]+/<]<]9/2/92/+?+]?+]9/++39/+33]/]++q3/9/++3/10]]]+++2#"'732654#"7&5432&#"327g_ZdhKIG,8t1.ǥ(ʂ~4BL99Y-@#'G-1ŜݰN6H@&%+5+]5N6HCR@&%+5+]5N6H#@ & %+5+5N}6H,@&- %+55+]55J6@&%+5+]5Y6C@&%+5+]566@ &%+5+5 }6@&%+55+]55x6Q2@& %+5+]5N6R@&%+5+]5N6RC<@& %+5+]5N6R@ & %+5+5N}6R@''&* %+55+]55Nx6R!@!!&" %+5+]56X#@&%+5+]56XC8@& %+5+]56X+@ &%+5+5}6X*@##&&%+55+]55U 7@ P_  3  3+/<<3/]2/]??9/<<103!!#!5!||UrlJThq @ !'7  7 @ 7 @!'7 @ 7 7@!'7@7@ 7 @!'7  p7/+]+3/+++++]?+3/++]+104632#"&732654&#"Jppslt[;D\[A?[bopopAZ[@@[[@@ 7 @  7  2 @ 7@"7@ 7G_i~ 73/+]q]3/]<+<9/+<<<</33/<<2/+3/33/2/3/+310#.54753.'67p;pdj>%>p9b[{>#&9,9q(@&2 !!%%% # @7!# #  7 @77*)3/3/3++9/+3/99999/3]+9/9/?]3/3?<3/39/<<10#!5>54'#53&54632&#"!!!261j›q֞ƂogjRx%>2Ujs'iIukSVmNuU8wN+q+7^,7/7@07"05[Y Z6y{&5,60@!F0 !57&г7&@ 7 "t"&@! 766!!!%//  %o@v7% !%,/16 * !%,/16 # ~#~''7''#4~I###9#7~  7.~ 8 +/3/+3/+]+/]]3/+]3/9?]?99/]3]9/+]]3.+}ć.+}10+]+++]]]]+++732654/.547&54632&#"# >54&'[tϯү$CjyrzJD[WHxa87/jzZzeJQd!4"\\pPw=8$p,4k @   P/]3//3]q/10#"&54632ĥtwutuuvJ>UT@ 00000@7 7 +/]+]+3/3/<?22?<9/10#####".54>3#"3>dbcY[pruFlU_K*7$54&#"kk 2^a,f@!/8t[Wn~򤈂#c|!rHBnEbT"FYVq %.@ %%&.p@# 7E7.J @47 %%"7*"J   7"/"?"" &E@ 7Vf Yi@77/+/++]]3+]/<3]+]/3/3+9/3?+2]/]+2]/+]<9/9/10! ! 4#"32###!2%32654&+aa##ebdyZLQSQVAa#"`cd]3XAxDS=?AVq - @H"""#$$$@ 7$$@ 7,y&!7!!@ 7&!J!7v,,@ 7E7 @%7 $##J   7Vf @ 7)E@ 7Yi7.+/+]2+]/+]2+]/q<?++2]/+]]+3]/+]+]9/+]39/+]3/10]! ! 4#"32%!"54632&#"32aa##ebdhuGǥ@y4gxyea#"`cd~¯KU@I 7  7 7 x =       @7@7@ 7 /3/2/3/33/+++39/33?3<33/<E S ]onkka$l/pp}%&{0%&0 ,'$,68$8*6,    '.( & &+/99/q9//10]q]6632#"&'#"&5463232654&#"7&#"326G|_ZuϕòP@j~s7U@ `n`Rk鹺~џT~+QLm!יz{{7 X@5   /    0 [+/<3/q<<3/t@ @ ('  /9//99q10qrqr]]%5!5!5whip;5 `@> x@ @ ('  /9//99q10qrqr]]55!5!5w))p;xU@p ?>     B        +/3/32/39/////9?3?9/223/32.+}ć.+}<<<<103!!!#!5!'!533 3K[ddZjmOvu9uvsK@/9  !7 7   +/<+/?3.D'@xyRf9. %ZT)O@9 %%&%5%np##' !/99/9/910]q]#"&#"#"&546323265476632Z;.%.'<1S,1J3'"?  "P,9R'22"DgN)*F2&6BYm%@;:FDA4pq%#@((*7t#""@ 7t t  7!t7 7@( 7tB B$@ 7&o+/33//+]2/?3/+++33+/9/3/9/+310]q+#&'#"&546324&#"'6!2'&#"32654pxBpv2:[prs6}Sm&,boL]yTImrCdvO :q _ @ 7 t 77@ 77t@ 7 @7 o+/3/+?++3/+]+++10"&54632'2654&#"W}~~G^bDE^ZﯔZrwwnovvsF)m@F  "LO" $)#?$$0()N_$ A P  /]99]/]/]//929910]!!654#"!33!'&5! !2673!ւ!0HC%%CH07;$;LB;9A8MA9;B@k'.;@E8U8i}--d3t399@ 7"&11//(&@ 7""+&@ 7EU7@V77+ 7./##p.....(4("=" 7  74 < +/3++/+/3/9/]3/9/9/?]<]3+]?+<3]+9/+3/3/9/39/+310]]# !"&54$!2654!"'6632632!32&&#"&#"32654̎(j %?Lr kʶ%vF{y8HlX),gE٬i eLi$4#@#777@ 7je @0 70 7   0  7@= 7 7 7   "i  % f$+/]3/3+/]3/39?++3/3?++3/39.+}<<<<<<<<10++]++++]]7&543273#"'#&#" 32654j•nZpϞfWNbt WOiw!RxȕWsN/F҇rLђR7@!7 (7 7 7@ 77Y@$7@ 7 f 7}+/++/9/+3/+]+]?2/?2+++/310]+]++53332!"&547665ʨ%,T[E2o8Kwp3.ĂLO*/39d=r(!mݩ߅;CFa@ 7  !,7-67@!,7 73/+3/2/99/++/+88?2/+?103#3#ASJs" @ZY+/+/?3/10!#!5!!wV\@<(8Uiv/9//9/910͇] '%!+Lf`Dbd-@@07   /3/39333/]33/3/3//3/2/9/+9.+}ć}ć<10##"'732>7#73>32"[b!93Nd% +v^56W{AbҠz$Vw31s(p@O%**%XX%hh% ( (?"""'0@  /9999/]]]q]q10]3#"'&#"#6632323#"$#"#6632323paϋH/l/xvK3p`J/l/vKjuN'X>ϛº+R> Q@7 !1L_c//910]q]!!A/FAL#ARa/ @3    `@ 7@#7   7  / p  /]38+3/]2/+38+3/]q/qr3/3/3107333Zjj\kk%%`n/ u@, P @ @ 7@ @ 7  7 /+383/+2/383/+/qr3/q3/]310###¬Yii[kk/$$g M@   @#)7 @ 7 #)7@  7 +/3/++2/++?332210%#5!#5!#5nB6$C!A@ &%+5+5B6$%A@ & %+5+5U62A@ !&" %+5+5Upq#!@77X# @" 7   7  # 7@  7%} 7$+/+3/++<3/9/<<<<?+?2/3?+?239/10]++%!5# !25!!!!.#"3267pD܈bS'ٵɁw&..NMwN&-@wgh,@  7'*77@I 7**""7 7P------'$'/ $ . +/]+/3/9/]]3/=9/9/?++<<]3?++<+39/9/+310]]#"'#"5432632!322654&# .#"2؈͐ʾ:1^~>yh 0!#xtXz=@/o3/3//]10!5=zzR=@/o3/3//]10!5R=zzU 4 @ !'7 )   7#7@ !'7) 7@#7@)67  @$&7@7@$7@ 7  !$7!$7")7@7@7P@  7 !$7 !$7  @ (7 @ 7 @7 @ 7   @ 7 @7 3/++9/3/]++++r3++2/+q9/3/+++3++?3/++++q<<3/+<10++q+++q+5333533GpRfJuS ū U  @- !'7 &   7#7!'7& 7#7 @$&7@7@$7 7@ '67  @!$7!$7@")77@7@ 7 @!$7 !$7   @#7 @  7 7 @ 7   7 3/+9/3/++++r3++2/+9/3/+++3++?<<2/+<2/++++q<10++q+++q+#7#5##7#5GpQgJuRUĪgU@ !'7) 7#7@%&7@7@$7 7@ !$7!$7@7@773/+9/3/++3++?3/++++310++q+5733GccgU@!'7& 7#7@%&7@7@$7@ 7!$7@ !$77@ 77 73/++9/3/++3++?2/2/++++10++q+#7#5gFccU{$7@ T } }@$'7 / } @ 7 }+/<3/+<2//]3/]+3/10#"&54632!!#"&546329''99'(8D=9'(88((8(88((88(88((99. _@?(& O@ ^Q  6 &6 /99/9910]]]q]#3 szszOtt R}6\@&" %+55+]55)6<A@ & %+55+55BU9@H0 /83/83?3?3.+}10]##3p;nUsq*C@'&7&gweH)X))))Z((((%2 """"""" " 2(X (**(*x(% g*x#% [*[@ ,f  +  g G w    /_]_]_]_]9/<9+_^]M999/<_]_]]?]_^]?_]_]9/39/39/_^]q<<^]]]]<<_]]10_]_]_]_]_]_]#"'#53&547#53$3 #"!!!!32s32&#"#5#@Ʇ/f&Zkc>qc@ @# 7 / 73/+<3/<+/2/]3/?3/?+<32&#"#3@Ʇ/f&ZkUUc P  @17 _@7P 3 _    3+<<3/]<<<2/]<?3/+]<uSvQ"f@#7 6FF  t 7@ 7 7 tu7@ 7@7 u  +/]33/3/++3/+?+3+/+]2/9/310]q+!5$654&#"'632goHLtp@a^MGWbY!c4f" 7@ 7   7t@ 7t@* 7t  uu@7 u u  # +/]3/3/+3/9/9?3/+9/+=9/+9/r39/310++53254&#"'632#"'732654&#hbJ.mT|JaRp+mbuh]>Hŀ^0lNg#X>CRXf &@67 %6%FF% %66%FF%% 0 !  @$ 77t  @ 7 &t t @! 7 t /   @*u#7##u&  _ u'3/3/3/22/]9//]3//3/+/8]39//8]3?33/3/+]2?2/3/+]++9/3?3?3.+}10]q+!535673#3!5654&#"'632nz_VW~;|rhoHLtp?{YYWl>uSvU a^MGV`Z d`Ϳff   @ 7 0t 7@7@ 7 t@' 7 t / @7  @' u  _ u!3/3/3/22/]9/3/<33//3<<2/3/8]33/+8]3?33/3/]+2?3/+]3++9/<<9/??.+}1010]+]!535673#3#5!533#'nz_VW~;|s^s{YYWl>uSvUM8^^)f"&16C5 7 76@"7&&%&##0$%$$%$%++*.2t1))(3 73@&73--@ 7--(   7t@ 7t@ 7t %& ?&P&&&(#$@$$$ 00.1u)+6*,,*2))@7 uu u u  7 +/]3/3/3/9/+92/<33//3<<2/9//833/]83?3/+9/+=9/+9/r39/3?3/+]3++9/<<9/??.+}10]+++]53254&#"'632#"'732654&##3#5!533#'hbJ.mT|JaRp+mbuh~;}t^t]>Hŀ^0lNg#X>CRbUM8^^Us @7   7  7@ 7 +/33/223/++3/9/+??9/q9/+<<10#53!!!!!!#Cg(EQU6*A@ '&% %+5+546J@PP&HN$%+5+]5g6,D@ & %+5+5e;q8@)\#\0V5i l0|0t2 !9#y3,VP58@$755V2l5xw7553! }4344 7@!7 3!!@$7!@7 44!.@ 7@7*O+++.(@4 7  @7@ 76%!34 1+~**X}6@& 76:6% 7~@7@ 7%711}% 7%9%+/+]3+/++++/+]3/99/]++2/92/+?2/]3?+3/2/+3993++3?3/39/+3/+2.+}10]]+]]]]632#"'73254#"7$7!2654&'%.54$3 &&#"' DrsgiWSGs55y]6}Rj^tuqp^PNIDW2H(KQ(X#sWjDMg.x{vl5=T۸v55( 7"@ 7" 5 7@!7  7'3  <33!1!)71@711 ,)**'Ā,,7,@' 7, ,    @7  p@ 7 44 @7@ 7$/@(7//*3! ))4    7@ 77 7  7 @ 7 6 +/3+++/+/3++]/99/]3/92/+?2]/++3?3/2/+]399]3+]q33]/++q3/9/++3/.+}10]+++]++732654''&&5463 &#"#2#"'732654#"7$ic}ʫIM>`{5cc[dhJKC.8s1.jUXPw (sOGp#8BJ;9Y-@#'GUy6&A@ & %+5+5N6F@&%+5+]5Uy6&A@ & %+5+5N6F@& %+5+]5O<U#@!0 7 @ 7@ 7# @ 7 @% 77##% 7 $ +/++/33339//??+3/+3?+?3/39/+3210++33##5#"5432!5!4&#"3265jֱ⼶s"muwnUvt)5tм͸|=$@/o@ 7XW+/+/+/]10!5<=zz_0///]10!!w@+//]10#5wB{6$$:@  & %+5+5DA6D@++&+*%+5+]5B6$%A@ & %+5+5D6D@11&)/%+5+]5U@ 7 7&w @X7>?  VU+/83+/839/99993/3/3?33/?39/32.+}ć.+}ć<<?+3/10]++!#!#3327#"&54 Lzr-+BT]d\qUMQ`E"SFNpD*7@* 7 7#$$!&&@  7&&55@7+ 3 7@:7#$$)@7@ 766+ ++97 70@ 708+/]+3++/+/2/<3/3/++3/3?++??39/9/3+]<3/+]3/10++]!#&'#"&54$!24.#"'!2327#"&54&#"32654U= h='\%xb'5ΰ["o&1ASZbG`2oi0Ѵ~xk@S@<:V ? L@n8zuJh΋Uy6&A@ & %+5+5N6F@ & %+5+5Uy6&D@ & %+5+5N}6F@& %+5+]56'nA@ & %+5+5OU6G_@ &!%+5+5#U f@Cy     7}7 7   +/3/<<2/+/+++??9/]q910]53! #!7!!!254#!#!BF=vr1D{6(]:@ & %+5+5NA6H"@& %+5+]56([A@ & %+5+5N6H @##&! %+5+]56(aD@ & %+5+5N}6H#@&! %+5+]5tU@ 7 7  7 @,7  @7/@7+/<3/+]33//3/+3/3??9/5VccbPqm$ULDlyUi@  {@3 7@7@7`+/3/+/]3/3/++?<{cMM'\"@&7 7 7" 7 7@ 7 @27  7!@7@ 7$ #+/+/3/++3/3?53327#"&54Y.l֛}KL{R[#p&0BRZb̼{qV^9<:V ? L@n'c6:SA@ & %+5+5&)6Z@ & %+5+5)6<A@  & %+5+5 R6\׳@ & %+5+586="A@  & %+5+5D,6]@  & %+5+]586= D@  & %+5+5D,}6]@  & %+5+]5q +@ 9//2/?3/?10]!#4632&#"u?Q3.tVڥ} eB # 7 @ 7 7 @!$7 @g!$7#"!""""!# 7ď   @7  """x%V$U+/83+/]839/9999?<< ?   8   V U+/83+/839/9999+?3/?<<<9/.+}ć.+}ć<+10]!#!#3Bz`qUpU  }@ 7 7 7}7 7i @ 7} " !+/<+/+]3+/+++??9/9/10+]3!2#!2654&#!!2654&&#!)|nBxwUȄL%x _^t̂hI}DU'@  7+/3/+??103!!UAU{@,?@ 7@7 VU+/83+/8++39/39/3?33/<&VU@+]/??10!#3VUU @7  7 @A7&   >  ?       @ 7  +/223/+33/8399?33?339/393.+}ć.+}ć<10]++]+!# #33hǫi{U"rUu@E 7Y? p VU+/3+/]39/3?3/Z3# U_8+OU <@"    +/<+/<3/3/??9/]105!5!5!OrrʖwUq k@   GX@' 7W 7}  7  } 7+/++/+?+]]?+]]10] 32%2#"42ѭ)6sQF&GU"@ ++??<103!#!UAJU =@& wi}/d +/<+/]]]??9//10!#!2#!5!2654&#!V:y}U掑wfTU @ 7 @B 7 7> ?    +/33/33/3/9/3?2?29/3.+}ć.+}10+++]35 5!! !Tj0KH U;@@@ 7@ 7 +/3/+2/+]q? +/3/32/39/?<<tfr~@ 7@$77@ $7@ 77}@7  7 @ 7} 7 @ 7 ~`@ 7+/+]<<<<2/++++]3/]+++]?3/++<]       0P V  U+/33/3+/]]33/39?3?39.+}ć.+}ć<ć<ćć10 # # 3 {+2UF~Ub@  7 @' 7 @ 7   7 ++]<<3/3/?<53L(.E j :j:q@ 7iz  }@/7@7@ 7}I y   }7 7@ 7}Fv+/]3/2++]/]++/]3/2/]+++?<<<32#"'32654ᘖ&#"B$VVurU^%c_SڸxN kzdyDr] 7@L7)7<@7@7 a@ 7 `+/+3+/++39/9/?<<75"32654&REܕwJqqwU{f{'ԻֳXq"@ !7@7 @ 7 7 @ 7 7@79  $ X @7  7@7#+/]+3/+]++/3/9/3]+??9/=9/+9/++39/+310]++]]"327#"&547&54632&#"4dGxW; չջ(pQOE\d~HW<=@ 7@@ 7 a`+/83+/+839/39/83]+?::_hpM@T8'F+A8^othy3c^`YN T 7@+ 77 7i   f+/]+/]?++?++10]"5432'2654&#"xru4 Ձҽ۽>  _@3  @@ 7 k 7 j+/+]q3/q+/+]q3/]q?<32#"' 3265{=֡hyzOnv {@ 7 @ 7  7 @7i  `@p 7 7  +/++]3+<3/8]?]++]?39/+3/310]+]654&'.543 &#"8/NmB=$rs\8Dky>0 o٘'_TN@ 770 7@2 7   7 @77i @ 7f   +/]++/]+3/+99?+]??+]10+++##"5432"32654&6=~olnz"tҽ״A7@ 7@7@ 7 +/3/++2/++?53#".5% mURn"K|Ylc>53jUBkl8Iն:k$ܭ{>uE$ܭwY "7 @77""   @7 @ 7  7 @ 7P   7@!7_@ 7"""p"""#$"+]=9/3/+]+2/+]33/]++2/++3?<35`cdbPrl%ULDly5U@7 0,37 0,37@W 7   p     ? y@7@7f  U+/3+/++]9/]39/33/39?<3/ ?   8   V U+/83+/839/9999+?3/?<<<9/.+}ć.+}ć<+10]!#!#3 Bz`qUpLU _@$@ 7iy  7} @7  +/<+/++]3/+??9/]q103!!32#%! 54&#!ɀ8Ua=ɔז}zU  }@ 7 7 7}7 7i @ 7} " !+/<+/+]3+/+++??9/9/10+]3!2#!2654&#!!2654.#!)|nBxwUȄL%x _^t̂hI}DhU'@  7+/3/+??103!!UAU  037г7@f7  ?  ~ @_o@7V ~ @  U+/3/]32/+/+]3/32/9/3?< >   ?  7@`7@Pp       @ 7@PV  U+/33/3+/]]33/+39/32?3?39/3/  ?       @ 7  +/223/+33/8399?33?339/393.+}ć.+}ć<10]++]+!# #33hǫi{U"rU77@B 7? p VU+/3+/]39/3?3/pfr~@ 7@$77@ $7@ 77}@7  7 @ 7} 7 @ 7 ~`@ 7+/+]<<<<2/++++]3/]+++]?3/++<]       0P V  U+/33/3+/]]33/39?3?39.+}ć.+}ć<ć<ćć10 # # 3 {+2UFU 5@  ~  +/+/3/2/?   hy7   }+/+/<9/33/3+]??339/]3.+}10]!#.5463!#!"3!ywveOx+m|ihD(&&@7 $ 7@&7'' *7 7!@ 7!)+/]+3++/+/2/<3/?++??39/9/3+]10]!#&'#"&54$!24.#"'!2&#"32654 h8*\%xb'5ѯ`2oi0Ѵ~xk@SkzuJh΋j'@- f  75U\ "7@2 7 7 7  7  %h  ) (+/2+/]3//?]+++?++]39/10]+]]3632#"&&5466766"32654&oplPi~AzwR;xzya\6@& %+5+]5@ g &6س 7 7γ7γ 7@  77I@H7 7 = 7@ 7X  +/2/+/++833/839]3?33?339/393.+}ć.+}ćć10+]q+++++]q##3673tdΝ4/uq)l8L5j7W@E 7<=@7@Pp XW+/3+/]39/+3?33/?3.+}ć.+}10+]+33##MG37 7 γ 7 @ 7x 7v  @ 7 2 7 @  72 7@D 7 = =      d P@ 7  +/22+/+]229/]33?3?33/3/.+}ć.+}10+++++]+++++3!3####,= ê ghv :@# @7  +/<+/<?`{5XPw (sOGp#8?U+@ 7+/3/??+?10#5#?U }6@&%+55+]55BUF@ @  7 @7 +/3/3/+??+?3/10#5#"'53265Bz=XA3VOU﯏|Ti@0 77077@K7 =  0      = 7@7X  W+/3+/++9/9/33/39?<3/?39/]q.+}ć}10+++++!2#!##33254+4ȺMܘqm3j 7 @7    @ 77X  +/<+/++9//<<?54' ֞ƂogjTv, >,1jštufuJ:VmKrufuuNNUjs'f"U 'E'0@$700 7#| 578@ 788>:())7)@\ 7))0+0>>+:|5@755D|D&|+|D D"@ 7" ##)((<2 7228727-A@ 7AGAdYi}v@ 7 F+/<3/+]]3/+/+33//]+3/9/3223//+//??39///<3/9/+9/39/++]39/+33/332/310+]+!#!2+532654&+#"5#53?3#32?3254/&54632&#"#"T}yv?&ppqZ#\sbr2m%u{X{ʗzU玑wmWaV VU_r\A Ni_S<#Uivq%1@|,| 7 &|@7 0 / ?  |@7|  7  # /@!7)#3#]  8 2\+/]3]/<<+/3/+9/839/83?+]3/+]99/]3/]3?+3/+?3?3.+}10#"&54632&#"32#3"&54632'2654&#"Pk4ቧ.kZ__Wp;n*SntNQol򿣚r~UΘʘ]z|*m!)@ )!j!z!")@7>)))" '7 '7@ 7") ' @) 7")% @ 7 O _   +*9/]333/]3/+393/+?33//?3?9/33+++/3.+}10+]327632#"&547#"5476732654#"eA%52QFFN*,:IĄ?Cx/8Y&Y5o%5mPPN #&D^?wSU'+@  :D  @ 7  7 @ 7 <"7 7@"7 7+* * +B%?@7(B-  @7P  ,+/322///]+22//+/3/+]?3?32/++3/++.+}+10++]+!##3'&53"&54632'2654&#"!5>G]dAF]\nZ3# U_8+$’krw{invyp{{Z|HT@0  I@ 7 7 7  3/3/<3/33//++//+]9/9/310327#"5432'&#"AxHvz+0 |zy+j=9J)yyff $/9k@279 799 0 070%@ 707%t0@ 70005*t@ 7@`5@7  75t  t@! 7t / #  @ ((u@78u--u@,72uP#`###  _ u:3/3/3/22/]9/q/]33/3/q+]/3/3/+]3/8]39//8]3?3//+]2?++2/]+9/]+++=9/9/]+?3?3.+}10]++!535673#3&54632#"&54%>54#"32654nz_V<~;|YPgVNem5qo^q{YYWl>uSvUTA_{x[9Pd_D3w@76Nx/t>LK:q"f!%9DN@7N7/7N 7N/N$%""0#$##$"#%$E7&000E&&:@ 7E7:tE@ 7EEEJ?t+@ 7+@+`++++J@75 7Jt5 7t@ 7t@ 7t $%% %%%28"##@ ##==u.0@700..Mu2BBu((@7&&&(2(Gu878@ 7 u 7u@ 7 u u O +/3/3/+3/+9/+9/+33/3/q+]/3/3/+]3/8]39//8]3?3/+9/+=9/+9/39/3?++2/]+9/]+++=9/9/]+?3?3.+}10]+++53254&#"'632#"'732654&##3&54632#"&54%>54#"32654hbJ.mT䀛Rp+mbuh}:|gPgVNen4ms^q]>HŃZ00k#X>CRbUTA`z{Y9Pd_D3w@76Nx/t;OK:q4U3>H@?H7)7H 7H)H0?7 ***? 4@ 7?74t?@ 7???D9t%@ 7%@%`%%%%D@7/ 7Dt/@ 7tt @ 7 t/ ,2@ 77u(*@7**((Gu,<54#"32654z aXoung;fsqP{J^~;|`QfVNem5rn^rUeOn\"nVYdnUTA_{x\9Pd^E3w@76Nx/t=MK:qcU #.8l@78778 788 0   /7/$@ 7/7$t/@ 7///4)t@ 7@`4@ 7 74t@" 7t@ 7 "  p  @ ''u@7O7u,,u@71u"@7"u`9+/33//]9/]/+33/3/q+]/3/q3/+]3/8]39//8+3?9/3/+?++2/]+9/]+++=9/9/]+?3?3.+}10]+++#!7!#3&54632#"&54%>54#"32654{"= 73!!ytt{L.?97B-=.=`gIEk`Sh;^@ IH/oGF JLM KML KpLpMAp/FapGpHLpIpJSp?]<<<10>73.'#=-=agHEk`ztt|L.@8[6B.Ol^@ML KLM J IH/oG FFapGpHLpIp/]<<<JpKpLpMAp?10#>7!5!.'ztt|L.@86B.l>-=agHEk`Sg;^@ IH `G FJLM KML KpLpMAp/FapGpHLpIpJSp?]<<<10#.'53>7g=-=agHEk`ztt|L.@8[6B.Ol@7MMLK L MJI  H/ o  G IH `G FFapGpHLpIp/]<<<]<<<JpKpLpMAp?<<<10!.'3#>7!#.'5>736B.Lztt|L.?9%7B-Lytt{L.?\Dl`>-=afIEk`=.=`gUh@6I H `G IH/oGF JLMK M LKpLpMAp/<<<<FapGpHLpIpJSp?]<<<]<<<10>7#.'55>73.XDl`=-=`gIEk`=-=ags%6C.Myut{M/>:6B.Lzuu|L.@[g#@?#K I H `G IH/oGF J"# LMK M LKpLpMAp/<<<<<<FapGpHLpIpJSp?]<<<]<<<3/10>7#.'55>73.!!WDl`=-=`gIEk`=-=ag1s%6C.Myut{M/>:6B.Lzuu|L.@ϯ{KKKp////1033!{#>@)77*  ZY+/+/?33/]++10]!#66$32#4.#"$  atu^}ړѧuxE( A @"7@7/ Z Y+/33+/33/]32/+/+10!!!!!!www(4 g@2 K  KK KKL KLKQpLpM"p/</33/<33/].+}ć.+}103 %! zQU" @ZY+/+/?3/10!#""h"":@ NMOPLKKpLpMgpNpOpPp/?10#4632#"'.#"qCG3%/ A,(4 I !jHA NMOPLKPONMgLKpppppp/?103#"&546323276765"qCG3$. A,(4 H  j @ KLKp̹Lp?10!5!(~-HMLKKp/Lp?MHp?103~ K~1AKMMLLKKp/p?p?10!#ků}2,1AKMMLLKKp/p?p?10!5!#}lC~H(@ KMLKKp/LHp?Mp?103!~2},H1AKMMLLHKKp/p?p?10!5!3,~HBANNKMMLLHK Kp/ANNKMMLLHKKp/