file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/200142850.c
/* A C-program for MT19937, with initialization improved 2002/1/26. Coded by Takuji Nishimura and Makoto Matsumoto. Before using, initialize the state by using init_genrand(seed) or init_by_array(init_key, key_length). Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Any feedback is very welcome. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) */ #include <stdio.h> /* Period parameters */ #define N 624 #define M 397 #define MATRIX_A 0x9908b0dfUL /* constant vector a */ #define UPPER_MASK 0x80000000UL /* most significant w-r bits */ #define LOWER_MASK 0x7fffffffUL /* least significant r bits */ static unsigned long mt[N]; /* the array for the state vector */ static int mti=N+1; /* mti==N+1 means mt[N] is not initialized */ /* initializes mt[N] with a seed */ void init_genrand(unsigned long s) { mt[0]= s & 0xffffffffUL; for (mti=1; mti<N; mti++) { mt[mti] = (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti); /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */ /* In the previous versions, MSBs of the seed affect */ /* only MSBs of the array mt[]. */ /* 2002/01/09 modified by Makoto Matsumoto */ mt[mti] &= 0xffffffffUL; /* for >32 bit machines */ } } /* initialize by an array with array-length */ /* init_key is the array for initializing keys */ /* key_length is its length */ /* slight change for C++, 2004/2/26 */ void init_by_array(unsigned long init_key[], int key_length) { int i, j, k; init_genrand(19650218UL); i=1; j=0; k = (N>key_length ? N : key_length); for (; k; k--) { mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525UL)) + init_key[j] + j; /* non linear */ mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ i++; j++; if (i>=N) { mt[0] = mt[N-1]; i=1; } if (j>=key_length) j=0; } for (k=N-1; k; k--) { mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941UL)) - i; /* non linear */ mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ i++; if (i>=N) { mt[0] = mt[N-1]; i=1; } } mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */ } /* generates a random number on [0,0xffffffff]-interval */ unsigned long genrand_int32(void) { unsigned long y; static unsigned long mag01[2]={0x0UL, MATRIX_A}; /* mag01[x] = x * MATRIX_A for x=0,1 */ if (mti >= N) { /* generate N words at one time */ int kk; if (mti == N+1) /* if init_genrand() has not been called, */ init_genrand(5489UL); /* a default initial seed is used */ for (kk=0;kk<N-M;kk++) { y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1UL]; } for (;kk<N-1;kk++) { y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); mt[kk] = mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1UL]; } y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1UL]; mti = 0; } y = mt[mti++]; /* Tempering */ y ^= (y >> 11); y ^= (y << 7) & 0x9d2c5680UL; y ^= (y << 15) & 0xefc60000UL; y ^= (y >> 18); return y; } ///* generates a random number on [0,0x7fffffff]-interval */ //long genrand_int31(void) //{ // return (long)(genrand_int32()>>1); //} // ///* generates a random number on [0,1]-real-interval */ //double genrand_real1(void) //{ // return genrand_int32()*(1.0/4294967295.0); // /* divided by 2^32-1 */ //} // ///* generates a random number on [0,1)-real-interval */ //double genrand_real2(void) //{ // return genrand_int32()*(1.0/4294967296.0); // /* divided by 2^32 */ //} // ///* generates a random number on (0,1)-real-interval */ //double genrand_real3(void) //{ // return (((double)genrand_int32()) + 0.5)*(1.0/4294967296.0); // /* divided by 2^32 */ //} // ///* generates a random number on [0,1) with 53-bit resolution*/ //double genrand_res53(void) //{ // unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6; // return(a*67108864.0+b)*(1.0/9007199254740992.0); //} ///* These real versions are due to Isaku Wada, 2002/01/09 added */ // //int main(this_bvm, void) //{ // int i; // unsigned long init[4]={0x123, 0x234, 0x345, 0x456}, length=4; // init_by_array(init, length); // printf("1000 outputs of genrand_int32()\n"); // for (i=0; i<1000; i++) { // printf("%10lu ", genrand_int32()); // if (i%5==4) printf("\n"); // } // printf("\n1000 outputs of genrand_real2()\n"); // for (i=0; i<1000; i++) { // printf("%10.8f ", genrand_real2()); // if (i%5==4) printf("\n"); // } // return 0; //}
the_stack_data/28262399.c
// wrapper for dlldata.c #ifdef _MERGE_PROXYSTUB // merge proxy stub DLL #define REGISTER_PROXY_DLL //DllRegisterServer, etc. #define USE_STUBLESS_PROXY //defined only with MIDL switch /Oicf #pragma comment(lib, "rpcns4.lib") #pragma comment(lib, "rpcrt4.lib") #define ENTRY_PREFIX Prx #include "dlldata.c" #include "ATLNet6_p.c" #endif //_MERGE_PROXYSTUB
the_stack_data/1086470.c
/* Kay, command line args. main() has two args: argc and *argv[]. argc I think is the number of args. *argv[] is an array of strings or really, an array of pointers where each pointer points to a string. So in: cmdline hello goodbye argv[0] would be "cmdline", argv[1] would be "hello", and argv[2] would be "goodbye". argv[1][0] would be 'h', argv[1][0] would be 'e', argv[1][5] would be \0, etc. I think. */ main( int argc, char **argv ) { int x; int y, *q; for( x = 0; x < argc; x++ ) /* print the args */ { printf( "%s\n", argv[x] ); } /* The above works, and I don't think it should... */ y = 25; q = &y; printf( "%d\n", *q ); printf( "%d\n", y ); /* These two should be the same... */ printf( "%d\n", q ); printf( "%d\n", &y ); /* If I'm right, these two should also be the same... */ /* Kay. Calling *pointer reaches and grabs the VALUE of pointer. Calling pointer grabs the ADDRESS that pointer is set to. So. *y = x sets the VALUE of y to x. y = &x sets y the ADDRESS of y to the address of x. You can also then do y = x, which sets the address of y to the value of x. And you can do *y = &x, which sets the value of y to the address of x. Wild. */ }
the_stack_data/91827.c
#include <stdio.h> int main(void){ static int va[5] = {0}; for(int i=0;i<5;i++){ static int va[5] = {1}; printf("va[%d] = %d \n", i, va[i]); } return 0 ; }
the_stack_data/111292.c
#include <stdbool.h> bool check(int *nums, int numsSize) { int start = nums[0]; for (int i = 1; i < numsSize; i++) { // posible point of rotation if (nums[i - 1] > nums[i]) { for (int j = i + 1; j < numsSize; j++) { // Make sure we still have non-decreasing order // and none are larger than start (which would // mean that before rotation, nums[i-1] < nums[i] for // nums[i-1] == start.) if (nums[j - 1] > nums[j] || start < nums[j]) return false; } } } return true; }
the_stack_data/19723.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/select.h> #include <netinet/in.h> #include <unistd.h> #include <fcntl.h> #ifdef BLINKER_FRAMEWORK_PRESENT #define PORT <%= BlinkerVars.listen_port %> #else #define PORT 60063 #endif #define MAX_CLIENT 5 struct client { int sock; FILE *fd; char *name; }; struct client clients[MAX_CLIENT]; int nclients = 0; char last_msg[512]; void accept_on(int sock) { int new = accept(sock, NULL, NULL); if (new == -1 && errno != EAGAIN) { perror("accept"); exit(1); } int flags = fcntl(new, F_GETFL, 0); if (flags == -1) { perror("fcntl"); exit(1); } fcntl(new, F_SETFL, flags | O_NONBLOCK); if (flags == -1) { perror("fcntl"); exit(1); } FILE *fd = fdopen(new, "r+"); if (fd == NULL) { perror("fdopen"); exit(1); } setbuf(fd, NULL); fprintf(fd, "Hello Anonymous! Use the /nick command to set a name others can recognize.\n"); char online[1024]; online[0] = 0; online[sizeof(online)-1] = 0; for (int i = 0; i < nclients; i++) { if (i > 0) strncat(online, ", ", sizeof(online) - strlen(online) - 1); strncat(online, clients[i].name, sizeof(online) - strlen(online) - 1); } fprintf(fd, "Online users: %s\n", online); fprintf(fd, "The last message was:\n"); #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wformat-security" fprintf(fd, last_msg); #pragma GCC diagnostic pop fflush(fd); clients[nclients].sock = new; clients[nclients].fd = fd; clients[nclients++].name = strdup("Anonymous"); } int message_on(struct client *c) { char msg[256]; char *r = fgets(msg, sizeof(msg), c->fd); if (r == NULL) { if (feof(c->fd)) { fclose(c->fd); *c = clients[--nclients]; return 0; } else { perror("fgets"); exit(1); } } int l = strlen(msg); if (r[l-1] == '\n') r[l-1] = 0; if (strncmp("/nick ", msg, 6) == 0) { free(c->name); c->name = strdup(msg+6); } else { snprintf(last_msg, sizeof(last_msg), "%s> %s\n", c->name, msg); for (int i = 0; i < nclients; i++) { fputs(last_msg, clients[i].fd); fflush(clients[i].fd); } } return 1; } void write_flag(FILE *f) { char flag[128]; FILE *flagfile = fopen("flag", "r"); fgets(flag, sizeof(flag), flagfile); fclose(flagfile); fprintf(f, "Congrats! The flag is: %s\n", flag); } int main(int argc, char **argv) { int sock = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0); if (sock == -1) { perror("failed to open socket"); exit(1); } if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof(int)) < 0) { perror("setsockopt(SO_REUSEADDR)"); exit(1); } struct sockaddr_in local; memset(&local, 0, sizeof(local)); local.sin_family = AF_INET; local.sin_port = htons(PORT); local.sin_addr.s_addr = htonl(INADDR_ANY); if (bind(sock, (struct sockaddr *)&local, sizeof(local)) == -1) { perror("failed to bind socket"); exit(1); } if (listen(sock, 10) == -1) { perror("listen"); exit(1); } fd_set rfds; int retval; while (1) { int max = 0, accept = 0; FD_ZERO(&rfds); if (nclients < MAX_CLIENT) { FD_SET(sock, &rfds); max = sock; accept = 1; } for (int i = 0; i < nclients; i++) { max = (max < clients[i].sock) ? clients[i].sock : max; FD_SET(clients[i].sock, &rfds); } retval = select(1 + max, &rfds, NULL, NULL, NULL); if (retval == -1) perror("select()"); else if (retval) { for (int i = 0; i < nclients;) i += (FD_ISSET(clients[i].sock, &rfds)) ? message_on(&clients[i]) : 1; if (accept && FD_ISSET(sock, &rfds)) accept_on(sock); } } return 0; }
the_stack_data/247017152.c
/* * (C) Copyright 2004 * Wolfgang Denk, DENX Software Engineering, [email protected]. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ /* * Check memory range for valid RAM. A simple memory test determines * the actually available RAM size between addresses `base' and * `base + maxsize'. */ long get_ram_size(volatile long *base, long maxsize) { volatile long *addr; long save[32]; long cnt; long val; long size; int i = 0; for (cnt = (maxsize / sizeof (long)) >> 1; cnt > 0; cnt >>= 1) { addr = base + cnt; /* pointer arith! */ save[i++] = *addr; *addr = ~cnt; } addr = base; save[i] = *addr; *addr = 0; if ((val = *addr) != 0) { /* Restore the original data before leaving the function. */ *addr = save[i]; for (cnt = 1; cnt < maxsize / sizeof(long); cnt <<= 1) { addr = base + cnt; *addr = save[--i]; } return (0); } for (cnt = 1; cnt < maxsize / sizeof (long); cnt <<= 1) { addr = base + cnt; /* pointer arith! */ val = *addr; *addr = save[--i]; if (val != ~cnt) { size = cnt * sizeof (long); /* Restore the original data before leaving the function. */ for (cnt <<= 1; cnt < maxsize / sizeof (long); cnt <<= 1) { addr = base + cnt; *addr = save[--i]; } return (size); } } return (maxsize); }
the_stack_data/731122.c
// This test ensures that unrelated conditions do not mask // non-nullable accesses (here, the length[i] == n condition should // not prevent code from being recognized as not nullable) void BZ2_hbAssignCodes(int * code, char * length, int minLen, int maxLen, int alphaSize) { int n, vec, i; vec = 0; for(n = minLen; n <= maxLen; ++n) { for(i = 0; i < alphaSize; ++i) { if(length[i] == n) { code[i] = vec; ++vec; } } } }
the_stack_data/28263011.c
#include <stdio.h> #include <stdlib.h> int main() { int n1,n2,n3; printf("digite o primeiro valor:"); scanf("%d",&n1); printf("digite o segundo numero:"); scanf("%d",&n2); printf("digite o terceiro nunero:"); scanf("%d",&n3); if(n1<n2 && n2<n3) { printf("em ordem crescente: %d,%d,%d",n1,n2,n3); }else if(n2<n1 && n1<n3) { printf("em ordem crescente: %d,%d,%d",n2,n1,n3); }else if (n2<n3 && n3<n1) { printf("em ordem crescente: %d,%d,%d,",n2,n3,n1); }else if (n1<n3 && n3<n2) { printf("em ordem crescente: %d,%d,%d",n1,n3,n2); }else if (n3<n1 && n1<n2) { printf("em ordem crescente: %d,%d,%d",n3,n1,n2); }else if (n3<n2 && n2<n1) { printf("em ordem crescente: %d,%d,%d,",n3,n2,n1); return 0; } }
the_stack_data/98575026.c
// Copyright (c) 2014-2018 K Team. All Rights Reserved. /* * Program that traverses a list of disjoint trees and deallocates each tree. * The heap pattern tlist specifies the existence of a list of disjoint trees * in the heap. */ #include <stdlib.h> struct treeNode { int val; struct treeNode *left; struct treeNode *right; }; struct listNode { struct treeNode *val; struct listNode *next; }; void deallocate(struct treeNode *t) //@ rule <k> $ => return; ...</k> <heap>... tree(t)(T) => . ...</heap> { if (t == NULL) return; deallocate(t->left); deallocate(t->right); free(t); } void iter_deallocate(struct listNode *l) /*@ rule <k> $ => return; ...</k> <heap>... tlist(l)(TS) => list(l)(A) ...</heap> */ { //@ inv <heap>... lseg(old(l), l)(?A), tlist(l)(?TS) ...</heap> while (l != NULL) { deallocate(l->val); l = l->next; } } //@ var A, TS : Seq //@ var T : Tree
the_stack_data/36074651.c
/* * Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 * The President and Fellows of Harvard College. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* * This file is shared between libc and the kernel, so don't put anything * in here that won't work in both contexts. */ #ifdef _KERNEL #include <types.h> #include <lib.h> #else #include <string.h> #endif /* * Standard C string function: tokenize a string splitting based on a * list of separator characters. Reentrant version. * * The "context" argument should point to a "char *" that is preserved * between calls to strtok_r that wish to operate on same string. */ char * strtok_r(char *string, const char *seps, char **context) { char *head; /* start of word */ char *tail; /* end of word */ /* If we're starting up, initialize context */ if (string) { *context = string; } /* Get potential start of this next word */ head = *context; if (head == NULL) { return NULL; } /* Skip any leading separators */ while (*head && strchr(seps, *head)) { head++; } /* Did we hit the end? */ if (*head == 0) { /* Nothing left */ *context = NULL; return NULL; } /* skip over word */ tail = head; while (*tail && !strchr(seps, *tail)) { tail++; } /* Save head for next time in context */ if (*tail == 0) { *context = NULL; } else { *tail = 0; tail++; *context = tail; } /* Return current word */ return head; }
the_stack_data/1066136.c
/** ****************************************************************************** * @file stm32l0xx_ll_rtc.c * @author MCD Application Team * @brief RTC LL module driver. ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32l0xx_ll_rtc.h" #include "stm32l0xx_ll_cortex.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /** @addtogroup STM32L0xx_LL_Driver * @{ */ #if defined(RTC) /** @addtogroup RTC_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /** @addtogroup RTC_LL_Private_Constants * @{ */ /* Default values used for prescaler */ #define RTC_ASYNCH_PRESC_DEFAULT 0x0000007FU #define RTC_SYNCH_PRESC_DEFAULT 0x000000FFU /* Values used for timeout */ #define RTC_INITMODE_TIMEOUT 1000U /* 1s when tick set to 1ms */ #define RTC_SYNCHRO_TIMEOUT 1000U /* 1s when tick set to 1ms */ /** * @} */ /* Private macros ------------------------------------------------------------*/ /** @addtogroup RTC_LL_Private_Macros * @{ */ #define IS_LL_RTC_HOURFORMAT(__VALUE__) (((__VALUE__) == LL_RTC_HOURFORMAT_24HOUR) \ || ((__VALUE__) == LL_RTC_HOURFORMAT_AMPM)) #define IS_LL_RTC_ASYNCH_PREDIV(__VALUE__) ((__VALUE__) <= 0x7FU) #define IS_LL_RTC_SYNCH_PREDIV(__VALUE__) ((__VALUE__) <= 0x7FFFU) #define IS_LL_RTC_FORMAT(__VALUE__) (((__VALUE__) == LL_RTC_FORMAT_BIN) \ || ((__VALUE__) == LL_RTC_FORMAT_BCD)) #define IS_LL_RTC_TIME_FORMAT(__VALUE__) (((__VALUE__) == LL_RTC_TIME_FORMAT_AM_OR_24) \ || ((__VALUE__) == LL_RTC_TIME_FORMAT_PM)) #define IS_LL_RTC_HOUR12(__HOUR__) (((__HOUR__) > 0U) && ((__HOUR__) <= 12U)) #define IS_LL_RTC_HOUR24(__HOUR__) ((__HOUR__) <= 23U) #define IS_LL_RTC_MINUTES(__MINUTES__) ((__MINUTES__) <= 59U) #define IS_LL_RTC_SECONDS(__SECONDS__) ((__SECONDS__) <= 59U) #define IS_LL_RTC_WEEKDAY(__VALUE__) (((__VALUE__) == LL_RTC_WEEKDAY_MONDAY) \ || ((__VALUE__) == LL_RTC_WEEKDAY_TUESDAY) \ || ((__VALUE__) == LL_RTC_WEEKDAY_WEDNESDAY) \ || ((__VALUE__) == LL_RTC_WEEKDAY_THURSDAY) \ || ((__VALUE__) == LL_RTC_WEEKDAY_FRIDAY) \ || ((__VALUE__) == LL_RTC_WEEKDAY_SATURDAY) \ || ((__VALUE__) == LL_RTC_WEEKDAY_SUNDAY)) #define IS_LL_RTC_DAY(__DAY__) (((__DAY__) >= 1U) && ((__DAY__) <= 31U)) #define IS_LL_RTC_MONTH(__MONTH__) (((__MONTH__) >= 1U) && ((__MONTH__) <= 12U)) #define IS_LL_RTC_YEAR(__YEAR__) ((__YEAR__) <= 99U) #define IS_LL_RTC_ALMA_MASK(__VALUE__) (((__VALUE__) == LL_RTC_ALMA_MASK_NONE) \ || ((__VALUE__) == LL_RTC_ALMA_MASK_DATEWEEKDAY) \ || ((__VALUE__) == LL_RTC_ALMA_MASK_HOURS) \ || ((__VALUE__) == LL_RTC_ALMA_MASK_MINUTES) \ || ((__VALUE__) == LL_RTC_ALMA_MASK_SECONDS) \ || ((__VALUE__) == LL_RTC_ALMA_MASK_ALL)) #define IS_LL_RTC_ALMB_MASK(__VALUE__) (((__VALUE__) == LL_RTC_ALMB_MASK_NONE) \ || ((__VALUE__) == LL_RTC_ALMB_MASK_DATEWEEKDAY) \ || ((__VALUE__) == LL_RTC_ALMB_MASK_HOURS) \ || ((__VALUE__) == LL_RTC_ALMB_MASK_MINUTES) \ || ((__VALUE__) == LL_RTC_ALMB_MASK_SECONDS) \ || ((__VALUE__) == LL_RTC_ALMB_MASK_ALL)) #define IS_LL_RTC_ALMA_DATE_WEEKDAY_SEL(__SEL__) (((__SEL__) == LL_RTC_ALMA_DATEWEEKDAYSEL_DATE) || \ ((__SEL__) == LL_RTC_ALMA_DATEWEEKDAYSEL_WEEKDAY)) #define IS_LL_RTC_ALMB_DATE_WEEKDAY_SEL(__SEL__) (((__SEL__) == LL_RTC_ALMB_DATEWEEKDAYSEL_DATE) || \ ((__SEL__) == LL_RTC_ALMB_DATEWEEKDAYSEL_WEEKDAY)) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup RTC_LL_Exported_Functions * @{ */ /** @addtogroup RTC_LL_EF_Init * @{ */ /** * @brief De-Initializes the RTC registers to their default reset values. * @note This function doesn't reset the RTC Clock source and RTC Backup Data * registers. * @param RTCx RTC Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC registers are de-initialized * - ERROR: RTC registers are not de-initialized */ ErrorStatus LL_RTC_DeInit(RTC_TypeDef *RTCx) { ErrorStatus status = ERROR; /* Check the parameter */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); /* Disable the write protection for RTC registers */ LL_RTC_DisableWriteProtection(RTCx); /* Set Initialization mode */ if (LL_RTC_EnterInitMode(RTCx) != ERROR) { /* Reset TR, DR and CR registers */ WRITE_REG(RTCx->TR, 0x00000000U); #if defined(RTC_WAKEUP_SUPPORT) WRITE_REG(RTCx->WUTR, RTC_WUTR_WUT); #endif /* RTC_WAKEUP_SUPPORT */ WRITE_REG(RTCx->DR, (RTC_DR_WDU_0 | RTC_DR_MU_0 | RTC_DR_DU_0)); /* Reset All CR bits except CR[2:0] */ #if defined(RTC_WAKEUP_SUPPORT) WRITE_REG(RTCx->CR, (READ_REG(RTCx->CR) & RTC_CR_WUCKSEL)); #else WRITE_REG(RTCx, CR, 0x00000000U); #endif /* RTC_WAKEUP_SUPPORT */ WRITE_REG(RTCx->PRER, (RTC_PRER_PREDIV_A | RTC_SYNCH_PRESC_DEFAULT)); WRITE_REG(RTCx->ALRMAR, 0x00000000U); WRITE_REG(RTCx->ALRMBR, 0x00000000U); WRITE_REG(RTCx->SHIFTR, 0x00000000U); WRITE_REG(RTCx->CALR, 0x00000000U); WRITE_REG(RTCx->ALRMASSR, 0x00000000U); WRITE_REG(RTCx->ALRMBSSR, 0x00000000U); /* Reset ISR register and exit initialization mode */ WRITE_REG(RTCx->ISR, 0x00000000U); /* Reset Tamper and alternate functions configuration register */ WRITE_REG(RTCx->TAMPCR, 0x00000000U); /* Reset Option register */ WRITE_REG(RTCx->OR, 0x00000000U); /* Wait till the RTC RSF flag is set */ status = LL_RTC_WaitForSynchro(RTCx); } /* Enable the write protection for RTC registers */ LL_RTC_EnableWriteProtection(RTCx); return status; } /** * @brief Initializes the RTC registers according to the specified parameters * in RTC_InitStruct. * @param RTCx RTC Instance * @param RTC_InitStruct pointer to a @ref LL_RTC_InitTypeDef structure that contains * the configuration information for the RTC peripheral. * @note The RTC Prescaler register is write protected and can be written in * initialization mode only. * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC registers are initialized * - ERROR: RTC registers are not initialized */ ErrorStatus LL_RTC_Init(RTC_TypeDef *RTCx, LL_RTC_InitTypeDef *RTC_InitStruct) { ErrorStatus status = ERROR; /* Check the parameters */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); assert_param(IS_LL_RTC_HOURFORMAT(RTC_InitStruct->HourFormat)); assert_param(IS_LL_RTC_ASYNCH_PREDIV(RTC_InitStruct->AsynchPrescaler)); assert_param(IS_LL_RTC_SYNCH_PREDIV(RTC_InitStruct->SynchPrescaler)); /* Disable the write protection for RTC registers */ LL_RTC_DisableWriteProtection(RTCx); /* Set Initialization mode */ if (LL_RTC_EnterInitMode(RTCx) != ERROR) { /* Set Hour Format */ LL_RTC_SetHourFormat(RTCx, RTC_InitStruct->HourFormat); /* Configure Synchronous and Asynchronous prescaler factor */ LL_RTC_SetSynchPrescaler(RTCx, RTC_InitStruct->SynchPrescaler); LL_RTC_SetAsynchPrescaler(RTCx, RTC_InitStruct->AsynchPrescaler); /* Exit Initialization mode */ LL_RTC_DisableInitMode(RTCx); status = SUCCESS; } /* Enable the write protection for RTC registers */ LL_RTC_EnableWriteProtection(RTCx); return status; } /** * @brief Set each @ref LL_RTC_InitTypeDef field to default value. * @param RTC_InitStruct pointer to a @ref LL_RTC_InitTypeDef structure which will be initialized. * @retval None */ void LL_RTC_StructInit(LL_RTC_InitTypeDef *RTC_InitStruct) { /* Set RTC_InitStruct fields to default values */ RTC_InitStruct->HourFormat = LL_RTC_HOURFORMAT_24HOUR; RTC_InitStruct->AsynchPrescaler = RTC_ASYNCH_PRESC_DEFAULT; RTC_InitStruct->SynchPrescaler = RTC_SYNCH_PRESC_DEFAULT; } /** * @brief Set the RTC current time. * @param RTCx RTC Instance * @param RTC_Format This parameter can be one of the following values: * @arg @ref LL_RTC_FORMAT_BIN * @arg @ref LL_RTC_FORMAT_BCD * @param RTC_TimeStruct pointer to a RTC_TimeTypeDef structure that contains * the time configuration information for the RTC. * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC Time register is configured * - ERROR: RTC Time register is not configured */ ErrorStatus LL_RTC_TIME_Init(RTC_TypeDef *RTCx, uint32_t RTC_Format, LL_RTC_TimeTypeDef *RTC_TimeStruct) { ErrorStatus status = ERROR; /* Check the parameters */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); assert_param(IS_LL_RTC_FORMAT(RTC_Format)); if (RTC_Format == LL_RTC_FORMAT_BIN) { if (LL_RTC_GetHourFormat(RTCx) != LL_RTC_HOURFORMAT_24HOUR) { assert_param(IS_LL_RTC_HOUR12(RTC_TimeStruct->Hours)); assert_param(IS_LL_RTC_TIME_FORMAT(RTC_TimeStruct->TimeFormat)); } else { RTC_TimeStruct->TimeFormat = 0x00U; assert_param(IS_LL_RTC_HOUR24(RTC_TimeStruct->Hours)); } assert_param(IS_LL_RTC_MINUTES(RTC_TimeStruct->Minutes)); assert_param(IS_LL_RTC_SECONDS(RTC_TimeStruct->Seconds)); } else { if (LL_RTC_GetHourFormat(RTCx) != LL_RTC_HOURFORMAT_24HOUR) { assert_param(IS_LL_RTC_HOUR12(__LL_RTC_CONVERT_BCD2BIN(RTC_TimeStruct->Hours))); assert_param(IS_LL_RTC_TIME_FORMAT(RTC_TimeStruct->TimeFormat)); } else { RTC_TimeStruct->TimeFormat = 0x00U; assert_param(IS_LL_RTC_HOUR24(__LL_RTC_CONVERT_BCD2BIN(RTC_TimeStruct->Hours))); } assert_param(IS_LL_RTC_MINUTES(__LL_RTC_CONVERT_BCD2BIN(RTC_TimeStruct->Minutes))); assert_param(IS_LL_RTC_SECONDS(__LL_RTC_CONVERT_BCD2BIN(RTC_TimeStruct->Seconds))); } /* Disable the write protection for RTC registers */ LL_RTC_DisableWriteProtection(RTCx); /* Set Initialization mode */ if (LL_RTC_EnterInitMode(RTCx) != ERROR) { /* Check the input parameters format */ if (RTC_Format != LL_RTC_FORMAT_BIN) { LL_RTC_TIME_Config(RTCx, RTC_TimeStruct->TimeFormat, RTC_TimeStruct->Hours, RTC_TimeStruct->Minutes, RTC_TimeStruct->Seconds); } else { LL_RTC_TIME_Config(RTCx, RTC_TimeStruct->TimeFormat, __LL_RTC_CONVERT_BIN2BCD(RTC_TimeStruct->Hours), __LL_RTC_CONVERT_BIN2BCD(RTC_TimeStruct->Minutes), __LL_RTC_CONVERT_BIN2BCD(RTC_TimeStruct->Seconds)); } /* Exit Initialization mode */ LL_RTC_DisableInitMode(RTCx); /* If RTC_CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ if (LL_RTC_IsShadowRegBypassEnabled(RTCx) == 0U) { status = LL_RTC_WaitForSynchro(RTCx); } else { status = SUCCESS; } } /* Enable the write protection for RTC registers */ LL_RTC_EnableWriteProtection(RTCx); return status; } /** * @brief Set each @ref LL_RTC_TimeTypeDef field to default value (Time = 00h:00min:00sec). * @param RTC_TimeStruct pointer to a @ref LL_RTC_TimeTypeDef structure which will be initialized. * @retval None */ void LL_RTC_TIME_StructInit(LL_RTC_TimeTypeDef *RTC_TimeStruct) { /* Time = 00h:00min:00sec */ RTC_TimeStruct->TimeFormat = LL_RTC_TIME_FORMAT_AM_OR_24; RTC_TimeStruct->Hours = 0U; RTC_TimeStruct->Minutes = 0U; RTC_TimeStruct->Seconds = 0U; } /** * @brief Set the RTC current date. * @param RTCx RTC Instance * @param RTC_Format This parameter can be one of the following values: * @arg @ref LL_RTC_FORMAT_BIN * @arg @ref LL_RTC_FORMAT_BCD * @param RTC_DateStruct pointer to a RTC_DateTypeDef structure that contains * the date configuration information for the RTC. * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC Day register is configured * - ERROR: RTC Day register is not configured */ ErrorStatus LL_RTC_DATE_Init(RTC_TypeDef *RTCx, uint32_t RTC_Format, LL_RTC_DateTypeDef *RTC_DateStruct) { ErrorStatus status = ERROR; /* Check the parameters */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); assert_param(IS_LL_RTC_FORMAT(RTC_Format)); if ((RTC_Format == LL_RTC_FORMAT_BIN) && ((RTC_DateStruct->Month & 0x10U) == 0x10U)) { RTC_DateStruct->Month = (RTC_DateStruct->Month & (uint8_t)~(0x10U)) + 0x0AU; } if (RTC_Format == LL_RTC_FORMAT_BIN) { assert_param(IS_LL_RTC_YEAR(RTC_DateStruct->Year)); assert_param(IS_LL_RTC_MONTH(RTC_DateStruct->Month)); assert_param(IS_LL_RTC_DAY(RTC_DateStruct->Day)); } else { assert_param(IS_LL_RTC_YEAR(__LL_RTC_CONVERT_BCD2BIN(RTC_DateStruct->Year))); assert_param(IS_LL_RTC_MONTH(__LL_RTC_CONVERT_BCD2BIN(RTC_DateStruct->Month))); assert_param(IS_LL_RTC_DAY(__LL_RTC_CONVERT_BCD2BIN(RTC_DateStruct->Day))); } assert_param(IS_LL_RTC_WEEKDAY(RTC_DateStruct->WeekDay)); /* Disable the write protection for RTC registers */ LL_RTC_DisableWriteProtection(RTCx); /* Set Initialization mode */ if (LL_RTC_EnterInitMode(RTCx) != ERROR) { /* Check the input parameters format */ if (RTC_Format != LL_RTC_FORMAT_BIN) { LL_RTC_DATE_Config(RTCx, RTC_DateStruct->WeekDay, RTC_DateStruct->Day, RTC_DateStruct->Month, RTC_DateStruct->Year); } else { LL_RTC_DATE_Config(RTCx, RTC_DateStruct->WeekDay, __LL_RTC_CONVERT_BIN2BCD(RTC_DateStruct->Day), __LL_RTC_CONVERT_BIN2BCD(RTC_DateStruct->Month), __LL_RTC_CONVERT_BIN2BCD(RTC_DateStruct->Year)); } /* Exit Initialization mode */ LL_RTC_DisableInitMode(RTCx); /* If RTC_CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ if (LL_RTC_IsShadowRegBypassEnabled(RTCx) == 0U) { status = LL_RTC_WaitForSynchro(RTCx); } else { status = SUCCESS; } } /* Enable the write protection for RTC registers */ LL_RTC_EnableWriteProtection(RTCx); return status; } /** * @brief Set each @ref LL_RTC_DateTypeDef field to default value (date = Monday, January 01 xx00) * @param RTC_DateStruct pointer to a @ref LL_RTC_DateTypeDef structure which will be initialized. * @retval None */ void LL_RTC_DATE_StructInit(LL_RTC_DateTypeDef *RTC_DateStruct) { /* Monday, January 01 xx00 */ RTC_DateStruct->WeekDay = LL_RTC_WEEKDAY_MONDAY; RTC_DateStruct->Day = 1U; RTC_DateStruct->Month = LL_RTC_MONTH_JANUARY; RTC_DateStruct->Year = 0U; } /** * @brief Set the RTC Alarm A. * @note The Alarm register can only be written when the corresponding Alarm * is disabled (Use @ref LL_RTC_ALMA_Disable function). * @param RTCx RTC Instance * @param RTC_Format This parameter can be one of the following values: * @arg @ref LL_RTC_FORMAT_BIN * @arg @ref LL_RTC_FORMAT_BCD * @param RTC_AlarmStruct pointer to a @ref LL_RTC_AlarmTypeDef structure that * contains the alarm configuration parameters. * @retval An ErrorStatus enumeration value: * - SUCCESS: ALARMA registers are configured * - ERROR: ALARMA registers are not configured */ ErrorStatus LL_RTC_ALMA_Init(RTC_TypeDef *RTCx, uint32_t RTC_Format, LL_RTC_AlarmTypeDef *RTC_AlarmStruct) { /* Check the parameters */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); assert_param(IS_LL_RTC_FORMAT(RTC_Format)); assert_param(IS_LL_RTC_ALMA_MASK(RTC_AlarmStruct->AlarmMask)); assert_param(IS_LL_RTC_ALMA_DATE_WEEKDAY_SEL(RTC_AlarmStruct->AlarmDateWeekDaySel)); if (RTC_Format == LL_RTC_FORMAT_BIN) { if (LL_RTC_GetHourFormat(RTCx) != LL_RTC_HOURFORMAT_24HOUR) { assert_param(IS_LL_RTC_HOUR12(RTC_AlarmStruct->AlarmTime.Hours)); assert_param(IS_LL_RTC_TIME_FORMAT(RTC_AlarmStruct->AlarmTime.TimeFormat)); } else { RTC_AlarmStruct->AlarmTime.TimeFormat = 0x00U; assert_param(IS_LL_RTC_HOUR24(RTC_AlarmStruct->AlarmTime.Hours)); } assert_param(IS_LL_RTC_MINUTES(RTC_AlarmStruct->AlarmTime.Minutes)); assert_param(IS_LL_RTC_SECONDS(RTC_AlarmStruct->AlarmTime.Seconds)); if (RTC_AlarmStruct->AlarmDateWeekDaySel == LL_RTC_ALMA_DATEWEEKDAYSEL_DATE) { assert_param(IS_LL_RTC_DAY(RTC_AlarmStruct->AlarmDateWeekDay)); } else { assert_param(IS_LL_RTC_WEEKDAY(RTC_AlarmStruct->AlarmDateWeekDay)); } } else { if (LL_RTC_GetHourFormat(RTCx) != LL_RTC_HOURFORMAT_24HOUR) { assert_param(IS_LL_RTC_HOUR12(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Hours))); assert_param(IS_LL_RTC_TIME_FORMAT(RTC_AlarmStruct->AlarmTime.TimeFormat)); } else { RTC_AlarmStruct->AlarmTime.TimeFormat = 0x00U; assert_param(IS_LL_RTC_HOUR24(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Hours))); } assert_param(IS_LL_RTC_MINUTES(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Minutes))); assert_param(IS_LL_RTC_SECONDS(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Seconds))); if (RTC_AlarmStruct->AlarmDateWeekDaySel == LL_RTC_ALMA_DATEWEEKDAYSEL_DATE) { assert_param(IS_LL_RTC_DAY(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmDateWeekDay))); } else { assert_param(IS_LL_RTC_WEEKDAY(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmDateWeekDay))); } } /* Disable the write protection for RTC registers */ LL_RTC_DisableWriteProtection(RTCx); /* Select weekday selection */ if (RTC_AlarmStruct->AlarmDateWeekDaySel == LL_RTC_ALMA_DATEWEEKDAYSEL_DATE) { /* Set the date for ALARM */ LL_RTC_ALMA_DisableWeekday(RTCx); if (RTC_Format != LL_RTC_FORMAT_BIN) { LL_RTC_ALMA_SetDay(RTCx, RTC_AlarmStruct->AlarmDateWeekDay); } else { LL_RTC_ALMA_SetDay(RTCx, __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmDateWeekDay)); } } else { /* Set the week day for ALARM */ LL_RTC_ALMA_EnableWeekday(RTCx); LL_RTC_ALMA_SetWeekDay(RTCx, RTC_AlarmStruct->AlarmDateWeekDay); } /* Configure the Alarm register */ if (RTC_Format != LL_RTC_FORMAT_BIN) { LL_RTC_ALMA_ConfigTime(RTCx, RTC_AlarmStruct->AlarmTime.TimeFormat, RTC_AlarmStruct->AlarmTime.Hours, RTC_AlarmStruct->AlarmTime.Minutes, RTC_AlarmStruct->AlarmTime.Seconds); } else { LL_RTC_ALMA_ConfigTime(RTCx, RTC_AlarmStruct->AlarmTime.TimeFormat, __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Hours), __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Minutes), __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Seconds)); } /* Set ALARM mask */ LL_RTC_ALMA_SetMask(RTCx, RTC_AlarmStruct->AlarmMask); /* Enable the write protection for RTC registers */ LL_RTC_EnableWriteProtection(RTCx); return SUCCESS; } /** * @brief Set the RTC Alarm B. * @note The Alarm register can only be written when the corresponding Alarm * is disabled (@ref LL_RTC_ALMB_Disable function). * @param RTCx RTC Instance * @param RTC_Format This parameter can be one of the following values: * @arg @ref LL_RTC_FORMAT_BIN * @arg @ref LL_RTC_FORMAT_BCD * @param RTC_AlarmStruct pointer to a @ref LL_RTC_AlarmTypeDef structure that * contains the alarm configuration parameters. * @retval An ErrorStatus enumeration value: * - SUCCESS: ALARMB registers are configured * - ERROR: ALARMB registers are not configured */ ErrorStatus LL_RTC_ALMB_Init(RTC_TypeDef *RTCx, uint32_t RTC_Format, LL_RTC_AlarmTypeDef *RTC_AlarmStruct) { /* Check the parameters */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); assert_param(IS_LL_RTC_FORMAT(RTC_Format)); assert_param(IS_LL_RTC_ALMB_MASK(RTC_AlarmStruct->AlarmMask)); assert_param(IS_LL_RTC_ALMB_DATE_WEEKDAY_SEL(RTC_AlarmStruct->AlarmDateWeekDaySel)); if (RTC_Format == LL_RTC_FORMAT_BIN) { if (LL_RTC_GetHourFormat(RTCx) != LL_RTC_HOURFORMAT_24HOUR) { assert_param(IS_LL_RTC_HOUR12(RTC_AlarmStruct->AlarmTime.Hours)); assert_param(IS_LL_RTC_TIME_FORMAT(RTC_AlarmStruct->AlarmTime.TimeFormat)); } else { RTC_AlarmStruct->AlarmTime.TimeFormat = 0x00U; assert_param(IS_LL_RTC_HOUR24(RTC_AlarmStruct->AlarmTime.Hours)); } assert_param(IS_LL_RTC_MINUTES(RTC_AlarmStruct->AlarmTime.Minutes)); assert_param(IS_LL_RTC_SECONDS(RTC_AlarmStruct->AlarmTime.Seconds)); if (RTC_AlarmStruct->AlarmDateWeekDaySel == LL_RTC_ALMB_DATEWEEKDAYSEL_DATE) { assert_param(IS_LL_RTC_DAY(RTC_AlarmStruct->AlarmDateWeekDay)); } else { assert_param(IS_LL_RTC_WEEKDAY(RTC_AlarmStruct->AlarmDateWeekDay)); } } else { if (LL_RTC_GetHourFormat(RTCx) != LL_RTC_HOURFORMAT_24HOUR) { assert_param(IS_LL_RTC_HOUR12(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Hours))); assert_param(IS_LL_RTC_TIME_FORMAT(RTC_AlarmStruct->AlarmTime.TimeFormat)); } else { RTC_AlarmStruct->AlarmTime.TimeFormat = 0x00U; assert_param(IS_LL_RTC_HOUR24(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Hours))); } assert_param(IS_LL_RTC_MINUTES(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Minutes))); assert_param(IS_LL_RTC_SECONDS(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Seconds))); if (RTC_AlarmStruct->AlarmDateWeekDaySel == LL_RTC_ALMB_DATEWEEKDAYSEL_DATE) { assert_param(IS_LL_RTC_DAY(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmDateWeekDay))); } else { assert_param(IS_LL_RTC_WEEKDAY(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmDateWeekDay))); } } /* Disable the write protection for RTC registers */ LL_RTC_DisableWriteProtection(RTCx); /* Select weekday selection */ if (RTC_AlarmStruct->AlarmDateWeekDaySel == LL_RTC_ALMB_DATEWEEKDAYSEL_DATE) { /* Set the date for ALARM */ LL_RTC_ALMB_DisableWeekday(RTCx); if (RTC_Format != LL_RTC_FORMAT_BIN) { LL_RTC_ALMB_SetDay(RTCx, RTC_AlarmStruct->AlarmDateWeekDay); } else { LL_RTC_ALMB_SetDay(RTCx, __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmDateWeekDay)); } } else { /* Set the week day for ALARM */ LL_RTC_ALMB_EnableWeekday(RTCx); LL_RTC_ALMB_SetWeekDay(RTCx, RTC_AlarmStruct->AlarmDateWeekDay); } /* Configure the Alarm register */ if (RTC_Format != LL_RTC_FORMAT_BIN) { LL_RTC_ALMB_ConfigTime(RTCx, RTC_AlarmStruct->AlarmTime.TimeFormat, RTC_AlarmStruct->AlarmTime.Hours, RTC_AlarmStruct->AlarmTime.Minutes, RTC_AlarmStruct->AlarmTime.Seconds); } else { LL_RTC_ALMB_ConfigTime(RTCx, RTC_AlarmStruct->AlarmTime.TimeFormat, __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Hours), __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Minutes), __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Seconds)); } /* Set ALARM mask */ LL_RTC_ALMB_SetMask(RTCx, RTC_AlarmStruct->AlarmMask); /* Enable the write protection for RTC registers */ LL_RTC_EnableWriteProtection(RTCx); return SUCCESS; } /** * @brief Set each @ref LL_RTC_AlarmTypeDef of ALARMA field to default value (Time = 00h:00mn:00sec / * Day = 1st day of the month/Mask = all fields are masked). * @param RTC_AlarmStruct pointer to a @ref LL_RTC_AlarmTypeDef structure which will be initialized. * @retval None */ void LL_RTC_ALMA_StructInit(LL_RTC_AlarmTypeDef *RTC_AlarmStruct) { /* Alarm Time Settings : Time = 00h:00mn:00sec */ RTC_AlarmStruct->AlarmTime.TimeFormat = LL_RTC_ALMA_TIME_FORMAT_AM; RTC_AlarmStruct->AlarmTime.Hours = 0U; RTC_AlarmStruct->AlarmTime.Minutes = 0U; RTC_AlarmStruct->AlarmTime.Seconds = 0U; /* Alarm Day Settings : Day = 1st day of the month */ RTC_AlarmStruct->AlarmDateWeekDaySel = LL_RTC_ALMA_DATEWEEKDAYSEL_DATE; RTC_AlarmStruct->AlarmDateWeekDay = 1U; /* Alarm Masks Settings : Mask = all fields are not masked */ RTC_AlarmStruct->AlarmMask = LL_RTC_ALMA_MASK_NONE; } /** * @brief Set each @ref LL_RTC_AlarmTypeDef of ALARMA field to default value (Time = 00h:00mn:00sec / * Day = 1st day of the month/Mask = all fields are masked). * @param RTC_AlarmStruct pointer to a @ref LL_RTC_AlarmTypeDef structure which will be initialized. * @retval None */ void LL_RTC_ALMB_StructInit(LL_RTC_AlarmTypeDef *RTC_AlarmStruct) { /* Alarm Time Settings : Time = 00h:00mn:00sec */ RTC_AlarmStruct->AlarmTime.TimeFormat = LL_RTC_ALMB_TIME_FORMAT_AM; RTC_AlarmStruct->AlarmTime.Hours = 0U; RTC_AlarmStruct->AlarmTime.Minutes = 0U; RTC_AlarmStruct->AlarmTime.Seconds = 0U; /* Alarm Day Settings : Day = 1st day of the month */ RTC_AlarmStruct->AlarmDateWeekDaySel = LL_RTC_ALMB_DATEWEEKDAYSEL_DATE; RTC_AlarmStruct->AlarmDateWeekDay = 1U; /* Alarm Masks Settings : Mask = all fields are not masked */ RTC_AlarmStruct->AlarmMask = LL_RTC_ALMB_MASK_NONE; } /** * @brief Enters the RTC Initialization mode. * @note The RTC Initialization mode is write protected, use the * @ref LL_RTC_DisableWriteProtection before calling this function. * @param RTCx RTC Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC is in Init mode * - ERROR: RTC is not in Init mode */ ErrorStatus LL_RTC_EnterInitMode(RTC_TypeDef *RTCx) { __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; ErrorStatus status = SUCCESS; uint32_t tmp; /* Check the parameter */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); /* Check if the Initialization mode is set */ if (LL_RTC_IsActiveFlag_INIT(RTCx) == 0U) { /* Set the Initialization mode */ LL_RTC_EnableInitMode(RTCx); /* Wait till RTC is in INIT state and if Time out is reached exit */ tmp = LL_RTC_IsActiveFlag_INIT(RTCx); while ((timeout != 0U) && (tmp != 1U)) { if (LL_SYSTICK_IsActiveCounterFlag() == 1U) { timeout --; } tmp = LL_RTC_IsActiveFlag_INIT(RTCx); if (timeout == 0U) { status = ERROR; } } } return status; } /** * @brief Exit the RTC Initialization mode. * @note When the initialization sequence is complete, the calendar restarts * counting after 4 RTCCLK cycles. * @note The RTC Initialization mode is write protected, use the * @ref LL_RTC_DisableWriteProtection before calling this function. * @param RTCx RTC Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC exited from in Init mode * - ERROR: Not applicable */ ErrorStatus LL_RTC_ExitInitMode(RTC_TypeDef *RTCx) { /* Check the parameter */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); /* Disable initialization mode */ LL_RTC_DisableInitMode(RTCx); return SUCCESS; } /** * @brief Waits until the RTC Time and Day registers (RTC_TR and RTC_DR) are * synchronized with RTC APB clock. * @note The RTC Resynchronization mode is write protected, use the * @ref LL_RTC_DisableWriteProtection before calling this function. * @note To read the calendar through the shadow registers after Calendar * initialization, calendar update or after wakeup from low power modes * the software must first clear the RSF flag. * The software must then wait until it is set again before reading * the calendar, which means that the calendar registers have been * correctly copied into the RTC_TR and RTC_DR shadow registers. * @param RTCx RTC Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: RTC registers are synchronised * - ERROR: RTC registers are not synchronised */ ErrorStatus LL_RTC_WaitForSynchro(RTC_TypeDef *RTCx) { __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; ErrorStatus status = SUCCESS; uint32_t tmp; /* Check the parameter */ assert_param(IS_RTC_ALL_INSTANCE(RTCx)); /* Clear RSF flag */ LL_RTC_ClearFlag_RS(RTCx); /* Wait the registers to be synchronised */ tmp = LL_RTC_IsActiveFlag_RS(RTCx); while ((timeout != 0U) && (tmp != 0U)) { if (LL_SYSTICK_IsActiveCounterFlag() == 1U) { timeout--; } tmp = LL_RTC_IsActiveFlag_RS(RTCx); if (timeout == 0U) { status = ERROR; } } if (status != ERROR) { timeout = RTC_SYNCHRO_TIMEOUT; tmp = LL_RTC_IsActiveFlag_RS(RTCx); while ((timeout != 0U) && (tmp != 1U)) { if (LL_SYSTICK_IsActiveCounterFlag() == 1U) { timeout--; } tmp = LL_RTC_IsActiveFlag_RS(RTCx); if (timeout == 0U) { status = ERROR; } } } return (status); } /** * @} */ /** * @} */ /** * @} */ #endif /* defined(RTC) */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/21129.c
#include <stdlib.h> #include <string.h> #include <math.h> #include <stdint.h> union Entry { int missing; float fvalue; int qvalue; }; size_t get_num_output_group(void) { return 1; } size_t get_num_feature(void) { return 127; } static inline float pred_transform(float margin) { const float alpha = (float)1; return 1.0f / (1 + expf(-alpha * margin)); } float predict(union Entry* data, int pred_margin) { float sum = 0.0f; if (!(data[29].missing != -1) || (data[29].fvalue < -9.5367432e-07)) { if (!(data[56].missing != -1) || (data[56].fvalue < -9.5367432e-07)) { if (!(data[60].missing != -1) || (data[60].fvalue < -9.5367432e-07)) { sum += (float)1.8989965; } else { sum += (float)-1.9473684; } } else { if (!(data[21].missing != -1) || (data[21].fvalue < -9.5367432e-07)) { sum += (float)1.7837838; } else { sum += (float)-1.981352; } } } else { if (!(data[109].missing != -1) || (data[109].fvalue < -9.5367432e-07)) { if (!(data[67].missing != -1) || (data[67].fvalue < -9.5367432e-07)) { sum += (float)-1.9854598; } else { sum += (float)0.93877554; } } else { sum += (float)1.8709677; } } if (!(data[29].missing != -1) || (data[29].fvalue < -9.5367432e-07)) { if (!(data[21].missing != -1) || (data[21].fvalue < -9.5367432e-07)) { sum += (float)1.1460791; } else { if (!(data[36].missing != -1) || (data[36].fvalue < -9.5367432e-07)) { sum += (float)-6.8799467; } else { sum += (float)-0.10659159; } } } else { if (!(data[109].missing != -1) || (data[109].fvalue < -9.5367432e-07)) { if (!(data[39].missing != -1) || (data[39].fvalue < -9.5367432e-07)) { sum += (float)-0.093065776; } else { sum += (float)-1.1526121; } } else { sum += (float)1.0042307; } } sum = sum + (float)(-0); if (!pred_margin) { return pred_transform(sum); } else { return sum; } }
the_stack_data/129498.c
// RUN: %clang_cc1 -verify -fsyntax-only -Wstring-conversion %s #define assert(EXPR) (void)(EXPR); // Expection for common assert form. void test1() { assert(0 && "foo"); assert("foo" && 0); assert(0 || "foo"); // expected-warning {{string literal}} } void test2() { if ("hi") {} // expected-warning {{string literal}} while ("hello") {} // expected-warning {{string literal}} for (;"howdy";) {} // expected-warning {{string literal}} do { } while ("hey"); // expected-warning {{string literal}} }
the_stack_data/182951715.c
/*- * Copyright (c) 1980 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)h_mod.c 5.2 (Berkeley) 04/12/91"; #endif /* not lint */ short h_mod(a,b) short *a, *b; { return( *a % *b); }
the_stack_data/128710.c
// File name: ExtremeC_exampels_chapter2_1.c // Description: Example 2.1 int main(int argc, char** argv) { return 0; }
the_stack_data/159514431.c
/*- * Copyright (c) 2008 Isilon Inc http://www.isilon.com/ * Authors: Doug Rabson <[email protected]> * Developed with Red Inc: Alfred Perlstein <[email protected]> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD: src/tools/regression/file/flock/flock.c,v 1.3 2008/06/26 10:21:54 dfr Exp $ */ #include <sys/time.h> #ifdef __FreeBSD__ #include <sys/mount.h> #endif #include <sys/stat.h> #include <sys/wait.h> #include <err.h> #include <errno.h> #include <fcntl.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #ifdef __FreeBSD__ #if __FreeBSD_version >= 800028 #define HAVE_SYSID #endif #include <sys/cdefs.h> #else #ifndef __unused #define __unused #endif #endif int verbose = 0; static int make_file(const char *pathname, off_t sz) { struct stat st; const char *template = "/flocktempXXXXXX"; size_t len; char *filename; int fd; if (stat(pathname, &st) == 0) { if (S_ISREG(st.st_mode)) { fd = open(pathname, O_RDWR); if (fd < 0) err(1, "open(%s)", pathname); if (ftruncate(fd, sz) < 0) err(1, "ftruncate"); return (fd); } } len = strlen(pathname) + strlen(template) + 1; filename = malloc(len); snprintf(filename, len, "%s%s", pathname, template); fd = mkstemp(filename); if (fd < 0) err(1, "mkstemp"); if (ftruncate(fd, sz) < 0) err(1, "ftruncate"); if (unlink(filename) < 0) err(1, "unlink"); free(filename); return (fd); } static void ignore_alarm(int __unused sig) { } static int safe_waitpid(pid_t pid) { int save_errno; int status; save_errno = errno; errno = 0; while (waitpid(pid, &status, 0) != pid) { if (errno == EINTR) continue; err(1, "waitpid"); } errno = save_errno; return (status); } static int safe_kill(pid_t pid, int sig) { int save_errno; int status; save_errno = errno; errno = 0; status = kill(pid, sig); errno = save_errno; return (status); } #define FAIL(test) \ do { \ if (test) { \ if (verbose) printf("FAIL (%s)\n", #test); \ return -1; \ } \ } while (0) #define SUCCEED \ do { if (verbose) printf("SUCCEED\n"); return 0; } while (0) /* * Test 1 - F_GETLK on unlocked region * * If no lock is found that would prevent this lock from being * created, the structure is left unchanged by this function call * except for the lock type which is set to F_UNLCK. */ static int test1(int fd, __unused int argc, const __unused char **argv) { struct flock fl1, fl2; memset(&fl1, 1, sizeof(fl1)); fl1.l_type = F_WRLCK; fl1.l_whence = SEEK_SET; fl2 = fl1; if (fcntl(fd, F_GETLK, &fl1) < 0) err(1, "F_GETLK"); if (verbose) printf("1 - F_GETLK on unlocked region: "); FAIL(fl1.l_start != fl2.l_start); FAIL(fl1.l_len != fl2.l_len); FAIL(fl1.l_pid != fl2.l_pid); FAIL(fl1.l_type != F_UNLCK); FAIL(fl1.l_whence != fl2.l_whence); #ifdef HAVE_SYSID FAIL(fl1.l_sysid != fl2.l_sysid); #endif SUCCEED; } /* * Test 2 - F_SETLK on locked region * * If a shared or exclusive lock cannot be set, fcntl returns * immediately with EACCES or EAGAIN. */ static int test2(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should return -1 with errno set to either EACCES or * EAGAIN. */ if (verbose) printf("2 - F_SETLK on locked region: "); res = fcntl(fd, F_SETLK, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(res == 0); FAIL(errno != EACCES && errno != EAGAIN); SUCCEED; } /* * Test 3 - F_SETLKW on locked region * * If a shared or exclusive lock is blocked by other locks, the * process waits until the request can be satisfied. * * XXX this test hangs on FreeBSD NFS filesystems due to limitations * in FreeBSD's client (and server) lockd implementation. */ static int test3(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should wait until the alarm and then return -1 with * errno set to EINTR. */ if (verbose) printf("3 - F_SETLKW on locked region: "); alarm(1); res = fcntl(fd, F_SETLKW, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(res == 0); FAIL(errno != EINTR); SUCCEED; } /* * Test 4 - F_GETLK on locked region * * Get the first lock that blocks the lock. */ static int test4(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 99; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should return a lock structure reflecting the lock we * made in the child process. */ if (fcntl(fd, F_GETLK, &fl) < 0) err(1, "F_GETLK"); if (verbose) printf("4 - F_GETLK on locked region: "); FAIL(fl.l_start != 0); FAIL(fl.l_len != 99); FAIL(fl.l_type != F_WRLCK); FAIL(fl.l_pid != pid); #ifdef HAVE_SYSID FAIL(fl.l_sysid != 0); #endif safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); SUCCEED; } /* * Test 5 - F_SETLKW simple deadlock * * If a blocking shared lock request would cause a deadlock (i.e. the * lock request is blocked by a process which is itself blocked on a * lock currently owned by the process making the new request), * EDEADLK is returned. */ static int test5(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. Because our test relies on the child process being * blocked on the parent's lock, we can't easily use a pipe to * synchronize so we just sleep in the parent to given the * child a chance to setup. * * To create the deadlock condition, we arrange for the parent * to lock the first byte of the file and the child to lock * the second byte. After locking the second byte, the child * will attempt to lock the first byte of the file, and * block. The parent will then attempt to lock the second byte * (owned by the child) which should cause deadlock. */ int pid; struct flock fl; int res; /* * Lock the first byte in the parent. */ fl.l_start = 0; fl.l_len = 1; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK 1 (parent)"); pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * Lock the second byte in the child and then block on * the parent's lock. */ fl.l_start = 1; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); fl.l_start = 0; if (fcntl(fd, F_SETLKW, &fl) < 0) err(1, "F_SETLKW (child)"); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ sleep(1); /* * fcntl should immediately return -1 with errno set to * EDEADLK. If the alarm fires, we failed to detect the * deadlock. */ alarm(1); if (verbose) printf("5 - F_SETLKW simple deadlock: "); fl.l_start = 1; res = fcntl(fd, F_SETLKW, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); FAIL(res == 0); FAIL(errno != EDEADLK); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_UNLCK; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_UNLCK"); /* * Cancel the alarm to avoid confusing later tests. */ alarm(0); SUCCEED; } /* * Test 6 - F_SETLKW complex deadlock. * * This test involves three process, P, C1 and C2. We set things up so * that P locks byte zero, C1 locks byte 1 and C2 locks byte 2. We * also block C2 by attempting to lock byte zero. Lastly, P attempts * to lock a range including byte 1 and 2. This represents a deadlock * (due to C2's blocking attempt to lock byte zero). */ static int test6(int fd, __unused int argc, const __unused char **argv) { /* * Because our test relies on the child process being blocked * on the parent's lock, we can't easily use a pipe to * synchronize so we just sleep in the parent to given the * children a chance to setup. */ int pid1, pid2; struct flock fl; int res; /* * Lock the first byte in the parent. */ fl.l_start = 0; fl.l_len = 1; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK 1 (parent)"); pid1 = fork(); if (pid1 < 0) err(1, "fork"); if (pid1 == 0) { /* * C1 * Lock the second byte in the child and then sleep */ fl.l_start = 1; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child1)"); pause(); exit(0); } pid2 = fork(); if (pid2 < 0) err(1, "fork"); if (pid2 == 0) { /* * C2 * Lock the third byte in the child and then block on * the parent's lock. */ fl.l_start = 2; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child2)"); fl.l_start = 0; if (fcntl(fd, F_SETLKW, &fl) < 0) err(1, "F_SETLKW (child2)"); exit(0); } /* * Wait until the children have set their locks and then * perform the test. */ sleep(1); /* * fcntl should immediately return -1 with errno set to * EDEADLK. If the alarm fires, we failed to detect the * deadlock. */ alarm(1); if (verbose) printf("6 - F_SETLKW complex deadlock: "); fl.l_start = 1; fl.l_len = 2; res = fcntl(fd, F_SETLKW, &fl); safe_kill(pid1, SIGTERM); safe_waitpid(pid1); safe_kill(pid2, SIGTERM); safe_waitpid(pid2); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_UNLCK; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_UNLCK"); FAIL(res == 0); FAIL(errno != EDEADLK); /* * Cancel the alarm to avoid confusing later tests. */ alarm(0); SUCCEED; } /* * Test 7 - F_SETLK shared lock on exclusive locked region * * If a shared or exclusive lock cannot be set, fcntl returns * immediately with EACCES or EAGAIN. */ static int test7(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should wait until the alarm and then return -1 with * errno set to EINTR. */ if (verbose) printf("7 - F_SETLK shared lock on exclusive locked region: "); fl.l_type = F_RDLCK; res = fcntl(fd, F_SETLK, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(res == 0); FAIL(errno != EACCES && errno != EAGAIN); SUCCEED; } /* * Test 8 - F_SETLK shared lock on share locked region * * When a shared lock is set on a segment of a file, other processes * shall be able to set shared locks on that segment or a portion of * it. */ static int test8(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_RDLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should wait until the alarm and then return -1 with * errno set to EINTR. */ if (verbose) printf("8 - F_SETLK shared lock on share locked region: "); fl.l_type = F_RDLCK; res = fcntl(fd, F_SETLK, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_UNLCK; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_UNLCK"); FAIL(res != 0); SUCCEED; } /* * Test 9 - F_SETLK exclusive lock on share locked region * * If a shared or exclusive lock cannot be set, fcntl returns * immediately with EACCES or EAGAIN. */ static int test9(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_RDLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should wait until the alarm and then return -1 with * errno set to EINTR. */ if (verbose) printf("9 - F_SETLK exclusive lock on share locked region: "); fl.l_type = F_WRLCK; res = fcntl(fd, F_SETLK, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(res == 0); FAIL(errno != EACCES && errno != EAGAIN); SUCCEED; } /* * Test 10 - trying to set bogus pid or sysid values * * The l_pid and l_sysid fields are only used with F_GETLK to return * the process ID of the process holding a blocking lock and the * system ID of the system that owns that process */ static int test10(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; fl.l_pid = 9999; #ifdef HAVE_SYSID fl.l_sysid = 9999; #endif pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); if (verbose) printf("10 - trying to set bogus pid or sysid values: "); if (fcntl(fd, F_GETLK, &fl) < 0) err(1, "F_GETLK"); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(fl.l_pid != pid); #ifdef HAVE_SYSID FAIL(fl.l_sysid != 0); #endif SUCCEED; } /* * Test 11 - remote locks * * XXX temporary interface which will be removed when the kernel lockd * is added. */ static int test11(int fd, __unused int argc, const __unused char **argv) { #ifdef F_SETLK_REMOTE struct flock fl; int res; if (geteuid() != 0) return 0; fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; fl.l_pid = 9999; fl.l_sysid = 1001; if (verbose) printf("11 - remote locks: "); res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res != 0); fl.l_sysid = 1002; res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res == 0); FAIL(errno != EACCES && errno != EAGAIN); res = fcntl(fd, F_GETLK, &fl); FAIL(res != 0); FAIL(fl.l_pid != 9999); FAIL(fl.l_sysid != 1001); fl.l_type = F_UNLCK; fl.l_sysid = 1001; fl.l_start = 0; fl.l_len = 0; res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res != 0); fl.l_pid = 1234; fl.l_sysid = 1001; fl.l_start = 0; fl.l_len = 1; fl.l_whence = SEEK_SET; fl.l_type = F_RDLCK; res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res != 0); fl.l_sysid = 1002; res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res != 0); fl.l_type = F_UNLCKSYS; fl.l_sysid = 1001; res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res != 0); fl.l_type = F_WRLCK; res = fcntl(fd, F_GETLK, &fl); FAIL(res != 0); FAIL(fl.l_pid != 1234); FAIL(fl.l_sysid != 1002); fl.l_type = F_UNLCKSYS; fl.l_sysid = 1002; res = fcntl(fd, F_SETLK_REMOTE, &fl); FAIL(res != 0); SUCCEED; #else return 0; #endif } /* * Test 12 - F_SETLKW on locked region which is then unlocked * * If a shared or exclusive lock is blocked by other locks, the * process waits until the request can be satisfied. */ static int test12(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int pid; int pfd[2]; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); sleep(1); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); /* * fcntl should wait until the alarm and then return -1 with * errno set to EINTR. */ if (verbose) printf("12 - F_SETLKW on locked region which is then unlocked: "); //alarm(1); res = fcntl(fd, F_SETLKW, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(res != 0); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_UNLCK; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_UNLCK"); SUCCEED; } /* * Test 13 - F_SETLKW on locked region, race with owner * * If a shared or exclusive lock is blocked by other locks, the * process waits until the request can be satisfied. */ static int test13(int fd, __unused int argc, const __unused char **argv) { /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. */ int i; int pid; int pfd[2]; struct flock fl; char ch; int res; struct itimerval itv; if (verbose) printf("13 - F_SETLKW on locked region, race with owner: "); fflush(stdout); for (i = 0; i < 100; i++) { if (pipe(pfd) < 0) err(1, "pipe"); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a write lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_SETLK (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); sleep(1); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ while (read(pfd[0], &ch, 1) != 1) { if (errno == EINTR) continue; err(1, "reading from pipe (child)"); } /* * fcntl should wait until the alarm and then return -1 with * errno set to EINTR. */ itv.it_interval.tv_sec = 0; itv.it_interval.tv_usec = 0; itv.it_value.tv_sec = 0; itv.it_value.tv_usec = 2; setitimer(ITIMER_REAL, &itv, NULL); res = fcntl(fd, F_SETLKW, &fl); safe_kill(pid, SIGTERM); safe_waitpid(pid); close(pfd[0]); close(pfd[1]); FAIL(!(res == 0 || (res == -1 && errno == EINTR))); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_UNLCK; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "F_UNLCK"); } SUCCEED; } /* * Test 14 - soak test */ static int test14(int fd, int argc, const char **argv) { #define CHILD_COUNT 20 /* * We create a set of child processes and let each one run * through a random sequence of locks and unlocks. */ int i, j, id, id_base; int pids[CHILD_COUNT], pid; char buf[128]; char tbuf[128]; int map[128]; char outbuf[512]; struct flock fl; struct itimerval itv; int status; id_base = 0; if (argc >= 2) id_base = strtol(argv[1], NULL, 0); if (verbose) printf("14 - soak test: "); fflush(stdout); for (i = 0; i < 128; i++) map[i] = F_UNLCK; for (i = 0; i < CHILD_COUNT; i++) { pid = fork(); if (pid < 0) err(1, "fork"); if (pid) { /* * Parent - record the pid and continue. */ pids[i] = pid; continue; } /* * Child - do some work and exit. */ id = id_base + i; srandom(getpid()); for (j = 0; j < 50; j++) { int start, end, len; int set, wrlock; do { start = random() & 127; end = random() & 127; } while (end <= start); set = random() & 1; wrlock = random() & 1; len = end - start; fl.l_start = start; fl.l_len = len; fl.l_whence = SEEK_SET; if (set) fl.l_type = wrlock ? F_WRLCK : F_RDLCK; else fl.l_type = F_UNLCK; itv.it_interval.tv_sec = 0; itv.it_interval.tv_usec = 0; itv.it_value.tv_sec = 0; itv.it_value.tv_usec = 3000; setitimer(ITIMER_REAL, &itv, NULL); if (fcntl(fd, F_SETLKW, &fl) < 0) { if (errno == EDEADLK || errno == EINTR) { if (verbose) { snprintf(outbuf, sizeof(outbuf), "%d[%d]: %s [%d .. %d] %s\n", id, j, set ? (wrlock ? "write lock" : "read lock") : "unlock", start, end, errno == EDEADLK ? "deadlock" : "interrupted"); write(1, outbuf, strlen(outbuf)); } continue; } else { perror("fcntl"); } } itv.it_interval.tv_sec = 0; itv.it_interval.tv_usec = 0; itv.it_value.tv_sec = 0; itv.it_value.tv_usec = 0; setitimer(ITIMER_REAL, &itv, NULL); if (verbose) { snprintf(outbuf, sizeof(outbuf), "%d[%d]: %s [%d .. %d] succeeded\n", id, j, set ? (wrlock ? "write lock" : "read lock") : "unlock", start, end); write(1, outbuf, strlen(outbuf)); } if (set) { if (wrlock) { /* * We got a write lock - write * our ID to each byte that we * managed to claim. */ for (i = start; i < end; i++) map[i] = F_WRLCK; memset(&buf[start], id, len); if (pwrite(fd, &buf[start], len, start) != len) { printf("%d: short write\n", id); exit(1); } } else { /* * We got a read lock - read * the bytes which we claimed * so that we can check that * they don't change * unexpectedly. */ for (i = start; i < end; i++) map[i] = F_RDLCK; if (pread(fd, &buf[start], len, start) != len) { printf("%d: short read\n", id); exit(1); } } } else { for (i = start; i < end; i++) map[i] = F_UNLCK; } usleep(1000); /* * Read back the whole region so that we can * check that all the bytes we have some kind * of claim to have the correct value. */ if (pread(fd, tbuf, sizeof(tbuf), 0) != sizeof(tbuf)) { printf("%d: short read\n", id); exit(1); } for (i = 0; i < 128; i++) { if (map[i] != F_UNLCK && buf[i] != tbuf[i]) { snprintf(outbuf, sizeof(outbuf), "%d: byte %d expected %d, " "got %d\n", id, i, buf[i], tbuf[i]); write(1, outbuf, strlen(outbuf)); exit(1); } } } if (verbose) printf("%d[%d]: done\n", id, j); exit(0); } status = 0; for (i = 0; i < CHILD_COUNT; i++) { status += safe_waitpid(pids[i]); } if (status) FAIL(status != 0); SUCCEED; } /* * Test 15 - flock(2) semantcs * * When a lock holder has a shared lock and attempts to upgrade that * shared lock to exclusive, it must drop the shared lock before * blocking on the exclusive lock. * * To test this, we first arrange for two shared locks on the file, * and then attempt to upgrade one of them to exclusive. This should * drop one of the shared locks and block. We interrupt the blocking * lock request and examine the lock state of the file after dropping * the other shared lock - there should be no active locks at this * point. */ static int test15(int fd, __unused int argc, const __unused char **argv) { #ifdef LOCK_EX /* * We create a child process to hold the lock which we will * test. We use a pipe to communicate with the child. * * Since we only have one file descriptors and lock ownership * for flock(2) goes with the file descriptor, we use fcntl to * set the child's shared lock. */ int pid; int pfd[2]; int fd2; struct flock fl; char ch; int res; if (pipe(pfd) < 0) err(1, "pipe"); pid = fork(); if (pid < 0) err(1, "fork"); if (pid == 0) { /* * We are the child. We set a shared lock and then * write one byte back to the parent to tell it. The * parent will kill us when its done. */ fl.l_start = 0; fl.l_len = 0; fl.l_type = F_RDLCK; fl.l_whence = SEEK_SET; if (fcntl(fd, F_SETLK, &fl) < 0) err(1, "fcntl(F_SETLK) (child)"); if (write(pfd[1], "a", 1) < 0) err(1, "writing to pipe (child)"); pause(); exit(0); } /* * Wait until the child has set its lock and then perform the * test. */ if (read(pfd[0], &ch, 1) != 1) err(1, "reading from pipe (child)"); fd2 = dup(fd); if (flock(fd, LOCK_SH) < 0) err(1, "flock shared"); /* * flock should wait until the alarm and then return -1 with * errno set to EINTR. */ if (verbose) printf("15 - flock(2) semantics: "); alarm(1); flock(fd, LOCK_EX); /* * Kill the child to force it to drop its locks. */ safe_kill(pid, SIGTERM); safe_waitpid(pid); fl.l_start = 0; fl.l_len = 0; fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; res = fcntl(fd, F_GETLK, &fl); close(pfd[0]); close(pfd[1]); FAIL(res != 0); FAIL(fl.l_type != F_UNLCK); SUCCEED; #else return 0; #endif } struct test { int (*testfn)(int, int, const char **); /* function to perform the test */ int num; /* test number */ int intr; /* non-zero if the test interrupts a lock */ }; struct test tests[] = { { test1, 1, 0 }, { test2, 2, 0 }, { test3, 3, 1 }, { test4, 4, 0 }, { test5, 5, 1 }, { test6, 6, 1 }, { test7, 7, 0 }, { test8, 8, 0 }, { test9, 9, 0 }, { test10, 10, 0 }, { test11, 11, 1 }, { test12, 12, 0 }, { test13, 13, 1 }, { test14, 14, 0 }, { test15, 15, 1 }, }; int test_count = sizeof(tests) / sizeof(tests[0]); int main(int argc, const char *argv[]) { int testnum; int fd; int nointr; int i; struct sigaction sa; int test_argc; const char **test_argv; int ret; if (argc < 2) { errx(1, "usage: flock <directory> [test number] ..."); } fd = make_file(argv[1], 1024); if (argc >= 3) { testnum = strtol(argv[2], NULL, 0); test_argc = argc - 2; test_argv = argv + 2; } else { verbose = 1; testnum = 0; test_argc = 0; test_argv = 0; } sa.sa_handler = ignore_alarm; sigemptyset(&sa.sa_mask); sa.sa_flags = 0; sigaction(SIGALRM, &sa, 0); nointr = 0; #if defined(__FreeBSD__) && __FreeBSD_version < 800040 { /* * FreeBSD with userland NLM can't interrupt a blocked * lock request on an NFS mounted filesystem. */ struct statfs st; fstatfs(fd, &st); nointr = !strcmp(st.f_fstypename, "nfs"); } #endif ret = 0; for (i = 0; i < test_count; i++) { if (tests[i].intr && nointr) continue; if (!testnum || tests[i].num == testnum) ret |= tests[i].testfn(fd, test_argc, test_argv); } return (ret ? 1 : 0); }
the_stack_data/140766698.c
struct foo { int a; float b; int c[32]; }; struct foo bar = { 1, 2.0, { 3, 4 } }; struct foo baz; inline static void copy( struct foo const src // function line here , struct foo* pDst ) { // function's ScopeLine here *pDst = src; } //void OtherSig( struct foo const* pSrc, struct foo* pDst ) //{ // copy( *pSrc, pDst ); //} // void DoCopy( ) { copy( bar, &baz ); }
the_stack_data/51698966.c
#include <stdio.h> int main(){ int x=10; int *p=&x; int **p2=&p; // Endereço p2 printf("p2: %d\n",p2); //&p //Conteudo do endereço printf("*p2: %d\n",*p2); //Conteudo do endereço do endereço printf("**p2: %d\n",**p2); return 0; }
the_stack_data/275084.c
/* Compute checksum Author: Johan W. Stevenson */ /* Copyright 1988 by Johan W. Stevenson */ #include <stdlib.h> #include <string.h> #include <stdio.h> #if !CRC_ONLY int errs; #if __STDC__ int main(int argc, char **argv); void crc(char *fname); #else void crc(); #endif int main(argc, argv) int argc; char **argv; { char line[256]; if (argc <= 1) crc((char *) 0); else if (argc == 2 && strcmp(argv[1], "-") == 0) while (fgets(line, sizeof line, stdin) != NULL) { if (line[strlen(line) - 1] == '\n') line[strlen(line) - 1] = '\0'; crc(line); } else do { crc(argv[1]); argv++; argc--; } while (argc > 1); return(errs != 0); } #endif /* Crctab calculated by Mark G. Mendel, Network Systems Corporation */ static unsigned short crctab[256] = { 0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7, 0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef, 0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6, 0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de, 0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485, 0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d, 0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4, 0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc, 0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823, 0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b, 0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12, 0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a, 0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41, 0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49, 0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70, 0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78, 0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f, 0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067, 0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e, 0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256, 0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d, 0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405, 0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c, 0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634, 0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab, 0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3, 0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a, 0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92, 0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9, 0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1, 0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8, 0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0 }; /* Updcrc macro derived from article Copyright (C) 1986 Stephen Satchell. * NOTE: First argument must be in range 0 to 255. * Second argument is referenced twice. * * Programmers may incorporate any or all code into their programs, * giving proper credit within the source. Publication of the * source routines is permitted so long as proper credit is given * to Stephen Satchell, Satchell Evaluations and Chuck Forsberg, * Omen Technology. */ #define updcrc(cp, crc) ( crctab[((crc >> 8) & 255)] ^ (crc << 8) ^ cp) #if CRC_ONLY unsigned short crc(char *fname) #else void crc(fname) char *fname; #endif { register int c; register long len = 0; register unsigned short crc = 0; register FILE *fp; #if CRC_ONLY if((fp = fopen(fname, "r")) == NULL) return 0; #else if (fname == NULL) fp = stdin; else if ((fp = fopen(fname, "r")) == NULL) { fprintf(stderr, "crc: cannot open %s\n", fname); errs++; return; } #endif while ((c = getc(fp)) != EOF) { len++; crc = updcrc(c, crc); } #if CRC_ONLY fclose(fp); return crc; #else printf("%05u %6ld", crc, len); if (fname) { printf(" %s", fname); fclose(fp); } printf("\n"); #endif }
the_stack_data/34712.c
/* **============================================================================== ** ** Copyright (c) Microsoft Corporation. All rights reserved. See file LICENSE ** for license information. ** **============================================================================== */ int agent_main(int argc, char** argv); int main(int argc, char** argv) { return agent_main(argc,argv); }
the_stack_data/13054.c
/* This testcase is part of GDB, the GNU debugger. Copyright 2006-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <stdio.h> void hello (void) { printf ("Hello world.\n"); } /* The test case uses "break *hello" to make sure to step at the very first instruction of the function. This causes a problem running the test on powerpc64le-linux, since the first instruction belongs to the global entry point prologue, which is skipped when doing a local direct function call. To make sure that first instruction is indeed being executed and the breakpoint hits, we make sure to call the routine via an indirect call. */ void (*ptr) (void) = hello; int main (void) { ptr (); return 0; }
the_stack_data/231392531.c
// d52cbaca0ef8cf4fd3d6354deb5066970fb6511d02d18d15835e6014ed847fb0 #define _BSD_SOURCE #define _XOPEN_SOURCE 500 #include <assert.h> #include <fcntl.h> #include <getopt.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <time.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> static int verbosity = 0; static int read_back = 0; static int allowed_accesses = 1; static struct option const long_opts[] = { {"device", required_argument, NULL, 'd'}, {"address", required_argument, NULL, 'a'}, {"size", required_argument, NULL, 's'}, {"offset", required_argument, NULL, 'o'}, {"count", required_argument, NULL, 'c'}, {"file", required_argument, NULL, 'f'}, {"verbose", no_argument, NULL, 'v'}, {"help", no_argument, NULL, 'h'}, {0, 0, 0, 0} }; #define DEVICE_NAME_DEFAULT "/dev/xdma/card0/h2c0" static int test_dma(char *devicename, uint32_t addr, uint32_t size, uint32_t offset, uint32_t count, char *filename); static void usage(const char* name) { int i = 0; printf("%s\n\n", name); printf("usage: %s [OPTIONS]\n\n", name); printf("Write using SGDMA, optionally read input from a binary input file.\n\n"); printf(" -%c (--%s) device (defaults to %s)\n", long_opts[i].val, long_opts[i].name, DEVICE_NAME_DEFAULT); i++; printf(" -%c (--%s) address of the start address on the AXI bus\n", long_opts[i].val, long_opts[i].name); i++; printf(" -%c (--%s) size of a single transfer\n", long_opts[i].val, long_opts[i].name); i++; printf(" -%c (--%s) page offset of transfer\n", long_opts[i].val, long_opts[i].name); i++; printf(" -%c (--%s) number of transfers\n", long_opts[i].val, long_opts[i].name); i++; printf(" -%c (--%s) filename to read/write the data of the transfers\n", long_opts[i].val, long_opts[i].name); i++; printf(" -%c (--%s) be more verbose during test\n", long_opts[i].val, long_opts[i].name); i++; printf(" -%c (--%s) print usage help and exit\n", long_opts[i].val, long_opts[i].name); i++; } static uint32_t getopt_integer(char *optarg) { int rc; uint32_t value; rc = sscanf(optarg, "0x%x", &value); if (rc <= 0) rc = sscanf(optarg, "%ul", &value); printf("sscanf() = %d, value = 0x%08x\n", rc, (unsigned int)value); return value; } int main(int argc, char* argv[]) { int cmd_opt; char *device = DEVICE_NAME_DEFAULT; uint32_t address = 0; uint32_t size = 32; uint32_t offset = 0; uint32_t count = 1; char *filename = NULL; while ((cmd_opt = getopt_long(argc, argv, "vhc:f:d:a:s:o:", long_opts, NULL)) != -1) { switch (cmd_opt) { case 0: /* long option */ break; case 'v': verbosity++; break; /* device node name */ case 'd': //printf("'%s'\n", optarg); device = strdup(optarg); break; /* RAM address on the AXI bus in bytes */ case 'a': address = getopt_integer(optarg); break; /* RAM size in bytes */ case 's': size = getopt_integer(optarg); break; case 'o': offset = getopt_integer(optarg) & 4095; break; /* count */ case 'c': count = getopt_integer(optarg); break; /* count */ case 'f': filename = strdup(optarg); break; /* print usage help and exit */ case 'h': default: usage(argv[0]); exit(0); break; } } printf("device = %s, address = 0x%08x, size = 0x%08x, offset = 0x%08x, count = %u\n", device, address, size, offset, count); test_dma(device, address, size, offset, count, filename); } /* Subtract timespec t2 from t1 * * Both t1 and t2 must already be normalized * i.e. 0 <= nsec < 1000000000 */ static void timespec_sub(struct timespec *t1, const struct timespec *t2) { assert(t1->tv_nsec >= 0); assert(t1->tv_nsec < 1000000000); assert(t2->tv_nsec >= 0); assert(t2->tv_nsec < 1000000000); t1->tv_sec -= t2->tv_sec; t1->tv_nsec -= t2->tv_nsec; if (t1->tv_nsec >= 1000000000) { t1->tv_sec++; t1->tv_nsec -= 1000000000; } else if (t1->tv_nsec < 0) { t1->tv_sec--; t1->tv_nsec += 1000000000; } } static int test_dma(char *devicename, uint32_t addr, uint32_t size, uint32_t offset, uint32_t count, char *filename) { int rc; char *buffer = NULL; char *allocated = NULL; struct timespec ts_start, ts_end; posix_memalign((void **)&allocated, 4096/*alignment*/, size + 4096); assert(allocated); buffer = allocated + offset; printf("host memory buffer = %p\n", buffer); int file_fd = -1; int fpga_fd = open(devicename, O_RDWR); assert(fpga_fd >= 0); if (filename) { file_fd = open(filename, O_RDONLY); assert(file_fd >= 0); } /* fill the buffer with data from file? */ if (file_fd >= 0) { /* read data from file into memory buffer */ rc = read(file_fd, buffer, size); if (rc != size) perror("read(file_fd)"); assert(rc == size); } /* select AXI MM address */ off_t off = lseek(fpga_fd, addr, SEEK_SET); while (count--) { rc = clock_gettime(CLOCK_MONOTONIC, &ts_start); /* write buffer to AXI MM address using SGDMA */ rc = write(fpga_fd, buffer, size); assert(rc == size); rc = clock_gettime(CLOCK_MONOTONIC, &ts_end); } /* subtract the start time from the end time */ timespec_sub(&ts_end, &ts_start); /* display passed time, a bit less accurate but side-effects are accounted for */ printf("CLOCK_MONOTONIC reports %ld.%09ld seconds (total) for last transfer of %d bytes\n", ts_end.tv_sec, ts_end.tv_nsec, size); close(fpga_fd); if (file_fd >= 0) { close(file_fd); } free(allocated); }
the_stack_data/122067.c
/* * Copyright (C) 2016 Gustavo Sverzut Barbieri * * 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 THE AUTHORS OR COPYRIGHT HOLDERS * 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. */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <strings.h> #include <ctype.h> #include <unistd.h> #include <sys/stat.h> #include <fcntl.h> #include "sha1.h" static void _cws_sha1(const void *input, const size_t input_len, void *output) { SHA1_CTX ctx; SHA1Init(&ctx); SHA1Update(&ctx, input, input_len); SHA1Final(output, &ctx); } static inline void _cws_debug(const char *prefix, const void *buffer, size_t len) { const uint8_t *bytes = buffer; size_t i; if (prefix) fprintf(stderr, "%s:", prefix); for (i = 0; i < len; i++) { uint8_t b = bytes[i]; if (isprint(b)) fprintf(stderr, " %#04x(%c)", b, b); else fprintf(stderr, " %#04x", b); } if (prefix) fprintf(stderr, "\n"); } static void _cws_encode_base64(const uint8_t *input, const size_t input_len, char *output) { static const char base64_map[65] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; size_t i, o; uint8_t c; for (i = 0, o = 0; i + 3 <= input_len; i += 3) { c = (input[i] & (((1 << 6) - 1) << 2)) >> 2; output[o++] = base64_map[c]; c = (input[i] & ((1 << 2) - 1)) << 4; c |= (input[i + 1] & (((1 << 4) - 1) << 4)) >> 4; output[o++] = base64_map[c]; c = (input[i + 1] & ((1 << 4) - 1)) << 2; c |= (input[i + 2] & (((1 << 2) - 1) << 6)) >> 6; output[o++] = base64_map[c]; c = input[i + 2] & ((1 << 6) - 1); output[o++] = base64_map[c]; } if (i + 1 == input_len) { c = (input[i] & (((1 << 6) - 1) << 2)) >> 2; output[o++] = base64_map[c]; c = (input[i] & ((1 << 2) - 1)) << 4; output[o++] = base64_map[c]; output[o++] = base64_map[64]; output[o++] = base64_map[64]; } else if (i + 2 == input_len) { c = (input[i] & (((1 << 6) - 1) << 2)) >> 2; output[o++] = base64_map[c]; c = (input[i] & ((1 << 2) - 1)) << 4; c |= (input[i + 1] & (((1 << 4) - 1) << 4)) >> 4; output[o++] = base64_map[c]; c = (input[i + 1] & ((1 << 4) - 1)) << 2; output[o++] = base64_map[c]; output[o++] = base64_map[64]; } } static void _cws_get_random(void *buffer, size_t len) { uint8_t *bytes = buffer; uint8_t *bytes_end = bytes + len; int fd = open("/dev/urandom", O_RDONLY); if (fd >= 0) { do { ssize_t r = read(fd, bytes, bytes_end - bytes); if (r < 0) { close(fd); goto fallback; } bytes += r; } while (bytes < bytes_end); close(fd); } else { fallback: for (; bytes < bytes_end; bytes++) *bytes = random() & 0xff; } } static inline void _cws_trim(const char **p_buffer, size_t *p_len) { const char *buffer = *p_buffer; size_t len = *p_len; while (len > 0 && isspace(buffer[0])) { buffer++; len--; } while (len > 0 && isspace(buffer[len - 1])) len--; *p_buffer = buffer; *p_len = len; } static inline bool _cws_header_has_prefix(const char *buffer, const size_t buflen, const char *prefix) { const size_t prefixlen = strlen(prefix); if (buflen < prefixlen) return false; return strncasecmp(buffer, prefix, prefixlen) == 0; } static inline void _cws_hton(void *mem, uint8_t len) { #if __BYTE_ORDER__ != __BIG_ENDIAN uint8_t *bytes; uint8_t i, mid; if (len % 2) return; mid = len / 2; bytes = mem; for (i = 0; i < mid; i++) { uint8_t tmp = bytes[i]; bytes[i] = bytes[len - i - 1]; bytes[len - i - 1] = tmp; } #endif } static inline void _cws_ntoh(void *mem, uint8_t len) { #if __BYTE_ORDER__ != __BIG_ENDIAN uint8_t *bytes; uint8_t i, mid; if (len % 2) return; mid = len / 2; bytes = mem; for (i = 0; i < mid; i++) { uint8_t tmp = bytes[i]; bytes[i] = bytes[len - i - 1]; bytes[len - i - 1] = tmp; } #endif }
the_stack_data/90765579.c
#include <stdio.h> #include <math.h> /* * Objective: "What is the largest prime factor of the number 600851475143 ?" */ static int max_prime_factor(long long n); void problem_3() { printf("Problem 3: %d\n", max_prime_factor(600851475143)); } static int max_prime_factor(long long n) { int max = 0; while (n % 2 == 0) { max = 2; n /= 2; } for (int i = 3; i <= sqrt(n); i += 2) { while (n % i == 0) { max = i; n /= i; } } if (n > 2) { max = n; } return max; }
the_stack_data/162644067.c
#include <stdio.h> static void init(void) __attribute__((constructor)); void init(void) { puts("before main()!"); } int main(int argc, char **argv) { puts("main()!"); return 0; }
the_stack_data/105721.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #include <assert.h> #include <stdbool.h> //basic BasicArray static const char BasicArray[27] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ "; // encryption for client #define MAX_CHAR 90000 #define BASICLEN 28 // otp_enc plaintext1 mykey 57171 > ciphertext1 //otp_enc plaintext key port, need three arguments to make it work void error(const char *msg) { perror(msg); exit(0); } // Error function used for reporting issues int main(int argc, char *argv[]) { int socketFD, portNumber, charsWritten, charsRead; struct sockaddr_in serverAddress; struct hostent* serverHostInfo; char keygen[MAX_CHAR]; char plain_text[MAX_CHAR]; int keygenlen; int plain_textlen; int basicarraylen; // char EncryptedMessage[MAX_CHAR]; if (argc < 4) { fprintf(stderr,"USAGE: %s hostname port\n", argv[3]); exit(0); } // Check usage & args // Set up the server address struct //Counter program // printf("Argument counter normal file %s\n", argv[1]); // printf("Argument counter keyfile %s\n", argv[2]); // printf("Argument counter port number: %s\n", argv[3]); //File checking for key and will transfer key to see how it works //lets check length for key and file for comparison and check all properties while reading FILE* file_pointer = fopen(argv[2], "r"); // fgets(keygen, MAX_CHAR, file_pointer); char charactercounter; int count = 0; while((charactercounter = fgetc(file_pointer)) != EOF) { if(charactercounter > 32 && charactercounter < 65 && charactercounter < 90) { fprintf(stderr, "ERROR: Keygen file has invalid characters \n"); exit(1); } keygen[count] = charactercounter; count++; } fclose(file_pointer); //need to get rid off new line and put a "\0" // this didn't works keygen[strcspn(keygen, "\n")] = '\0'; // Keygen[count]='\0'; keygenlen=strlen(keygen); // printf(" key: %s\n", keygen); // File for the plain text FILE* file_pointer2 = fopen(argv[1], "r"); // fgets(plain_text, MAX_CHAR, file_pointer2); charactercounter='\0'; count = 0; while((charactercounter = fgetc(file_pointer2)) != EOF) { if(charactercounter > 32 && charactercounter < 65 && charactercounter < 90) { fprintf(stderr, "ERROR: Plaintext, file has invalid characters \n"); exit(1); } plain_text[count] = charactercounter; count++; } // plain_text[count]='\0'; fclose(file_pointer2); plain_text[strcspn(plain_text, "\n")] = '\0'; plain_textlen=strlen(plain_text); // printf(" Text: %s\n", plain_text); // Note that the key passed in must be at least as big as the plaintext. if (keygenlen < plain_textlen){ fprintf(stderr, "ERROR: Keygen is shorter than plain text\n"); exit(1); } memset((char*)&serverAddress, '\0', sizeof(serverAddress)); // Clear out the address struct portNumber = atoi(argv[3]); // Get the port number, convert to an integer from a string serverAddress.sin_family = AF_INET; // Create a network-capable socket serverAddress.sin_port = htons(portNumber); // Store the port number serverHostInfo = gethostbyname("localhost"); // Convert the machine name into a special form of address if (serverHostInfo == NULL) { fprintf(stderr, "CLIENT: ERROR, no such host\n"); exit(0); } memcpy((char*)&serverAddress.sin_addr.s_addr, (char*)serverHostInfo->h_addr, serverHostInfo->h_length); // Copy in the address // Set up the socket socketFD = socket(AF_INET, SOCK_STREAM, 0); // Create the socket if (socketFD < 0) error("CLIENT: ERROR opening socket"); // Connect to server if (connect(socketFD, (struct sockaddr*)&serverAddress, sizeof(serverAddress)) < 0) // Connect socket to address error("CLIENT: ERROR connecting"); //Sending the keygen length int converted_number=htonl(keygenlen); charsWritten = send(socketFD, &converted_number, sizeof(converted_number), 0); // Write to the server if (charsWritten < 0) error("CLIENT: ERROR writing to socket"); if (charsWritten < sizeof(converted_number)) printf("CLIENT: WARNING: Not all data written to socket!\n"); //sending the plaintext length converted_number=htonl(plain_textlen); charsWritten = send(socketFD, &converted_number, sizeof(converted_number), 0); // Write to the server if (charsWritten < 0) error("CLIENT: ERROR writing to socket"); if (charsWritten < sizeof(converted_number)) printf("CLIENT: WARNING: Not all data written to socket!\n"); //sending keygen // printf("Sending this much keygen lenght %d\n", strlen(keygen)); charsWritten = send(socketFD, keygen, strlen(keygen), 0); // Write to the server if (charsWritten < 0) error("CLIENT: ERROR writing to socket"); if (charsWritten < strlen(keygen)) printf("CLIENT: WARNING: Not all data written to socket!\n"); //sending plain text // printf("Sending this much character %d\n", strlen(plain_text)); charsWritten = send(socketFD, plain_text, strlen(plain_text), 0); // Write to the server if (charsWritten < 0) error("CLIENT: ERROR writing to socket"); if (charsWritten < strlen(plain_text)) printf("CLIENT: WARNING: Not all data written to socket!\n"); // receiving encrypted text length int encryptedMessageLen=0; int received_int=0; charsRead = recv(socketFD, &received_int, sizeof(received_int), 0); // Read the client's message from the socket if (charsRead < 0) error("ERROR reading from socket"); // printf("SERVER: I received this from the client: \"%d\"\n", ntohl(received_int)); encryptedMessageLen=htonl(received_int); // // // Get return message from server // //recieving encrypted text char* encryptedMessage=malloc(encryptedMessageLen); memset(encryptedMessage, '\0', encryptedMessageLen); charsRead=0; int readBytes=0; int countBytes=0; int bytesRemain = encryptedMessageLen; while (readBytes != encryptedMessageLen){ charsRead = recv(socketFD, encryptedMessage+readBytes, encryptedMessageLen, 0); if (charsRead < 0) error("ERROR recieving the encrypted Message\n"); readBytes=readBytes+charsRead; bytesRemain=encryptedMessageLen-readBytes; // printf("Bytes remaining %d\n", bytesRemain); } //lets see what we recieved; if (strlen(encryptedMessage) != encryptedMessageLen){ error("error encrypted message not recieved perfectly\n"); } // printf("length of encrypted Message %d\n", strlen(Encrypted_text)); // FILE *fptr1 = fopen("EncryptedText", "wb"); // fprintf(fptr1, "%s\n", encryptedMessage); // fclose(fptr1); printf("%s\n", encryptedMessage); close(socketFD); // Close the socket return 0; }
the_stack_data/70449933.c
#include <stdio.h> int main() { int n,s=0,sm=0,m,i; float k; scanf("%d",&n); scanf("%d",&m); scanf("%f",&k); k=k*0.01; sm=m; for(i=0;i<n;i++) { if(i!=0) if(i%2==0) { sm=sm-sm*k; } s=s+(m-(sm*k)); } printf("%d",s); return 0; }
the_stack_data/542185.c
/* This testcase is part of GDB, the GNU debugger. Copyright 2013-2020 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <stdlib.h> volatile int v = 1; static __attribute__ ((noinline, noclone, noreturn)) void noret (int x, ...) { abort (); } static __attribute__ ((noinline, noclone)) void mayret (int x) { if (v) noret (x); } static __attribute__ ((noinline, noclone)) void tailcall (int x) { mayret (x); } int main (void) { tailcall (1); return 0; }
the_stack_data/9511920.c
/* Tests of *printf for very large strings. Copyright (C) 2000, 2002, 2003, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <[email protected]>, 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ #include <locale.h> #include <mcheck.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/stat.h> const char *locs[] = { "C", "de_DE.ISO-8859-1", "de_DE.UTF-8", "ja_JP.EUC-JP" }; #define nlocs (sizeof (locs) / sizeof (locs[0])) char large[50000]; int main (void) { char buf[25]; size_t i; int res = 0; int fd; mtrace (); strcpy (buf, "/tmp/test-vfprintfXXXXXX"); fd = mkstemp (buf); if (fd == -1) { printf ("cannot open temporary file: %m\n"); exit (1); } unlink (buf); for (i = 0; i < nlocs; ++i) { FILE *fp; struct stat st; int fd2; setlocale (LC_ALL, locs[i]); memset (large, '\1', sizeof (large)); large[sizeof (large) - 1] = '\0'; fd2 = dup (fd); if (fd2 == -1) { printf ("cannot dup for locale %s: %m\n", setlocale (LC_ALL, NULL)); exit (1); } if (ftruncate (fd2, 0) != 0) { printf ("cannot truncate file for locale %s: %m\n", setlocale (LC_ALL, NULL)); exit (1); } fp = fdopen (fd2, "a"); if (fp == NULL) { printf ("cannot create FILE for locale %s: %m\n", setlocale (LC_ALL, NULL)); exit (1); } fprintf (fp, "%s", large); fprintf (fp, "%.*s", 30000, large); large[20000] = '\0'; fprintf (fp, large); fprintf (fp, "%-1.300000000s", "hello"); if (fflush (fp) != 0 || ferror (fp) != 0 || fclose (fp) != 0) { printf ("write error for locale %s: %m\n", setlocale (LC_ALL, NULL)); exit (1); } if (fstat (fd, &st) != 0) { printf ("cannot stat for locale %s: %m\n", setlocale (LC_ALL, NULL)); exit (1); } else if (st.st_size != 50000 + 30000 + 19999 + 5) { printf ("file size incorrect for locale %s: %jd instead of %jd\n", setlocale (LC_ALL, NULL), (intmax_t) st.st_size, (intmax_t) 50000 + 30000 + 19999 + 5); res = 1; } else printf ("locale %s OK\n", setlocale (LC_ALL, NULL)); } close (fd); return res; }
the_stack_data/66609.c
/*********************************************************** binomial.c -- 2項分布 ***********************************************************/ #include <stdio.h> #include <stdlib.h> #include <math.h> void error(char *s) { printf("%s\n", s); exit(1); } int main(void) { int k, n; double p, q, s, t; printf("n, p? "); scanf("%d%lf", &n, &p); q = 1 - p; s = t = pow(q, n); if (s == 0) error("n か p が大きすぎます"); for (k = 0; k < n; k++) { printf("%4d %7.4f\n", k, s); t *= (n - k) * p / ((k + 1) * q); s += t; } printf("%4d %7.4f\n", n, s); return 0; }
the_stack_data/187644468.c
#include<stdio.h> int isprime(int n) { int i; for(i=2; i<n;i++) { if (n%i==0) return 0; } return 1; } int main() { int n; scanf("%d",&n); while(!isprime(++n)); printf("%d",n); return 0; }
the_stack_data/111077188.c
/* * Copyright 2013 The Emscripten Authors. All rights reserved. * Emscripten is available under two separate licenses, the MIT license and the * University of Illinois/NCSA Open Source License. Both these licenses can be * found in the LICENSE file. */ #include <assert.h> #include <dirent.h> #include <errno.h> #include <fcntl.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/stat.h> #define CHECK(cond) if (!(cond)) { printf("errno: %s\n", strerror(errno)); assert(cond); } static void create_file(const char *path, const char *buffer, int mode) { int fd = open(path, O_WRONLY | O_CREAT | O_EXCL, mode); CHECK(fd >= 0); int err = write(fd, buffer, sizeof(char) * strlen(buffer)); assert(err == (sizeof(char) * strlen(buffer))); close(fd); } void setup() { int err; err = mkdir("testtmp", 0777); // can't call it tmp, that already exists CHECK(!err); chdir("testtmp"); err = mkdir("nocanread", 0111); CHECK(!err); err = mkdir("foobar", 0777); CHECK(!err); create_file("foobar/file.txt", "ride into the danger zone", 0666); } void cleanup() { rmdir("nocanread"); unlink("foobar/file.txt"); rmdir("foobar"); chdir(".."); rmdir("testtmp"); } void test() { int err; long loc, loc2; DIR *dir; struct dirent *ent; struct dirent ent_r; struct dirent *result; int i; // check bad opendir input dir = opendir("noexist"); assert(!dir); assert(errno == ENOENT); // NODERAWFS tests run as root, and the root user can opendir any directory #ifndef NODERAWFS dir = opendir("nocanread"); assert(!dir); assert(errno == EACCES); #endif dir = opendir("foobar/file.txt"); assert(!dir); assert(errno == ENOTDIR); // check bad readdir input //dir = opendir("foobar"); //closedir(dir); //ent = readdir(dir); //assert(!ent); // XXX musl doesn't have enough error handling for this: assert(errno == EBADF); // check bad readdir_r input //dir = opendir("foobar"); //closedir(dir); //err = readdir_r(dir, NULL, &result); // XXX musl doesn't have enough error handling for this: assert(err == EBADF); // // do a normal read with readdir // dir = opendir("foobar"); assert(dir); int seen[3] = { 0, 0, 0 }; for (i = 0; i < 3; i++) { errno = 0; ent = readdir(dir); //printf("ent, errno: %p, %d\n", ent, errno); assert(ent); //printf("%d file: %s (%d : %d)\n", i, ent->d_name, ent->d_reclen, sizeof(*ent)); assert(ent->d_reclen == sizeof(*ent)); if (!seen[0] && !strcmp(ent->d_name, ".")) { assert(ent->d_type & DT_DIR); seen[0] = 1; continue; } if (!seen[1] && !strcmp(ent->d_name, "..")) { assert(ent->d_type & DT_DIR); seen[1] = 1; continue; } if (!seen[2] && !strcmp(ent->d_name, "file.txt")) { assert(ent->d_type & DT_REG); seen[2] = 1; continue; } assert(0 && "odd filename"); } ent = readdir(dir); if (ent) printf("surprising ent: %p : %s\n", ent, ent->d_name); assert(!ent); // test rewinddir rewinddir(dir); ent = readdir(dir); assert(ent && ent->d_ino); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); // test seek / tell rewinddir(dir); ent = readdir(dir); assert(ent && ent->d_ino); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); loc = telldir(dir); assert(loc >= 0); //printf("loc=%d\n", loc); loc2 = ent->d_off; ent = readdir(dir); assert(ent && ent->d_ino); char name_at_loc[1024]; strcpy(name_at_loc, ent->d_name); //printf("name_at_loc: %s\n", name_at_loc); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); ent = readdir(dir); assert(ent && ent->d_ino); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); seekdir(dir, loc); ent = readdir(dir); assert(ent && ent->d_ino); //printf("check: %s / %s\n", ent->d_name, name_at_loc); assert(!strcmp(ent->d_name, name_at_loc)); seekdir(dir, loc2); ent = readdir(dir); assert(ent && ent->d_ino); //printf("check: %s / %s\n", ent->d_name, name_at_loc); assert(!strcmp(ent->d_name, name_at_loc)); // // do a normal read with readdir_r // rewinddir(dir); err = readdir_r(dir, &ent_r, &result); assert(!err); assert(&ent_r == result); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); err = readdir_r(dir, &ent_r, &result); assert(!err); assert(&ent_r == result); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); err = readdir_r(dir, &ent_r, &result); assert(!err); assert(&ent_r == result); assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..") || !strcmp(ent->d_name, "file.txt")); err = readdir_r(dir, &ent_r, &result); assert(!err); assert(!result); err = closedir(dir); assert(!err); puts("success"); } void test_scandir() { struct dirent **namelist; int n; n = scandir(".", &namelist, NULL, alphasort); printf("n: %d\n", n); if (n < 0) return; else { while (n--) { printf("name: %s\n", namelist[n]->d_name); free(namelist[n]); } free(namelist); } } int main() { atexit(cleanup); signal(SIGABRT, cleanup); setup(); test(); test_scandir(); return EXIT_SUCCESS; }
the_stack_data/28885.c
#include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> #include <fcntl.h> #include <sys/ioctl.h> #define I2C_SLAVE 0x0703 /* Use this slave address */ #define I2C_SLAVE_FORCE 0x0706 /* Use this slave address, even if it is already in use by a driver! */ #define ADDR_DAC0 0x60 /* MCP4725 address 0 */ #define ADDR_DAC1 0x61 /* MCP4725 address 1 */ int main(int argc, char *argv[]) { int fd; char *end; long number; uint8_t buffer[2]; errno = 0; number = (argc == 2) ? strtol(argv[1], &end, 10) : -1; if(errno != 0 || end == argv[1] || number < 0 || number > 4095) { printf("Usage: i2c-write [0-4095]\n"); return EXIT_FAILURE; } if((fd = open("/dev/i2c-0", O_RDWR)) >= 0) { if(ioctl(fd, I2C_SLAVE_FORCE, ADDR_DAC0) >= 0) { buffer[0] = number >> 8; buffer[1] = number; if(write(fd, buffer, 2) > 0) return EXIT_SUCCESS; } } return EXIT_FAILURE; }
the_stack_data/168893709.c
/* * linux/lib/string.c * * (C) 1991 Linus Torvalds */ #ifndef __GNUC__ #error I want gcc! #endif #define extern #define inline #define __LIBRARY__ #include <string.h>
the_stack_data/1018394.c
/*! * @file main.c * @brief 11. Arreglos Multidimensionales - 10. Pasaje de un arreglo multidimensional a una función (usando punteros) * @author Javier Balloffet <[email protected]> * @date Sep 7, 2018 */ #include <stdio.h> float average(int* array2D_pointer, int rows, int columns); int main() { // Declaro un arreglo multidimensional (2D array) de enteros (int) de 2x3 elementos. int array2D[2][3]; int i, j; float avg; // Cargo el arreglo. for (i = 0; i < 2; i++) { for (j = 0; j < 3; j++) { printf("Ingrese un numero: "); scanf("%d", &array2D[i][j]); } } /* Paso el arreglo a la función "average" para calcular el promedio. Nota: En los arreglos numéricos DEBO pasar la longitud para saber donde finaliza el mismo. */ avg = average(&array2D[0][0], 2, 3); // Imprimo el promedio. printf("Promedio del arreglo 2D = %.2f\n", avg); return 0; } float average(int* array2D_pointer, int rows, int columns) { int i, j, sum = 0; float avg; // Recorro el arreglo recibido, sumando el valor de todos los elementos y luego calculo el promedio. for (i = 0; i < rows; i++) { for (j = 0; j < columns; j++) { sum += *(array2D_pointer + i*columns + j); } } avg = (float) sum / (rows * columns); return avg; }
the_stack_data/165764724.c
// // main.c // Somma_2D // // Created by Vincenzo on 15/11/2020. // Copyright © 2020 Vincenzo. All rights reserved. // #include <stdio.h> void visualizza_array(double media_righe[100], int m); void leggi_da_tastiera2D(int a[][100], int m, int n ); void media_array2D(int a[][100], int m, int n,double media_righe[]); int main() { int n,m,a[100][100]; double media_righe[100]; printf("Inserisci il numero di righe (<=100):\n"); scanf("%d", &m); printf("Inserisci il numero di colonne (<=100):\n"); scanf("%d", &n); leggi_da_tastiera2D( a, m, n ); media_array2D(a, m, n,media_righe); visualizza_array(media_righe,m); } void media_array2D(int a[][100], int m, int n, double media_righe[]) { int i,j; // float somma; double somma=0.0; for(i=0;i<m;i++){ somma=0.0; for(j=0;j<n;j++) { somma=somma+ a[i][j]; } media_righe[i]=somma/n; } } void leggi_da_tastiera2D(int a[][100], int m, int n) { int i,j; printf("\nInserisci gli elementi di una matrice\n"); for(i=0;i<m;i++) for (j=0;j<n;j++) { printf("dammi l'elemento A[%d][%d]-->", i,j); scanf("%d", &a[i][j]); } } void visualizza_array(double media_righe[], int m) { int i; for(i=0;i<m;i++) { printf("il numero %d-esimo è %lf\n", i,media_righe[i]); } printf("\n"); }
the_stack_data/9513473.c
/* * * Program to find percentage of marks in 3 subjects. * Also find if candidate has secured first, second, pass class or fail. * */ #include <stdio.h> // Uncomment the line below if executing on Windows. //#include <conio.h> int main() { /* * Declare variables to hold marks. */ float subject_1, subject_2, subject_3; float subject_total; /* * Declare a variable to hold the percentage obtained. */ float percentage; /* * Intitialise a variable with total marks. */ float total = 300; /* * Ask user to input the marks of 3 subjects. */ printf("Enter marks for subject 1: "); scanf("%f", &subject_1); printf("Enter marks for subject 2: "); scanf("%f", &subject_2); printf("Enter marks for subject 3: "); scanf("%f", &subject_3); /* * Calculate total marks obtained. */ subject_total = subject_1 + subject_2 + subject_3; /* * Calculate percentage obtained. */ percentage = subject_total / total; /* * Determine the class of the candidate. */ if (percentage >= 0.7) { printf("Distinction.\n"); } else if (percentage >= 0.6 && percentage < 0.7) { printf("First class.\n"); } else if (percentage >= 0.5 && percentage < 0.6) { printf("Second class.\n"); } else if (percentage >= 0.4 && percentage < 0.5) { printf("Pass class.\n"); } else { printf("Fail.\n"); } // Uncomment the line below if compiling on Windows. //getch(); return 0; }
the_stack_data/148776.c
#include <stdio.h> int main () { printf("The key is..."); getchar(); printf("You didn't think it would be that easy did you?"); char * key = "bsb17_247c1c4b2d8a570546f1f278c6c7d2b1"; return 0; }
the_stack_data/67581.c
/** * @file singlecore_osal.c * * @brief * This is a sample OS Abstraction Layer (AL) file implemented * using XDC/BIOS APIs. * * System integrator is advised to review these implementations and * modify them to suit it to application requirements. * * This OSAL implementation uses the <b> Approach 1 </b> documented. * * \par * ============================================================================ * @n (C) Copyright 2009, Texas Instruments, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ //NOTE: This is a very reduced version of the original TI singlecore_osal.c //file, just enough to get our function to compile. void Osal_platformSpiCsEnter(void) { /* Get the hardware semaphore. * * Acquire Multi core CPPI synchronization lock */ //while ((CSL_semAcquireDirect (PLATFORM_SPI_HW_SEM)) == 0); return; } void Osal_platformSpiCsExit (void) { /* Release the hardware semaphore * * Release multi-core lock. */ //CSL_semReleaseSemaphore (PLATFORM_SPI_HW_SEM); return; }
the_stack_data/153267905.c
// RUN: %check --only %s -Wall -Wno-ptr-int-conversion main() { #warning hello // CHECK: #warning: hello return (void *)5; // CHECK: mismatching types, return type } #warning hello2 // CHECK: #warning: hello2 f() // CHECK: control reaches end of non-void function f { }
the_stack_data/168892481.c
void foo(int n, int m, int S, int D[const restrict static S]) { #pragma scop __pencil_assume(m > n); for (int i = 0; i < n; i++) { D[i] = D[i + m]; } #pragma endscop }
the_stack_data/79745.c
#include <stdio.h> #include <ctype.h> // forward declarations int can_print_it(char ch); void print_letters(char arg[]); void print_arguments(int argc, char *argv[]) { int i = 0; for (i = 0; i < argc; i++) { print_letters(argv[i]); } } void print_letters(char arg[]) { int i = 0; for (i = 0; arg[i] != '\0'; i++) { char ch = arg[i]; if (can_print_it(ch)) { printf("'%c' == %d ", ch, ch); } } printf("\n"); } int can_print_it(char ch) { return isalpha(ch) || isblank(ch); } int main(int argc, char *argv[]) { print_arguments(argc+1, argv); return 0; }
the_stack_data/6104.c
#include <stdio.h> #include <math.h> int sumAllFactor(int num) { int f = 1; int sum = 0; for(f; f<=sqrt(num); f++) { if(num % f == 0) { if (num / f == f) { sum += f; } else { sum += (num / f) + f; } } } return sum; } int main() { int T; scanf("%d", &T); int num; while(T--) { scanf("%d", &num); printf("%d\n", (sumAllFactor(num) - num)); } return 0; }
the_stack_data/3262414.c
#include <stdbool.h> #include <stdio.h> #include <stdlib.h> #define MAX_BUF 512 #define demo(X) printf( #X " -> %d\n", X ); int sum_it(int value) { static int total = 0; total += value; return total; } int main(int argc, char *argv[]) { demo(sum_it(3)) demo(sum_it(6)) demo(sum_it(4)) }
the_stack_data/154829419.c
/** * word.c * Author: Grace Choe * Date: 2/23/2022 * * Description: * This program asks the user for a four letter word and stores the characters * within a single unsigned int, assuming that the user enters a valid four * letter word. Debugs are also printed out and kept like the example output * given. The debugs prints the hexadecimal values of each character, shifted to * its correct spot. */ #include <stdio.h> #include <string.h> //main function int main() { //string char array to hold the four letter word user input. char string[4]; //Holds the char version of each letter's hex value. char hex[9]; //num holds the hex formatted version of each letter's hex value. //shifting holds the correctly shifter version of each letter's hex value. unsigned int num, shifting; unsigned int hex_add = 0x00000000; int shift = 0; printf("Enter 4 characters: "); scanf(" %s", string); for (int k = 3; k >= 0; k--) { //Reformats the specified letter of string into hex format. sprintf(hex, "000000%x", string[k]); //Transfers hex into %08X formatted unsigned int num. sscanf(hex, "%08X", &num); //Shifts the hex value to its correctly shifted spot. shifting = num << shift; shift += 8; //Adds the shifted value to hex_add which holds the final single unsigned //int for the word's hex value. hex_add += shifting; printf("Debug: %c = 0x%08X\n", string[k], shifting); } printf("Your number is: %d (0x%08X)\n", hex_add, hex_add); return 0; }
the_stack_data/796344.c
#if defined(_WIN32) && defined(SHARED_B) # define IMPORT_B __declspec(dllimport) #else # define IMPORT_B #endif extern IMPORT_B int b1(void); extern IMPORT_B int b2(void); #ifndef NO_A extern int a1(void); extern int a2(void); #endif int main(void) { return 0 #ifndef NO_A + a1() + a2() #endif + b1() + b2() ; }
the_stack_data/243892537.c
/* * refclock_usno - clock driver for the Naval Observatory dialup * Michael Shields <[email protected]> 1995/02/25 */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #if defined(REFCLOCK) && defined(CLOCK_USNO) #include "ntpd.h" #include "ntp_io.h" #include "ntp_unixtime.h" #include "ntp_refclock.h" #include "ntp_stdlib.h" #include "ntp_control.h" #include <stdio.h> #include <ctype.h> #ifdef HAVE_SYS_IOCTL_H # include <sys/ioctl.h> #endif /* HAVE_SYS_IOCTL_H */ /* * This driver supports the Naval Observatory dialup at +1 202 653 0351. * It is a hacked-up version of the ACTS driver. * * This driver does not support the `phone' configuration because that * is needlessly global; it would clash with the ACTS driver. * * The Naval Observatory does not support the echo-delay measurement scheme. * * However, this driver *does* support UUCP port locking, allowing the * line to be shared with other processes when not actually dialing * for time. */ /* * Interface definitions */ #define DEVICE "/dev/cua%d" /* device name and unit */ #define LOCKFILE "/var/lock/LCK..cua%d" /* #define LOCKFILE "/usr/spool/uucp/LCK..cua%d" */ #define PHONE "atdt 202 653 0351" /* #define PHONE "atdt 1 202 653 0351" */ #define SPEED232 B1200 /* uart speed (1200 cowardly baud) */ #define PRECISION (-10) /* precision assumed (about 1 ms) */ #define REFID "USNO" /* reference ID */ #define DESCRIPTION "Naval Observatory dialup" #define MODE_AUTO 0 /* automatic mode */ #define MODE_BACKUP 1 /* backup mode */ #define MODE_MANUAL 2 /* manual mode */ #define MSGCNT 10 /* we need this many time messages */ #define SMAX 80 /* max token string length */ #define LENCODE 20 /* length of valid timecode string */ #define USNO_MINPOLL 10 /* log2 min poll interval (1024 s) */ #define USNO_MAXPOLL 14 /* log2 max poll interval (16384 s) */ #define MAXOUTAGE 3600 /* max before USNO kicks in (s) */ /* * Modem control strings. These may have to be changed for some modems. * * AT command prefix * B1 initiate call negotiation using Bell 212A * &C1 enable carrier detect * &D2 hang up and return to command mode on DTR transition * E0 modem command echo disabled * l1 set modem speaker volume to low level * M1 speaker enabled untill carrier detect * Q0 return result codes * V1 return result codes as English words */ #define MODEM_SETUP "ATB1&C1&D2E0L1M1Q0V1" /* modem setup */ #define MODEM_HANGUP "ATH" /* modem disconnect */ /* * Timeouts */ #define IDLE 60 /* idle timeout (s) */ #define WAIT 2 /* wait timeout (s) */ #define ANSWER 30 /* answer timeout (s) */ #define CONNECT 10 /* connect timeout (s) */ #define TIMECODE (MSGCNT+16) /* timecode timeout (s) */ /* * Unit control structure */ struct usnounit { int pollcnt; /* poll message counter */ int state; /* the first one was Delaware */ int run; /* call program run switch */ int msgcnt; /* count of time messages received */ long redial; /* interval to next automatic call */ int unit; /* unit number (= port) */ }; /* * Function prototypes */ static int usno_start P((int, struct peer *)); static void usno_shutdown P((int, struct peer *)); static void usno_poll P((int, struct peer *)); static void usno_disc P((struct peer *)); #if 0 static void usno_timeout P((struct peer *)); static void usno_receive P((struct recvbuf *)); static int usno_write P((struct peer *, const char *)); #endif /* 0 */ /* * Transfer vector */ struct refclock refclock_usno = { usno_start, /* start up driver */ usno_shutdown, /* shut down driver */ usno_poll, /* transmit poll message */ noentry, /* not used (usno_control) */ noentry, /* not used (usno_init) */ noentry, /* not used (usno_buginfo) */ NOFLAGS /* not used */ }; /* * usno_start - open the devices and initialize data for processing */ static int usno_start( int unit, struct peer *peer ) { register struct usnounit *up; struct refclockproc *pp; /* * Initialize miscellaneous variables */ pp = peer->procptr; peer->precision = PRECISION; pp->clockdesc = DESCRIPTION; memcpy((char *)&pp->refid, REFID, 4); peer->minpoll = USNO_MINPOLL; peer->maxpoll = USNO_MAXPOLL; peer->sstclktype = CTL_SST_TS_TELEPHONE; /* * Allocate and initialize unit structure */ if (!(up = (struct usnounit *) emalloc(sizeof(struct usnounit)))) return (0); memset((char *)up, 0, sizeof(struct usnounit)); up->unit = unit; pp->unitptr = (caddr_t)up; /* * Set up the driver timeout */ peer->nextdate = current_time + WAIT; return (1); } /* * usno_shutdown - shut down the clock */ static void usno_shutdown( int unit, struct peer *peer ) { register struct usnounit *up; struct refclockproc *pp; #ifdef DEBUG if (debug) printf("usno: clock %s shutting down\n", ntoa(&peer->srcadr)); #endif pp = peer->procptr; up = (struct usnounit *)pp->unitptr; usno_disc(peer); free(up); } #if 0 /* * usno_receive - receive data from the serial interface */ static void usno_receive( struct recvbuf *rbufp ) { register struct usnounit *up; struct refclockproc *pp; struct peer *peer; char str[SMAX]; u_long mjd; /* Modified Julian Day */ static int day, hour, minute, second; /* * Initialize pointers and read the timecode and timestamp. If * the OK modem status code, leave it where folks can find it. */ peer = (struct peer *)rbufp->recv_srcclock; pp = peer->procptr; up = (struct usnounit *)pp->unitptr; pp->lencode = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &pp->lastrec); if (pp->lencode == 0) { if (strcmp(pp->a_lastcode, "OK") == 0) pp->lencode = 2; return; } #ifdef DEBUG if (debug) printf("usno: timecode %d %s\n", pp->lencode, pp->a_lastcode); #endif switch (up->state) { case 0: /* * State 0. We are not expecting anything. Probably * modem disconnect noise. Go back to sleep. */ return; case 1: /* * State 1. We are about to dial. Just drop it. */ return; case 2: /* * State 2. We are waiting for the call to be answered. * All we care about here is CONNECT as the first token * in the string. If the modem signals BUSY, ERROR, NO * ANSWER, NO CARRIER or NO DIALTONE, we immediately * hang up the phone. If CONNECT doesn't happen after * ANSWER seconds, hang up the phone. If everything is * okay, start the connect timeout and slide into state * 3. */ (void)strncpy(str, strtok(pp->a_lastcode, " "), SMAX); if (strcmp(str, "BUSY") == 0 || strcmp(str, "ERROR") == 0 || strcmp(str, "NO") == 0) { NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_NOTICE, "clock %s USNO modem status %s", ntoa(&peer->srcadr), pp->a_lastcode); usno_disc(peer); } else if (strcmp(str, "CONNECT") == 0) { peer->nextdate = current_time + CONNECT; up->msgcnt = 0; up->state++; } else { NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_WARNING, "clock %s USNO unknown modem status %s", ntoa(&peer->srcadr), pp->a_lastcode); } return; case 3: /* * State 3. The call has been answered and we are * waiting for the first message. If this doesn't * happen within the timecode timeout, hang up the * phone. We probably got a wrong number or they are * down. */ peer->nextdate = current_time + TIMECODE; up->state++; return; case 4: /* * State 4. We are reading a timecode. It's an actual * timecode, or it's the `*' OTM. * * jjjjj nnn hhmmss UTC */ if (pp->lencode == LENCODE) { if (sscanf(pp->a_lastcode, "%5ld %3d %2d%2d%2d UTC", &mjd, &day, &hour, &minute, &second) != 5) { #ifdef DEBUG if (debug) printf("usno: bad timecode format\n"); #endif refclock_report(peer, CEVNT_BADREPLY); } else up->msgcnt++; return; } else if (pp->lencode != 1 || !up->msgcnt) return; /* else, OTM; drop out of switch */ } pp->leap = LEAP_NOWARNING; pp->day = day; pp->hour = hour; pp->minute = minute; pp->second = second; /* * Colossal hack here. We process each sample in a trimmed-mean * filter and determine the reference clock offset and * dispersion. The fudge time1 value is added to each sample as * received. */ if (!refclock_process(pp)) { #ifdef DEBUG if (debug) printf("usno: time rejected\n"); #endif refclock_report(peer, CEVNT_BADTIME); return; } else if (up->msgcnt < MSGCNT) return; /* * We have a filtered sample offset ready for peer processing. * We use lastrec as both the reference time and receive time in * order to avoid being cute, like setting the reference time * later than the receive time, which may cause a paranoid * protocol module to chuck out the data. Finaly, we unhook the * timeout, arm for the next call, fold the tent and go home. */ pp->lastref = pp->lastrec; refclock_receive(peer); record_clock_stats(&peer->srcadr, pp->a_lastcode); pp->sloppyclockflag &= ~CLK_FLAG1; up->pollcnt = 0; up->state = 0; usno_disc(peer); } #endif /* 0 */ /* * usno_poll - called by the transmit routine */ static void usno_poll( int unit, struct peer *peer ) { register struct usnounit *up; struct refclockproc *pp; /* * If the driver is running, we set the enable flag (fudge * flag1), which causes the driver timeout routine to initiate a * call. If not, the enable flag can be set using * ntpdc. If this is the sustem peer, then follow the system * poll interval. */ pp = peer->procptr; up = (struct usnounit *)pp->unitptr; if (up->run) { pp->sloppyclockflag |= CLK_FLAG1; if (peer == sys_peer) peer->hpoll = sys_poll; else peer->hpoll = peer->minpoll; } } #if 0 /* * usno_timeout - called by the timer interrupt */ static void usno_timeout( struct peer *peer ) { register struct usnounit *up; struct refclockproc *pp; int fd; char device[20]; char lockfile[128], pidbuf[8]; int dtr = TIOCM_DTR; /* * If a timeout occurs in other than state 0, the call has * failed. If in state 0, we just see if there is other work to * do. */ pp = peer->procptr; up = (struct usnounit *)pp->unitptr; if (up->state) { if (up->state != 1) { usno_disc(peer); return; } /* * Call, and start the answer timeout. We think it * strange if the OK status has not been received from * the modem, but plow ahead anyway. * * This code is *here* because we had to stick in a brief * delay to let the modem settle down after raising DTR, * and for the OK to be received. State machines are * contorted. */ if (strcmp(pp->a_lastcode, "OK") != 0) NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_NOTICE, "clock %s USNO no modem status", ntoa(&peer->srcadr)); (void)usno_write(peer, PHONE); NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_NOTICE, "clock %s USNO calling %s\n", ntoa(&peer->srcadr), PHONE); up->state = 2; up->pollcnt++; pp->polls++; peer->nextdate = current_time + ANSWER; return; } switch (peer->ttl) { /* * In manual mode the calling program is activated * by the ntpdc program using the enable flag (fudge * flag1), either manually or by a cron job. */ case MODE_MANUAL: up->run = 0; break; /* * In automatic mode the calling program runs * continuously at intervals determined by the sys_poll * variable. */ case MODE_AUTO: if (!up->run) pp->sloppyclockflag |= CLK_FLAG1; up->run = 1; break; /* * In backup mode the calling program is disabled, * unless no system peer has been selected for MAXOUTAGE * (3600 s). Once enabled, it runs until some other NTP * peer shows up. */ case MODE_BACKUP: if (!up->run && sys_peer == 0) { if (current_time - last_time > MAXOUTAGE) { up->run = 1; peer->hpoll = peer->minpoll; NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_NOTICE, "clock %s USNO backup started ", ntoa(&peer->srcadr)); } } else if (up->run && sys_peer->sstclktype != CTL_SST_TS_TELEPHONE) { peer->hpoll = peer->minpoll; up->run = 0; NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_NOTICE, "clock %s USNO backup stopped", ntoa(&peer->srcadr)); } break; default: msyslog(LOG_ERR, "clock %s USNO invalid mode", ntoa(&peer->srcadr)); } /* * The fudge flag1 is used as an enable/disable; if set either * by the code or via ntpdc, the calling program is * started; if reset, the phones stop ringing. */ if (!(pp->sloppyclockflag & CLK_FLAG1)) { up->pollcnt = 0; peer->nextdate = current_time + IDLE; return; } /* * Lock the port. */ (void)sprintf(lockfile, LOCKFILE, up->unit); fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, 0644); if (fd < 0) { msyslog(LOG_ERR, "clock %s USNO port busy", ntoa(&peer->srcadr)); return; } sprintf(pidbuf, "%d\n", (int) getpid()); write(fd, pidbuf, strlen(pidbuf)); close(fd); /* * Open serial port. Use ACTS line discipline, if available. It * pumps a timestamp into the data stream at every on-time * character '*' found. Note: the port must have modem control * or deep pockets for the phone bill. HP-UX 9.03 users should * have very deep pockets. */ (void)sprintf(device, DEVICE, up->unit); if (!(fd = refclock_open(device, SPEED232, LDISC_ACTS))) { unlink(lockfile); return; } if (ioctl(fd, TIOCMBIC, (char *)&dtr) < 0) msyslog(LOG_WARNING, "usno_timeout: clock %s: couldn't clear DTR: %m", ntoa(&peer->srcadr)); pp->io.clock_recv = usno_receive; pp->io.srcclock = (caddr_t)peer; pp->io.datalen = 0; pp->io.fd = fd; if (!io_addclock(&pp->io)) { (void) close(fd); unlink(lockfile); free(up); return; } /* * Initialize modem and kill DTR. We skedaddle if this comes * bum. */ if (!usno_write(peer, MODEM_SETUP)) { msyslog(LOG_ERR, "clock %s USNO couldn't write", ntoa(&peer->srcadr)); io_closeclock(&pp->io); unlink(lockfile); free(up); return; } /* * Initiate a call to the Observatory. If we wind up here in * other than state 0, a successful call could not be completed * within minpoll seconds. */ if (up->pollcnt) { refclock_report(peer, CEVNT_TIMEOUT); NLOG(NLOG_CLOCKINFO) /* conditional if clause for conditional syslog */ msyslog(LOG_NOTICE, "clock %s USNO calling program terminated", ntoa(&peer->srcadr)); pp->sloppyclockflag &= ~CLK_FLAG1; up->pollcnt = 0; #ifdef DEBUG if (debug) printf("usno: calling program terminated\n"); #endif usno_disc(peer); return; } /* * Raise DTR, and let the modem settle. Then we'll dial. */ if (ioctl(pp->io.fd, TIOCMBIS, (char *)&dtr) < -1) msyslog(LOG_INFO, "usno_timeout: clock %s: couldn't set DTR: %m", ntoa(&peer->srcadr)); up->state = 1; peer->nextdate = current_time + WAIT; } #endif /* 0 */ /* * usno_disc - disconnect the call and wait for the ruckus to cool */ static void usno_disc( struct peer *peer ) { register struct usnounit *up; struct refclockproc *pp; int dtr = TIOCM_DTR; char lockfile[128]; /* * We should never get here other than in state 0, unless a call * has timed out. We drop DTR, which will reliably get the modem * off the air, even while the modem is hammering away full tilt. */ pp = peer->procptr; up = (struct usnounit *)pp->unitptr; if (ioctl(pp->io.fd, TIOCMBIC, (char *)&dtr) < 0) msyslog(LOG_INFO, "usno_disc: clock %s: couldn't clear DTR: %m", ntoa(&peer->srcadr)); if (up->state > 0) { up->state = 0; msyslog(LOG_NOTICE, "clock %s USNO call failed %d", ntoa(&peer->srcadr), up->state); #ifdef DEBUG if (debug) printf("usno: call failed %d\n", up->state); #endif } io_closeclock(&pp->io); sprintf(lockfile, LOCKFILE, up->unit); unlink(lockfile); peer->nextdate = current_time + WAIT; } #if 0 /* * usno_write - write a message to the serial port */ static int usno_write( struct peer *peer, const char *str ) { register struct usnounit *up; struct refclockproc *pp; int len; int code; char cr = '\r'; /* * Not much to do here, other than send the message, handle * debug and report faults. */ pp = peer->procptr; up = (struct usnounit *)pp->unitptr; len = strlen(str); #ifdef DEBUG if (debug) printf("usno: state %d send %d %s\n", up->state, len, str); #endif code = write(pp->io.fd, str, (unsigned)len) == len; code |= write(pp->io.fd, &cr, 1) == 1; if (!code) refclock_report(peer, CEVNT_FAULT); return (code); } #endif /* 0 */ #else int refclock_usno_bs; #endif /* REFCLOCK */
the_stack_data/99203.c
// gcc q2_fork2.c -o q2 // https://www.geeksforgeeks.org/fork-system-call/ // http://poincare.matf.bg.ac.rs/~ivana/courses/ps/sistemi_knjige/pomocno/apue/APUE/0201433079/ch08lev1sec6.html // https://www.tutorialspoint.com/c_standard_library/c_function_exit.htm #include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <sys/wait.h> #include <stdlib.h> /*01*/ int main() { /*02*/ int status; /*03*/ printf( "X" ); /*04*/ if( fork() == 0 ){ /*05*/ if( fork() == 0 ){ /*07*/ printf( "B" ); /*08*/ }else{ /*09*/ printf( "T" ); /*10*/ wait( &status ); /*11*/ printf( "H" ); /*12*/ } /*13*/ }else{ /*14*/ printf( "E" ); /*15*/ if( fork() == 0 ){ /*16*/ printf( "Z" ); /*17*/ exit(0); /*18*/ }else{ /*20*/ wait( &status ); /*21*/ printf( "S" ); /*22*/ } /*23*/ } /*24*/ printf( "R" ); /*25*/ } // gcc q2_fork2.c -o q2
the_stack_data/1261444.c
/* ヘッダファイルのインクルード */ #include <openssl/bio.h> /* BIO */ #include <openssl/err.h> /* エラー */ /* main関数の定義 */ int main(void){ /* 変数の初期化 */ BIO *bio = NULL; /* BIO構造体へのポインタbioをNULLに初期化. */ /* BIOのオープンと接続. */ bio = BIO_new_connect("bgstation0.com:443"); /* BIO_new_connectで"bgstation0.com"をポート443でオープン及び接続し, BIOのポインタをbioに格納. */ if (bio == NULL){ /* bioがNULLなら. /* エラーメッセージ */ printf("BIO_new_connect error!\n"); /* "BIO_new_connect error!"と出力. */ return -1; /* -1を返して終了. */ } /* 接続成功 */ printf("BIO_new_connect success! bio = %08x\n", bio); /* bioの値を出力. */ /* BIOのクローズと解放. */ BIO_free_all(bio); /* BIO_free_allでbioをクローズ及び解放. */ /* プログラムの終了 */ return 0; /* 0を返して終了. */ }
the_stack_data/140765843.c
#include <stdio.h> int main() { int a=8,b=24,v=10,c; while(v>5) { a=a+v+2; c=(a+b)-10; while(c>30) { b=b+c+2; c=c-4; } v=v/4; } printf("%d %d",b,c); return 0; } //o/p //60 30
the_stack_data/154828791.c
/* Check that zero-displacement branches are used instead of branch-free execution patterns. This is usually handled by the *cset_zero patterns. */ /* { dg-do compile } */ /* { dg-options "-O1 -mzdcbranch" } */ /* { dg-final { scan-assembler-not "subc|and|bra" } } */ /* { dg-final { scan-assembler-times "bf\t0f" 1 } } */ /* { dg-final { scan-assembler-times "bt\t0f" 1 } } */ int* test_00 (int* s) { if (s[0] == 0) if (!s[3]) s = 0; return s; } int* test_01 (int* s) { if (s[0] == 0) if (s[3]) s = 0; return s; }
the_stack_data/170453478.c
/* Nome: Giovanna Maria de Souza V1 29/05/2019 Kelvin dos Santos Alves Trabalho de Cálculo numérico - Cap.2 Profa: Patrícia Buzzatto Siqueira --------------------------------------------------------------------------- Compilação: gcc metGaussJordan.c -lm -o gj Execução: ./gj --------------------------------------------------------------------------- Equações transcendentes // REVER* O Método de Gauss Jordan Algoritmo: Cálculo do valor numérico de um polinômio e de sua derivada Material de Apoio: Livro - Cálculo Numérico, Ruggiero */ #include <stdio.h> //input-output #include <stdlib.h> //funções envolvendo alocação de memória, controle de processos, conversões e outras. #include <unistd.h> // (read, write, close, etc.). #include <math.h> // funções matemáticas básicas #include <time.h> //para manipulação de datas e horários // ------------------------------------------------------------------------------------------ /* global user's parameters */ double **a; double *x; double *b; double n; double **A; double *B; double m; // ------------------------------------------------------------------------------------------ /* functions */ // ------------------------------------------------------------------------------------------ //=========================================================================================== // main int main (int i,int j,int k,int t) { printf("\nInsira o número de equações:"); scanf("%lf",&n); A=(double**)calloc(n+1,sizeof(double)); B=(double*)calloc(n,sizeof(double)); a=(double**)calloc(n+1,sizeof(double)); b=(double *)calloc(n,sizeof(double)); for(i=0;i<n;i++) {a[i]=(double *)calloc(n+1,sizeof(double)); A[i]=(double *)calloc(n+1,sizeof(double));} printf("\nValores da coluna das soluções:\n"); for(i=0;i<n;i++) {scanf("%lf",&b[i]);} for(i=0;i<n;i++) {printf("\nCoeficientes da equação %d:\n",i+1); for(j=0;j<n;j++) {scanf("%lf",&a[i][j]);}} for(i=0;i<n;i++) {for(j=n;j<=n;j++) {a[i][j]=b[i];}} printf("\n"); for(i=0;i<n;i++) {printf("\nCoeficientes da equação %d:\n",i+1); for(j=0;j<n;j++) {if(j<n-1) {printf("%.2f",a[i][j]); printf("\t+\t");} else {printf("%.2f\t=\t%.2f\n",a[i][j],b[i]);} }} /*Inicialização*/ for(k=0;k<n;k++) {A[k][k]=1; for(j=k+1;j<=n;j++) {A[k][j]=a[k][j]/a[k][k];} for(i=0;i<n;i++) {if(i!=k) {m=a[i][k]/A[k][k]; {for(j=k;j<=n;j++) {A[i][j]=a[i][j]-m*A[k][j];} for(i=0;i<n;i++) {for(j=n;j<=n;j++) {A[i][j]=a[i][j]-m*A[k][j];}}}}}} printf("\n"); for(i=0;i<n;i++) {for(j=0;j<=n;j++) {printf("%.0lf\t",A[i][j]);} printf("\n");} } //===========================================================================================
the_stack_data/220456434.c
/* GIMP RGB C-Source image dump (vegetation.c) */ static const struct { unsigned int width; unsigned int height; unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */ unsigned char pixel_data[256 * 256 * 3 + 1]; } vegetation_clut = { 256, 256, 3, "\002\002\002\003\003\002\003\002\002\004\004\002\004\005\001\003\006\001\003\007\001\003\010\001\005\011\001\004\012\003\006\013\003\005" "\014\003\007\015\002\006\016\004\010\017\004\007\020\004\011\021\003\010\022\005\012\023\005\011\024\005\013\025" "\004\012\026\005\013\027\006\013\030\006\014\031\005\014\032\006\015\033\007\015\034\007\016\035\006\016\036" "\007\017\037\010\017\040\010\020!\007\020\"\010\021#\011\021$\011\022%\010\022&\011\023'\012\023" "(\012\024)\011\024*\012\025*\013\026+\013\026,\013\027-\013\027.\014\030/\014\030\060\014\031" "\061\014\031\062\015\032\063\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035" "\071\016\035:\017\036;\017\036<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021" "!D\021#E\020\"F\022$G\022#H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(" "R\025*S\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030" "/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j" "\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035" ":u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037" "A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#" "F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&" "K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)" "Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257," "W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?}\374Aw\375M\002\002\002\003\003\003\002\002\003\004\004\003" "\005\005\003\006\006\003\006\007\003\006\010\003\006\011\003\006\012\003\006\013\003\005\014\003\007\015\002\006\016\004\010\017" "\004\007\020\004\011\021\003\010\022\005\012\023\005\011\024\005\013\025\004\012\026\005\013\027\006\013\030\006" "\014\031\005\014\032\006\015\033\007\015\034\007\016\035\006\016\036\007\017\037\010\017\040\010\020!\007" "\020\"\010\021#\011\021$\011\022%\010\022&\011\023'\012\023(\012\024)\011\024*\012\025*\013\026" "+\013\026,\013\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063\015\032\064" "\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036<\017\037" "=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#H\022%I\021" "$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026,W\026+X" "\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031\061d\031" "\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066n\033\067" "o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037" "=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205!C" "\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221" "$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235" "&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251" ")T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265" ",Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060" "`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312" "\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323" "\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333" "\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344" "\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w" "\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}" "\374Aw\375M\002\002\002\003\003\003\002\002\002\004\004\002\005\005\002\006\006\002\005\007\002\005\010\002\005\011\002\005\012" "\002\005\013\002\005\014\002\007\015\002\006\016\004\010\017\004\007\020\004\011\021\003\010\022\005\012\023\005\011" "\024\005\013\025\004\012\026\005\013\027\006\013\030\006\014\031\005\014\032\006\015\033\007\015\034\007\016" "\035\006\016\036\007\017\037\010\017\040\010\020!\007\020\"\010\021#\011\021$\011\022%\010\022&\011" "\023'\012\023(\012\024)\011\024*\012\025*\013\026+\013\026,\013\027-\013\027.\014\030/\014\030" "\060\014\031\061\014\031\062\015\032\063\015\032\064\015\033\065\015\033\066\016\034\067\016\034" "\070\016\035\071\016\035:\017\036;\017\036<\017\037=\017\037>\020\040?\020\040@\020!A\017\040" "B\021\"C\021!D\021#E\020\"F\022$G\022#H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'" "P\024)Q\023(R\025*S\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^" "\030\060_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064" "i\031\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035" "\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040" "@\200\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212" "#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226" "&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242" ")R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256" ",X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272" "/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b" "\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f" "\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k" "\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p" "\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350" ":u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364" "={\365<z\366>|\367>{\370>}\371=|\372?~\373?}\374@w\375L\002\002\002\003\003\003\002\002\002" "\004\004\004\005\005\004\006\006\004\007\007\004\006\010\004\007\011\004\010\012\004\010\013\004\007\014\004\007\015\003\007\016" "\003\007\017\003\007\020\003\011\021\003\010\022\005\012\023\005\011\024\005\013\025\004\012\026\005\013\027\006" "\013\030\006\014\031\005\014\032\006\015\033\007\015\034\007\016\035\006\016\036\007\017\037\010\017\040\010" "\020!\007\020\"\010\021#\011\021$\011\022%\010\022&\011\023'\012\023(\012\024)\011\024*\012\025" "*\013\026+\013\026,\013\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063" "\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?}\374@w\375L\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\005\010\010" "\005\011\011\005\010\012\005\012\013\005\012\014\005\012\015\005\012\016\005\012\017\005\011\020\005\011\021" "\004\011\022\004\011\023\004\011\024\004\013\025\004\012\026\005\013\027\006\013\030\006\014\031\005\014\032" "\006\015\033\007\015\034\007\016\035\006\016\036\007\017\037\010\017\040\010\020!\007\020\"\010\021#\011" "\021$\011\022%\010\022&\011\023'\012\023(\012\024)\011\024*\012\025*\013\026+\013\026,\013\027" "-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063\015\032\064\015\033\065\015" "\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036<\017\037=\017\037>\020\040" "?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#H\022%I\021$J\023&K\023%L" "\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027" ".[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f" "\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034" "\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036" ">~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207" "\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223" "%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237" "(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253" "+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267" ".[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060" "a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063" "e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065" "j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067" "o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071" "s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;" "x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374@w\375L" "\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\006\006\011\011\006\012\012\006\013\013\006" "\013\014\006\012\015\006\014\016\006\014\017\006\014\020\006\014\021\006\014\022\006\014\023\006\013\024\006" "\013\025\005\013\026\005\013\027\005\013\030\005\014\031\005\014\032\006\015\033\007\015\034\007\016\035\006" "\016\036\007\017\037\010\017\040\010\020!\007\020\"\010\021#\011\021$\011\022%\010\022&\011\023'" "\012\023(\012\024)\011\024*\012\025*\013\026+\013\026,\013\027-\013\027.\014\030/\014\030\060" "\014\031\061\014\031\062\015\032\063\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070" "\016\035\071\016\035:\017\036;\017\036<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021" "\"C\021!D\021#E\020\"F\022$G\022#H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024" ")Q\023(R\025*S\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060" "_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031" "\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071" "t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200" "\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213" "#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227" "&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243" ")Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257" ",W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?|\374@w\375L\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\006\007\011\007\007\012\010\007\013\013\007\014\014\007\013\015\007\015\016\007" "\014\017\007\015\020\007\016\021\007\016\022\007\016\023\007\016\024\007\016\025\007\016\026\007\016\027\007" "\015\030\007\015\031\006\015\032\006\015\033\006\015\034\006\016\035\006\016\036\007\017\037\010\017\040\010" "\020!\007\020\"\010\021#\011\021$\011\022%\010\022&\011\023'\012\023(\012\024)\011\024*\012\025" "*\013\026+\013\026,\013\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063" "\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375L\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\007\010\012\010\010\013\011\010\014\014\010\015\015\010\016\016\010\015\017\010\017\020\010" "\016\021\010\017\022\010\020\023\010\020\024\010\020\025\010\020\026\010\020\027\010\017\030\010" "\020\031\010\021\032\010\017\033\010\017\034\010\017\035\007\017\036\007\017\037\007\017\040\007\020!" "\007\020\"\010\021#\011\021$\011\022%\010\022&\011\023'\012\023(\012\024)\011\024*\012\025*\013" "\026+\013\026,\013\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063\015\032" "\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036<\017" "\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#H\022" "%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026,W" "\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375K\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\011\011\014\012\011\015\013\011\016\015\011\017\017\011\020\020\011" "\017\021\011\020\022\011\020\023\011\020\024\011\021\025\011\022\026\011\022\027\011\021\030\011" "\021\031\011\021\032\011\022\033\011\022\034\011\023\035\011\023\036\011\023\037\011\022\040\011" "\021!\010\021\"\010\021#\010\021$\010\022%\010\022&\011\023'\012\023(\012\024)\011\024*\012\025" "*\013\026+\013\026,\013\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063" "\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?}\374@w\375K\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\010\014\013\010\015\013\010\016\014\012\017\015\012\020\017\012" "\021\021\012\022\022\012\021\023\012\022\024\012\023\025\012\022\026\012\023\027\012\024\030\012" "\024\031\012\024\032\012\023\033\012\023\034\012\024\035\012\025\036\012\025\037\012\025\040\012" "\025!\012\025\"\012\025#\012\024$\012\023%\011\023&\011\023'\011\023(\011\024)\011\025*\012\025" "*\013\025+\013\026,\012\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063" "\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375K\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\012\015\014\011\016\015\011\017\015\011\020\016\013" "\021\017\013\022\021\013\023\023\013\022\024\013\023\025\013\023\026\013\024\027\013\024\030\013" "\024\031\013\025\032\013\026\033\013\026\034\013\025\035\013\025\036\013\026\037\013\027\040\013" "\027!\013\027\"\013\027#\013\027$\013\026%\013\026&\013\027'\013\026(\013\025)\012\025*\012\025" "*\012\025+\012\026,\012\027-\013\027.\014\030/\014\030\060\014\031\061\014\031\062\015\032\063" "\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375K\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\013\016\015\013\017\016\012\020\017\012" "\021\017\012\022\020\013\023\022\014\024\024\014\025\025\014\024\026\014\025\027\014\025\030\014" "\026\031\014\027\032\014\026\033\014\027\034\014\030\035\014\030\036\014\027\037\014\027\040\014" "\027!\014\030\"\014\031#\014\031$\014\031%\014\031&\014\031'\014\031(\014\030)\014\030*\014\030" "*\014\030+\014\027,\013\027-\013\027.\013\027/\013\030\060\013\031\061\014\031\062\015\032\063" "\015\032\064\015\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375J\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\014\017\016\014\020\017\014" "\021\020\013\022\020\013\023\021\013\024\022\014\025\024\015\026\026\015\027\027\015\026\030\015" "\027\031\015\030\032\015\027\033\015\030\034\015\030\035\015\030\036\015\031\037\015\032\040\015" "\032!\015\031\"\015\031#\015\032$\015\033%\015\033&\015\033'\015\033(\015\033)\015\033*\015\033" "*\015\033+\015\032,\015\032-\015\032.\015\032/\015\031\060\014\031\061\014\031\062\014\031\063" "\014\032\064\014\033\065\015\033\066\016\034\067\016\034\070\016\035\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375J\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\015\020\017\015" "\021\020\015\022\021\015\023\022\014\024\022\014\025\023\014\026\024\015\027\026\016\027\030\016" "\027\031\016\030\032\016\030\033\016\031\034\016\031\035\016\032\036\016\033\037\016\032\040\016" "\033!\016\034\"\016\033#\016\033$\016\033%\016\033&\016\034'\016\035(\016\035)\016\035*\016\035" "*\016\035+\016\035,\016\035-\016\035.\016\035/\016\034\060\016\034\061\016\034\062\016\034\063" "\016\033\064\015\033\065\015\033\066\015\033\067\015\033\070\015\034\071\016\035:\017\036;\017\036" "<\017\037=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375J\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\015" "\021\020\016\022\021\016\023\022\016\024\023\016\025\024\015\026\024\015\027\025\015\030\027\016" "\030\031\017\031\032\017\031\033\017\032\034\017\032\035\017\033\036\017\033\037\017\034\040\017" "\035!\017\034\"\017\034#\017\035$\017\035%\017\035&\017\035'\017\035(\017\036)\017\037*\017\037" "*\017\037+\017\037,\017\037-\017\037.\017\037/\017\037\060\017\037\061\017\037\062\017\037\063" "\017\036\064\017\036\065\017\036\066\017\036\067\017\036\070\016\035\071\016\035:\016\035;\016\035" "<\016\036=\017\037>\020\040?\020\040@\020!A\017\040B\021\"C\021!D\021#E\020\"F\022$G\022#" "H\022%I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026" ",W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031" "\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066" "n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<" "z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204" "!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H" "\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M" "\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S" "\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y" "\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374@w\375J\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\017\023\022\017\024\023\017\025\024\017\026\025\017\027\025\016\030\026\016" "\031\027\016\032\031\017\032\033\020\033\034\020\033\035\020\034\036\020\034\037\020\035\040\020" "\036!\020\035\"\020\036#\020\037$\020\036%\020\037&\020\040'\020\037(\020\037)\020\037*\020\040" "*\020!+\020!,\020!-\020!.\020!/\020!\060\020!\061\020!\062\020!\063\020!\064\020!\065\020!" "\066\020!\067\020!\070\020\040\071\020\040:\020\040;\020\040<\017\037=\017\037>\017\037?\017\037" "@\017\040A\020\040B\021\"C\021!D\021#E\020\"F\022$G\022#H\022%I\021$J\023&K\023%L\023'M" "\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027.[\027" "-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064" "g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033" "\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?" "\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210" "\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224" "%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240" "(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254" "+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270" ".]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303" "\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314" "\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324" "\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335" "\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346" ":t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362" "=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374@w\375I\002\002\002" "\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\020\024" "\023\020\025\024\020\026\025\020\027\026\020\030\026\020\031\027\017\032\030\017\033\031\017\034" "\033\017\034\035\020\034\036\021\035\037\021\036\040\021\037!\021\036\"\021\037#\021\037$\021\040" "%\021!&\021\040'\021\040(\021!)\021!*\021!*\021!+\021!,\021\"-\021#.\021#/\021#\060\021#" "\061\021#\062\021#\063\021#\064\021#\065\021#\066\021#\067\021#\070\021#\071\021#:\021#;\021" "#<\021\"=\021\">\021\"?\021\"@\020!A\020!B\020!C\020!D\020\"E\020\"F\022$G\022#H\022%" "I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U\024*V\026,W\026" "+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b\031\062c\031\061" "d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033\066m\032\066n\033" "\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036" "={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205" "!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I" "\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O" "\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U" "\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[" "\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300" "\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061" "d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064" "i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067" "n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071" "r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357" "<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373" "?|\374@w\375I\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\021\025\024\021\026\024\021\027\024\021\030\025\021\031\027\021" "\032\031\021\033\031\021\034\032\020\035\033\020\035\035\020\036\037\021\036\040\022\037!\022\037" "\"\022\040#\022\040$\022!%\022!&\022!'\022\"(\022#)\022\"*\022#*\022#+\022#,\022#-\022#" ".\022$/\022%\060\022%\061\022%\062\022%\063\022%\064\022%\065\022%\066\022%\067\022%\070\022" "%\071\022%:\022%;\022%<\022%=\022%>\022%?\022$@\022$A\022$B\022$C\022$D\021#E\021#F\021" "#G\021#H\021$I\021$J\023&K\023%L\023'M\022&N\024(O\024'P\024)Q\023(R\025*S\025)T\025+U" "\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061a\027\060b" "\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033\065l\033" "\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;" "x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!" "B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216" "$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232" "'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246" "*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262" "-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276" "/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c" "\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h" "\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m" "\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q" "\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354" ";w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370" ">}\371=|\372?~\373?|\374@w\375I\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006" "\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020" "\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\022\026\024\022\027\024\022\030" "\025\022\031\026\022\032\027\022\033\031\022\034\033\022\035\033\022\036\034\021\037\036\021\037" "\040\021\040!\022\040\"\023!#\023!$\023\"%\023\"&\023#'\023$(\023#)\023$*\023%*\023$+\023" "$,\023%-\023%.\023%/\023%\060\023%\061\023&\062\023'\063\023'\064\023'\065\023'\066\023'\067" "\023'\070\023'\071\023':\023';\023'<\023'=\023'>\023'?\023'@\023'A\023'B\023'C\023&D\023" "&E\023&F\023&G\023&H\022%I\022%J\022%K\022%L\022&M\022&N\024(O\024'P\024)Q\023(R\025*S" "\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030\061" "a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065k\033" "\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035" ";w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040" "A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215" "#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231" "%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245" "(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261" "+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275" ".^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307" "\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320" "\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330" "\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341" "\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u" "\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{" "\370>}\371=|\372?~\373?|\374@w\375I\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007" "\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016" "\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\023\027\025" "\023\030\025\023\031\026\023\032\027\023\033\030\023\034\031\023\035\033\023\036\035\023\037\035" "\023\040\036\022!\040\022!\"\022\"#\023\"$\024#%\024#&\024$'\024%(\024$)\024%*\024%*\024" "%+\024%,\024'-\024&.\024'/\024'\060\024'\061\024'\062\024'\063\024(\064\024)\065\024)\066\024" ")\067\024)\070\024)\071\024):\024);\024)<\024)=\024)>\024)?\024)@\024)A\024)B\024)C\024)" "D\024)E\024)F\024)G\024(H\024(I\024(J\024(K\024(L\023'M\023'N\023'O\023'P\023(Q\023(R\025" "*S\025)T\025+U\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060_\030/`\030" "\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031\064j\032\065" "k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034" ":v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201" "\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214" "#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230" "&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244" ")S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260" ",Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274" "/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306" "\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317" "\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327" "\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340" "\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352" ";v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366" ">|\367>{\370>}\371=|\372?~\373?|\374@w\375H\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003" "\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\024\030\025\024\031\026\024\032\027\024\033\030\024\034\031\024\035\032\024\036\033\024" "\037\035\024\040\036\024!\037\024\"\040\023#\"\023#$\023#%\024$&\025$'\025%(\025%)\025&*\025" "&*\025&+\025(,\025'-\025(.\025)/\025(\060\025(\061\025)\062\025)\063\025)\064\025)\065\025" ")\066\025*\067\025+\070\025+\071\025+:\025+;\025+<\025+=\025+>\025+?\025+@\025+A\025+B\025" "+C\025+D\025+E\025+F\025+G\025+H\025+I\025+J\025+K\025*L\025*M\025*N\025*O\025*P\024)Q" "\024)R\024)S\024)T\024*U\024*V\026,W\026+X\026-Y\025,Z\027.[\027-\\\027/]\026.^\030\060" "_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031" "\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071" "t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200" "\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213" "#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227" "&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243" ")Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257" ",W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?|\374@w\375H\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\026\025\031\026\025\032\027\025\033\030\025\034\032\025\035\032\025\036" "\033\025\037\034\025\040\035\025!\037\025\"\040\025#!\025$#\024$%\024%&\024%'\025&(\026&)\026" "'*\026'*\026(+\026(,\026(-\026).\026)/\026*\060\026*\061\026*\062\026*\063\026*\064\026+\065" "\026+\066\026+\067\026+\070\026,\071\026-:\026-;\026-<\026-=\026->\026-?\026-@\026-A\026-" "B\026-C\026-D\026-E\026-F\026-G\026-H\026-I\026-J\026-K\026-L\026-M\026-N\026-O\026,P\026" ",Q\026,R\025,S\025,T\025+U\025+V\025+W\025+X\025,Y\025,Z\027.[\027-\\\027/]\026.^\030\060" "_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031" "\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071" "t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200" "\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213" "#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227" "&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243" ")Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257" ",W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?|\374@w\375H\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\027\026\032\027\026\033\030\026\034\031\026\035\033\026\036" "\033\026\037\034\026\040\035\026!\036\026\"\040\026#!\026$\"\026%#\025&%\025&'\025'(\025')" "\025(*\026(*\027)+\027),\027)-\027*.\027*/\027+\060\027+\061\027+\062\027+\063\027,\064\027" "-\065\027,\066\027,\067\027-\070\027-\071\027-:\027-;\027-<\027.=\027.>\027.?\027.@\027.A" "\027.B\027.C\027.D\027.E\027.F\027.G\027.H\027.I\027.J\027.K\027.L\027.M\027.N\027.O\027" ".P\027.Q\027/R\027/S\027.T\027.U\026.V\026.W\026.X\026-Y\026-Z\026-[\026-\\\026.]\026." "^\030\060_\030/`\030\061a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032" "\064i\031\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071" "s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177" "\040@\200\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E" "\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J" "\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P" "\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V" "\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-" "\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304" "\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315" "\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325" "\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336" "\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t" "\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y" "\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374@w\375H\002\002\002\003\003\003\002" "\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013" "\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022" "\025\024\023\026\025\024\027\026\025\030\027\026\031\030\026\032\030\026\033\030\027\034\031\027" "\035\032\027\036\034\027\037\035\027\040\035\027!\036\027\"\037\027#\040\027$\"\027%#\027&$\027" "'%\026('\026()\026(*\026)*\026*+\027*,\030+-\030,.\030+/\030,\060\030,\061\030,\062\030-" "\063\030-\064\030-\065\030.\066\030.\067\030.\070\030.\071\030/:\030/;\030/<\030/=\030/>\030" "\060?\030\060@\030\060A\030\060B\030\060C\030\060D\030\060E\030\060F\030\060G\030\060H\030\060" "I\030\061J\030\061K\030\061L\030\061M\030\061N\030\061O\030\060P\030\060Q\030\060R\030\060S\030" "\060T\030\060U\030\060V\030\060W\030\060X\030\060Y\027\060Z\027\060[\027\060\\\027/]\027/^\027" "/_\027/`\027\060a\027\060b\031\062c\031\061d\031\063e\030\062f\032\064g\032\063h\032\064i\031" "\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071" "t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200" "\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213" "#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227" "&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243" ")Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257" ",W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?}\374@w\375H\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\031\030\034\031\030\035\032\030\036" "\033\030\037\035\030\040\036\030!\036\030\"\037\030#\040\030$!\030%\"\030&$\030'%\030(&\030" ")(\030)*\027*+\027++\027+,\027+-\030,.\031,/\031-\060\031-\061\031.\062\031.\063\031.\064" "\031.\065\031\060\066\031/\067\031/\070\031\060\071\031\061:\031\060;\031\060<\031\061=\031\061" ">\031\061?\031\061@\031\061A\031\062B\031\062C\031\062D\031\062E\031\062F\031\062G\031\062H\031" "\062I\031\062J\031\062K\031\063L\031\063M\031\063N\031\063O\031\063P\031\063Q\031\063R\031\063" "S\031\063T\031\062U\031\062V\031\062W\031\062X\031\062Y\031\062Z\031\062[\031\062\\\031\062]" "\030\062^\030\062_\030\062`\030\061a\030\061b\030\061c\030\061d\030\062e\030\062f\032\064g\032" "\063h\032\065i\031\064j\032\065k\033\065l\033\066m\032\066n\033\067o\034\067p\034\070q\033\070" "r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177" "\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"" "E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224" "%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240" "(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254" "+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270" ".]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303" "\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314" "\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324" "\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335" "\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346" ":t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362" "=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}\374@x\375G\002\002\002" "\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\032\031\035\032\031\036\033\031\037\034\031\040\036\031!\037\031\"\040\031#\040\031$!\031%\"" "\031&#\031'$\031(&\031)'\031*(\031+*\031+,\030,,\030,-\030-.\030-/\031.\060\032.\061\032" "/\062\032/\063\032/\064\032\060\065\032\060\066\032\060\067\032\061\070\032\061\071\032\061:\032" "\062;\032\062<\032\063=\032\062>\032\063?\032\063@\032\063A\032\063B\032\063C\032\064D\032\064" "E\032\064F\032\064G\032\064H\032\064I\032\064J\032\063K\032\064L\032\065M\032\065N\032\065O\032" "\065P\032\065Q\032\065R\032\065S\032\065T\032\065U\032\065V\032\065W\032\065X\032\065Y\032\064" "Z\032\064[\032\064\\\032\064]\032\064^\032\064_\032\064`\032\064a\031\064b\031\064c\031\064d" "\031\063e\031\063f\031\063g\031\063h\031\064i\031\064j\032\065k\033\065l\033\066m\032\066n\033" "\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036" "={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205" "!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I" "\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O" "\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U" "\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[" "\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300" "\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061" "d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064" "i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067" "n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071" "r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357" "<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373" "?}\374@w\375G\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\033\031\036\033\032\037\034\032\040\035\032!\037\032\"" "\040\032#!\032$\"\032%\"\032&#\032'$\032(%\032)'\032*(\032*)\032,*\032-,\032-.\031-.\031" "./\031/\060\031/\061\031\060\062\032\060\063\033\060\064\033\062\065\033\061\066\033\061\067\033" "\063\070\033\062\071\033\062:\033\064;\033\063<\033\063=\033\064>\033\065?\033\064@\033\064A\033" "\065B\033\065C\033\065D\033\065E\033\065F\033\066G\033\066H\033\066I\033\066J\033\066K\033\065" "L\033\066M\033\066N\033\067O\033\067P\033\067Q\033\067R\033\067S\033\067T\033\067U\033\067V\033" "\067W\033\067X\033\067Y\033\067Z\033\067[\033\067\\\033\067]\033\066^\033\066_\033\066`\033\066" "a\033\066b\033\066c\033\066d\033\066e\032\066f\032\066g\032\066h\032\065i\032\065j\032\065k\032" "\065l\032\066m\032\066n\033\067o\034\067p\034\070q\033\070r\034\071s\035\071t\035:u\034:v\035" ";w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040" "A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215" "#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231" "%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245" "(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261" "+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275" ".^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307" "\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320" "\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330" "\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341" "\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u" "\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{" "\370>}\371=|\372?~\373?}\374@w\375G\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007" "\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016" "\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026" "\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\034\032\037\034" "\033\040\035\032!\036\031\"\040\031#!\032$\"\033%#\033&$\033'$\033(%\033)&\033*'\033*)\033" "+*\033,+\033.,\033..\033//\032\060\060\032\060\061\032\060\062\032\061\063\032\061\064\033\062" "\065\034\062\066\034\062\067\034\063\070\034\063\071\034\064:\034\064;\034\064<\034\065=\034\066" ">\034\065?\034\066@\034\066A\034\067B\034\066C\034\067D\034\067E\034\067F\034\067G\034\067H\034" "\070I\034\070J\034\070K\034\070L\034\070M\034\067N\034\070O\034\070P\034\070Q\034\071R\034\071" "S\034\071T\034\071U\034\071V\034\071W\034\071X\034\071Y\034\071Z\034\071[\034\071\\\034\071]" "\034\071^\034\071_\034\071`\034\071a\034\070b\034\070c\034\070d\034\070e\034\070f\034\070g\034" "\070h\034\070i\033\070j\033\070k\033\070l\033\067m\033\067n\033\067o\033\067p\033\070q\033\070" "r\034\071s\035\071t\035:u\034:v\035;w\036;x\036<y\035<z\036={\037=|\037>}\036>~\037?\177" "\040@\177\040@\200\037A\201\040A\202!B\203!B\204!C\205!C\206\"D\207\"D\210\"" "E\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224" "%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240" "(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254" "+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270" ".]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303" "\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314" "\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324" "\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335" "\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346" ":t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362" "=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}\374@w\375G\002\002\002" "\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\035\033\037\035\033\040\035\033!\036\032\"\037\032#!\032$\"\032%\"\032" "&#\033'%\034(%\034)&\034*'\034*(\034+)\034,+\034-,\034.-\034//\034\060\060\034\061\061\034" "\061\062\033\061\063\033\062\064\033\062\065\033\063\066\034\063\067\035\064\070\035\064\071\035" "\065:\035\065;\035\065<\035\066=\035\066>\035\067?\035\070@\035\067A\035\067B\035\070C\035\071" "D\035\070E\035\070F\035\071G\035\071H\035\071I\035\071J\035\071K\035:L\035:M\035:N\035:O\035" ":P\035\071Q\035:R\035:S\035;T\035;U\035;V\035;W\035;X\035;Y\035;Z\035;[\035;\\\035;]\035" ";^\035;_\035;`\035;a\035;b\035;c\035;d\035;e\035;f\035:g\035:h\035:i\035:j\035:k\035:l" "\035:m\034:n\034:o\034:p\034\071q\034\071r\034\071s\034\071t\034:u\034:v\035;w\036;x\036<" "y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B\203" "!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H" "\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N" "\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T" "\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z" "\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276" "/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c" "\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h" "\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m" "\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q" "\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354" ";w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370" ">}\371=|\372?~\373?}\374@w\375F\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006" "\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020" "\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030" "\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\034\033\037\035\034\040" "\036\035!\036\033\"\037\033#!\033$\"\033%!\033&\"\033'#\033($\034)&\035*'\035*(\035+)\035" ",*\035-+\035.-\035/.\035\060/\035\061\061\035\062\062\035\063\063\035\063\064\034\063\065\034" "\064\066\034\064\067\034\065\070\035\065\071\036\066:\036\066;\036\067<\036\067=\036\067>\036\071" "?\036\070@\036\070A\036\071B\036:C\036\071D\036:E\036:F\036;G\036:H\036;I\036;J\036;K\036" ";L\036;M\036<N\036<O\036<P\036<Q\036<R\036;S\036<T\036<U\036=V\036=W\036=X\036=Y\036=Z" "\036=[\036=\\\036=]\036=^\036=_\036=`\036=a\036=b\036=c\036=d\036=e\036=f\036=g\036=h\036" "=i\036=j\036<k\036<l\036<m\036<n\036<o\036<p\036<q\035<r\035<s\035<t\035;u\035;v\035;w" "\035;x\035<y\035<z\036={\037=|\037>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202" "!B\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G" "\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L" "\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R" "\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X" "\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275" ".^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307" "\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320" "\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330" "\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341" "\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u" "\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{" "\370>}\371=|\372?~\373?}\374@w\375F\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007" "\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016" "\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026" "\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034" "\034\040\035\035!\036\035\"\037\034#!\034$\"\034%!\034&!\034'#\034($\034)%\034*&\035*(\036" "+)\036,*\036-+\036.,\036/.\036\060/\036\061\060\036\062\061\036\063\063\036\064\064\036\064\065" "\036\065\066\035\065\067\035\066\070\035\067\071\035\070:\036\067;\037\070<\037\070=\037\070>\037" "\071?\037\071@\037:A\037;B\037:C\037;D\037<E\037;F\037;G\037<H\037=I\037<J\037=K\037=L\037" "=M\037=N\037=O\037=P\037>Q\037>R\037>S\037>T\037=U\037>V\037>W\037?X\037?Y\037?Z\037?[" "\037?\\\037?]\037?^\037?_\037?`\037?a\037?b\037?c\037?d\037?e\037?f\037?g\037?h\037?i\037" "?j\037?k\037?l\037?m\037?n\037>o\037=p\037>q\037>r\037>s\037>t\037>u\036>v\036>w\036>x" "\036=y\036=z\036={\036=|\036>}\036>~\037?\177\040@\177\040@\200\037A\201\040A\202!B" "\203!B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216" "$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232" "'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246" "*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262" "-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276" "/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c" "\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h" "\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m" "\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q" "\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354" ";w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370" ">}\371=|\372?~\373?}\374@x\375F\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006" "\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020" "\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030" "\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040" "\035\035!\036\036\"\037\036#!\035$\"\035%\"\036&\"\036'#\035($\035)%\035*&\035*'\035+(\036" ",*\037-+\037.,\037/-\037\060.\037\061\060\037\062\061\037\063\062\037\064\064\037\065\065\037" "\066\066\037\066\067\037\066\070\036\070\071\036\070:\036\070;\036\070<\036\071=\037\071>\040:" "?\040:@\040<A\040;B\040;C\040=D\040<E\040<F\040=G\040>H\040=I\040>J\040?K\040>L\040>M\040" "?N\040?O\040?P\040?Q\040?R\040@S\040@T\040@U\040@V\040?W\040@X\040@Y\040@Z\040A[\040A\\" "\040A]\040A^\040A_\040A`\040Aa\040Ab\040Ac\040Ad\040Ae\040Af\040Ag\040Ah\040Ai\040Aj\040" "Ak\040Al\040Am\040An\040Ao\040Ap\040Aq\040Ar\040@s\040?t\040@u\040@v\040@w\040@x\040@y" "\037@z\037@{\037@|\037?}\037?~\037?\177\037?\177\037@\200\037@\201\040A\202!B\203!" "B\204!C\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214#G\215#G\216$H\217" "$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233" "'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247" "*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263" "-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?}\374@x\375F\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\037$\"\036%#\037&#\037'#\037($\037)&\036*&\036*'\036+(\036,)\036-" "*\036.,\037/-\040\060.\040\061/\040\062\060\040\063\061\040\064\063\040\065\065\040\066\066\040" "\067\067\040\070\070\040\070\071\040\070:\037\071;\037\071<\037:=\037:>\037;?\040;@!=A!<B!" "<C!=D!=E!>F!?G!>H!?I!@J!?K!@L!@M!AN!@O!AP!AQ!AR!AS!AT!AU!BV!BW!BX!BY!AZ!" "B[!B\\!C]!C^!C_!C`!Ca!Cb!Cc!Cd!Ce!Cf!Cg!Ch!Ci!Cj!Ck!Cl!Cm!Cn!Co!Cp!Cq!Cr" "!Cs!Bt!Bu!Bv!Bw!Bx!By!Bz!B{!B|!B}\040A~\040A\177\040A\177\040A\200\040A\201\040" "A\202\040A\203\040B\204\040B\205!C\206\"D\207\"D\210\"E\211\"E\212#F\213#F\214" "#G\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227&K\230" "&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244" ")S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260" ",Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274" "/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306" "\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317" "\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327" "\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340" "\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352" ";v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366" ">|\367>{\370>}\371=|\372?~\373?}\374@x\375E\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003" "\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\037$\"\037%#\040&$\040'#\040($\040)%\040*'\040" "*(\037+(\037,)\037-*\037.+\037/,\037\060.\040\061/!\062\060!\063\061!\064\062!\065\063!\066" "\065!\067\066!\070\070!\071\071!\071:!:;!;<!;=\040;>\040<?\040<@\040>A!=B\"=C\">D\">" "E\"?F\"?G\"?H\"@I\"@J\"@K\"AL\"AM\"AN\"BO\"CP\"BQ\"BR\"CS\"CT\"CU\"CV\"C" "W\"DX\"DY\"DZ\"D[\"C\\\"D]\"D^\"E_\"E`\"Ea\"Eb\"Ec\"Ed\"Ee\"Ef\"Eg\"Eh\"" "Ei\"Ej\"Ek\"El\"Em\"En\"Eo\"Ep\"Eq\"Er\"Es\"Et\"Eu\"Ev\"Ew\"Ex\"Dy\"Dz\"" "D{\"D|\"D}\"D~\"D\177\"D\177\"D\200!C\201!C\202!C\203!C\204!B\205!C\206!" "C\207!C\210!D\211\"E\212#F\213#F\214#G\215#G\216$H\217$H\220$I\221$I\222" "%J\223%J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236" "(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252" "+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266" ".\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301" "/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062" "e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065" "j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067" "n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071" "s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360" "<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}\374" "@x\375E\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010" "\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021" "\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031" "\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037" "#!\036$\"\037%#\040&$!'$!($!)%!*&!*(!+)!,*!-*\040.+\040/,\040\060-\040\061.\040\062" "\060!\063\061\"\064\062\"\065\063\"\066\064\"\067\066\"\070\067\"\071\071\"::\";;\"<<\"" "<=\"<>!=?!=@!>A!>B!>C\"?D#?E#@F#@G#AH#AI#AJ#BK#BL#BM#CN#DO#CP#DQ#DR#ES#D" "T#EU#EV#EW#EX#EY#FZ#F[#F\\#F]#E^#F_#F`#Fa#Gb#Gc#Gd#Ge#Gf#Gg#Gh#Gi#Gj#Gk#" "Gl#Gm#Gn#Go#Gp#Gq#Gr#Gs#Gt#Gu#Gv#Gw#Gx#Gy#Gz#G{#G|#F}#F~#F\177#F\177#F\200" "#F\201#F\202#F\203#F\204\"E\205\"E\206\"E\207\"E\210\"D\211\"E\212\"E\213" "\"E\214\"F\215#G\216$H\217$H\220$I\221$I\222%J\223%J\224%K\225%J\226&L\227" "&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243" ")Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257" ",W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?}\374@x\375E\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$!'%\"(%\")%\"*&\"" "*'\"+)\",)\"-*\".+\"/,!\060-!\061.!\062/!\063\060!\064\062\"\065\063#\066\064#\067\065" "#\070\066#\071\070#::#;;#<<#==#=>#=?#>@#>A\"?B\"?C\"@D\"@E\"AF#AG$CH$BI$BJ$C" "K$CL$DM$EN$DO$EP$FQ$ER$ES$FT$FU$FV$FW$GX$GY$GZ$G[$G\\$H]$H^$H_$H`$Ga$Hb$" "Hc$Id$Ie$If$Ig$Ih$Ii$Ij$Ik$Il$Im$In$Io$Ip$Iq$Ir$Is$It$Iu$Iv$Iw$Ix$Iy$Iz$" "I{$I|$I}$I~$I\177$I\177$H\200$H\201$H\202$H\203$H\204$H\205$H\206$H\207$" "H\210#G\211#G\212#G\213#G\214#F\215#G\216#G\217#G\220#H\221$I\222%J\223%" "J\224%K\225%J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235&N\236(P\237(" "O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+" "U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267" ".[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060" "a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063" "e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065" "j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067" "o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071" "s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;" "x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}\374@x\375E" "\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012" "\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022" "\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032" "\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037" "%#!&$\"'%\"(&#)&#*&#*'#+(#,)#-*#.+#/,#\060-#\061.\"\062/\"\063\060\"\064\061\"\065" "\062\"\066\064#\067\065$\070\066$\071\067$:\070$;:$<;$=<$>>$>?$?@$@A$@B#@C#AD#AE#B" "F#BG#DH$CI%CJ%DK%DL%EM%EN%EO%FP%FQ%FR%GS%HT%GU%HV%HW%HX%HY%IZ%I[%I\\%I]%" "I^%J_%J`%Ja%Jb%Ic%Jd%Je%Kf%Kg%Kh%Ki%Kj%Kk%Kl%Km%Kn%Ko%Kp%Kq%Kr%Ks%Kt%Ku%" "Kv%Kw%Kx%Ky%Kz%K{%K|%K}%K~%K\177%K\177%K\200%K\201%K\202%K\203%J\204%J\205" "%J\206%J\207%J\210%J\211%J\212%J\213%J\214$I\215$I\216$I\217$I\220$H\221" "$I\222$I\223$I\224$J\225$J\226&L\227&K\230&M\231%L\232'N\233'M\234'O\235" "&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247*S\250*U\251" ")T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265" ",Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060" "`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312" "\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323" "\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333" "\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344" "\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w" "\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}" "\374@x\375E\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&#)'$*'$*'$+($,)$-*$.+$/,$\060-$\061.$\062/$\063\060" "#\064\061#\065\062#\066\063#\067\065#\070\066$\071\067%:\070%;\071%<;%=<%>=%??%?@%AA%A" "B%AC%BD%BE$CF$CG$EH$DI$DJ%EK&EL&FM&FN&GO&GP&GQ&HR&HS&HT&IU&IV&IW&IX&JY&J" "Z&J[&J\\&K]&K^&K_&K`&Ka&Lb&Lc&Ld&Ke&Lf&Lg&Lh&Mi&Mj&Mk&Ml&Mm&Mn&Mo&Mp&Mq&" "Mr&Ms&Mt&Mu&Mv&Mw&Mx&My&Mz&M{&M|&M}&M~&M\177&M\177&M\200&M\201&M\202&M\203" "&M\204&M\205&M\206&M\207&L\210&L\211&L\212&L\213&L\214&L\215&L\216&L\217" "&L\220%K\221%K\222%K\223%K\224%J\225%K\226%K\227%K\230%L\231%L\232'N\233" "'M\234'O\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245(R\246*T\247" "*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263" "-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?}\374@x\375E\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'$*(%*(%+(%,)%-*%.+%/,%\060-%\061." "%\062/%\063\060%\064\061%\065\062$\066\063$\067\064$\070\065$\071\067$:\070%;\071&<:&=;&>" "=&??&@?&AA&AB&BC&BD&DE&DF&DG%EH%EI%EJ%FK%FL&GM'GN'HO'HP'HQ'IR'IS'IT'JU'J" "V'JW'KX'KY'KZ'L['L\\'L]'L^'M_'M`'Ma'Mb'Mc'Nd'Ne'Nf'Ng'Mh'Ni'Nj'Ok'Ol'Om'" "On'Oo'Op'Oq'Or'Os'Ot'Ou'Ov'Ow'Ox'Oy'Oz'O{'O|'O}'O~'O\177'O\177'O\200'O\201" "'O\202'O\203'O\204'O\205'O\206'O\207'O\210'O\211'O\212'O\213'N\214'N\215" "'N\216'N\217'N\220'N\221'N\222'N\223'N\224&M\225&M\226&M\227&M\230&L\231" "&M\232&M\233&M\234&N\235&N\236(P\237(O\240(Q\241'P\242)R\243)Q\244)S\245" "(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257,W\260,Y\261" "+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275" ".^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307" "\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320" "\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330" "\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341" "\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u" "\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{" "\370>}\371=|\372?~\373?}\374@x\375E\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007" "\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016" "\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026" "\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034" "\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(%*)&+)&,)&-*&.+&" "/,&\060-&\061.&\062/&\063\060&\064\061&\065\062&\066\063&\067\064%\070\065%\071\066%:\067%" ";\070%<:&=;'><'?='@?'AA'BA'CC'CD'DE'DF'EG'EH'FI&FJ&GK&GL&HM&HN&IO'IP(IQ(J" "R(JS(KT(KU(KV(LW(LX(LY(MZ(M[(M\\(M](N^(N_(N`(Na(Nb(Oc(Od(Oe(Of(Pg(Ph(Pi(" "Oj(Pk(Pl(Pm(Qn(Qo(Qp(Qq(Qr(Qs(Qt(Qu(Qv(Qw(Qx(Qy(Qz(P{(Q|(Q}(Q~(Q\177(Q\177" "(Q\200(Q\201(Q\202(Q\203(P\204(Q\205(P\206(P\207(P\210(Q\211(Q\212(Q\213" "(Q\214(Q\215(Q\216(Q\217(P\220(P\221(P\222(P\223(P\224(P\225(P\226(P\227" "(P\230'O\231'O\232'O\233'O\234'N\235'O\236'O\237'O\240'P\241'P\242)R\243" ")Q\244)S\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255*V\256,X\257" ",W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273" "/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060" "b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063" "g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066" "l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070" "p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:" "u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<" "z\366>|\367>{\370>}\371=|\372?~\373?}\374@w\375D\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)&" "+*',*'-*'.+'/,'\060-'\061.'\062/'\063/'\064\060'\065\061'\066\063'\067\064'\070\065'\071" "\066&:\067&;\070&<\071&=:&><'?=(@>(A?(BA(CB(DC(DE(FF(FG(FH(GI(GJ(HK'HL'IM'IN" "'JO'JP'JQ(KR(KS)LT)LU)LV)MW)MX)MY)NZ)N[)N\\)N])O^)O_)O`)Pa)Pb)Pc)Pd)Qe)Q" "f)Qg)Qh)Ri)Rj)Rk)Rl)Qm)Rn)Ro)Sp)Sq)Sr)Ss)St)Su)Sv)Sw)Sx)Sy)Sz)R{)S|)T})T" "~)T\177)T\177)T\200)T\201)T\202)T\203)S\204)S\205)S\206)S\207)S\210)S\211" ")R\212)R\213)R\214)R\215)R\216)S\217)S\220)S\221)S\222)S\223)R\224)R\225" ")R\226)R\227)Q\230)R\231)R\232)R\233)R\234(Q\235(Q\236(Q\237(Q\240(P\241" "(Q\242(Q\243(Q\244(R\245(R\246*T\247*S\250*U\251)T\252+V\253+U\254+W\255" "*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267.[\270.]\271" "-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303\061a\304" "\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315" "\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325" "\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336" "\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t" "\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y" "\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?}\374?x\375D\002\002\002\003\003\003\002" "\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013" "\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022" "\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031" "\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#" "(&$)'%*(&*)'+)',+(-+(.+(/,(\060-(\061.(\062/(\063.(\064\060(\065\061(\066\062(\067\063" "(\070\065(\071\066(:\067(;\070'<\071'=:'>;'?<'@>'A?(B@)CB)DC)ED)FF)FG)GH)GI)HJ)" "IK)IL)JM)JN(KO(KP(KQ(LR(LS)MT)MU*NV*NW*NX*NY*OZ*O[*O\\*P]*P^*P_*Q`*Qa*Qb" "*Qc*Rd*Re*Rf*Rg*Sh*Si*Sj*Sk*Tl*Tm*Tn*So*Tp*Tq*Tr*Us*Ut*Uu*Uv*Uw*Ux*Uy*Uz" "*U{*T|*T}*V~*V\177*V\177*V\200*V\201*V\202*V\203*V\204*V\205*V\206*V\207" "*V\210*V\211*U\212*U\213*U\214*U\215*U\216*T\217*T\220*T\221*T\222*U\223" "*U\224*U\225*U\226*U\227*T\230*T\231*T\232*T\233*S\234*T\235*T\236*T\237" "*T\240)S\241)S\242)S\243)S\244)R\245)S\246)S\247)S\250)T\251)T\252+V\253" "+U\254+W\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z\266.\\\267" ".[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060" "a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063" "e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065" "j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067" "o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071" "s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;" "x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?w\375D" "\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012" "\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022" "\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032" "\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037" "%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.+)/,)\060-)\061.)\062/)\063/)\064\060)\065\061)\066" "\062)\067\063)\070\064)\071\065):\066);\070)<\071)=:(>;(?;(@>(A?(B@(CA)DB*ED*FF)GF" ")HH)HI)IJ)IK)JL)JM)KN)KO*LP)LQ)MR)MS)NT)NU)OV*OW*OX+PY+PZ*Q[*Q\\*Q]*Q^*R" "_*R`*Ra*Rb*Sc*Sd*Se*Tf*Tg*Th*Ti*Uj*Uk*Ul*Um*Vn*Vo*Vp*Vq*Ur*Vs*Vt*Wu*Wv*W" "w*Wx*Wy*Wz*W{*W|*V}*V~*W\177*X\177*X\200*X\201*X\202*X\203*X\204*X\205*X" "\206*X\207*X\210*X\211*X\212*X\213*X\214*X\215*X\216*W\217*W\220*W\221*W" "\222*V\223*V\224*V\225*V\226*V\227*W\230*W\231*W\232*W\233*V\234*V\235*V" "\236*V\237*U\240+U\241+U\242+U\243+U\244*U\245*U\246*U\247*U\250*T\251*T" "\252*U\253*U\254*V\255*V\256,X\257,W\260,Y\261+X\262-Z\263-Y\264-[\265,Z" "\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`" "\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312" "\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323" "\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333" "\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344" "\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w" "\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|" "\374?w\375D\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*'-,(.,)/,*\060-)\061.)\062/)\063\060" ")\064\060)\065\061)\066\062)\067\063)\070\064)\071\065):\066);\067)<\070)=:)>;*?<*@=)A>" ")B?)CA)DB)EC*FD+GF+HG*IH*JJ*JK*KL*KM*LN*LO*MP*MQ+NR*NS*OT*OU*PV*PW*PX+QY" "+QZ,R[,R\\+R]+S^+S_+S`+Sa+Tb+Tc+Td+Ue+Uf+Ug+Uh+Vi+Vj+Vk+Vl+Vm+Wn+Wo+Wp+X" "q+Xr+Ws+Wt+Xu+Xv+Yw+Yx+Yy+Yz+Y{+Y|+Y}+X~+X\177+X\177+Y\200+Y\201+Z\202+Z" "\203+Z\204+Z\205+Z\206+Z\207+Z\210+Z\211+Z\212+Z\213+Z\214+Z\215+Z\216+Z" "\217+Z\220+Z\221+Z\222+Y\223+Y\224+Y\225+Y\226+Y\227+X\230+X\231+X\232+X" "\233+Y\234+Y\235+Y\236+Y\237+X\240+X\241+X\242+X\243+X\244+X\245,W\246,W" "\247,W\250+W\251+W\252+W\253+W\254+V\255+V\256+W\257+W\260+X\261+X\262-Z" "\263-Y\264-[\265,Z\266.\\\267.[\270.]\271-\\\272/^\273/]\274/_\275.^\276" "/_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c" "\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h" "\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m" "\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q" "\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354" ";w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370" ">}\371=|\372?~\373?|\374?w\375C\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006" "\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020" "\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030" "\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040" "\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.-)/-*\060" "-*\061.*\062/*\063\060*\064\060*\065\061*\066\062*\067\063*\070\064*\071\065*:\066*;\067*<" "\070*=\071*>:*?<*@=*A>*B?*C@*DA*EC*FD*GE+HG,IH,JI+KK+KL+LM+MN+MO+NP+NQ+OR+" "OS,PT,PU+QV+QW+QX+RY+RZ,S[,S\\-S],T^,T_,T`,Ua,Ub,Uc,Vd,Ve,Vf,Vg,Wh,Wi,Wj" ",Wk,Xl,Xm,Xn,Xo,Xp,Yq,Yr,Zs,Zt,Yu,Yv,Zw,Zx,Zy,[z,[{,[|,[},[~,[\177,Z\177" ",Z\200,Z\201,[\202,[\203,\\\204,\\\205,\\\206,\\\207,\\\210,\\\211,\\\212" ",\\\213,\\\214,\\\215,\\\216,\\\217,\\\220,\\\221,\\\222,\\\223,\\\224,\\" "\225,\\\226,\\\227,[\230,[\231,[\232,[\233,Z\234,Z\235,Z\236,Z\237,Z\240" ",[\241,[\242,[\243,[\244,Z\245,Z\246,Z\247,Z\250,Z\251-Y\252-Y\253-Y\254" ",Y\255,Y\256,Y\257,Y\260,X\261,X\262,Y\263,Y\264,Z\265,Z\266.\\\267.[\270" ".]\271-\\\272/^\273/]\274/_\275.^\276/_\277\060_\300\060`\301/`\302\060a\303" "\061a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314" "\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324" "\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335" "\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346" ":t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362" "=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?w\375C\002\002\002" "\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061.+\062/+\063\060+\064\061+\065\061+\066" "\061,\067\063,\070\064,\071\065,:\066,;\067+<\070+=\071+>:+?:+@<+A>+B?+C@+DA+EB+FC+" "GE+HF+IG,JI,KK-LK,MM,MN,NO,NP,OQ,OR,PS,QT,QU,QV,RW,RX,SY,SZ,T[,T\\-T]-U^" ".U_.V`-Va-Vb-Wc-Wd-We-Wf-Xg-Xh-Xi-Yj-Yk-Yl-Ym-Zn-Zo-Zp-Zq-Zr-[s-[t-[u-\\" "v-\\w-[x-[y-[z-\\{-]|-]}-]~-]\177-]\177-]\200-\\\201-\\\202-\\\203-]\204" "-]\205-^\206-^\207-^\210-^\211-^\212-^\213-^\214-^\215-^\216-^\217-^\220" "-^\221-^\222-^\223-^\224-^\225-^\226-^\227-^\230-^\231-^\232-^\233-]\234" "-]\235-]\236-]\237-]\240-\\\241-\\\242-\\\243-\\\244-]\245-]\246-]\247-]" "\250-\\\251-\\\252-\\\253-\\\254-\\\255-[\256-[\257-[\260-[\261-[\262-[\263" "-[\264-Z\265-Z\266-[\267.[\270-\\\271-\\\272/^\273/]\274/_\275.^\276/_\277" "\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306\061c\307\062c\310\062" "d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063" "h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066" "m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374?w\375C\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/,\063\060,\064\061,\065\062,\066\062,\067\063,\070\064,\071\065,:\066,;\067-<\070,=\071" ",>:,?;,@<,A<,B>,C@,DA,EB,FB,GD,HF,IG,JH,KI-LK-ML-NM-OO-OP-PQ-PR-QS-QT-RU" "-RV-SW-SX-TY-TZ-U[-U\\-V]-V^.V_.W`.Wa/Wb.Xc.Xd.Xe.Yf.Yg.Yh.Zi.Zj.Zk.Zl.[" "m.[n.[o.[p.\\q.\\r.\\s.\\t.\\u.]v.]w.^x.^y.]z.]{.^|.^}.^~.^\177._\177._\200" "._\201._\202.^\203.^\204.^\205._\206._\207.`\210.`\211.`\212.`\213.`\214" ".`\215.`\216.`\217.`\220.`\221.`\222.`\223.`\224.`\225.`\226.`\227.`\230" ".`\231.`\232.`\233.`\234.`\235.`\236.`\237.`\240._\241._\242._\243._\244" ".^\245.^\246.^\247.^\250._\251._\252._\253._\254.^\255.^\256.^\257.^\260" ".^\261.]\262.]\263.]\264.]\265.]\266.]\267.]\270.\\\271.\\\272.]\273/]\274" "/^\275.^\276\060_\277\060_\300\060`\301/`\302\060a\303\061a\304\061b\305\060b\306" "\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062f\316\063g\317" "\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065k\326\066l\327" "\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070p\337\070p\340" "\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352" ";v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366" ">|\367>{\370>}\371=|\372?~\373?|\374?w\375C\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003" "\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062\060-\063\060-\064\061-\065\062-\066\063,\067\062,\070\064,\071\065" ",:\066,;\067-<\070-=\071->:-?;-@<-A=-B>-C>-DA-EB-FC-GD-HE-IF-JH-KI-LJ.ML.NM." "ON.PP.PQ.QR.RS.RT.SU.SV.TW.TX.UY.UZ.V[.V\\.V].W^.W_.X`.Xa/Yb/Yc/Yd/Ze/Zf" "/Zg/[h/[i/[j/\\k/\\l/\\m/\\n/]o/]p/]q/]r/^s/^t/^u/^v/^w/_x/_y/_z/`{/`|/_" "}/_~/_\177/`\177/`\200/a\201/a\202/a\203/a\204/`\205/`\206/`\207/a\210/a" "\211/a\212/b\213/b\214/b\215/b\216/b\217/b\220/b\221/b\222/b\223/b\224/b" "\225/b\226/b\227/b\230/b\231/b\232/b\233/b\234/b\235/b\236/b\237/b\240/b" "\241/b\242/b\243/b\244/a\245/a\246/a\247/a\250/`\251/`\252/`\253/`\254/`" "\255/a\256/a\257/a\260/`\261/`\262/`\263/`\264/_\265/_\266/_\267/_\270/_" "\271/_\272/_\273/_\274/^\275/^\276/_\277\060_\300\060`\301/`\302\060a\303\061" "a\304\061b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063" "f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064" "k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067" "o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347" ":t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363" "=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?w\375B\002\002\002\003\003\003" "\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013" "\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022" "\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031" "\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#" "(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062\060-\063\061.\064\061.\065\062.\066\063-" "\067\063-\070\063-\071\065-:\066-;\067-<\070-=\071.>:.?;.@<.A=.B>.C?.D?.EA.FC.GD.H" "E.IF.JG.KH.LJ.MK.NL.ON/PP/QP/RR/RS/ST/SU/TV/UW/UX/VY/VZ/W[/W\\/W]/X^/X_/" "Y`/Ya.Zb/Zc\060Zd\060[e\060[f\060[g\060\\h\060\\i\060\\j\060]k\060]l\060]m\060^n\060" "^o\060^p\060^q\060_r\060_s\060_t\060_u\060`v\060`w\060`x\060`y\060`z\060a{\060a|\060b}" "\060b~\060a\177\060a\177\060b\200\060b\201\060b\202\060b\203\060c\204\060c\205\060" "c\206\060b\207\060b\210\060b\211\060b\212\060c\213\060c\214\060d\215\060d\216\060" "d\217\060d\220\060d\221\060d\222\060d\223\060d\224\060d\225\060d\226\060d\227\060" "d\230\060d\231\060d\232\060d\233\060d\234\060d\235\060d\236\060d\237\060d\240\060" "d\241\060d\242\060d\243\060d\244\060d\245\060d\246\060d\247\060d\250\060c\251\060" "c\252\060c\253\060c\254\060c\255\060b\256\060b\257\060b\260\060b\261\060b\262\060" "c\263\060c\264\060b\265\060b\266\060b\267\060b\270\060a\271\060a\272\060a\273\060" "a\274\060a\275\060a\276\060a\277\060a\300\060`\301\060`\302\060a\303\061a\304\061" "b\305\060b\306\061c\307\062c\310\062d\311\061d\312\062e\313\063e\314\063f\315\062" "f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325\065" "k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336\070" "p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t\350" ":u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y\364" "={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?v\375B\002\002\002\003\003\003\002\002\002" "\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014" "\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024" "\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034" "\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%" "*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062\060-\063\061.\064\062/\065\062/\066\063.\067\064" ".\070\064.\071\064.:\066.;\067.<\070.=\071.>:.?;.@</A=/B>/C?/D@/E@/FA/GC/HE/IF/J" "G/KH/LI/MK/NL/OM/PN/QP/RR\060SR\060TT\060TU\060UV\060UW\060VX\060VY\060WZ\060W[\060" "X\\\060X]\060Y^\060Y_\060Z`\060Za\060[b\060[c/[d\060\\e\061\\f\061]g\061]h\061]i\061^" "j\061^k\061^l\061_m\061_n\061_o\061`p\061`q\061`r\061`s\061at\061au\061av\061aw\061bx\061" "by\061bz\061b{\061b|\061c}\061c~\061c\177\061c\177\061d\200\061c\201\061c\202\061c\203" "\061d\204\061d\205\061e\206\061e\207\061e\210\061e\211\061d\212\061d\213\061d\214" "\061e\215\061e\216\061f\217\061f\220\061f\221\061f\222\061f\223\061f\224\061f\225" "\061f\226\061f\227\061f\230\061f\231\061f\232\061f\233\061f\234\061f\235\061f\236" "\061f\237\061f\240\061f\241\061f\242\061f\243\061f\244\061f\245\061f\246\061f\247" "\061f\250\061f\251\061f\252\061f\253\061f\254\061f\255\061e\256\061e\257\061e\260" "\061e\261\061d\262\061d\263\061d\264\061d\265\061d\266\061e\267\061e\270\061d\271" "\061d\272\061d\273\061d\274\061c\275\061c\276\061c\277\061c\300\061c\301\061c\302" "\061c\303\061c\304\061b\305\061b\306\061c\307\062c\310\062d\311\061d\312\062e\313" "\063e\314\063f\315\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323" "\065j\324\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334" "\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345" "\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361" ";x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?v\375" "B\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013" "\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023" "\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033" "\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$" "\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\061.\064\062/\065" "\063\060\066\063\060\067\064/\070\065/\071\065/:\065/;\067/<\070/=\071/>:/?;/@</A=/B>\060" "C?\060D@\060EA\060FB\060GB\060HC\060IE\060JF\060KH\060LI\060MJ\060NK\060OL\060PN\060QO" "\060RP\060SQ\060TS\061UU\061UV\061VW\061WX\061WY\061XZ\061X[\061Y\\\061Y]\061Z^\061Z_\061" "[`\061[a\061\\b\061\\c\061\\d\061]e\061]f\060^g\061^h\062^i\062_j\062_k\062`l\062`m\062" "`n\062ao\062ap\062aq\062ar\062bs\062bt\062bu\062bv\062cw\062cx\062cy\062cz\062d{\062d|" "\062d}\062d~\062d\177\062e\177\062e\200\062e\201\062f\202\062e\203\062e\204\062f\205" "\062f\206\062f\207\062f\210\062g\211\062g\212\062g\213\062f\214\062f\215\062f\216" "\062g\217\062g\220\062h\221\062h\222\062h\223\062h\224\062h\225\062h\226\062h\227" "\062h\230\062h\231\062h\232\062h\233\062h\234\062h\235\062h\236\062h\237\062h\240" "\062h\241\062h\242\062h\243\062h\244\062h\245\062h\246\062h\247\062h\250\062h\251" "\062h\252\062h\253\062h\254\062h\255\062h\256\062h\257\062h\260\062h\261\062g\262" "\062g\263\062g\264\062g\265\062f\266\062f\267\062f\270\062f\271\062f\272\062g\273" "\062g\274\062f\275\062f\276\062f\277\062f\300\062e\301\062e\302\062e\303\062e\304" "\062e\305\062e\306\062e\307\062e\310\062d\311\062d\312\062e\313\063e\314\063f\315" "\062f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324\064k\325" "\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335\067o\336" "\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346:t\347:t" "\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362=z\363=y" "\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?v\375B\002\002\002\003\003\003\002" "\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013" "\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022" "\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031" "\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#" "(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\063\060\066\063\061" "\067\064\061\070\065\060\071\066\060:\066\060;\066\060<\070\060=\071\060>:\060?;\060@<\060A=" "\060B=\060C?\060D@\061EA\061FB\061GC\061HD\061ID\061JE\061KG\061LH\061MI\061NK\061OL\061" "PM\061QN\061RP\061SQ\061TS\060UT\061VU\062WW\062WX\062XY\062XZ\062Y[\062Z\\\062Z]\062Z" "^\062[_\062[`\062\\a\062\\b\062]c\062]d\062^e\062^f\062_g\062_h\061`i\062`j\063`k\063a" "l\063am\063an\063bo\063bp\063bq\063cr\063cs\063ct\063du\063dv\063dw\063dx\063ey\063ez\063" "e{\063e|\063f}\063f~\063f\177\063f\177\063f\200\063g\201\063g\202\063g\203\063g\204" "\063h\205\063g\206\063g\207\063g\210\063h\211\063h\212\063i\213\063i\214\063i\215" "\063h\216\063h\217\063h\220\063i\221\063i\222\063i\223\063j\224\063j\225\063j\226" "\063j\227\063j\230\063j\231\063j\232\063j\233\063j\234\063j\235\063j\236\063j\237" "\063j\240\063j\241\063j\242\063j\243\063j\244\063j\245\063j\246\063j\247\063j\250" "\063j\251\063j\252\063j\253\063j\254\063j\255\063j\256\063j\257\063j\260\063j\261" "\063j\262\063j\263\063j\264\063j\265\063i\266\063i\267\063i\270\063i\271\063h\272" "\063h\273\063h\274\063h\275\063h\276\063h\277\063i\300\063h\301\063h\302\063h\303" "\063h\304\063g\305\063g\306\063g\307\063g\310\063g\311\063g\312\063g\313\063g\314" "\063f\315\063f\316\063g\317\064g\320\064h\321\063h\322\064i\323\065j\323\065j\324" "\064k\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067o\335" "\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071s\346" ":t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;x\362" "=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?v\375A\002\002\002" "\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066" "\063\061\067\064\061\070\065\062\071\066\061:\067\061;\067\061<\070\061=\071\061>:\061?;\061@" "<\061A=\061B<\061C=\061D?\061E@\061FB\061GC\062HD\062IE\062JF\062KF\062LG\062MI\062NJ\062" "OK\062PM\062QN\062RO\062SP\062TR\062US\062VT\061WV\062XW\063YY\063YZ\063Z[\063Z\\\063[" "]\063[^\063\\_\063\\`\063]a\063]b\063^c\063^d\063_e\063_f\063`g\063`h\063ai\063aj\062a" "k\063bl\064bm\064cn\064co\064cp\064dq\064dr\064ds\064et\064eu\064ev\064ew\064fx\064fy\064" "fz\064f{\064g|\064g}\064g~\064g\177\064h\177\064h\200\064h\201\064h\202\064h\203\064" "i\204\064i\205\064i\206\064j\207\064i\210\064i\211\064i\212\064j\213\064j\214\064" "k\215\064k\216\064k\217\064j\220\064j\221\064j\222\064j\223\064k\224\064k\225\064" "l\226\064l\227\064l\230\064l\231\064l\232\064l\233\064l\234\064l\235\064l\236\064" "l\237\064l\240\064l\241\064l\242\064l\243\064l\244\064l\245\064l\246\064l\247\064" "l\250\064l\251\064l\252\064l\253\064l\254\064l\255\064l\256\064l\257\064l\260\064" "l\261\064l\262\064l\263\064l\264\064l\265\064l\266\064l\267\064l\270\064l\271\064" "k\272\064k\273\064k\274\064k\275\064k\276\064j\277\064j\300\064j\301\064j\302\064" "j\303\064k\304\064j\305\064j\306\064j\307\064j\310\064i\311\064i\312\064i\313\064" "i\314\064i\315\064i\316\064i\317\064i\320\064h\321\064h\322\064i\323\065i\323\065" "j\324\064j\325\065k\326\066l\327\066l\330\066m\331\066m\332\067n\333\067n\334\067" "o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071s\345\071" "s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360<y\361;" "x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?v\375A" "\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012" "\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022" "\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032" "\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037" "%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062" "\060\066\063\061\067\064\061\070\065\062\071\066\062:\067\062;\070\062<\067\062=\071\062>:\062" "?;\062@<\062A=\062B<\062C>\062D?\062E?\062F@\062GB\062HC\062IE\063JF\063KG\063LH\063MH" "\063NI\063OK\063PM\063QM\063RN\063SP\063TQ\063UR\063VT\063WU\063XV\062YX\063ZY\064Z[\064" "[\\\064\\]\064\\^\064]_\064]`\064^a\064^b\064_c\064_d\064`e\064`f\064ag\064ah\064bi\064" "bj\064bk\064cl\063cm\064dn\065do\065dp\065eq\065er\065es\065ft\065fu\065fv\065gw\065gx" "\065gy\065hz\065h{\065h|\065h}\065i~\065i\177\065i\177\065i\200\065j\201\065j\202\065" "j\203\065j\204\065j\205\065j\206\065k\207\065k\210\065k\211\065l\212\065k\213\065" "k\214\065l\215\065l\216\065l\217\065m\220\065m\221\065m\222\065l\223\065l\224\065" "l\225\065m\226\065m\227\065n\230\065n\231\065n\232\065n\233\065n\234\065n\235\065" "n\236\065n\237\065n\240\065n\241\065n\242\065n\243\065n\244\065n\245\065n\246\065" "n\247\065n\250\065n\251\065n\252\065n\253\065n\254\065m\255\065m\256\065m\257\065" "m\260\065m\261\065m\262\065n\263\065n\264\065n\265\065n\266\065n\267\065n\270\065" "n\271\065n\272\065n\273\065n\274\065n\275\065n\276\065m\277\065l\300\065l\301\065" "m\302\065l\303\065l\304\065l\305\065l\306\065l\307\065m\310\065l\311\065k\312\065" "l\313\065l\314\065k\315\065k\316\065k\317\065k\320\065k\321\065j\322\065j\323\065" "j\323\065j\324\065j\325\065k\326\066k\327\066l\330\065l\331\066m\332\067n\333\067" "n\334\067o\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071r\344\071" "s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357<w\360" "<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374" "?v\375A\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010" "\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021" "\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031" "\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037" "#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064" "\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\063;\070\063<\070\063=\070" "\063>:\063?;\063@<\063A=\063B<\063C>\063D?\063E@\063FA\063GA\063HB\063IC\063JE\063KG\064" "LH\064MI\064NI\064OJ\064PL\064QM\064RO\064SP\064TQ\064UR\064VS\064WT\064XV\064YW\064ZX" "\063[Z\064\\\\\065\\]\065]^\065^_\065^`\065^a\065_b\065_c\065`d\065ae\065af\065bg\065b" "h\065ci\065cj\065ck\065dl\065dm\065en\065eo\064fp\065fq\066fr\066gs\066gt\066gu\066hv\066" "hw\066hx\066iy\066iz\066i{\066i|\066j}\066j~\066j\177\066k\177\066k\200\066k\201\066" "k\202\066k\203\066k\204\066l\205\066l\206\066l\207\066l\210\066l\211\066m\212\066" "m\213\066n\214\066m\215\066m\216\066m\217\066n\220\066n\221\066o\222\066o\223\066" "o\224\066n\225\066n\226\066n\227\066o\230\066o\231\066o\232\066p\233\066p\234\066" "p\235\066p\236\066p\237\066p\240\066p\241\066p\242\066p\243\066p\244\066p\245\066" "p\246\066p\247\066p\250\066p\251\066p\252\066p\253\066o\254\066o\255\066o\256\066" "o\257\066o\260\066o\261\066o\262\066o\263\066o\264\066o\265\066o\266\066o\267\066" "o\270\066o\271\066p\272\066p\273\066p\274\066p\275\066p\276\066p\277\066p\300\066" "p\301\066p\302\066o\303\066n\304\066n\305\066n\306\066n\307\066n\310\066n\311\066" "n\312\066n\313\066o\314\066n\315\066m\316\066m\317\066m\320\066m\321\066m\322\066" "m\323\066m\323\066m\324\066l\325\066l\326\066l\327\066l\330\066l\331\066m\332\067" "m\333\067n\334\066n\335\067o\336\070p\337\070p\340\070q\341\070q\342\071r\343\071" "r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:v\356<x\357" "<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373" "?|\374?v\375A\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\064<\071" "\064=\071\064>\071\064?;\064@<\064A=\064B=\064C=\064D?\064E@\064FA\064GB\064HC\064ID\064" "JD\064KE\064LG\064MI\065NJ\065OJ\065PK\065QL\065RN\065SO\065TP\065UQ\065VS\065WT\065XU" "\065YW\065ZX\065[Y\065\\[\064]\\\065^^\066^_\066_`\066_a\066`b\066`c\066ad\066be\066bf" "\066bg\066ch\066ci\066dj\066dk\066el\066em\066fn\066fo\066gp\066gq\065gr\066hs\067ht\067" "hu\067iv\067iw\067ix\067jy\067jz\067j{\067k|\067k}\067k~\067l\177\067l\177\067l\200\067" "l\201\067m\202\067m\203\067m\204\067m\205\067n\206\067n\207\067n\210\067n\211\067" "n\212\067n\213\067o\214\067o\215\067o\216\067p\217\067o\220\067o\221\067p\222\067" "p\223\067p\224\067q\225\067q\226\067p\227\067p\230\067p\231\067p\232\067q\233\067" "q\234\067r\235\067r\236\067r\237\067r\240\067r\241\067r\242\067r\243\067r\244\067" "r\245\067r\246\067r\247\067r\250\067r\251\067r\252\067r\253\067q\254\067q\255\067" "s\256\067s\257\067s\260\067s\261\067r\262\067q\263\067q\264\067q\265\067q\266\067" "q\267\067q\270\067q\271\067q\272\067q\273\067q\274\067q\275\067q\276\067q\277\067" "r\300\067r\301\067r\302\067r\303\067r\304\067r\305\067r\306\067q\307\067p\310\067" "p\311\067p\312\067p\313\067p\314\067p\315\067p\316\067p\317\067q\320\067p\321\067" "o\322\067o\323\067o\323\067o\324\067o\325\067o\326\067o\327\067o\330\067n\331\067" "n\332\067n\333\067n\334\067n\335\067o\336\070o\337\070p\340\067p\341\070q\342\071" "r\343\071r\344\071s\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355:" "v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=" "|\372?~\373?|\374?v\375A\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\065=:\065>:\065?:\065@<\065A=\065B>\065C>\065D>\065E@\065FA\065GB\065HC\065" "ID\065JE\065KE\065LF\065MG\065NI\064OJ\066PL\066QL\066RM\066SN\066TP\066UQ\066VR\066WS" "\066XU\066YV\066ZW\066[Y\066\\Z\066][\066^]\066_^\065``\066`a\067`b\067ac\067bd\067be\067" "cf\067cg\067dh\067di\067ej\067ek\067fl\067fm\067gn\067go\067hp\067hq\067hr\067is\066it" "\067ju\070jv\070jw\070kx\070ky\070kz\070l{\070l|\070l}\070m~\070m\177\070m\177\070m\200" "\070n\201\070n\202\070n\203\070o\204\070o\205\070o\206\070o\207\070o\210\070o\211" "\070p\212\070p\213\070p\214\070p\215\070p\216\070q\217\070q\220\070r\221\070q\222" "\070q\223\070q\224\070r\225\070r\226\070s\227\070s\230\070s\231\070r\232\070r\233" "\070r\234\070s\235\070s\236\070t\237\070t\240\070t\241\070t\242\070t\243\070t\244" "\070t\245\070t\246\070t\247\070t\250\070t\251\070t\252\070t\253\070s\254\067t\255" "\070u\256\070u\257\070u\260\070u\261\070u\262\070u\263\070u\264\070u\265\070u\266" "\067u\267\070u\270\070t\271\070s\272\070s\273\070s\274\070s\275\070s\276\070s\277" "\070s\300\070s\301\070s\302\070s\303\070s\304\070t\305\070t\306\070t\307\070t\310" "\070t\311\070t\312\070s\313\070r\314\070r\315\070r\316\070r\317\070r\320\070r\321" "\070r\322\070r\323\070s\323\070r\324\070q\325\070q\326\070q\327\070q\330\070q\331" "\070q\332\070q\333\070q\334\070p\335\070p\336\070p\337\070p\340\070p\341\070q\342" "\071q\343\071q\344\070r\345\071s\346:t\347:t\350:u\351:u\352;v\353;u\354;w\355" ":v\356<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371" "=|\372?~\373?|\374?v\375@\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\066>;\066?;\066@;\066A=\066B>\066C?\066D>\066E@\066FA\066GB\066HC\066" "ID\066JE\066KF\066LG\066MG\066NH\066OI\066PK\065QL\067RN\067SN\067TO\067UP\067VR\067WT" "\067XT\067YU\067ZW\067[X\067\\Y\067][\067^\\\067_]\067`_\067aa\066ab\067bc\070cd\070ce" "\070cf\070dg\070eh\070ei\070fj\070fk\070gl\070gm\070hn\070ho\070ip\070iq\070ir\070js\070" "jt\070ku\070kv\067kw\070lx\071ly\071lz\071m{\071m|\071m}\071n~\071n\177\071n\177\071o" "\200\071o\201\071o\202\071p\203\071p\204\071p\205\071p\206\071q\207\071q\210\071q" "\211\071q\212\071q\213\071r\214\071r\215\071r\216\071r\217\071r\220\071s\221\071s" "\222\071s\223\071t\224\071s\225\071s\226\071t\227\071t\230\071t\231\071u\232\071u" "\233\071t\234\071t\235\071t\236\071u\237\071u\240\071u\241\071v\242\071v\243\071v" "\244\071v\245\071v\246\071v\247\071v\250\071v\251\071v\252\071v\253\071u\254\071u" "\255:v\256:w\257:w\260:w\261:w\262:w\263:w\264:w\265:w\266\071w\267\071w\270" "\071w\271\071w\272\071w\273\071w\274\070w\275\071w\276\071v\277\071u\300\071u\301" "\071u\302\071u\303\071u\304\071u\305\071u\306\071u\307\071u\310\071u\311\071v\312" "\071v\313\071v\314\071v\315\071v\316\071u\317\071t\320\071t\321\071t\322\071t\323" "\071t\323\071t\324\071t\325\071t\326\071u\327\071t\330\071s\331\071s\332\071s\333" "\071s\334\071s\335\071s\336\071s\337\071s\340\071r\341\071r\342\071r\343\071r\344" "\071r\345\071s\346:s\347:s\350\071t\351:t\352;v\353;u\354;w\355:v\356<x\357" "<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373" "?|\374?w\375@\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\067?<\067@<\067A<\067B>\067C?\067D?\067E?\067FA\067GB\067HC\067ID\067JE\067" "KF\067LG\067MH\067NI\067OI\067PJ\067QK\067RM\067SN\066TP\070UP\070VQ\070WS\070XT\070YV" "\070ZV\070[X\070\\Y\070]Z\070^\\\070_]\070`^\070a`\070ba\070cc\067cd\070de\071df\071eg" "\071fh\071fi\071fj\071gk\071gl\071hm\071hn\071io\071ip\071jq\071jr\071ks\071kt\071lu\071" "lv\071mw\071mx\070my\071mz:n{:n|:o}:o~:o\177:p\177:p\200:p\201:q\202:q\203:q" "\204:q\205:r\206:r\207:r\210:r\211:s\212:s\213:s\214:s\215:s\216:t\217:t" "\220:t\221:t\222:t\223:u\224:u\225:v\226:u\227:u\230:u\231:v\232:v\233:w" "\234:w\235:v\236:v\237:v\240:v\241:w\242:w\243:x\244:x\245:x\246:x\247:x" "\250:x\251:x\252:x\253:x\254:w\255;w\256;x\257;x\260;y\261;y\262;y\263;y" "\264;y\265;y\266;y\267;y\270;y\271;y\272;y\273;y\274:y\275:y\276:y\277:y" "\300:y\301:y\302\071y\303:x\304:w\305:w\306:w\307:w\310:w\311:w\312:w\313" ":w\314:w\315:x\316:x\317:x\320:x\321:x\322:w\323:v\323:v\324:v\325:v\326" ":v\327:v\330:v\331:v\332:v\333:v\334:u\335:u\336:u\337:u\340:u\341:u\342" ":u\343:u\344:t\345:t\346:t\347:t\350:t\351:u\352;u\353;u\354:v\355:v\356" "<x\357<w\360<y\361;x\362=z\363=y\364={\365<z\366>|\367>{\370>}\371=|\372" "?~\373?|\374?w\375@\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011" "\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021" "\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031" "\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037" "\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062" "/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070" "\065<\071\066=:\067>;\070?<\070@=\070A=\070B=\070C?\070D@\070E@\070F@\070GB\070HC\070ID" "\070JE\070KF\070LG\070MH\070NI\070OJ\070PK\070QK\070RL\070SM\070TO\070UP\067VR\071WR\071" "XS\071YU\071ZV\071[W\071\\X\071]Z\071^[\071_\\\071`^\071a_\071b`\071cb\071dc\071ee\070" "ef\071eg:fh:gi:gj:hk:hl:im:in:jo:jp:kq:kr:ls:lt:mu:mv:mw:nx:ny:nz\071o{:o|" ";p};p~;p\177;q\177;q\200;q\201;r\202;r\203;r\204;s\205;s\206;s\207;s\210" ";t\211;t\212;t\213;t\214;u\215;u\216;u\217;u\220;v\221;v\222;v\223;v\224" ";v\225;w\226;w\227;w\230;w\231;w\232;w\233;x\234;x\235;x\236;y\237;y\240" ";x\241;x\242;x\243;y\244;y\245;z\246;z\247;z\250;z\251;z\252;z\253;z\254" ":z\255<y\256<y\257<y\260<z\261<z\262<{\263<{\264<{\265<{\266<{\267<{\270" "<{\271<{\272<{\273<{\274<{\275<{\276<{\277<{\300<{\301<{\302;{\303;{\304" ";{\305;{\306;{\307:{\310;z\311;y\312;y\313;y\314;y\315;y\316;y\317;y\320" ";y\321;y\322;y\323;z\323;z\324;z\325;y\326;x\327;x\330;x\331;x\332;x\333" ";x\334;x\335;x\336;x\337;x\340;w\341;w\342;w\343;w\344;w\345;w\346;w\347" ";w\350;v\351;v\352;v\353;v\354;v\355;w\356<w\357<w\360<y\361;x\362=z\363" "=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?w\375@\002\002\002\003\003\003" "\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013" "\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022" "\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031" "\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#" "(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061" "\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=\071A>\071" "B>\071C>\071D@\071EA\071F@\071GB\071HC\071ID\071JE\071KF\071LG\071MH\071NI\071OJ\071PK" "\071QL\071RM\071SM\071TN\071UO\071VQ\071WR\070XT:YT:ZU:[W:\\X:]Y:^Z:_\\:`]:a^:b`" ":ca:db:ed:ff:fg\071gh:hi;hj;hk;il;jm;jn;ko;kp;lq;lr;ms;mt;nu;nv;nw;ox;oy;" "oz;p{;p|;q}:q~;q\177<r\177<r\200<s\201<s\202<s\203<t\204<t\205<s\206<t\207" "<u\210<u\211<u\212<v\213<v\214<v\215<v\216<w\217<w\220<w\221<w\222<w\223" "<x\224<x\225<x\226<x\227<x\230<y\231<y\232<y\233<y\234<y\235<y\236<z\237" "<z\240<{\241<{\242<z\243<z\244<z\245<{\246<{\247<{\250<|\251<|\252<|\253" "<|\254<|\255<|\256;|\257={\260={\261={\262=|\263=|\264=}\265=}\266=}\267" "=}\270=}\271=}\272=}\273=}\274=}\275=}\276=}\277=}\300=}\301=}\302=}\303" "=}\304=}\305=}\306=}\307<}\310<}\311<}\312<}\313<}\314<|\315<{\316<{\317" "<{\320<{\321<{\322<{\323<{\323<{\324<{\325<{\326<|\327<|\330<|\331<|\332" "<{\333<z\334<z\335<z\336<z\337<z\340<z\341<z\342<z\343<z\344<y\345<y\346" "<y\347<y\350<y\351<y\352<y\353<y\354<x\355<x\356<x\357<x\360<x\361<x\362" "=y\363=y\364={\365<z\366>|\367>{\370>}\371=|\372?~\373?|\374?w\375?\002\002\002" "\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066" "\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:" "A>:B?:C?:D?:EA:FA:GA:HC:ID:JE:KF:LG:MH:NI:OJ:PK:QL:RM:SN:TO:UO:VP:WQ:XS:" "YT\071ZV;[V;\\W;]Y;^[;_[;`];a^;b_;c`;db;ec;fe;gf;hh;hi:ij;ik<jl<km<kn<ko<" "lp<mq<mr<ns<nt<ou<ov<ow<px<py<pz<q{<q|<r}<r~<s\177;s\177<s\200=t\201=t\202" "=t\203=u\204=u\205=u\206=v\207=v\210=v\211=w\212=w\213=v\214=w\215=x\216" "=x\217=x\220=x\221=y\222=y\223=y\224=y\225=z\226=z\227=z\230=z\231=z\232" "={\233={\234={\235={\236={\237={\240=|\241=|\242=|\243=|\244=|\245=|\246" "=|\247=|\250=}\251=}\252=~\253=~\254=~\255=~\256=~\257<~\260>~\261>}\262" ">}\263>}\264>~\265>~\266>~\267>\177\270>\177\271>\177\272>\177\273>\177\274" ">\177\275>\177\276>\177\277>\177\300>\177\301>\177\302>\177\303>\177\304" ">\177\305>\177\306>\177\307>\177\310>\177\311>\177\312>\177\313>\177\314" "=\177\315=\177\316=\177\317=\177\320=\177\321=~\322=}\323=}\323=}\324=}\325" "=}\326=}\327=}\330=}\331=}\332=}\333=~\334=~\335=~\336=}\337=|\340=|\341" "=|\342=|\343=|\344=|\345=|\346=|\347=|\350={\351={\352={\353={\354={\355" "={\356={\357={\360=z\361=z\362=z\363=z\364=z\365<z\366>|\367>{\370>}\371" "=|\372?~\373?|\374?w\375?\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010" "\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>:B?;C@;D@;EA;FB;GB;HB;ID;JE;KF;LG;MH;N" "I;OJ;PK;QL;RM;SN;TO;UP;VQ;WQ;XR;YS;ZU;[W:\\W<]X<^Z<_[<`\\<a]<b_<c`<da<ec" "<fd<ge<hg<ih<jj<jk<jl;km<ln=lo=mp=nq=nr=ns=ot=ou=pv=pw=px=qy=qz=r{=r|=s}" "=s~=t\177=t\177=t\200<u\201=t\202>v\203>v\204>u\205>v\206>w\207>v\210>w\211" ">x\212>w\213>x\214>y\215>y\216>y\217>z\220>z\221>z\222>z\223>{\224>{\225" ">{\226>{\227>{\230>|\231>|\232>|\233>|\234>|\235>}\236>}\237>}\240>}\241" ">}\242>}\243>~\244>~\245>\177\246>~\247>~\250>~\251>~\252>\177\253>\177\254" ">\177\255>\177\256>\200\257>\200\260>\200\261=\200\262>\200\263?\177\264" "?\177\265?\177\266?\200\267?\200\270?\200\271?\201\272?\201\273?\201\274" "?\201\275?\201\276?\201\277?\201\300?\201\301?\201\302?\201\303?\201\304" "?\201\305?\201\306?\201\307?\201\310?\201\311?\201\312?\201\313?\201\314" "?\201\315?\201\316?\201\317?\201\320>\201\321>\201\322>\201\323>\201\323" ">\201\324>\200\325>\177\326>\177\327>\177\330>\177\331>\177\332>\177\333" ">\177\334>\177\335>\177\336>\177\337>\200\340>\200\341>\200\342>\177\343" ">~\344>~\345>~\346>~\347>~\350>~\351>~\352>~\353>~\354>}\355>}\356>}\357" ">}\360>}\361>}\362>}\363>}\364>|\365>|\366>|\367>|\370>|\371=|\372?~\373" "?|\374?w\375?\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA<EA<FB<GC<HC<IC<JE<KF<LG<MH<NI<OJ<PK<Q" "L<RM<SM<TO<UP<VQ<WR<XS<YS<ZT<[V<\\W<]Y;^Y=_Z=`\\=a]=b^=c_=da=eb=fc=ge=hf" "=ig=ji=kk=kl=lm=mn<mo=mp>nq>or>os>pt>pu>pv>qw>qx>ry>rz>s{>s|>t}>t~>u\177" ">u\177>u\200>v\201>v\202=w\203>w\204?w\205?x\206?x\207?x\210?y\211?y\212" "?y\213?z\214?z\215?z\216?{\217?{\220?z\221?{\222?|\223?|\224?|\225?|\226" "?}\227?}\230?}\231?}\232?~\233?~\234?~\235?~\236?~\237?\177\240?\177\241" "?\177\242?\177\243?\177\244?\177\245?\200\246?\200\247?\200\250?\200\251" "?\200\252?\200\253?\200\254?\200\255?\201\256?\201\257?\201\260?\202\261" "?\202\262?\202\263>\202\264@\201\265@\201\266@\201\267@\201\270@\202\271" "@\202\272@\202\273@\203\274@\203\275@\203\276@\203\277@\203\300@\203\301" "@\203\302@\203\303@\203\304@\203\305@\203\306@\203\307@\203\310@\203\311" "@\203\312@\203\313@\203\314@\203\315@\203\316@\203\317@\203\320@\203\321" "@\203\322@\203\323@\203\323@\203\324@\203\325?\203\326?\203\327?\203\330" "?\203\331?\202\332?\201\333?\201\334?\201\335?\201\336?\201\337?\201\340" "?\201\341?\201\342?\201\343?\201\344?\202\345?\202\346?\201\347?\200\350" "?\200\351?\200\352?\200\353?\200\354?\200\355?\200\356?\200\357?\200\360" "?\177\361?\177\362?\177\363?\177\364?\177\365?\177\366?\177\367?\177\370" "?~\371?~\372?~\373?}\374?w\375?\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006" "\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020" "\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030" "\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040" "\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060" ".+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:" "\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB=FB=GC=HD=ID=JD=KF" "=LG=MH=NI=OJ=PI=QJ=RK=SL=TM=UO=VP=WR=XS=YT=ZT=[U=\\V=]X=^Y<_[<`[=a\\>b^>" "c_>d`>ea>fc>gd>he>ig>jh>kj>lk>mm>mn>no=np=oq>pr?ps?pt?qu?rv?rw?rx?sy?sz?" "t{?t|?u}?u~?v\177?v\177?v\200?w\201?w\202?x\203>x\204?x\205>y\206?y\207@" "z\210@z\211@z\212@{\213@{\214@{\215@|\216@|\217@{\220@|\221@}\222@}\223@" "}\224@~\225@~\226@~\227@~\230@\177\231@\177\232@\177\233@\177\234@\177\235" "@\200\236@\200\237@\200\240@\200\241@\200\242@\201\243@\201\244@\201\245" "@\201\246@\201\247@\201\250@\202\251@\202\252@\202\253@\202\254@\202\255" "@\202\256@\202\257@\203\260@\203\261@\203\262@\204\263@\204\264?\203\265" "@\203\266A\203\267A\203\270A\203\271A\203\272A\204\273A\204\274A\204\275" "A\205\276A\204\277A\204\300A\204\301A\204\302A\204\303A\204\304A\204\305" "A\204\306A\204\307A\204\310A\204\311A\204\312A\204\313A\204\314A\204\315" "A\204\316A\204\317A\204\320A\204\321A\204\322A\204\323A\204\323A\204\324" "A\204\325A\204\326A\204\327A\204\330A\204\331A\204\332@\204\333@\204\334" "@\205\335@\204\336?\203\337@\203\340@\203\341@\203\342@\203\343@\203\344" "@\203\345@\203\346@\203\347@\203\350@\203\351@\204\352@\203\353@\202\354" "@\202\355@\202\356@\202\357@\202\360@\202\361@\202\362@\202\363@\202\364" "@\201\365@\201\366@\201\367@\201\370@\201\371@\201\372@\201\373@\200\374" "@y\375@\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010" "\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021" "\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031" "\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037" "#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064" "\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:" "\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FC>GB>HD>IE>JE>KE<LG<MH<NI<OJ<PI>QK>RL>" "SM>TM>UN>VO>WP>XR>YS>ZU>[V>\\V>]W>^X>_Z>`[=a]=b]>c^?d`?eb?fb?gd?he?if?jh" "?ki?lj?ml?nm?oo?op?oq>pr>qs?qt@qu@sv@sw@sx@ty@tz@u{@u|@v}@v~@w\177@w\177" "@w\200@x\201@x\202@y\203@x\204@y\205@z\206?z\207?{\210@{\211A{\212A|\213" "A{\214A|\215A}\216A|\217A}\220A~\221A~\222A~\223A\177\224A\177\225A~\226" "A\177\227A\200\230A\200\231A\200\232A\200\233A\201\234A\201\235A\201\236" "A\201\237A\202\240A\202\241A\202\242A\202\243A\202\244A\203\245A\203\246" "A\203\247A\203\250A\203\251A\203\252A\204\253A\204\254A\204\255A\204\256" "A\204\257A\204\260A\204\261A\205\262A\205\263A\205\264A\205\265@\205\266" "@\205\267A\205\270B\205\271B\205\272B\205\273B\205\274B\206\275B\206\276" "B\206\277B\206\300B\206\301B\206\302B\206\303B\206\304B\206\305B\206\306" "B\206\307B\206\310B\206\311B\206\312B\206\313B\206\314B\206\315B\206\316" "B\206\317B\206\320B\206\321B\206\322B\206\323B\206\323B\206\324B\206\325" "B\206\326B\206\327B\206\330B\206\331B\206\332B\206\333B\206\334B\206\335" "B\206\336A\206\337A\206\340A\206\341A\206\342@\206\343A\205\344A\205\345" "A\205\346A\205\347A\205\350A\205\351A\205\352A\205\353A\205\354A\205\355" "A\205\356A\205\357A\204\360A\204\361A\204\362A\204\363A\204\364A\204\365" "A\204\366A\204\367A\204\370A\203\371A\203\372A\203\373A\202\374A|\375A\002" "\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012" "\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022" "\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032" "\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037" "%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062" "\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<" "\071@=:A>\071B?;C@<DA=EB>FC?GC?HC?IE?JF?KE=LG>MH>NI>OJ>PJ=QJ=RL=SM?TN?UO?V" "P?WP?XQ?YR?ZT?[U?\\W?]X?^X?_Y?`Z?a\\?b]>c_>d_>ea?fb@gc@hd@if@jg@kh@lj@mk" "@nl@on@po@pq@qr@rs?rt?su@svAswAtxAtyAuzAu{Av|Av}Aw~Aw\177Ax\177Ax\200Ay\201" "Ay\202Az\203Az\204A{\205A{\206A{\207A|\210@{\211@|\212A}\213B}\214B~\215" "B~\216B~\217B\177\220B\177\221B\177\222B\200\223B\200\224B\177\225B\200\226" "B\201\227B\201\230B\201\231B\202\232B\202\233B\202\234B\202\235B\203\236" "B\203\237B\203\240B\203\241B\203\242B\204\243B\204\244B\204\245B\204\246" "B\204\247B\205\250B\205\251B\205\252B\205\253B\205\254B\205\255B\206\256" "B\206\257B\206\260B\206\261B\206\262B\206\263B\206\264B\207\265B\207\266" "B\207\267A\207\270A\207\271B\207\272C\207\273C\207\274C\207\275C\207\276" "C\210\277C\210\300C\210\301C\210\302C\210\303C\210\304C\210\305C\210\306" "C\210\307C\210\310C\210\311C\210\312C\210\313C\210\314C\210\315C\210\316" "C\210\317C\210\320C\210\321C\210\322C\210\323C\210\323C\210\324C\210\325" "C\210\326C\210\327C\210\330C\210\331C\210\332C\210\333C\210\334C\210\335" "C\210\336C\210\337C\210\340C\210\341C\210\342B\210\343B\210\344B\210\345" "B\210\346B\210\347A\207\350B\207\351B\207\352B\207\353B\207\354B\207\355" "B\207\356B\207\357B\207\360B\207\361B\207\362B\207\363B\206\364B\206\365" "B\206\366B\206\367B\206\370B\206\371B\206\372B\206\373B\206\374B\177\375" "B\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013" "\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023" "\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033" "\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$" "\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065" "\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070" "?<\071@=:A>\071B?;C@<DA=EB>FC?GD@HD@ID@JF@KF?LF>MH?NI?OJ?PK?QJ?RL>SM>TN>UO" "@VP@WQ@XR@YR@ZS@[T@\\V@]W@^Y@_Z@`Z@a[@b\\@c^@d_@e`?fa?gc@hdAieAjfAkhAliA" "mjAnlAomApnAqpArrArsAstAtu@tv@tw@uxAuyBvzBv{Bw|Bw}Bx~Bx\177By\177By\200B" "z\201Bz\202B{\203B{\204B|\205B|\206B|\207B}\210B}\211B~\212A~\213A~\214A" "\177\215B~\216C\177\217C\200\220C\177\221C\200\222C\201\223C\200\224C\201" "\225C\202\226C\202\227C\202\230C\203\231C\203\232C\202\233C\203\234C\204" "\235C\204\236C\204\237C\204\240C\205\241C\205\242C\205\243C\205\244C\206" "\245C\206\246C\206\247C\206\250C\206\251C\207\252C\207\253C\207\254C\207" "\255C\207\256C\207\257C\210\260C\210\261C\210\262C\210\263C\210\264C\210" "\265C\210\266C\211\267C\211\270C\211\271B\211\272B\211\273C\211\274D\211" "\275D\211\276D\211\277D\210\300D\212\301D\212\302D\212\303D\212\304D\212" "\305D\212\306D\212\307D\212\310D\212\311D\212\312D\212\313D\212\314D\212" "\315D\212\316D\212\317D\212\320D\212\321D\212\322D\212\323D\212\323D\212" "\324D\212\325D\212\326D\212\327D\212\330D\212\331D\212\332D\212\333D\212" "\334D\212\335D\212\336D\212\337D\212\340D\212\341D\212\342D\212\343D\212" "\344D\212\345D\212\346D\212\347C\212\350C\212\351C\212\352C\212\353B\211" "\354C\211\355C\211\356C\211\357C\211\360C\211\361C\211\362C\211\363C\211" "\364C\211\365C\211\366C\211\367C\210\370C\210\371C\210\372C\210\373C\210" "\374C\202\375C\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FC?GD@HEAIEAJFAKGALG?MG@NI@OJ@PK@Q" "K@RK@SM@TN?UO?VP?WQ?XRAYSAZTA[TA\\UA]VA^XA_YA`[Aa\\Ab\\Ac]Ad^Ae`AfbAgb@h" "c@ieAjfBkgBliBmjBnkBomBpnBqoBrqBsrBtsBtuBuvBuwBuxAwyAwzBw{Cx|Cx}Cy~Cy\177" "Cz\177Cz\200C{\201C{\202C|\203C|\204C}\205C}\206C}\207C~\210C~\211C\177\212" "C\177\213C\177\214C\200\215B\200\216B\201\217C\201\220D\201\221D\202\222" "D\202\223D\202\224D\203\225D\203\226D\203\227D\204\230D\204\231D\203\232" "D\204\233D\205\234D\205\235D\205\236D\206\237D\206\240D\206\241D\206\242" "D\207\243D\207\244D\207\245D\207\246D\207\247D\210\250D\210\251D\210\252" "D\210\253D\210\254D\211\255D\211\256D\211\257D\211\260D\211\261D\211\262" "D\212\263D\212\264D\212\265D\212\266D\212\267D\212\270D\211\271D\213\272" "D\213\273C\213\274C\213\275D\213\276E\213\277E\213\300E\213\301E\213\302" "E\212\303E\213\304E\214\305E\214\306E\214\307E\214\310E\214\311E\214\312" "E\214\313E\214\314E\214\315E\214\316E\214\317E\214\320E\214\321E\214\322" "E\214\323E\214\323E\214\324E\214\325E\214\326E\214\327E\214\330E\214\331" "E\214\332E\214\333E\214\334E\214\335E\214\336E\214\337E\214\340E\214\341" "E\214\342E\214\343E\214\344E\214\345E\214\346E\214\347E\214\350E\214\351" "E\214\352E\214\353D\214\354D\214\355D\214\356D\214\357D\213\360C\213\361" "D\213\362D\213\363D\213\364D\213\365D\213\366D\213\367D\213\370D\213\371" "D\213\372D\213\373D\211\374D\204\375D\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005" "\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016" "\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026" "\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034" "\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)" "/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066" "\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FC?GD@HEAIFBJ" "FBKGBLHAMH@NHAOJAPKAQLARLASLATNAUOAVPAWQ@XR@YS@ZTB[UB\\VB]VB^WB_XB`ZBa[B" "b]Bc^Bd^Be_BfaBgbBhdBidAjeAkgBlhCmiCnkColCpmCqoCrpCsqCtsCutCvuCvwCvxCwyC" "wzBx{Bx|Cy}Dy~D{\177D{\177D{\200D|\201D|\202D}\203D}\204D}\205D~\206D~\207" "D\177\210D\177\211D\200\212D\177\213D\200\214D\201\215D\201\216D\202\217" "C\201\220C\202\221D\203\222E\202\223E\203\224E\204\225E\203\226E\204\227" "E\205\230E\204\231E\205\232E\206\233E\206\234E\206\235E\207\236E\207\237" "E\206\240E\207\241E\210\242E\210\243E\210\244E\210\245E\211\246E\211\247" "E\211\250E\211\251E\212\252E\212\253E\212\254E\212\255E\212\256E\213\257" "E\213\260E\213\261E\213\262E\213\263E\213\264E\214\265E\214\266E\214\267" "E\214\270E\214\271E\214\272E\213\273E\215\274E\215\275D\215\276D\215\277" "E\215\300F\215\301F\215\302F\215\303F\215\304F\214\305F\215\306F\216\307" "F\216\310F\216\311F\216\312F\216\313F\216\314F\216\315F\216\316F\216\317" "F\216\320F\216\321F\216\322F\216\323F\216\323F\216\324F\216\325F\216\326" "F\216\327F\216\330F\216\331F\216\332F\216\333F\216\334F\216\335F\216\336" "F\216\337F\216\340F\216\341F\216\342F\216\343F\216\344F\216\345F\216\346" "F\216\347F\216\350F\216\351F\216\352F\216\353F\216\354F\216\355F\216\356" "F\216\357F\216\360E\216\361E\216\362E\216\363E\216\364D\215\365E\215\366" "E\215\367E\215\370E\214\371E\215\372E\215\373E\215\374E\210\375E\002\002\002\003" "\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066" "\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:" "A>\071B?;C@<DA=EB>FB?GD@HEAIFBJGCKGCLHCMIBNIAOIBPKBQLBRMBSLBTNBUOBVPBWQBX" "RBYSAZTA[UA\\VC]WC^XC_XC`YCaZCb\\Cc]Cd_Ce_Cf`CgaChcCidCjfCkfBlhBmiCnjDok" "DpmDqnDroDsqDtrDusDvuDwvDwxDwyDyzDy{Dy|Cz}Cz~D{\177E{\177E|\200E|\201E}\202" "E}\203E~\204E~\205E\177\206E\177\207E\200\210E\200\211E\201\212E\201\213" "E\202\214E\202\215E\202\216E\203\217E\203\220E\204\221D\204\222D\204\223" "D\205\224E\205\225F\205\226F\206\227F\206\230F\206\231F\207\232F\207\233" "F\207\234F\210\235F\210\236F\207\237F\210\240F\211\241F\211\242F\211\243" "F\212\244F\212\245F\212\246F\212\247F\213\250F\213\251F\213\252F\213\253" "F\213\254F\214\255F\214\256F\214\257F\214\260F\214\261F\215\262F\215\263" "F\215\264F\215\265F\215\266F\216\267F\216\270F\216\271F\216\272F\216\273" "F\216\274F\216\275F\215\276F\217\277E\217\300E\217\301F\217\302G\217\303" "G\217\304G\217\305G\217\306G\216\307G\217\310G\220\311G\220\312G\220\313" "G\220\314G\220\315G\220\316G\220\317G\220\320G\220\321G\220\322G\220\323" "G\220\323G\220\324G\220\325G\220\326G\220\327G\220\330G\220\331G\220\332" "G\220\333G\220\334G\220\335G\220\336G\220\337G\220\340G\220\341G\220\342" "G\220\343G\220\344G\220\345G\220\346G\220\347G\220\350G\220\351G\220\352" "G\220\353G\220\354G\220\355G\220\356G\220\357G\220\360G\220\361G\220\362" "G\220\363G\220\364F\220\365F\220\366F\220\367F\220\370E\217\371F\217\372" "F\217\373F\216\374F\212\375F\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010" "\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017" "\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027" "\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036" "\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061" "/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GB@HCAIFBJGCKHBLHDMI" "DNJBOICPJCQLCRMCSLCTMCUOCVPCWQCXRCYSCZTC[UB\\VB]WB^XB_YD`ZDaZDb[Dc\\Dd^D" "e_DfaDgaDhbDicDjeDkfDlgDmhCnjCokDplEqnEroEspEtqEusEvtEwvExwEyxEyzEy{Ez|E" "z}E|~D|\177D|\177E}\200F}\201F~\202F~\203F\177\204F\177\205F\200\206F\200" "\207F\201\210F\201\211F\202\212F\202\213F\203\214F\203\215F\203\216F\204" "\217F\204\220F\205\221F\205\222F\205\223F\206\224E\205\225E\206\226F\207" "\227G\207\230G\210\231G\210\232G\210\233G\211\234G\211\235G\210\236G\211" "\237G\212\240G\212\241G\212\242G\213\243G\213\244G\213\245G\213\246G\214" "\247G\214\250G\214\251G\214\252G\215\253G\215\254G\215\255G\215\256G\216" "\257G\216\260G\216\261G\216\262G\216\263G\217\264G\217\265G\217\266G\217" "\267G\217\270G\217\271G\220\272G\220\273G\220\274G\220\275G\220\276G\220" "\277G\217\300G\220\301F\221\302F\221\303G\221\304H\221\305H\221\306H\221" "\307H\221\310H\220\311H\221\312H\222\313H\222\314H\222\315H\222\316H\222" "\317H\222\320H\222\321H\222\322H\222\323H\222\323H\222\324H\222\325H\222" "\326H\222\327H\222\330H\222\331H\222\332H\222\333H\222\334H\222\335H\223" "\336H\223\337H\223\340H\223\341H\223\342H\223\343H\223\344H\223\345H\223" "\346H\222\347H\222\350H\222\351H\222\352H\222\353H\222\354H\222\355H\222" "\356H\222\357H\222\360H\222\361H\222\362H\222\363H\222\364H\222\365H\222" "\366H\222\367H\222\370G\222\371G\222\372G\222\373G\222\374F\215\375G\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HCAIDBJECKHBLIDMIENJDOKCPJDQKDRMDSNDTMDUNDVPDW" "QDXRDYSDZTD[UD\\VD]WD^XC_YC`ZCa[Eb\\Ec\\Ed]Ee^Ef`EgaEhcEicEjdEkeElgEmiEn" "iEojDplDqmErnFspFtqFurFvtFwuFxvFyxFzyF{zF{|F{}F|~F|\177F}\177E}\200E~\201" "E\177\202F\177\203G\200\204G\200\205G\201\206G\201\207G\202\210G\202\211" "G\203\212G\203\213G\203\214G\204\215G\204\216G\205\217G\205\220G\206\221" "G\206\222G\206\223G\207\224G\207\225G\210\226F\210\227F\210\230G\211\231" "H\210\232H\211\233H\212\234H\211\235H\212\236H\213\237H\213\240H\213\241" "H\214\242H\214\243H\214\244H\215\245H\215\246H\215\247H\215\250H\216\251" "H\216\252H\216\253H\216\254H\217\255H\217\256H\217\257H\217\260H\217\261" "H\220\262H\220\263H\220\264H\220\265H\220\266H\221\267H\221\270H\221\271" "H\221\272H\221\273H\222\274H\222\275H\222\276H\222\277H\222\300H\222\301" "H\221\302H\222\303G\223\304G\223\305H\223\306I\223\307I\223\310I\223\311" "I\222\312I\223\313I\222\314I\223\315I\224\316I\224\317I\224\320I\224\321" "I\224\322I\224\323I\224\323I\224\324I\224\325I\224\326I\224\327I\224\330" "I\224\331I\224\332I\224\333I\224\334I\224\335I\225\336I\225\337I\225\340" "I\225\341I\225\342I\225\343I\225\344I\225\345I\225\346I\225\347I\225\350" "I\225\351I\225\352I\225\353I\225\354I\225\355I\224\356I\224\357I\224\360" "I\224\361I\224\362I\223\363I\224\364I\224\365I\224\366I\224\367I\224\370" "I\224\371I\224\372I\224\373I\224\374H\221\375H\002\002\002\003\003\003\002\002\002\004\004\004\005" "\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'" "+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070" "\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>F" "A?GC@HDAIEBJECKFBLGDMIENIFOKEPLDQKERLESNETOEUNEVOEWQEXREYSEZTE[UE\\VE]WE" "^XE_YE`ZDa[Db\\Dc]Ed^Fe^Ff_Fg`FhbFicFjeFkeFlfFmhFniFokFpkFqmErnEsoFtpGur" "GvsGwtGxvGywGzxG{zG|{G|}G|~G~\177G~\177G~\200G\177\201G\177\202F\200\203" "F\200\204G\201\205H\201\206H\202\207H\202\210H\203\211H\203\212H\204\213" "H\204\214H\205\215H\205\216H\206\217H\206\220H\207\221H\207\222H\207\223" "H\210\224H\210\225H\211\226H\210\227H\211\230G\212\231G\212\232G\213\233" "H\213\234I\212\235I\214\236I\214\237I\213\240I\215\241I\215\242I\214\243" "I\216\244I\216\245I\215\246I\216\247I\217\250I\217\251I\217\252I\217\253" "I\220\254I\220\255I\220\256I\220\257I\221\260I\221\261I\221\262I\221\263" "I\222\264I\222\265I\222\266I\222\267I\222\270I\223\271I\223\272I\223\273" "I\223\274I\223\275I\223\276I\224\277I\224\300I\224\301I\224\302I\223\303" "I\224\304I\223\305H\224\306H\225\307I\225\310J\225\311J\225\312J\225\313" "J\225\314J\224\315J\224\316J\225\317J\226\320J\226\321J\226\322J\226\323" "J\226\323J\226\324J\226\325J\226\326J\226\327J\226\330J\226\331J\226\332" "J\226\333J\226\334J\225\335J\226\336J\227\337J\227\340J\227\341J\227\342" "J\227\343J\227\344J\227\345J\227\346J\227\347J\227\350J\227\351J\227\352" "J\227\353J\227\354J\227\355J\227\356J\227\357J\227\360J\227\361J\227\362" "J\226\363J\226\364J\226\365J\226\366J\226\367J\226\370J\225\371J\226\372" "J\226\373J\226\374J\223\375J\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010" "\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017" "\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027" "\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036" "\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061" "/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLGDMH" "ENIFOKGPLFQMERLFSMFTOFUPFVOFWQFXRFYSFZTF[UF\\VF]WF^XF_YF`ZFa[Fb\\Ec]Ed^E" "e_Ff`Gg`GhaGibGjdGkeGlgGmgGnhGojGpkGqlGrmGsoFtpFuqFvrGwtHxuHyvHzxH{yH|{H" "||H~}H~\177H~\177H\177\200H\177\201H\200\202H\201\203H\201\204G\202\205G" "\202\206H\203\207I\203\210I\204\211I\204\212I\205\213I\205\214I\206\215I" "\206\216I\207\217I\207\220I\210\221I\210\222I\210\223I\211\224I\211\225I" "\212\226I\212\227I\213\230I\213\231I\213\232I\214\233H\213\234H\214\235H" "\215\236J\214\237J\215\240J\216\241J\215\242J\216\243J\217\244J\216\245J" "\217\246J\220\247J\220\250J\220\251J\221\252J\221\253J\221\254J\221\255J" "\222\256J\222\257J\222\260J\222\261J\223\262J\223\263J\223\264J\223\265J" "\223\266J\224\267J\224\270J\224\271J\223\272J\224\273J\225\274J\225\275J" "\225\276J\225\277J\224\300J\226\301J\226\302J\226\303J\226\304J\226\305J" "\225\306J\225\307I\226\310I\227\311I\227\312J\227\313K\227\314K\227\315K" "\227\316K\226\317K\226\320K\227\321K\230\322K\230\323K\230\323K\230\324K" "\230\325K\230\326K\230\327K\230\330K\230\331K\230\332K\230\333K\230\334K" "\230\335K\227\336K\227\337K\230\340K\231\341K\231\342K\231\343K\231\344K" "\231\345K\231\346K\231\347K\231\350K\231\351K\231\352K\231\353K\231\354K" "\231\355K\231\356K\231\357K\231\360K\231\361K\231\362K\231\363K\231\364K" "\231\365K\231\366K\231\367K\231\370K\230\371K\230\372K\230\373K\227\374K" "\225\375K\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010" "\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021" "\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031" "\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037" "#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064" "\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:" "\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMFRNF" "SMGTNGUPGVOGWPGXRGYSGZTG[UG\\VG]WG^XG_YG`ZGa[Gb\\Gc]Gd^Fe_Ff`FgaFhbGibHj" "cHkdHlfHmgHniHoiHpjHqlHrmHsnHtoHuqHvrGwsGxuHyvIzwI{yI|zI}{I~}I~~I\177\177" "I\200\200I\200\201I\201\202I\201\203I\202\204I\202\205I\203\206H\204\207" "H\204\210I\205\211J\205\212J\206\213J\206\214J\207\215J\207\216J\210\217" "J\210\220J\211\221J\211\222J\211\223J\212\224J\212\225J\213\226J\213\227" "J\214\230J\214\231J\214\232J\215\233J\214\234J\216\235I\216\236I\215\237" "I\217\240K\217\241K\216\242K\220\243K\220\244K\220\245K\221\246K\221\247" "K\220\250K\222\251K\222\252K\221\253K\222\254K\223\255K\223\256K\223\257" "K\223\260K\224\261K\224\262K\224\263K\224\264K\225\265K\225\266K\225\267" "K\224\270K\226\271K\226\272K\226\273K\226\274K\225\275K\227\276K\227\277" "K\227\300K\227\301K\226\302K\226\303K\227\304K\230\305K\230\306K\230\307" "K\227\310K\227\311K\227\312J\230\313J\231\314K\231\315L\231\316L\231\317" "L\231\320L\230\321L\230\322L\230\323L\231\323L\232\324L\232\325L\232\326" "L\232\327L\232\330L\232\331L\232\332L\232\333L\232\334L\232\335L\232\336" "L\232\337L\231\340L\232\341L\233\342L\233\343L\233\344L\233\345L\233\346" "L\233\347L\233\350L\233\351L\233\352L\233\353L\233\354L\233\355L\233\356" "L\233\357L\233\360L\233\361L\233\362L\233\363L\233\364L\233\365L\233\366" "L\233\367L\233\370L\233\371L\233\372L\233\373L\233\374L\231\375L\002\002\002\003" "\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066" "\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:" "A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNGSOHTNHUPHVQHWPHX" "QHYSHZTH[UH\\VH]WH^XH_WH`XHaYHbZHc[Hd\\He^Hf`HgaGhbGicGjdHkdIleImfInhIoi" "IpkIqkIrlIsnItpIupIvqIwsIxtHyuHzwI{xJ|yJ}{J~|J\177}J\177~J\200\200J\201\201" "J\201\202J\202\203J\203\204J\203\205J\204\206J\204\207J\205\210I\205\211" "I\206\212J\207\213K\207\214K\210\215K\210\216K\211\217K\211\220K\211\221" "K\212\222K\212\223K\213\224K\213\225K\214\226K\214\227K\215\230K\215\231" "K\215\232K\216\233K\215\234K\217\235K\217\236K\216\237J\220\240J\217\241" "J\220\242J\221\243L\220\244L\222\245L\222\246L\221\247L\222\250L\223\251" "L\222\252L\222\253L\224\254L\224\255L\224\256L\225\257L\225\260L\225\261" "L\225\262L\226\263L\226\264L\226\265L\226\266L\227\267L\227\270L\227\271" "L\227\272L\226\273L\230\274L\230\275L\230\276L\227\277L\227\300L\230\301" "L\231\302L\231\303L\231\304L\230\305L\231\306L\232\307L\232\310L\232\311" "L\232\312L\231\313L\231\314K\232\315K\233\316L\233\317M\233\320M\233\321" "M\233\322M\233\323M\232\323M\232\324M\233\325M\234\326M\234\327M\234\330" "M\234\331M\234\332M\234\333M\234\334M\234\335M\234\336M\234\337M\234\340" "M\233\341M\233\342M\234\343M\235\344M\235\345M\235\346M\235\347M\235\350" "M\235\351M\235\352M\235\353M\235\354M\235\355M\235\356M\235\357M\235\360" "M\235\361M\235\362M\235\363M\235\364M\235\365M\235\366M\235\367M\235\370" "M\235\371M\235\372M\235\373M\235\374M\233\375M\002\002\002\003\003\003\002\002\002\004\004\004\005" "\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'" "+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070" "\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>F" "A?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNISOITNIUOIVQIWRIXQIYRIZTI[UI\\VI]WI" "^XI_WI`YIaZIb[Ic\\Id\\Ie]If^Ig_IhaIicHjdHkeHlfImfJngJohJpjJqkJrmJsmJtoJu" "pJvqJwrJxtJyuJzvI{wI|yJ}zK~{K\177|K\177~K\200\200K\201\201K\202\202K\203" "\203K\203\204K\204\205K\205\206K\205\207K\206\210K\206\211K\207\212J\207" "\213J\210\214J\210\215K\211\216L\211\217L\212\220L\212\221L\213\222L\213" "\223L\214\224L\214\225L\215\226L\215\227L\216\230L\216\231L\216\232L\217" "\233L\216\234L\220\235L\217\236L\220\237L\221\240L\220\241L\222\242K\222" "\243K\221\244K\223\245M\222\246M\223\247M\224\250M\224\251M\224\252M\225" "\253M\225\254M\225\255M\226\256M\226\257M\225\260M\225\261M\227\262M\227" "\263M\227\264M\226\265M\230\266M\230\267M\230\270M\227\271M\231\272M\231" "\273M\231\274M\230\275M\232\276M\232\277M\232\300M\232\301M\231\302M\232" "\303M\233\304M\233\305M\233\306M\232\307M\232\310M\233\311M\234\312M\234" "\313M\234\314M\233\315M\233\316L\233\317L\234\320M\235\321N\235\322N\235" "\323N\235\323N\235\324N\234\325N\234\326N\235\327N\236\330N\236\331N\236" "\332N\236\333N\236\334N\236\335N\236\336N\236\337N\236\340N\236\341N\236" "\342N\235\343N\235\344N\236\345N\237\346N\237\347N\237\350N\237\351N\237" "\352N\237\353N\237\354N\237\355N\237\356N\237\357N\237\360N\237\361N\237" "\362N\237\363N\237\364N\237\365N\237\366N\237\367N\237\370N\237\371N\237" "\372N\237\373N\237\374N\236\375N\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007" "\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014" "\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025" "\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034" "\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*" "\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063" ":\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCK" "GBLHDMIENJFOKGPLHQMIRNJSOJTPJUOJVPJWRJXSJYRJZSJ[UJ\\VJ]WJ^XJ_WJ`YJaZJb[J" "c\\Jd]Je^Jf_Jg_Jh`JiaJjcJkeIlfImgInhJohKpiKqjKrlKsnKtnKuoKvqKwrKxsKytKzv" "K{wK|xJ}zJ~{K\177|L\177~L\200\177L\201\200L\202\201L\203\203L\204\204L\205" "\205L\205\206L\206\207L\206\210L\207\211L\210\212L\210\213L\211\214L\211" "\215K\212\216K\212\217L\213\220M\213\221M\214\222M\214\223M\215\224M\215" "\225M\216\226M\216\227M\217\230M\217\231M\217\232M\220\233M\217\234M\221" "\235M\220\236M\222\237M\222\240M\221\241M\223\242M\222\243M\223\244L\224" "\245L\223\246L\225\247N\225\250N\224\251N\226\252N\226\253N\225\254N\227" "\255N\227\256N\226\257N\226\260N\230\261N\230\262N\230\263N\231\264N\231" "\265N\231\266N\231\267N\232\270N\232\271N\232\272N\232\273N\233\274N\233" "\275N\233\276N\233\277N\232\300N\233\301N\234\302N\234\303N\233\304N\233" "\305N\234\306N\235\307N\235\310N\235\311N\234\312N\235\313N\236\314N\236" "\315N\236\316N\236\317N\235\320M\235\321M\236\322N\237\323O\237\323O\237" "\324O\237\325O\237\326O\236\327O\236\330O\236\331O\237\332O\240\333O\240" "\334O\240\335O\240\336O\240\337O\240\340O\240\341O\240\342O\240\343O\240" "\344O\237\345O\240\346O\241\347O\241\350O\241\351O\241\352O\241\353O\241" "\354O\241\355O\241\356O\241\357O\241\360O\241\361O\241\362O\241\363O\241" "\364O\241\365O\241\366O\241\367O\241\370O\241\371O\241\372O\241\373O\241" "\374O\240\375O\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQ" "MIRNJSOKTPKUQKVPKWQKXSKYTKZSK[TK\\VK]WK^XK_WK`XKaZKb[Kc\\Kd]Ke^Kf_Kg`Kha" "KiaKjbKkcKleKmfJngJoiJpjKqjLrkLsmLtnLuoLvpLwqLxsLytLzuL{vL|xL}yL~zK\177{" "K\177}L\200~M\201\177M\202\201M\203\202M\204\203M\205\205M\206\206M\206\207" "M\207\210M\210\211M\210\212M\211\213M\211\214M\212\215M\212\216M\213\217" "L\214\220L\214\221M\215\222N\215\223N\216\224N\216\225N\217\226N\217\227" "N\220\230N\220\231N\217\232N\221\233N\220\234N\222\235N\221\236N\223\237" "N\223\240N\222\241N\224\242N\223\243N\225\244N\225\245N\224\246M\226\247" "M\225\250M\225\251O\227\252O\226\253O\226\254O\230\255O\227\256O\227\257" "O\231\260O\231\261O\231\262O\232\263O\232\264O\231\265O\231\266O\233\267" "O\233\270O\232\271O\232\272O\234\273O\234\274O\234\275O\233\276O\234\277" "O\235\300O\235\301O\234\302O\235\303O\236\304O\236\305O\236\306O\235\307" "O\236\310O\237\311O\237\312O\237\313O\236\314O\236\315O\237\316O\240\317" "O\240\320O\240\321O\237\322N\237\323N\237\323O\240\324P\241\325P\241\326" "P\241\327P\241\330P\241\331P\240\332P\240\333P\241\334P\242\335P\242\336" "P\242\337P\242\340P\242\341P\242\342P\242\343P\242\344P\242\345P\241\346" "P\241\347P\242\350P\243\351P\243\352P\243\353P\243\354P\243\355P\243\356" "P\243\357P\243\360P\243\361P\243\362P\243\363P\243\364P\243\365P\243\366" "P\243\367P\243\370P\243\371P\243\372P\243\373P\243\374P\243\375P\002\002\002\003" "\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066" "\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:" "A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQLVRLWQLX" "RLYTLZUL[TL\\VL]WL^XL_YL`XLaZLb[Lc\\Ld]Le^Lf_Lg`LhaLibLjcLkcLldLmeLnfLoh" "KpiKqkKrkLslMtmMuoMvpMwqMxrMysMzuM{vM|wM}yM~zM\177{M\177|L\200}L\201\177" "M\202\200N\203\201N\204\203N\205\204N\206\205N\207\207N\210\210N\210\211" "N\211\212N\212\213N\212\214N\213\215N\213\216N\214\217N\214\220N\215\221" "M\215\222M\216\223N\216\224O\217\225O\217\226O\220\227O\220\230O\221\231" "O\220\232O\222\233O\221\234O\223\235O\222\236O\224\237O\224\240O\223\241" "O\225\242O\224\243O\226\244O\226\245O\225\246O\227\247O\226\250N\230\251" "N\230\252N\227\253N\231\254P\231\255P\230\256P\232\257P\232\260P\231\261" "P\233\262P\233\263P\232\264P\232\265P\234\266P\234\267P\233\270P\235\271" "P\235\272P\235\273P\234\274P\236\275P\236\276P\235\277P\235\300P\236\301" "P\237\302P\237\303P\237\304P\236\305P\237\306P\240\307P\240\310P\237\311" "P\237\312P\240\313P\241\314P\241\315P\241\316P\240\317P\241\320P\242\321" "P\242\322P\242\323P\242\323O\241\324O\241\325P\242\326Q\243\327Q\243\330" "Q\243\331Q\243\332Q\243\333Q\242\334Q\242\335Q\243\336Q\244\337Q\244\340" "Q\244\341Q\244\342Q\244\343Q\244\344Q\244\345Q\244\346Q\244\347Q\243\350" "Q\243\351Q\244\352Q\245\353Q\245\354Q\245\355Q\245\356Q\245\357Q\245\360" "Q\245\361Q\245\362Q\245\363Q\245\364Q\245\365Q\245\366Q\245\367Q\245\370" "Q\245\371Q\245\372Q\245\373Q\245\374Q\245\375Q\002\002\002\003\003\003\002\002\002\004\004\004\005" "\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'" "+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070" "\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>F" "A?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSMXRMYSMZUM[TM\\UM]WM" "^XM_YM`XMaYMb[Mc\\Md]Me^Mf_Mg`MhaMibMjcMkdMleMmfMnfMogMphMqjLrkLsmLtmMun" "NvoNwqNxrNysNztN{vN|wN}xN~yN\177zN\177|N\200}N\201~M\202\177M\203\201N\204" "\202O\205\204O\206\205O\207\206O\210\210O\211\211O\212\212O\212\213O\213" "\214O\213\215O\214\216O\215\217O\215\220O\216\221O\216\222O\217\223N\217" "\224N\220\225N\220\226O\221\227P\221\230P\222\231P\221\232P\223\233P\222" "\234P\224\235P\223\236P\225\237P\225\240P\224\241P\226\242P\225\243P\227" "\244P\226\245P\226\246P\230\247P\227\250P\231\251P\231\252P\230\253O\232" "\254O\231\255O\231\256Q\233\257Q\232\260Q\232\261Q\234\262Q\233\263Q\233" "\264Q\235\265Q\235\266Q\234\267Q\236\270Q\236\271Q\235\272Q\235\273Q\237" "\274Q\237\275Q\236\276Q\237\277Q\240\300Q\240\301Q\240\302Q\237\303Q\240" "\304Q\241\305Q\240\306Q\240\307Q\241\310Q\242\311Q\242\312Q\242\313Q\241" "\314Q\242\315Q\243\316Q\243\317Q\243\320Q\242\321Q\242\322Q\243\323Q\244" "\323Q\244\324Q\244\325P\243\326P\243\327P\244\330Q\245\331R\245\332R\245" "\333R\245\334R\245\335R\244\336R\244\337R\244\340R\245\341R\246\342R\246" "\343R\246\344R\246\345R\246\346R\246\347R\246\350R\246\351R\245\352R\245" "\353R\246\354R\247\355R\247\356R\247\357R\247\360R\247\361R\247\362R\247" "\363R\247\364R\247\365R\247\366R\247\367R\247\370R\247\371R\247\372R\247" "\373R\247\374R\247\375R\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007" "\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMI" "ENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTNYSNZUN[VN\\UN]VN^XN_YN`ZNaYNbZNc\\Nd]N" "e^Nf_Ng`NhaNibNjcNkdNleNmfNngNohNphNqiNrjNslMtmMunMvoMwpNxqOysOztO{uO|vO" "}xO~yO\177zO\177{O\200|O\201~O\202\177O\203\200N\204\202N\205\203N\206\204" "O\207\206P\210\207P\211\210P\212\212P\213\213P\214\214P\214\215P\215\216" "P\215\217P\216\220P\216\221P\217\222P\220\223P\220\224P\221\225P\221\226" "O\222\227O\222\230P\223\231Q\222\232Q\224\233Q\223\234Q\225\235Q\224\236" "Q\226\237Q\226\240Q\225\241Q\227\242Q\226\243Q\230\244Q\227\245Q\231\246" "Q\231\247Q\230\250Q\232\251Q\231\252Q\231\253Q\233\254Q\232\255P\234\256" "P\234\257P\233\260R\235\261R\235\262R\234\263R\236\264R\236\265R\235\266" "R\237\267R\237\270R\236\271R\236\272R\240\273R\240\274R\237\275R\240\276" "R\241\277R\240\300R\240\301R\241\302R\242\303R\241\304R\241\305R\242\306" "R\243\307R\243\310R\243\311R\242\312R\243\313R\244\314R\244\315R\243\316" "R\243\317R\244\320R\245\321R\245\322R\245\323R\244\323R\245\324R\246\325" "R\246\326R\246\327R\246\330Q\245\331Q\245\332R\246\333S\247\334S\247\335" "S\247\336S\247\337S\247\340S\246\341S\246\342S\247\343S\250\344S\250\345" "S\250\346S\250\347S\250\350S\250\351S\250\352S\250\353S\247\354S\247\355" "S\247\356S\250\357S\251\360S\251\361S\251\362S\251\363S\251\364S\251\365" "S\251\366S\251\367S\251\370S\251\371S\251\372S\251\373S\251\374S\252\375" "S\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013" "\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023" "\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033" "\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$" "\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065" "\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070" "?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQ" "KVRMWSNXTOYUOZTO[VO\\WO]VO^WO_YO`ZOa[MbZMc\\Md]Oe^Of_Og`OhaOibOjcOkdOleO" "mfOngOohOpiOqjOrjOskOtlOunOvoNwpNxqNyrOzsP{uP|vP}wP~xP\177zP\177{P\200|P" "\201}P\202~P\203\200P\204\201P\205\202P\206\204O\207\205O\210\206P\211\210" "Q\212\211Q\213\212Q\214\214Q\215\215Q\215\216Q\216\217Q\217\220Q\217\221" "Q\220\222Q\220\223Q\221\224Q\221\225Q\222\226Q\222\227Q\223\230P\224\231" "P\223\232Q\225\233R\225\234R\225\235R\226\236R\225\237R\227\240R\226\241" "R\230\242R\227\243R\231\244R\230\245R\232\246R\232\247R\231\250R\233\251" "R\232\252R\234\253R\234\254R\233\255R\235\256R\234\257Q\234\260Q\236\261" "Q\235\262Q\237\263S\237\264S\236\265S\240\266S\240\267S\237\270S\237\271" "S\241\272S\241\273S\240\274S\241\275S\242\276S\241\277S\241\300S\242\301" "S\243\302S\242\303S\243\304S\244\305S\244\306S\244\307S\243\310S\244\311" "S\245\312S\244\313S\244\314S\245\315S\246\316S\246\317S\246\320S\245\321" "S\246\322S\247\323S\247\323S\247\324S\246\325S\246\326S\247\327S\250\330" "S\250\331S\250\332R\247\333R\247\334S\250\335T\251\336T\251\337T\251\340" "T\251\341T\251\342T\250\343T\250\344T\251\345T\252\346T\252\347T\252\350" "T\252\351T\252\352T\252\353T\252\354T\252\355T\252\356T\251\357T\251\360" "T\251\361T\253\362T\253\363T\253\364T\253\365T\253\366T\253\367T\253\370" "T\253\371T\253\372T\253\373T\253\374T\254\375T\002\002\002\003\003\003\002\002\002\004\004\004\005" "\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'" "+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070" "\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>F" "A?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZVP[UP\\WP]XP" "^WP_XP`ZNa[NbZOc[Nd]Ne^Nf_Ng`NhaOibPjcPkdPlePmfPngPohPpiPqjPrkPslPtlPumP" "vnPwpPxqOyrOzsO{tP|vQ}wQ~xQ\177yQ\177zQ\200{Q\201}Q\202~Q\203\177Q\204\201" "Q\205\202Q\206\203Q\207\204Q\210\206P\211\207P\212\210Q\213\212R\214\213" "R\215\215R\216\216R\217\217R\217\220R\220\221R\220\222R\221\223R\222\224" "R\222\225R\223\226R\223\227R\224\230R\224\231R\225\232Q\225\233Q\226\234" "Q\225\235S\227\236S\226\237S\230\240S\227\241S\231\242S\230\243S\232\244" "S\231\245S\233\246S\233\247S\232\250S\234\251S\233\252S\235\253S\235\254" "S\234\255S\236\256S\235\257S\237\260S\237\261S\236\262R\240\263R\237\264" "R\237\265T\241\266T\240\267T\240\270T\242\271T\242\272T\241\273T\242\274" "T\243\275T\242\276T\243\277T\244\300T\244\301T\243\302T\244\303T\245\304" "T\244\305T\244\306T\245\307T\246\310T\245\311T\245\312T\246\313T\247\314" "T\247\315T\247\316T\246\317T\247\320T\250\321T\250\322T\247\323T\247\323" "T\250\324T\251\325T\251\326T\251\327T\250\330T\251\331T\252\332T\252\333" "T\252\334S\252\335S\251\336T\251\337U\252\340U\253\341U\253\342U\253\343" "U\253\344U\252\345U\252\346U\252\347U\253\350U\254\351U\254\352U\254\353" "U\254\354U\254\355U\254\356U\254\357U\254\360U\253\361U\253\362U\253\363" "U\255\364U\255\365U\255\366U\255\367U\255\370U\255\371U\255\372U\255\373" "U\255\374U\257\375U\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011" "\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021" "\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031" "\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037" "\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062" "/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070" "\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJF" "OKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZVQ[WQ\\VQ]XQ^YQ_XQ`YOa[Pb\\Pc[Pd\\Pe^P" "f_Pg`OhaOibOjcOkdPleQmfQngQohQpiQqjQrkQslQtmQunQvnQwoQxpQyrQzsP{tP|uP}vQ" "~xR\177yR\177zR\200{R\201|R\202~R\203\177R\204\200R\205\201R\206\203R\207" "\204R\210\205R\211\207R\212\210Q\213\211Q\214\213R\215\214S\216\215S\217" "\217S\220\220S\221\221S\221\222S\222\223S\222\224S\223\225S\223\226S\224" "\227S\225\230S\224\231S\226\232S\225\233S\227\234R\226\235R\230\236R\227" "\237T\231\240T\230\241T\232\242T\231\243T\233\244T\232\245T\234\246T\234" "\247T\233\250T\235\251T\234\252T\236\253T\235\254T\235\255T\237\256T\236" "\257T\240\260T\237\261T\237\262T\241\263T\240\264S\242\265S\242\266S\241" "\267U\242\270U\243\271U\242\272U\243\273U\244\274U\243\275U\243\276U\245" "\277U\244\300U\244\301U\245\302U\246\303U\245\304U\245\305U\246\306U\247" "\307U\246\310U\247\311U\250\312U\250\313U\250\314U\247\315U\250\316U\251" "\317U\250\320U\250\321U\251\322U\252\323U\252\323U\252\324U\251\325U\252" "\326U\253\327U\253\330U\253\331U\252\332U\252\333U\253\334U\254\335U\254" "\336T\254\337T\253\340T\253\341U\254\342V\255\343V\255\344V\255\345V\255" "\346V\255\347V\254\350V\254\351V\255\352V\256\353V\256\354V\256\355V\256" "\356V\256\357V\256\360V\256\361V\256\362V\255\363V\255\364V\255\365V\257" "\366V\257\367V\257\370V\257\371V\257\372V\257\373V\257\374V\262\375V\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZVQ[WR\\XR]WR^YR_ZR`YPaZPb\\Qc]Qd\\Qe]Qf_Qg`QhaQibQjcPkdPlePmfQn" "gRohRpiRqjRrkRslRtmRunRvoRwpRxpRyqRzrR{tR|uQ}vQ~wQ\177xR\177zS\200{S\201" "|S\202}S\203~S\204\200S\205\201S\206\202S\207\203S\210\205S\211\206S\212" "\207S\213\211S\214\212R\215\213R\216\215S\217\216T\220\217T\221\221T\222" "\222T\222\223T\223\224T\224\225T\223\226T\225\227T\225\230T\226\231T\226" "\232T\227\233T\230\234T\227\235T\231\236S\230\237S\232\240S\231\241S\233" "\242U\232\243U\234\244U\234\245U\233\246U\235\247U\234\250U\236\251U\235" "\252U\237\253U\236\254U\240\255U\240\256U\237\257U\241\260U\240\261U\242" "\262U\242\263U\241\264U\243\265U\242\266T\242\267T\244\270T\243\271T\243" "\272U\245\273V\244\274V\244\275V\245\276V\246\277V\245\300V\246\301V\247" "\302V\246\303V\247\304V\250\305V\250\306V\247\307V\250\310V\251\311V\250" "\312V\250\313V\251\314V\252\315V\251\316V\251\317V\252\320V\253\321V\253" "\322V\253\323V\252\323V\253\324V\254\325V\254\326V\253\327V\253\330V\254" "\331V\255\332V\255\333V\255\334V\254\335V\255\336V\256\337V\256\340V\256" "\341U\256\342U\255\343V\255\344W\256\345W\257\346W\257\347W\257\350W\257" "\351W\256\352W\256\353W\256\354W\257\355W\260\356W\260\357W\260\360W\260" "\361W\260\362W\260\363W\260\364W\257\365W\257\366W\257\367W\261\370W\261" "\371W\261\372W\261\373W\261\374W\264\375W\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006" "\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062" "\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@H" "DAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZVQ[WR\\XS]YS^XS_ZS" "`[SaZQb[Rc]Rd^Re]Rf_Rg`RhaRibRjcRkdRleQmfQneQofQpgRqhSrjSslStlSunSvoSwpS" "xqSyqSzrS{sS|uS}vS~wR\177xR\177yR\200zS\201{T\202}T\203~T\204\177T\205\200" "T\206\202T\207\203T\210\204T\211\206T\212\207T\213\210T\214\211T\215\213" "T\216\214S\217\215S\220\217T\221\220U\222\222U\223\223U\224\224U\224\225" "U\225\226U\225\227U\226\230U\227\231U\226\232U\230\233U\230\234U\231\235" "U\230\236U\232\237U\231\240U\233\241T\232\242T\234\243T\233\244V\235\245" "V\234\246V\236\247V\235\250V\237\251V\236\252V\240\253V\237\254V\241\255" "V\241\256V\240\257V\242\260V\241\261V\243\262V\243\263V\242\264V\244\265" "V\243\266V\244\267V\245\270V\244\271U\245\272U\246\273U\245\274V\246\275" "W\247\276W\246\277W\247\300W\250\301W\247\302W\250\303W\251\304W\250\305" "W\250\306W\251\307W\252\310W\251\311W\252\312W\253\313W\253\314W\252\315" "W\253\316W\254\317W\254\320W\254\321W\253\322W\254\323W\255\323W\254\324" "W\254\325W\255\326W\256\327W\256\330W\255\331W\255\332W\256\333W\257\334" "W\257\335W\257\336W\256\337W\256\340W\257\341W\260\342W\260\343V\260\344" "V\257\345W\257\346X\260\347X\261\350X\261\351X\261\352X\261\353X\261\354" "X\260\355X\260\356X\260\357X\262\360X\262\361X\262\362X\262\363X\262\364" "X\262\365X\262\366X\261\367X\261\370X\261\371X\263\372X\263\373X\263\374" "X\267\375X\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZVQ[WR\\XS]YT^ZT_YT`[Ta\\Rb[Rc]Sd^Se]Sf^Sg`ShaSib" "SjcSkdSleSmdSneSofRphRqhRriSsjTtkTumTvoTwoTxqTyrTzsT{sT|tT}uT~wT\177xT\177" "yS\200zS\201{S\202|T\203~U\204\177U\205\200U\206\201U\207\202U\210\204U\211" "\205U\212\206U\213\210U\214\211U\215\212U\216\214U\217\215U\220\216T\221" "\220T\222\221U\223\222V\224\224V\225\225V\226\226V\225\227V\227\230V\227" "\231V\230\232V\231\233V\230\234V\232\235V\231\236V\233\237V\232\240V\234" "\241V\233\242V\235\243U\234\244U\236\245U\235\246W\237\247W\236\250W\240" "\251W\237\252W\241\253W\240\254W\242\255W\242\256W\241\257W\243\260W\242" "\261W\244\262W\244\263W\243\264W\245\265W\244\266W\246\267W\246\270W\245" "\271W\247\272W\246\273V\246\274V\250\275V\247\276W\247\277X\250\300X\250" "\301X\250\302X\251\303X\251\304X\251\305X\252\306X\253\307X\252\310X\253" "\311X\254\312X\253\313X\253\314X\254\315X\255\316X\255\317X\254\320X\255" "\321X\256\322X\255\323X\255\323X\256\324X\257\325X\257\326X\257\327X\256" "\330X\257\331X\260\332X\257\333X\257\334X\257\335X\260\336X\261\337X\261" "\340X\261\341X\260\342X\261\343X\262\344X\262\345W\262\346W\262\347X\261" "\350Y\261\351Y\262\352Y\263\353Y\263\354Y\263\355Y\263\356Y\262\357Y\262" "\360Y\262\361Y\264\362Y\264\363Y\264\364Y\264\365Y\264\366Y\264\367Y\264" "\370Y\263\371Y\263\372Y\263\373Y\264\374Y\271\375Y\002\002\002\003\003\003\002\002\002\004\004" "\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014" "\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023" "\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032" "\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&" "*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061" "\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=E" "B>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZVQ[WR\\XS" "]YT^ZU_[U`ZUa\\Ub[Sc\\Sd^Te_Tf^Tg_ThaTibTjcTkdTleTmdTneTogTphTqiSrjSskSt" "kTulUvmUwnUxpUyqUzsU{sU|tU}uU~vU\177wU\177yU\200zU\201{T\202|T\203}T\204" "~U\205\200V\206\201V\207\202V\210\203V\211\205V\212\206V\213\207V\214\210" "V\215\212V\216\213V\217\214V\220\216V\221\217V\222\220U\223\222U\224\223" "U\225\224V\226\226W\227\227W\227\230W\230\231W\231\232W\231\233W\232\234" "W\231\235W\233\236W\232\237W\234\240W\235\241W\234\242W\236\243W\235\244" "W\237\245V\236\246V\240\247V\237\250X\241\251X\240\252X\242\253X\242\254" "X\241\255X\243\256X\242\257X\244\260X\243\261X\245\262X\244\263X\244\264" "X\246\265X\245\266X\247\267X\246\270X\246\271X\250\272X\247\273X\250\274" "X\251\275W\250\276W\251\277W\252\300W\251\301X\252\302Y\253\303Y\252\304" "Y\253\305Y\254\306Y\253\307Y\254\310Y\255\311Y\254\312Y\254\313Y\255\314" "Y\256\315Y\255\316Y\256\317Y\257\320Y\257\321Y\256\322Y\257\323Y\260\323" "Y\260\324Y\260\325Y\257\326Y\260\327Y\261\330Y\260\331Y\260\332Y\261\333" "Y\262\334Y\262\335Y\261\336Y\261\337Y\262\340Y\263\341Y\263\342Y\263\343" "Y\262\344Y\262\345Y\263\346Y\264\347X\264\350X\264\351Y\263\352Z\263\353" "Z\264\354Z\265\355Z\265\356Z\265\357Z\265\360Z\264\361Z\264\362Z\264\363" "Z\264\364Z\266\365Z\266\366Z\266\367Z\266\370Z\266\371Z\266\372Z\266\373" "Z\266\374Z\273\375Z\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011" "\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021" "\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031" "\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037" "\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062" "/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070" "\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJF" "OKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[WR\\XS]YT^ZU_[T`\\Va[Vb\\Vc\\Td]Ue_" "Uf`Ug_Uh`UibUjcUkdUleUmdUneUofUphUqiUrjUskTtlTumTvnTwnUxoVypVzrV{sV|tV}u" "V~vV\177wV\177xV\200yV\201zV\202|V\203}U\204~U\205\177U\206\200V\207\202" "W\210\203W\211\204W\212\205W\213\207W\214\210W\215\211W\216\212W\217\214" "W\220\215W\221\216W\222\220W\223\221W\224\222W\225\224V\226\225V\227\227" "W\230\230X\231\231X\231\232X\232\233X\233\234X\232\235X\234\236X\233\237" "X\235\240X\234\241X\236\242X\235\243X\237\244X\236\245X\240\246X\241\247" "W\240\250W\242\251W\242\252W\241\253Y\243\254Y\242\255Y\244\256Y\243\257" "Y\245\260Y\244\261Y\246\262Y\245\263Y\246\264Y\247\265Y\246\266Y\250\267" "Y\247\270Y\250\271Y\251\272Y\250\273Y\251\274Y\251\275Y\251\276Y\252\277" "Y\252\300X\252\301X\253\302X\253\303Y\254\304Z\255\305Z\254\306Z\254\307" "Z\255\310Z\255\311Z\255\312Z\256\313Z\257\314Z\256\315Z\257\316Z\260\317" "Z\257\320Z\257\321Z\260\322Z\261\323Z\261\323Z\260\324Z\261\325Z\262\326" "Z\261\327Z\261\330Z\262\331Z\263\332Z\262\333Z\262\334Z\262\335Z\263\336" "Z\264\337Z\263\340Z\263\341Z\263\342Z\264\343Z\265\344Z\265\345Z\265\346" "Z\264\347Z\265\350Z\266\351Y\266\352Y\266\353Y\266\354Z\265\355[\265\356" "[\265\357[\267\360[\267\361[\267\362[\267\363[\266\364[\266\365[\266\366" "[\270\367[\270\370[\270\371[\270\372[\270\373[\270\374[\275\375[\002\002\002\003" "\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014" "\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024" "\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034" "\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&" "$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066" "\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:" "A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNX" "TOYUPZTQ[UR\\VS]YT^ZU_[T`\\Va]Wb\\Wc]Ud]Ue^Vf`VgaVh`ViaVjbVkdVleVmfVneVo" "fVphVqiVrjVskVtlVumVvnUwoUxoUypVzqW{rW|sW}uW~vW\177wW\177xW\200yW\201zW\202" "{W\203|W\204~W\205\177V\206\200V\207\201V\210\202V\211\204W\212\205X\213" "\206X\214\207X\215\211X\216\212X\217\213X\220\215X\221\216X\222\217X\223" "\220X\224\222X\225\223X\226\225X\227\226W\230\227W\231\231X\232\232Y\233" "\233Y\233\234Y\234\235Y\234\236Y\235\237Y\236\240Y\235\241Y\237\242Y\236" "\243Y\240\244Y\237\245Y\241\246Y\240\247Y\242\250Y\241\251Y\243\252X\242" "\253X\244\254X\243\255Z\245\256Z\244\257Z\246\260Z\245\261Z\247\262Z\246" "\263Z\250\264Z\250\265Z\247\266Z\251\267Z\250\270Z\252\271Z\252\272Z\251" "\273Z\252\274Z\252\275Z\253\276Z\254\277Z\253\300Z\254\301Z\255\302Y\254" "\303Y\255\304Y\255\305Z\255\306[\256\307[\257\310[\256\311[\257\312[\260" "\313[\257\314[\260\315[\261\316[\260\317[\260\320[\261\321[\262\322[\261" "\323[\262\323[\263\324[\263\325[\263\326[\263\327[\264\330[\264\331[\264" "\332[\264\333[\265\334[\265\335[\264\336[\264\337[\265\340[\266\341[\266" "\342[\265\343[\265\344[\266\345[\267\346[\267\347[\267\350[\266\351[\266" "\352[\267\353[\270\354Z\270\355Z\270\356[\267\357\\\267\360\\\267\361\\\271" "\362\\\271\363\\\271\364\\\271\365\\\270\366\\\270\367\\\270\370\\\270\371" "\\\272\372\\\272\373\\\272\374\\\277\375\\\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003" "\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062" "\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@H" "DAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\VS]WT^XU_[T" "`\\Va]Wb^Xc]Xd^Ve^Vf_WgaWhbWiaWjbWkdWleWmfWneWofWpgWqiWrjWskWtlWumWvnWwo" "WxpVyqVzqV{rW|sX}tX~uX\177wX\177xX\200yX\201zX\202{X\203|X\204}X\205~X\206" "\200X\207\201X\210\202W\211\203W\212\204W\213\206X\214\207Y\215\210Y\216" "\211Y\217\213Y\220\214Y\221\215Y\222\217Y\223\220Y\224\221Y\225\223Y\226" "\224Y\227\225Y\230\227Y\231\230X\232\231X\233\233Y\234\234Z\234\235Z\235" "\236Z\236\237Z\235\240Z\237\241Z\236\242Z\240\243Z\241\244Z\240\245Z\242" "\246Z\241\247Z\243\250Z\242\251Z\244\252Z\243\253Z\245\254Y\244\255Y\246" "\256Y\245\257[\247\260[\246\261[\250\262[\247\263[\247\264[\251\265[\250" "\266[\252\267[\251\270[\253\271[\253\272[\252\273[\253\274[\253\275[\254" "\276[\255\277[\254\300[\255\301[\255\302[\255\303[\256\304Z\256\305Z\257" "\306Z\260\307Z\257\310[\260\311\\\261\312\\\260\313\\\261\314\\\262\315\\" "\261\316\\\261\317\\\262\320\\\263\321\\\262\322\\\263\323\\\264\323\\\263" "\324\\\263\325\\\264\326\\\265\327\\\265\330\\\264\331\\\265\332\\\266\333" "\\\266\334\\\265\335\\\266\336\\\267\337\\\266\340\\\266\341\\\266\342\\" "\267\343\\\270\344\\\267\345\\\267\346\\\267\347\\\270\350\\\271\351\\\271" "\352\\\271\353\\\270\354\\\270\355\\\272\356[\272\357[\272\360[\272\361]" "\271\362]\271\363]\273\364]\273\365]\273\366]\273\367]\273\370]\272\371]" "\272\372]\272\373]\274\374]\301\375]\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005" "\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016" "\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026" "\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034" "\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)" "/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066" "\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJ" "FCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^XU_YT`ZVa\\" "Wb^Xc]Yd_Ye`Wf_Wg`XhbXicXjbXkcXleXmfXngXofXpgXqhXrjXskXtlXumXvnXwoXxpXyq" "XzrW{sW|sW}tW~uX\177vY\177wY\200yY\201zY\202{Y\203|Y\204}Y\205~Y\206\177" "Y\207\200Y\210\202Y\211\203Y\212\203X\213\205X\214\207X\215\210Y\216\211" "Z\217\212Z\220\214Z\221\215Z\222\216Z\223\217Z\224\221Z\225\222Z\226\223" "Z\227\225Z\230\226Z\231\227Z\232\231Z\233\232Y\234\233Y\235\235Y\236\236" "[\235\237[\237\240[\240\241[\237\242[\241\243[\240\244[\242\245[\241\246" "[\243\247[\242\250[\244\251[\245\252[\244\253[\246\254[\245\255[\247\256" "Z\246\257Z\250\260Z\247\261\\\251\262\\\251\263\\\250\264\\\252\265\\\251" "\266\\\253\267\\\252\270\\\253\271\\\254\272\\\253\273\\\254\274\\\254\275" "\\\255\276\\\255\277\\\255\300\\\256\301\\\256\302\\\257\303\\\260\304\\" "\257\305\\\260\306\\\260\307[\260\310[\261\311[\261\312\\\261\313]\262\314" "]\262\315]\262\316]\263\317]\264\320]\263\321]\264\322]\265\323]\264\323" "]\264\324]\265\325]\266\326]\266\327]\266\330]\267\331]\267\332]\267\333" "]\267\334]\270\335]\270\336]\270\337]\270\340]\271\341]\271\342]\270\343" "]\270\344]\271\345]\272\346]\272\347]\271\350]\271\351]\272\352]\273\353" "]\273\354]\272\355]\272\356]\272\357]\272\360\\\274\361\\\274\362\\\274\363" "^\273\364^\273\365^\273\366^\275\367^\275\370^\275\371^\275\372^\274\373" "^\275\374^\302\375^\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011" "\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021" "\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031" "\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037" "\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062" "/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070" "\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJF" "OKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`ZVa[Wb\\Xc^Yd^Ze`Zf" "aXg`YhaYicYjbYkcYldYmfYngYohYpgYqhYrjYskYtlYumYvnYwoYxpYyqYzrY{sY|tY}uX~" "uX\177vX\177wY\200xZ\201yZ\202{Z\203|Z\204}Z\205~Z\206\177Z\207\177Z\210" "\201Z\211\203Z\212\204Z\213\205Z\214\206Y\215\207Y\216\211Y\217\212Z\220" "\213[\221\214[\222\216[\223\217[\224\220[\225\222[\226\223[\227\224[\230" "\225[\231\227[\232\230[\233\231[\234\233[\235\234Z\236\236Z\237\237Z\240" "\240\\\237\241\\\241\242\\\240\243\\\242\244\\\243\245\\\242\246\\\244\247" "\\\243\250\\\245\251\\\244\252\\\246\253\\\245\254\\\247\255\\\246\256\\" "\250\257\\\247\260[\251\261[\250\262[\252\263[\251\264]\253\265]\252\266" "]\253\267]\253\270]\254\271]\255\272]\254\273]\255\274]\255\275]\256\276" "]\256\277]\257\300]\260\301]\257\302]\260\303]\260\304]\260\305]\261\306" "]\261\307]\262\310]\263\311\\\262\312\\\263\313\\\264\314]\263\315^\264\316" "^\265\317^\264\320^\265\321^\266\322^\265\323^\265\323^\266\324^\267\325" "^\266\326^\267\327^\270\330^\270\331^\267\332^\270\333^\271\334^\271\335" "^\270\336^\271\337^\272\340^\272\341^\271\342^\272\343^\273\344^\272\345" "^\272\346^\272\347^\273\350^\274\351^\273\352^\273\353^\273\354^\273\355" "^\275\356^\275\357^\275\360^\274\361^\274\362]\276\363]\276\364]\276\365" "]\276\366_\275\367_\275\370_\277\371_\277\372_\277\373_\277\374_\305\375" "_\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013" "\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023" "\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033" "\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$" "\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065" "\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070" "?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQ" "KVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb\\Xc]Yd^Ze`[faYgbYhaZibZjdZkcZld" "ZmeZngZohZpgZqhZriZskZtlZumZvnZwoZxpZyqZzrZ{sZ|tZ}uZ~vZ\177wY\177wY\200x" "Y\201yZ\202z[\203{[\204|[\205~[\206\177[\207\200[\210\201[\211\202[\212\203" "[\213\205[\214\206[\215\207[\216\210Z\217\211Z\220\213Z\221\214[\222\215" "\\\223\216\\\224\220\\\225\221\\\226\222\\\227\224\\\230\225\\\231\226\\" "\232\230\\\233\231\\\234\232\\\235\234\\\236\235\\\237\236[\240\240[\241" "\241[\242\242[\241\243]\243\244]\242\245]\244\246]\243\247]\245\250]\246" "\251]\245\252]\247\253]\246\254]\250\255]\247\256]\251\257]\250\260]\252" "\261]\251\262]\253\263\\\252\264\\\254\265\\\253\266^\254\267^\254\270^\255" "\271^\256\272^\255\273^\256\274^\256\275^\257\276^\257\277^\260\300^\261" "\301^\260\302^\261\303^\261\304^\262\305^\263\306^\262\307^\263\310^\263" "\311^\263\312^\264\313]\264\314]\264\315]\265\316]\265\317^\265\320_\266" "\321_\266\322_\266\323_\267\323_\270\324_\267\325_\270\326_\271\327_\271" "\330_\270\331_\271\332_\272\333_\272\334_\272\335_\273\336_\273\337_\273" "\340_\273\341_\274\342_\274\343_\274\344_\274\345_\275\346_\275\347_\274" "\350_\274\351_\274\352_\276\353_\276\354_\275\355_\275\356_\275\357_\277" "\360_\277\361_\276\362_\276\363_\276\364_\276\365^\300\366^\300\367^\300" "\370`\277\371`\277\372`\277\373`\301\374`\310\375`\002\002\002\003\003\003\002\002\002\004\004" "\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014" "\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023" "\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032" "\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&" "*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061" "\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=E" "B>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS" "]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa[gbZhcZib[jd[ke[ld[me[nf[oh[ph[qh[ri[sj[tl" "[um[vn[wo[xp[yq[zr[{s[|t[}u[~v[\177w[\177w[\200xZ\201yZ\202zZ\203{[\204|" "\\\205}\\\206~\\\207\200\\\210\201\\\211\202\\\212\203\\\213\204\\\214\205" "\\\215\207\\\216\210\\\217\211\\\220\212[\221\213[\222\215[\223\216\\\224" "\217]\225\221]\226\222]\227\223]\230\224]\231\226]\232\227]\233\230]\234" "\232]\235\233]\236\234]\237\236]\240\237]\241\240]\242\242\\\243\243\\\242" "\244\\\244\245^\245\246^\244\247^\246\250^\245\251^\247\252^\246\253^\250" "\254^\251\255^\250\256^\252\257^\251\260^\253\261^\252\262^\253\263^\253" "\264^\254\265]\254\266]\255\267]\255\270^\256\271_\257\272_\256\273_\257" "\274_\257\275_\260\276_\260\277_\261\300_\262\301_\261\302_\262\303_\262" "\304_\263\305_\264\306_\263\307_\264\310_\264\311_\265\312_\266\313_\265" "\314_\266\315_\267\316^\266\317^\267\320^\270\321_\267\322`\270\323`\271" "\323`\270\324`\271\325`\272\326`\271\327`\271\330`\272\331`\273\332`\273" "\333`\273\334`\274\335`\274\336`\273\337`\274\340`\275\341`\275\342`\274" "\343`\275\344`\276\345`\276\346`\275\347`\275\350`\277\351`\276\352`\276" "\353`\276\354`\276\355`\277\356`\277\357`\277\360`\277\361`\277\362`\300" "\363`\301\364`\301\365`\300\366`\300\367_\302\370_\302\371_\302\372a\302" "\373a\302\374a\311\375a\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007" "\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMI" "ENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Z" "e`[fa\\gb\\hc[ic[jc\\ke\\le\\me\\nf\\og\\pi\\qi\\ri\\sj\\tl\\um\\vn\\wo\\" "xp\\yq\\zr\\{s\\|t\\}u\\~v\\\177w\\\177w\\\200x\\\201y\\\202z[\203{[\204" "|[\205}\\\206~]\207\177]\210\200]\211\202]\212\203]\213\204]\214\204]\215" "\206]\216\207]\217\211]\220\212]\221\213]\222\214\\\223\216\\\224\217\\\225" "\220]\226\221^\227\223^\230\224^\231\225^\232\226^\233\230^\234\231^\235" "\232^\236\234^\237\235^\240\236^\241\240^\242\241^\243\243^\244\244]\245" "\245]\244\246]\246\247_\245\250_\247\251_\250\252_\247\253_\251\254_\250" "\255_\251\256_\251\257_\252\260_\252\261_\253\262_\253\263_\254\264_\254" "\265_\255\266_\255\267^\256\270^\256\271^\257\272_\257\273`\260\274`\260" "\275`\261\276`\261\277`\262\300`\263\301`\262\302`\263\303`\263\304`\264" "\305`\264\306`\264\307`\265\310`\265\311`\266\312`\266\313`\266\314`\267" "\315`\267\316`\267\317`\270\320_\270\321_\271\322_\272\323`\271\323a\272" "\324a\273\325a\272\326a\272\327a\273\330a\274\331a\274\332a\274\333a\275" "\334a\275\335a\274\336a\274\337a\276\340a\276\341a\276\342a\277\343a\277" "\344a\277\345a\276\346a\300\347a\300\350a\300\351a\277\352a\300\353a\300" "\354a\300\355a\300\356a\300\357a\301\360a\301\361a\301\362a\301\363a\301" "\364a\303\365a\303\366a\302\367a\302\370a\302\371`\302\372`\304\373`\304" "\374`\314\375b\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQ" "MIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]h" "c]id\\jd]kd]le]mf]nf]og]ph]qj]ri]sj]tk]um]vn]wo]xp]yq]zr]{s]|t]}t]~u]\177" "v]\177w]\200x]\201y]\202z]\203{]\204|\\\205}\\\206~\\\207\177]\210\200^\211" "\201^\212\202^\213\204^\214\205^\215\206^\216\206^\217\210^\220\211^\221" "\213^\222\214^\223\215^\224\216]\225\220]\226\221]\227\222^\230\223_\231" "\225_\232\226_\233\227_\234\231_\235\232_\236\233_\237\235_\240\236_\241" "\237_\242\241_\243\242_\244\243_\245\245_\246\246^\247\247^\246\250^\250" "\251`\247\252`\250\253`\250\254`\252\255`\253\256`\252\257`\254\260`\253" "\261`\255\262`\254\263`\255\264`\255\265`\256\266`\256\267`\257\270`\257" "\271_\260\272_\260\273_\261\274_\261\275`\262\276a\262\277a\263\300a\264" "\301a\263\302a\264\303a\264\304a\265\305a\265\306a\266\307a\267\310a\266" "\311a\267\312a\267\313a\270\314a\271\315a\270\316a\271\317a\272\320a\271" "\321a\272\322`\272\323`\272\323`\273\324`\274\325a\273\326b\274\327b\275" "\330b\274\331b\275\332b\276\333b\275\334b\276\335b\276\336b\277\337b\277" "\340b\277\341b\300\342b\300\343b\277\344b\277\345b\301\346b\301\347b\300" "\350b\300\351b\302\352b\302\353b\301\354b\301\355b\302\356b\302\357b\302" "\360b\302\361b\304\362b\303\363b\303\364b\303\365b\303\366b\305\367b\304" "\370b\304\371b\304\372b\304\373b\305\374a\316\375a\002\002\002\003\003\003\002\002\002\004\004" "\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014" "\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023" "\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032" "\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&" "*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061" "\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=E" "B>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS" "]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id^je^ke^le^mf^ng^og^ph^qi^rj^sj^t" "k^ul^vn^wo^xp^yq^zr^{s^|s^}s^~t^\177u^\177v^\200w^\201x^\202z^\203{^\204" "|^\205}^\206~]\207\177]\210\200]\211\201]\212\202^\213\203_\214\204_\215" "\206_\216\207_\217\210_\220\210_\221\212_\222\214_\223\215_\224\216_\225" "\217_\226\220^\227\222^\230\223^\231\224^\232\225_\233\227`\234\230`\235" "\231`\236\233`\237\234`\240\235`\241\237`\242\240`\243\241`\244\243`\245" "\244`\246\245`\247\247`\250\250_\247\251_\251\252_\252\253a\251\254a\253" "\255a\252\256a\253\257a\253\260a\255\261a\256\262a\255\263a\256\264a\256" "\265a\257\266a\257\267a\260\270a\260\271a\261\272a\261\273a\262\274`\262" "\275`\263\276`\263\277a\264\300b\265\301b\264\302b\265\303b\265\304b\266" "\305b\266\306b\267\307b\270\310b\267\311b\270\312b\270\313b\271\314b\272" "\315b\271\316b\272\317b\272\320b\272\321b\273\322b\273\323b\274\323b\275" "\324a\274\325a\275\326a\276\327b\275\330c\276\331c\277\332c\277\333c\276" "\334c\277\335c\300\336c\277\337c\300\340c\301\341c\301\342c\300\343c\301" "\344c\302\345c\302\346c\301\347c\302\350c\303\351c\303\352c\302\353c\303" "\354c\304\355c\304\356c\303\357c\304\360c\305\361c\305\362c\304\363c\304" "\364c\305\365c\305\366c\305\367c\305\370c\305\371c\307\372c\306\373c\307" "\374c\317\375c\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQ" "MIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]h" "c^id]je^kf_lf_mf_ng_oh_ph_qi_rj_sk_tk_ul_vm_wo_xp_yq_zr_{s_|r_}s_~t_\177" "u_\177v_\200w_\201x_\202y_\203z_\204{_\205|_\206~_\207\177_\210\200_\211" "\201^\212\202^\213\203^\214\203_\215\205`\216\206`\217\210`\220\211`\221" "\212`\222\213`\223\214`\224\216`\225\217`\226\220`\227\221`\230\222`\231" "\224_\232\225_\233\226_\234\230`\235\231a\236\232a\237\233a\240\235a\241" "\236a\242\237a\243\241a\244\242a\245\243a\246\245a\247\246a\250\250a\251" "\251a\252\252`\251\253`\252\254`\252\255b\254\256b\255\257b\254\260b\256" "\261b\255\262b\256\263b\256\264b\257\265b\261\266b\260\267b\261\270b\261" "\271b\262\272b\262\273b\263\274b\263\275b\264\276a\265\277a\264\300a\265" "\301b\265\302c\266\303c\266\304c\267\305c\267\306c\270\307c\271\310c\270" "\311c\271\312c\271\313c\272\314c\272\315c\272\316c\273\317c\273\320c\274" "\321c\275\322c\274\323c\275\323c\275\324c\275\325c\276\326b\277\327b\276" "\330b\277\331c\300\332d\277\333d\277\334d\301\335d\300\336d\300\337d\302" "\340d\302\341d\301\342d\303\343d\303\344d\302\345d\302\346d\304\347d\304" "\350d\303\351d\303\352d\305\353d\305\354d\304\355d\304\356d\305\357d\306" "\360d\305\361d\305\362d\306\363d\306\364d\306\365d\306\366d\307\367d\307" "\370d\307\371d\307\372d\307\373d\311\374d\322\375d\002\002\002\003\003\003\002\002\002\004\004" "\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014" "\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023" "\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032" "\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&" "*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061" "\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=E" "B>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS" "]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lg`mg`ng`oh`pi`qi`rj`sl`t" "l`ul`vm`wo`xp`yq`zr`{s`|r`}s`~u`\177v`\177w`\200w`\201x`\202y`\203z`\204" "{`\205|`\206}`\207~`\210\200`\211\201`\212\202`\213\203_\214\204_\215\205" "_\216\205`\217\207a\220\210a\221\212a\222\213a\223\214a\224\215a\225\216" "a\226\220a\227\221a\230\222a\231\223a\232\225a\233\226`\234\227`\235\230" "`\236\232`\237\233b\240\234b\241\236b\242\237b\243\240b\244\242b\245\243" "b\246\244b\247\246b\250\247b\251\250b\252\252b\253\253b\254\254a\253\255" "a\255\256a\254\257a\255\260c\257\261c\256\262c\257\263c\257\264c\260\265" "c\260\266c\261\267c\261\270c\262\271c\262\272c\263\273c\263\274c\264\275" "c\264\276c\265\277c\265\300b\266\301b\266\302b\267\303c\267\304d\270\305" "d\270\306d\271\307d\272\310d\271\311d\272\312d\272\313d\273\314d\273\315" "d\274\316d\275\317d\274\320d\275\321d\275\322d\275\323d\276\323d\276\324" "d\277\325d\300\326d\277\327d\277\330c\301\331c\300\332c\300\333c\302\334" "d\301\335e\302\336e\303\337e\303\340e\302\341e\304\342e\304\343e\303\344" "e\303\345e\305\346e\305\347e\304\350e\305\351e\305\352e\306\353e\305\354" "e\306\355e\306\356e\307\357e\306\360e\307\361e\307\362e\310\363e\307\364" "e\310\365e\310\366e\311\367e\310\370e\310\371e\311\372e\311\373e\312\374" "e\323\375e\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhangaohapiaqiarjaskatmaul`vm_wn_xp_yq_zr_{s_|r`}sa~ua\177va\177" "va\200wa\201xa\202ya\203za\204{a\205|a\206}a\207~a\210\177a\211\200a\212" "\201a\213\203a\214\204a\215\205`\216\206`\217\207`\220\207a\221\211b\222" "\212b\223\214b\224\215b\225\215b\226\217b\227\220b\230\222b\231\223b\232" "\224b\233\225b\234\227b\235\230a\236\231a\237\232a\240\234a\241\235c\242" "\236c\243\240c\244\241c\245\242c\246\244c\247\245c\250\246c\251\250c\252" "\251c\253\252c\254\254c\254\255c\254\256c\255\257b\257\260b\256\261b\257" "\262d\257\263d\260\264d\262\265d\261\266d\262\267d\262\270d\263\271d\263" "\272d\264\273d\264\274d\265\275d\265\276d\266\277d\266\300d\267\301d\267" "\302c\270\303c\270\304c\271\305c\271\306d\272\307e\273\310e\272\311e\273" "\312e\273\313e\274\314e\274\315e\275\316e\276\317e\275\320e\276\321e\276" "\322e\277\323e\300\323e\277\324e\300\325e\300\326e\300\327e\301\330e\302" "\331e\301\332e\302\333d\303\334d\302\335d\303\336e\304\337f\303\340f\304" "\341f\305\342f\304\343f\304\344f\306\345f\306\346f\305\347f\306\350f\307" "\351f\306\352f\306\353f\307\354f\310\355f\307\356f\307\357f\310\360f\311" "\361f\310\362f\310\363f\311\364f\312\365f\311\366f\311\367f\312\370f\312" "\371f\312\372f\312\373f\314\374f\326\375f\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006" "\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062" "\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@H" "DAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT" "`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbnhbohbpibqjbrjbskbtlbumavm`w" "naxoayqazra{s`|r`}s`~t`\177v`\177va\200wb\201xb\202yb\203zb\204{b\205|b\206" "}b\207~b\210\177b\211\200b\212\201b\213\202b\214\203b\215\205b\216\206b\217" "\207a\220\210a\221\211a\222\211b\223\213c\224\215c\225\216c\226\217c\227" "\217c\230\221c\231\222c\232\224c\233\225c\234\226c\235\227c\236\231c\237" "\232b\240\233b\241\235b\242\236b\243\237d\244\240d\245\242d\246\243d\247" "\244d\250\246d\251\247d\252\250d\253\252d\254\253d\255\255d\256\256d\257" "\257d\256\260d\257\261c\261\262c\260\263c\261\264e\261\265e\262\266e\262" "\267e\263\270e\263\271e\264\272e\266\273e\265\274e\266\275e\266\276e\267" "\277e\267\300e\270\301e\270\302e\271\303e\271\304e\272\305d\273\306d\272" "\307d\273\310e\273\311f\274\312f\274\313f\275\314f\275\315f\276\316f\277" "\317f\276\320f\277\321f\277\322f\300\323f\301\323f\300\324f\301\325f\301" "\326f\301\327f\303\330f\302\331f\302\332f\304\333f\303\334f\303\335e\305" "\336e\304\337e\304\340f\306\341g\305\342g\305\343g\306\344g\307\345g\306" "\346g\307\347g\310\350g\307\351g\307\352g\310\353g\311\354g\310\355g\311" "\356g\311\357g\312\360g\311\361g\312\362g\312\363g\313\364g\312\365g\313" "\366g\313\367g\314\370g\313\371g\314\372g\314\373g\316\374g\327\375g\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbn" "icoicpicqjcrkcskctlcumbvnawnaxobypbzrb{sb|sb}sb~tb\177va\177va\200wa\201" "xb\202yc\203zc\204{c\205|c\206}c\207~c\210\177c\211\200c\212\201c\213\202" "c\214\202c\215\204c\216\205c\217\207c\220\210c\221\211b\222\212b\223\212" "b\224\214c\225\215d\226\217d\227\220d\230\221d\231\221d\232\223d\233\225" "d\234\226d\235\227d\236\230d\237\232d\240\233d\241\234c\242\235c\243\237" "c\244\240c\245\241e\246\243e\247\244e\250\245e\251\246e\252\250e\253\251" "e\254\253e\255\254e\256\255e\257\257e\260\260e\261\261e\260\262d\261\263" "d\261\264d\262\265d\264\266e\263\267f\264\270f\264\271f\265\272f\265\273" "f\266\274f\266\275f\267\276f\267\277f\270\300f\270\301f\271\302f\271\303" "f\272\304f\272\305f\273\306f\273\307e\274\310e\274\311e\275\312f\275\313" "g\276\314g\276\315g\277\316g\300\317g\277\320g\300\321g\300\322g\301\323" "g\301\323g\301\324g\302\325g\302\326g\303\327g\304\330g\303\331g\304\332" "g\305\333g\304\334g\305\335g\306\336g\305\337f\307\340f\307\341f\306\342" "f\307\343g\310\344h\307\345h\307\346h\311\347h\310\350h\310\351h\311\352" "h\312\353h\311\354h\312\355h\313\356h\312\357h\312\360h\313\361h\314\362" "h\313\363h\313\364h\314\365h\315\366h\314\367h\314\370h\315\371h\316\372" "h\315\373h\316\374h\331\375h\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010" "\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017" "\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027" "\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036" "\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061" "/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMI" "ENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Z" "e`[fa\\gb]hc^id]je^kf`lgamhbnicojdpjdqjdrkdsldtldumcvnbwobxocypczqc{sc|t" "c}sc~tc\177uc\177wc\200wb\201xb\202yb\203zb\204{c\205|d\206}d\207~d\210\177" "d\211\200d\212\201d\213\202d\214\203d\215\204d\216\204d\217\206d\220\207" "d\221\211d\222\212d\223\213c\224\214c\225\214c\226\216d\227\217e\230\221" "e\231\222e\232\223e\233\224e\234\225e\235\227e\236\230e\237\231e\240\232" "e\241\234e\242\235e\243\236d\244\237d\245\241d\246\242d\247\243f\250\245" "f\251\246f\252\247f\253\251f\254\252f\255\253f\256\255f\257\256f\260\257" "f\261\261f\261\262f\261\263f\262\264e\264\265e\263\266e\264\267e\264\270" "f\265\271g\266\272g\266\273g\267\274g\267\275g\270\276g\270\277g\271\300" "g\271\301g\272\302g\272\303g\273\304g\273\305g\274\306g\274\307g\275\310" "g\275\311f\276\312f\276\313f\277\314g\277\315h\300\316h\301\317h\300\320" "h\301\321h\301\322h\302\323h\302\323h\302\324h\304\325h\303\326h\304\327" "h\304\330h\304\331h\305\332h\305\333h\305\334h\307\335h\306\336h\306\337" "h\310\340h\307\341h\307\342g\311\343g\310\344g\310\345h\311\346i\311\347" "i\311\350i\312\351i\313\352i\312\353i\313\354i\314\355i\313\356i\313\357" "i\314\360i\315\361i\314\362i\315\363i\315\364i\316\365i\315\366i\316\367" "i\316\370i\317\371i\316\372i\317\373i\320\374i\333\375i\002\002\002\003\003\003\002\002\002" "\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014" "\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024" "\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034" "\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%" "*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064" "\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<D" "A=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\" "WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbnicojdpkeqkerkesl" "etmeumevndwocxpcypdzqd{rd|td}td~td\177ud\177vd\200xd\201xc\202yc\203zc\204" "{c\205|c\206}c\207~d\210\177e\211\200e\212\201e\213\202e\214\203e\215\204" "e\216\205e\217\206e\220\206e\221\210e\222\211e\223\213e\224\214e\225\215" "d\226\216d\227\216d\230\220e\231\221f\232\223f\233\224f\234\225f\235\226" "f\236\227f\237\231f\240\232f\241\233f\242\234f\243\236f\244\237f\245\240" "e\246\241e\247\243e\250\244e\251\245g\252\247g\253\250g\254\251g\255\253" "g\256\254g\257\255g\260\257g\261\260g\262\261g\262\263g\264\264g\263\265" "g\264\266f\266\267f\265\270f\266\271f\266\272f\267\273g\267\274h\270\275" "h\271\276h\271\277h\272\300h\272\301h\273\302h\273\303h\274\304h\274\305" "h\275\306h\275\307h\276\310h\276\311h\277\312g\277\313g\300\314g\301\315" "g\300\316g\301\317h\301\320i\302\321i\302\322i\303\323i\303\323i\304\324" "i\305\325i\304\326i\305\327i\305\330i\305\331i\307\332i\306\333i\307\334" "i\310\335i\307\336i\307\337i\310\340i\310\341i\311\342i\311\343h\311\344" "h\312\345h\313\346h\312\347i\313\350j\314\351j\313\352j\314\353j\315\354" "j\314\355j\314\356j\315\357j\316\360j\315\361j\316\362j\317\363j\316\364" "j\316\365j\317\366j\320\367j\317\370j\317\371j\320\372j\321\373j\321\374" "j\334\375j\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbnicojdpkeqlfrlfslftmfunfvnewodxpdyqezqe{re|te}ue~ue\177ue\177" "ve\200xe\201xe\202ye\203ze\204{d\205|d\206}d\207~d\210\177d\211\200e\212" "\201f\213\202f\214\203f\215\204f\216\205f\217\206f\220\207f\221\210f\222" "\210f\223\212f\224\213f\225\215f\226\216e\227\217e\230\220e\231\220e\232" "\222e\233\223f\234\225g\235\226g\236\227g\237\230g\240\231g\241\233g\242" "\234g\243\235g\244\236g\245\240g\246\241f\247\242f\250\244f\251\245f\252" "\246f\253\247f\254\251h\255\252h\256\253h\257\254h\260\255h\261\256h\262" "\260h\263\262h\264\264h\264\265h\266\266h\265\267h\266\270g\266\271g\267" "\272g\270\273g\270\274g\271\275h\271\276i\272\277i\272\300i\273\301i\273" "\302i\274\303i\275\304i\275\305i\276\306i\276\307i\277\310i\277\311i\300" "\312i\301\313i\300\314h\301\315h\301\316h\302\317h\302\320h\303\321i\303" "\322j\304\323j\304\323j\305\324j\306\325j\305\326j\306\327j\306\330j\307" "\331j\310\332j\307\333j\310\334j\310\335j\310\336j\311\337j\311\340j\311" "\341j\313\342j\312\343j\312\344j\314\345i\313\346i\313\347i\315\350i\314" "\351i\314\352j\316\353k\315\354k\315\355k\316\356k\317\357k\316\360k\317" "\361k\320\362k\317\363k\317\364k\320\365k\321\366k\320\367k\321\370k\321" "\371k\322\372k\321\373k\323\374k\336\375k\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006" "\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062" "\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@H" "DAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT" "`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbnicojdpkeqlfrmgsmgtmgungvogw" "ofxpeyqezqf{rf|sf}uf~vf\177uf\177vf\200wf\201xf\202yf\203zf\204{f\205|f\206" "}f\207~e\210\177e\211\200e\212\201e\213\202f\214\203g\215\204g\216\205g\217" "\206g\220\207g\221\210g\222\211g\223\212g\224\212g\225\214g\226\215g\227" "\217g\230\220f\231\221f\232\222f\233\222f\234\224f\235\225g\236\227h\237" "\230h\240\230h\241\232h\242\234h\243\235h\244\236h\245\237h\246\241h\247" "\242h\250\243g\251\244g\252\246g\253\247g\254\250g\255\252g\256\253i\257" "\254i\260\255i\261\257i\262\260i\263\261i\264\263i\265\264i\266\266i\266" "\267i\267\270i\267\271i\270\272i\270\273h\271\274h\271\275h\272\276h\273" "\277i\273\300j\274\301j\274\302j\275\303j\275\304j\276\305j\276\306j\277" "\307j\277\310j\300\311j\300\312j\301\313j\301\314j\302\315j\302\316j\303" "\317i\303\320i\304\321i\304\322i\305\323j\305\323k\306\324k\307\325k\306" "\326k\307\327k\307\330k\310\331k\311\332k\310\333k\311\334k\311\335k\311" "\336k\313\337k\312\340k\312\341k\313\342k\313\343k\314\344k\314\345k\314" "\346k\315\347j\315\350j\315\351j\316\352j\316\353j\316\354k\317\355l\320" "\356l\317\357l\320\360l\321\361l\320\362l\320\363l\321\364l\322\365l\321" "\366l\322\367l\323\370l\322\371l\322\372l\323\373l\325\374l\340\375l\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbn" "icojdpkeqlfrmgsngtngunhvohwpgxpfyqfzrg{rg|sg}tg~vg\177vg\177vg\200wg\201" "xg\202yg\203zg\204{g\205|g\206}g\207~g\210\177g\211\200f\212\201f\213\202" "f\214\203f\215\204f\216\205g\217\206h\220\207h\221\210h\222\211h\223\212" "h\224\213h\225\214h\226\214h\227\216h\230\217h\231\221h\232\222h\233\223" "g\234\224g\235\224g\236\226g\237\230h\240\231i\241\232i\242\233i\243\234" "i\244\236i\245\237i\246\240i\247\241i\250\243i\251\244i\252\245i\253\246" "h\254\250h\255\251h\256\252h\257\254h\260\255j\261\256j\262\257j\263\261" "j\264\262j\265\263j\266\265j\267\266j\270\270j\270\271j\270\272j\271\273" "j\272\274j\272\275i\273\276i\273\277i\274\300i\274\301j\275\302k\276\303" "k\276\304k\277\305k\277\306k\300\307k\300\310k\301\311k\301\312k\302\313" "k\302\314k\303\315k\303\316k\304\317k\304\320k\305\321j\305\322j\306\323" "j\306\323j\306\324k\307\325l\307\326l\310\327l\310\330l\311\331l\311\332" "l\311\333l\312\334l\312\335l\312\336l\313\337l\313\340l\313\341l\314\342" "l\314\343l\316\344l\315\345l\315\346l\317\347l\316\350l\316\351l\320\352" "k\317\353k\317\354k\321\355k\320\356l\320\357m\322\360m\321\361m\321\362" "m\322\363m\323\364m\322\365m\323\366m\324\367m\323\370m\323\371m\324\372" "m\325\373m\326\374m\342\375m\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010" "\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017" "\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027" "\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036" "\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061" "/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMI" "ENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Z" "e`[fa\\gb]hc^id]je^kf`lgamhbnhcoidpkeqlfrmgsnftoguohvoiwpixqhyqgzrg{sh|s" "h}th~uh\177wh\177wh\200wh\201xh\202yh\203zh\204{h\205|h\206}h\207~h\210\177" "h\211\200h\212\201h\213\201g\214\202g\215\203g\216\204g\217\205g\220\207" "h\221\210i\222\211i\223\212i\224\213i\225\214i\226\215i\227\216i\230\216" "i\231\220i\232\221i\233\223i\234\224i\235\225h\236\225h\237\227h\240\230" "h\241\232i\242\233j\243\234j\244\235j\245\236j\246\240j\247\241j\250\242" "j\251\243j\252\245j\253\246j\254\247j\255\251i\256\252i\257\253i\260\254" "i\261\255i\262\257k\263\260k\264\261k\265\262k\266\263k\267\265k\270\266" "k\271\271k\271\272k\272\273k\272\274k\273\275k\273\276j\274\277j\275\300" "j\275\301j\276\302j\276\303k\277\304l\277\305l\300\306l\301\307l\301\310" "l\302\311l\302\312l\303\313l\303\314l\304\315l\304\316l\305\317l\305\320" "l\306\321l\306\322l\307\323k\310\323k\307\324k\310\325k\310\326k\311\327" "l\311\330m\312\331m\312\332m\312\333m\313\334m\313\335m\313\336m\314\337" "m\314\340m\315\341m\315\342m\315\343m\317\344m\316\345m\316\346m\317\347" "m\317\350m\320\351m\320\352m\320\353m\321\354l\321\355l\321\356l\322\357" "l\323\360l\322\361m\323\362n\324\363n\323\364n\324\365n\325\366n\324\367" "n\324\370n\325\371n\326\372n\325\373n\327\374n\344\375n\002\002\002\003\003\003\002\002\002" "\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014" "\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024" "\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034" "\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%" "*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064" "\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<D" "A=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\" "WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpieqkfrmgsn" "ftogupivpiwpjxqiyrhzrh{sh|ti}ti~ui\177vi\177xi\200xi\201xi\202yi\203zi\204" "{i\205|i\206}i\207~i\210\177i\211\200i\212\200i\213\201i\214\202i\215\203" "i\216\204h\217\204h\220\206h\221\207h\222\210i\223\212j\224\213j\225\214" "j\226\215j\227\216j\230\217j\231\220j\232\220j\233\222j\234\223j\235\225" "j\236\226j\237\227i\240\227i\241\231i\242\232i\243\234i\244\235k\245\236" "k\246\237k\247\240k\250\242k\251\243k\252\244k\253\245k\254\247k\255\250" "k\256\251k\257\252j\260\254j\261\255j\262\256j\263\260j\264\261k\265\262" "l\266\264l\267\264l\270\266l\271\270l\272\271l\273\272l\273\274l\274\275" "l\274\276l\275\277l\275\300k\276\301k\277\302k\277\303k\300\304k\300\305" "k\301\306l\301\307m\302\310m\302\311m\303\312m\303\313m\304\314m\304\315" "m\305\316m\305\317m\306\320m\306\321m\307\322m\307\323m\310\323m\310\324" "l\311\325l\311\326l\312\327l\312\330l\313\331m\313\332n\314\333n\315\334" "n\314\335n\314\336n\315\337n\315\340n\317\341n\316\342n\316\343n\317\344" "n\317\345n\320\346n\320\347n\320\350n\322\351n\321\352n\321\353n\323\354" "n\322\355n\322\356m\324\357m\323\360m\324\361m\325\362m\324\363n\325\364" "o\326\365o\325\366o\325\367o\326\370o\327\371o\326\372o\327\373o\331\374" "o\345\375o\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpieqjfrkgsmftogupivqjwqjxqkyrjzsi{si|ti}uj~uj\177vj\177" "wj\200xj\201xj\202yj\203zj\204{j\205|j\206}j\207~j\210\177j\211\200j\212" "\200j\213\201j\214\202j\215\203j\216\204j\217\205j\220\206i\221\207i\222" "\207i\223\211i\224\212i\225\213j\226\215k\227\216k\230\217k\231\220k\232" "\221k\233\222k\234\222k\235\224k\236\225k\237\227k\240\230k\241\231j\242" "\231j\243\233j\244\234j\245\236j\246\237l\247\240l\250\241l\251\243l\252" "\244l\253\245l\254\246l\255\250l\256\251l\257\252l\260\253l\261\254k\262" "\256k\263\257k\264\260k\265\262k\266\263l\267\264m\270\266m\271\267m\272" "\270m\273\272m\274\273m\275\274m\275\276m\275\277m\276\300m\277\301m\277" "\302l\300\303l\300\304l\301\305l\302\306l\302\307l\303\310m\303\311n\304" "\312n\304\313n\305\314n\305\315n\306\316n\306\317n\307\320n\307\321n\310" "\322n\310\323n\311\323n\311\324n\312\325n\312\326n\313\327m\313\330m\314" "\331m\314\332m\314\333n\315\334o\315\335o\315\336o\316\337o\316\340o\320" "\341o\317\342o\317\343o\320\344o\320\345o\322\346o\321\347o\321\350o\322" "\351o\322\352o\323\353o\323\354o\323\355o\324\356o\324\357o\324\360o\326" "\361n\325\362n\325\363n\327\364n\326\365o\326\366p\327\367p\330\370p\327" "\371p\330\372p\331\373p\332\374p\347\375p\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006" "\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062" "\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@H" "DAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT" "`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpieqjfrkgslftmguoivqjw" "rkxrkyrlzsk{sj|tj}uk~vk\177vk\177wk\200xk\201yk\202yk\203zk\204{k\205|k\206" "}k\207~k\210\177k\211\200k\212\177k\213\201k\214\202k\215\203k\216\204k\217" "\205k\220\206k\221\207k\222\210j\223\211j\224\212j\225\212j\226\214j\227" "\215k\230\216l\231\220l\232\221l\233\222l\234\223l\235\224l\236\224l\237" "\226l\240\227l\241\231l\242\232l\243\233k\244\233k\245\235k\246\236k\247" "\240k\250\241m\251\242m\252\243m\253\245m\254\246m\255\247m\256\250m\257" "\251m\260\253m\261\254m\262\255m\263\256l\264\260l\265\261l\266\262l\267" "\264l\270\265m\271\266n\272\270n\273\271n\274\272n\275\273n\276\275n\276" "\277n\277\300n\277\301n\300\302n\301\303n\301\304n\302\305m\302\306m\303" "\307m\303\310m\304\311m\304\312n\305\313o\306\314o\306\315o\307\316o\307" "\317o\310\320o\310\321o\311\322o\311\323o\312\323o\312\324o\313\325o\313" "\326o\314\327o\314\330o\315\331n\316\332n\315\333n\315\334n\316\335o\316" "\336p\317\337p\317\340p\321\341p\320\342p\320\343p\321\344p\321\345p\322" "\346p\322\347p\323\350p\323\351p\323\352p\325\353p\324\354p\324\355p\326" "\356p\325\357p\326\360p\326\361p\326\362p\327\363o\330\364o\327\365o\330" "\366o\331\367o\330\370p\331\371q\332\372q\331\373q\332\374q\350\375q\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbn" "gcohdpjeqkfrkgslftmgunivojwqkxslyslzsm{tl|tk}uk~vl\177wl\177wl\200xl\201" "zl\202zl\203zl\204{l\205|l\206}l\207~l\210\177l\211\200l\212\200l\213\201" "l\214\202l\215\203l\216\204l\217\205l\220\206l\221\207l\222\210l\223\211" "l\224\212l\225\213k\226\214k\227\215k\230\215k\231\217l\232\220m\233\222" "m\234\223m\235\224m\236\225m\237\226m\240\226m\241\230m\242\231m\243\233" "m\244\234m\245\235l\246\235l\247\237l\250\241l\251\242l\252\243n\253\244" "n\254\245n\255\247n\256\250n\257\251n\260\252n\261\253n\262\255n\263\256" "n\264\257n\265\261m\266\262m\267\263m\270\264m\271\266m\272\266m\273\270" "n\274\271o\275\273o\276\275o\277\276o\300\277o\300\301o\301\302o\301\303" "o\302\304o\302\305o\303\306o\304\307n\304\310n\305\311n\305\312n\306\313" "n\307\314o\307\315p\307\316p\310\317p\310\320p\311\321p\312\322p\312\323" "p\313\323p\313\324p\314\325p\314\326p\315\327p\316\330p\315\331p\316\332" "p\316\333o\316\334o\317\335o\317\336o\320\337o\320\340p\322\341q\321\342" "q\321\343q\322\344q\322\345q\323\346q\323\347q\325\350q\324\351q\324\352" "q\325\353q\325\354q\326\355q\326\356q\326\357q\330\360q\327\361q\327\362" "q\331\363q\330\364q\330\365p\332\366p\331\367p\331\370p\332\371p\332\372" "p\332\373r\334\374r\351\375r\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010" "\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017" "\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027" "\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036" "\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061" "/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMI" "ENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Z" "e`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftmgunivojwpkxqlysmztm{tm|u" "l}ul~vl\177wm\177xm\200xm\201ym\202{m\203{m\204{m\205|m\206}m\207~m\210\177" "m\211\200m\212\201m\213\201m\214\202m\215\203m\216\204m\217\205m\220\206" "m\221\207m\222\210m\223\211m\224\212m\225\213m\226\214m\227\215l\230\216" "l\231\217l\232\217l\233\221m\234\222n\235\224n\236\225n\237\226n\240\227" "n\241\230n\242\230n\243\232n\244\233n\245\235n\246\236n\247\237m\250\240" "m\251\241m\252\243m\253\244m\254\245m\255\246o\256\247o\257\250o\260\252" "o\261\253o\262\255o\263\256o\264\257o\265\260o\266\261o\267\262n\270\264" "n\271\265n\272\266n\273\267n\274\271n\275\273o\276\274p\277\275p\300\277" "p\301\300p\302\301p\302\303p\302\304p\303\305p\304\306p\304\307p\305\310" "p\305\311o\306\312o\307\313o\307\314o\310\315o\310\316p\311\317q\311\320" "q\312\321q\313\322q\313\323q\313\323q\314\324q\314\325q\315\326q\315\327" "q\316\330q\316\331q\316\332q\317\333q\317\334q\320\335p\320\336p\321\337" "p\321\340p\323\341p\322\342q\322\343r\323\344r\323\345r\324\346r\324\347" "r\326\350r\325\351r\325\352r\326\353r\326\354r\330\355r\327\356r\327\357" "r\330\360r\330\361r\330\362r\331\363r\331\364r\332\365r\332\366r\332\367" "r\333\370q\334\371q\333\372q\334\373q\336\374q\353\375s\002\002\002\003\003\003\002\002\002" "\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014" "\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024" "\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034" "\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%" "*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064" "\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<D" "A=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\" "WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsm" "ftnguoivojwpkxqlyrmzsn{un|un}vm~vm\177wm\177xn\200xn\201yn\202zn\203|n\204" "|n\205|n\206}n\207~n\210\177n\211\200n\212\201n\213\200n\214\202n\215\203" "n\216\204n\217\205n\220\206n\221\207n\222\210n\223\211n\224\212n\225\213" "n\226\214n\227\215n\230\216n\231\217m\232\220m\233\221m\234\221m\235\223" "n\236\224o\237\226o\240\227o\241\230o\242\231o\243\232o\244\232o\245\234" "o\246\235o\247\237o\250\240o\251\241n\252\242n\253\243n\254\245n\255\246" "n\256\247n\257\250p\260\252p\261\253p\262\254p\263\255p\264\256p\265\260" "p\266\261p\267\262p\270\263p\271\265p\272\266o\273\267o\274\271o\275\272" "o\276\273o\277\275p\300\276q\301\277q\302\300q\303\302q\303\304q\304\305" "q\304\306q\305\307q\306\310q\306\311q\307\312q\310\313p\310\314p\310\315" "p\311\316p\312\317p\312\320p\313\321q\313\322r\314\323r\314\323r\315\324" "r\315\325r\316\326r\316\327r\316\330r\317\331r\317\332r\320\333r\320\334" "r\321\335r\321\336r\322\337r\322\340q\324\341q\323\342q\323\343q\324\344" "r\324\345s\325\346s\325\347s\327\350s\326\351s\326\352s\327\353s\327\354" "s\330\355s\330\356s\330\357s\331\360s\331\361s\332\362s\332\363s\332\364" "s\333\365s\333\366s\333\367s\334\370s\334\371s\334\372r\335\373r\337\374" "r\354\375r\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxqlyrmzsn{to|uo}vo~wn\177wn\177" "xn\200yo\201yo\202zo\203{o\204|o\205|o\206}o\207~o\210\177o\211\200o\212" "\201o\213\201o\214\201o\215\203o\216\204o\217\205o\220\206o\221\207o\222" "\210o\223\211o\224\212o\225\213o\226\214o\227\215o\230\216o\231\217o\232" "\220o\233\221n\234\222n\235\223n\236\223n\237\225n\240\226o\241\227p\242" "\231p\243\232p\244\233p\245\234p\246\234p\247\236p\250\237p\251\241p\252" "\242p\253\242p\254\244o\255\245o\256\247o\257\250o\260\251o\261\252p\262" "\253q\263\255q\264\256q\265\257q\266\260q\267\261q\270\263q\271\264q\272" "\265q\273\267q\274\270p\275\271p\276\272p\277\273p\300\275p\301\276q\302" "\300r\303\302r\304\303r\305\304r\305\306r\306\307r\306\310r\307\311r\307" "\312r\310\313r\311\314r\311\315q\312\316q\313\317q\313\320q\313\321q\314" "\322q\314\323r\315\323s\316\324s\316\325s\317\326s\317\327s\320\330s\320" "\331s\320\332s\321\333s\321\334s\322\335s\322\336s\324\337s\323\340s\324" "\341s\324\342r\324\343r\325\344r\325\345r\326\346s\326\347t\330\350t\327" "\351t\327\352t\330\353t\330\354t\331\355t\331\356t\332\357t\332\360t\332" "\361t\333\362t\333\363t\333\364t\334\365t\334\366t\335\367t\335\370t\335" "\371t\336\372t\336\373t\337\374s\356\375s\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006" "\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015" "\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024" "\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033" "\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(" "-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062" "\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@H" "DAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT" "`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjw" "qkxrlysmzsn{to|up}vp~xp\177xo\177xo\200yp\201zp\202zp\203{p\204|p\205}p\206" "}p\207}p\210\177p\211\200p\212\201p\213\202p\214\202p\215\203p\216\204p\217" "\205p\220\206p\221\207p\222\210p\223\211p\224\212p\225\213p\226\214p\227" "\215p\230\216p\231\217p\232\220p\233\221p\234\222p\235\223o\236\224o\237" "\225o\240\226o\241\226o\242\230p\243\231q\244\233q\245\234q\246\235q\247" "\236q\250\236q\251\240q\252\242q\253\243q\254\244q\255\244q\256\246p\257" "\247p\260\250p\261\251p\262\253p\263\254q\264\255r\265\256r\266\260r\267" "\261r\270\262r\271\264r\272\265r\273\266r\274\267r\275\271r\276\272q\277" "\273q\300\274q\301\276q\302\300q\303\301r\304\302s\305\304s\306\305s\307" "\306s\307\310s\307\311s\310\312s\311\313s\312\314s\312\315s\312\316s\313" "\317s\314\320r\314\321r\315\322r\315\323r\316\323r\317\324s\317\325t\317" "\326t\320\327t\320\330t\321\331t\321\332t\322\333t\322\334t\323\335t\323" "\336t\324\337t\324\340t\324\341t\325\342t\325\343t\326\344s\326\345s\327" "\346s\327\347s\331\350s\330\351t\330\352u\331\353u\331\354u\332\355u\332" "\356u\334\357u\333\360u\333\361u\334\362u\334\363u\335\364u\335\365u\335" "\366u\336\367u\336\370u\336\371u\337\372u\337\373u\340\374u\360\375t\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbn" "gcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177yq\177yp\200yq\201" "zq\202{q\203{q\204|q\205}q\206~q\207~q\210~q\211\200q\212\201q\213\202q\214" "\203q\215\202q\216\204q\217\205q\220\206q\221\207q\222\210q\223\211q\224" "\212q\225\213q\226\214q\227\215q\230\216q\231\217q\232\220q\233\221q\234" "\222q\235\223q\236\224q\237\225q\240\226p\241\227p\242\230p\243\230p\244" "\232q\245\233r\246\235r\247\236r\250\237r\251\237r\252\241r\253\242r\254" "\244r\255\245r\256\245r\257\246r\260\250q\261\252q\262\253q\263\253q\264" "\255q\265\256r\266\257s\267\260s\270\262s\271\263s\272\264s\273\266s\274" "\267s\275\270s\276\272s\277\273s\300\274r\301\276r\302\277r\303\300r\304" "\302r\305\303s\306\304t\307\306t\310\307t\310\310t\311\312t\311\313t\312" "\314t\313\315t\313\316t\314\317t\315\320t\315\321t\315\322s\316\323s\317" "\323s\317\324s\320\325s\320\326t\320\327u\321\330u\321\331u\322\332u\322" "\333u\323\334u\323\335u\324\336u\324\337u\325\340u\325\341u\326\342u\326" "\343u\327\344u\327\345t\330\346t\330\347t\332\350t\331\351t\331\352t\332" "\353u\332\354v\333\355v\333\356v\335\357v\334\360v\334\361v\335\362v\335" "\363v\337\364v\336\365v\336\366v\337\367v\337\370v\340\371v\340\372v\340" "\373v\342\374v\361\375u\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007" "\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016" "\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026" "\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035" "!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/" ",\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064" ";\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMI" "ENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Z" "e`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|v" "p}wo~xp\177xq\177yr\200zq\201zq\202{r\203|r\204|r\205}r\206~r\207\177r\210" "\177r\211\200r\212\201q\213\202p\214\203p\215\203p\216\204p\217\205p\220" "\206q\221\207r\222\210r\223\211r\224\212r\225\213r\226\214r\227\215r\230" "\216r\231\217r\232\220r\233\221r\234\222r\235\223r\236\224r\237\225r\240" "\226r\241\227r\242\230q\243\231q\244\232q\245\232q\246\234r\247\235s\250" "\237s\251\240s\252\241s\253\241s\254\243s\255\244s\256\246s\257\247s\260" "\247s\261\251s\262\252r\263\254r\264\255r\265\255r\266\257r\267\261s\270" "\262t\271\263t\272\264t\273\265t\274\266t\275\270t\276\271t\277\272t\300" "\274t\301\275t\302\276s\303\277s\304\300s\305\302s\306\303s\307\304t\310" "\306u\311\307u\312\311u\312\313u\313\314u\314\315u\314\316u\314\317u\315" "\320u\316\321u\316\322u\317\323u\320\323t\320\324t\320\325t\321\326t\322" "\327t\322\330u\322\331v\323\332v\323\333v\324\334v\324\335v\325\336v\325" "\337v\326\340v\326\341v\327\342v\327\343v\330\344v\330\345v\332\346v\331" "\347v\332\350u\332\351u\332\352u\333\353u\333\354u\334\355v\334\356w\336" "\357w\335\360w\335\361w\336\362w\336\363w\337\364w\337\365w\337\366w\340" "\367w\340\370w\342\371w\341\372w\341\373w\344\374v\363\375v\002\002\002\003\003\003\002" "\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013" "\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022" "\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031" "\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#" "(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061" "\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B" "?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZ" "TQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeq" "kfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177xq\177yr\200{r\201{r\202{r\203" "|s\204}s\205}s\206~s\207\177s\210\200s\211\177r\212\201q\213\202q\214\203" "q\215\204q\216\203q\217\205q\220\206q\221\207q\222\210q\223\211r\224\212" "s\225\213s\226\214s\227\215s\230\216s\231\217s\232\220s\233\221s\234\222" "s\235\223s\236\224s\237\225s\240\226s\241\227s\242\230s\243\231s\244\232" "r\245\233r\246\234r\247\234r\250\236s\251\237t\252\241t\253\242t\254\242" "t\255\243t\256\245t\257\246t\260\250t\261\251t\262\251t\263\253t\264\254" "s\265\256s\266\257s\267\260s\270\261s\271\262t\272\263u\273\265u\274\266" "u\275\267u\276\270u\277\272u\300\273u\301\274u\302\275u\303\277u\304\300" "t\305\301t\306\303t\307\304t\310\305t\311\307t\312\311u\313\312v\314\313" "v\314\315v\315\316v\315\317v\316\320v\317\321v\317\322v\317\323v\320\323" "v\321\324v\321\325u\321\326u\323\327u\323\330u\323\331u\324\332u\324\333" "v\325\334w\326\335w\326\336w\326\337w\327\340w\327\341w\330\342w\330\343" "w\331\344w\331\345w\332\346w\332\347w\332\350w\333\351w\333\352v\334\353" "v\334\354v\335\355v\335\356v\337\357v\336\360w\336\361x\337\362x\337\363" "x\340\364x\340\365x\341\366x\341\367x\341\370x\342\371x\342\372x\342\373" "x\345\374w\364\375w\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011" "\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021" "\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031" "\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037" "\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062" "/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070" "\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJF" "OKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[f" "a\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo" "~xp\177xq\177zs\200{t\201{s\202|s\203|s\204}t\205~t\206~t\207\177t\210\200" "t\211\200s\212\200q\213\202r\214\203s\215\204s\216\204s\217\204r\220\206" "r\221\207r\222\210r\223\211r\224\212r\225\213r\226\214r\227\215s\230\216" "t\231\216t\232\217t\233\220t\234\221t\235\222t\236\223t\237\224t\240\226" "t\241\227t\242\230t\243\231t\244\232t\245\233t\246\234s\247\235s\250\235" "s\251\236s\252\240t\253\241t\254\243u\255\244u\256\244u\257\245u\260\247" "u\261\250u\262\252u\263\253u\264\253u\265\255u\266\256t\267\257t\270\260" "t\271\262t\272\263t\273\264u\274\265v\275\267v\276\270v\277\271v\300\273" "v\301\274v\302\275v\303\277v\304\300v\305\301v\306\303u\307\304u\310\305" "u\311\307u\312\310u\313\311u\314\313v\315\314w\316\315w\316\317w\316\320" "w\317\321w\320\322w\320\323w\321\323w\322\324w\322\325w\322\326w\323\327" "v\324\330v\324\331v\324\332v\325\333v\325\334v\327\335w\327\336x\327\337" "x\330\340x\330\341x\331\342x\331\343x\332\344x\332\345x\332\346x\333\347" "x\333\350x\334\351x\334\352x\335\353x\335\354w\336\355w\336\356w\340\357" "w\337\360w\337\361w\340\362x\340\363y\341\364y\341\365y\343\366y\342\367" "y\342\370y\343\371y\343\372y\344\373y\346\374x\365\375x\002\002\002\003\003\003\002\002\002" "\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014" "\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024" "\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034" "\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%" "*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064" "\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<D" "A=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\" "WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsm" "ftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177xq\177ys\200{v\201{u\202|t\203}t\204" "}t\205~u\206\177u\207\177u\210\200u\211\201t\212\201s\213\201s\214\203t\215" "\204t\216\205t\217\205t\220\205t\221\207t\222\210s\223\211s\224\212s\225" "\213s\226\214s\227\215s\230\216s\231\215t\232\217u\233\220u\234\221u\235" "\222u\236\223u\237\223u\240\225u\241\226u\242\227u\243\230u\244\232u\245" "\233u\246\234u\247\235u\250\236t\251\237t\252\237t\253\240t\254\242u\255" "\243u\256\245v\257\246v\260\246v\261\247v\262\251v\263\252v\264\254v\265" "\254v\266\255v\267\257v\270\261u\271\261u\272\262u\273\264u\274\265u\275" "\266v\276\267w\277\271w\300\272w\301\273w\302\275w\303\276w\304\277w\305" "\300w\306\302w\307\303w\310\305w\311\306v\312\307v\313\311v\314\312v\315" "\313v\316\314w\317\316x\317\320x\320\321x\321\322x\321\323x\321\323x\322" "\324x\323\325x\323\326x\323\327x\325\330x\325\331x\325\332w\326\333w\327" "\334w\327\335w\327\336w\330\337x\330\340y\331\341y\331\342y\332\343y\332" "\344y\333\345y\333\346y\334\347y\334\350y\335\351y\335\352y\336\353y\336" "\354y\337\355y\337\356y\341\357x\340\360x\340\361x\341\362x\341\363x\342" "\364y\342\365z\343\366z\343\367z\343\370z\344\371z\344\372z\345\373z\347" "\374y\366\375y\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQ" "MIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]h" "c^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177" "xq\177zt\200|w\201|v\202|v\203}u\204~u\205~u\206\177v\207\200v\210\177v\211" "\201v\212\202u\213\202t\214\202u\215\204u\216\205u\217\206u\220\206u\221" "\207u\222\210u\223\211u\224\212u\225\213u\226\214t\227\215t\230\216t\231" "\215t\232\217t\233\220t\234\221u\235\222v\236\223v\237\224v\240\225v\241" "\226v\242\227v\243\227v\244\231v\245\232v\246\234v\247\235v\250\236v\251" "\237v\252\240u\253\241u\254\241u\255\242u\256\244u\257\245v\260\247v\261" "\250w\262\250w\263\251w\264\253w\265\255w\266\256w\267\256w\270\260w\271" "\261w\272\263v\273\263v\274\264v\275\266v\276\270v\277\270v\300\272w\301" "\273x\302\274x\303\275x\304\276x\305\300x\306\301x\307\302x\310\304x\311" "\305x\312\306x\313\307w\314\311w\315\312w\316\314w\317\316w\320\317x\321" "\320y\321\322y\322\323y\322\323y\322\324y\324\325y\324\326y\325\327y\325" "\330y\325\331y\326\332y\326\333y\330\334x\330\335x\330\336x\331\337x\332" "\340x\332\341y\332\342z\333\343z\333\344z\334\345z\334\346z\335\347z\335" "\350z\336\351z\336\352z\337\353z\337\354z\340\355z\340\356z\341\357z\341" "\360z\341\361y\342\362y\342\363y\343\364y\343\365y\344\366z\344\367{\344" "\370{\345\371{\345\372{\346\373{\350\374z\367\375z\002\002\002\003\003\003\002\002\002\004\004" "\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014" "\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023" "\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032" "\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&" "*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061" "\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=E" "B>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS" "]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmft" "nguoivpjwqkxrlysmztn{uo|vp}wo~xp\177xp\177{u\200}y\201|w\202}w\203}w\204" "~v\205\177v\206\177v\207\200w\210\200w\211\200w\212\202v\213\203u\214\203" "u\215\203v\216\205v\217\206v\220\207v\221\206v\222\210v\223\211v\224\212" "v\225\213v\226\214v\227\215v\230\216u\231\215u\232\217u\233\220u\234\221" "u\235\222u\236\223u\237\224v\240\225w\241\226w\242\227w\243\230w\244\230" "w\245\231w\246\233w\247\234w\250\235w\251\237w\252\240w\253\241w\254\242" "v\255\243v\256\243v\257\244v\260\246v\261\247w\262\251w\263\251x\264\252" "x\265\254x\266\255x\267\257x\270\257x\271\260x\272\262x\273\263x\274\265" "w\275\265w\276\267w\277\270w\300\271w\301\272w\302\274x\303\275y\304\276" "y\305\277y\306\301y\307\302y\310\303y\311\304y\312\306y\313\307y\314\310" "y\315\312x\316\314x\317\315x\320\316x\321\320x\322\321y\323\322z\323\324" "z\323\324z\324\325z\325\326z\326\327z\326\330z\326\331z\327\332z\330\333" "z\330\334z\330\335z\331\336y\331\337y\333\340y\333\341y\333\342y\334\343" "z\334\344{\335\345{\335\346{\336\347{\336\350{\337\351{\337\352{\340\353" "{\340\354{\341\355{\341\356{\341\357{\342\360{\342\361{\343\362{\343\363" "z\344\364z\344\365z\345\366z\345\367z\345\370z\346\371{\346\372|\347\373" "|\351\374{\371\375{\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011" "\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021" "\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031" "\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037" "\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062" "/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070" "\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJF" "OKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[f" "a\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo" "~xp\177xp\177{v\200~{\201}y\202}x\203~x\204~x\205\177w\206\200w\207\200x" "\210\201x\211\201x\212\201w\213\203v\214\204v\215\204w\216\204w\217\206w" "\220\207w\221\207w\222\207w\223\211w\224\212w\225\213w\226\214w\227\215w" "\230\216w\231\215w\232\217w\233\220v\234\221v\235\222v\236\223v\237\224v" "\240\225v\241\226w\242\227x\243\230x\244\231x\245\232x\246\233x\247\233x" "\250\234x\251\236x\252\237x\253\241x\254\242x\255\243x\256\244x\257\245w" "\260\245w\261\246w\262\250w\263\252x\264\253x\265\253y\266\254y\267\256y" "\270\257y\271\261y\272\261y\273\262y\274\264y\275\265y\276\266y\277\267x" "\300\271x\301\272x\302\273x\303\274x\304\275y\305\277z\306\300z\307\301z" "\310\303z\311\304z\312\305z\313\307z\314\310z\315\312z\316\313z\317\314y" "\320\316y\321\317y\322\320y\323\321y\324\323z\324\325{\325\325{\326\326{" "\326\327{\327\330{\327\331{\327\332{\331\333{\331\334{\331\335{\332\336{" "\333\337{\333\340z\333\341z\334\342z\334\343z\335\344z\335\345z\336\346{" "\336\347|\337\350|\337\351|\340\352|\340\353|\341\354|\341\355|\342\356|" "\342\357|\343\360|\343\361|\344\362|\344\363|\345\364|\345\365{\346\366{" "\346\367{\346\370{\347\371{\347\372{\350\373|\352\374|\373\375|\002\002\002\003\003" "\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013" "\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023" "\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033" "\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"" "'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063" "\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071" "B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUP" "ZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpje" "qkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177xp\177{w\200~|\201~z\202~z" "\203~y\204\177y\205\177y\206\200x\207\201x\210\201y\211\202y\212\202y\213" "\202x\214\204w\215\205w\216\205x\217\206x\220\207x\221\210x\222\210x\223" "\210x\224\212x\225\213x\226\214x\227\215x\230\216x\231\215x\232\217x\233" "\220x\234\221x\235\222x\236\223w\237\224w\240\225w\241\226w\242\227w\243" "\230x\244\231x\245\232y\246\233y\247\234y\250\235y\251\235y\252\236y\253" "\240y\254\241y\255\243y\256\244y\257\245y\260\246y\261\246x\262\247x\263" "\251x\264\252x\265\254y\266\254y\267\255z\270\256z\271\260z\272\261z\273" "\263z\274\263z\275\264z\276\266z\277\270z\300\270z\301\271y\302\273y\303" "\274y\304\275y\305\276y\306\300z\307\301{\310\302{\311\303{\312\305{\313" "\306{\314\307{\315\311{\316\312{\317\313{\320\315{\321\316z\322\317z\323" "\321z\323\323z\325\324z\326\325{\326\327|\327\327|\330\330|\330\331|\330" "\332|\331\333|\332\334|\332\335|\332\336|\334\337|\334\340|\334\341|\335" "\342{\335\343{\336\344{\336\345{\337\346{\337\347{\340\350|\340\351}\341" "\352}\341\353}\342\354}\342\355}\343\356}\343\357}\344\360}\344\361}\345" "\362}\345\363}\346\364}\346\365}\347\366}\347\367}\347\370|\350\371|\350" "\372|\351\373|\353\374|\374\375|\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007" "\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014" "\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025" "\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034" "\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*" "\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063" ":\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCK" "GBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]" "Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmz" "tn{uo|vp}wo~xp\177wo\177|x\200\177\177\201~{\202\177{\203\177z\204\177z\205" "\200z\206\200y\207\201y\210\202y\211\202z\212\203z\213\203y\214\203x\215" "\205x\216\206x\217\205x\220\207x\221\210x\222\211x\223\211x\224\212x\225" "\213x\226\214x\227\215x\230\216x\231\216x\232\216x\233\220x\234\221x\235" "\222x\236\223x\237\224y\240\225x\241\226x\242\227x\243\230x\244\231x\245" "\232x\246\233y\247\234y\250\235z\251\236y\252\237y\253\237y\254\240y\255" "\242y\256\243y\257\244y\260\246y\261\247z\262\247y\263\250y\264\251y\265" "\253y\266\254y\267\256z\270\256z\271\257{\272\260{\273\262z\274\263z\275" "\265z\276\265z\277\267z\300\270z\301\271{\302\272{\303\274z\304\275z\305" "\276z\306\277z\307\300{\310\302{\311\303|\312\305|\313\306{\314\307{\315" "\310{\316\311{\317\313{\320\314{\321\315|\322\317|\323\321{\323\322{\324" "\323{\325\324{\326\326|\330\327{\330\330|\330\331}\331\332}\332\333|\333" "\334|\333\335|\333\336|\334\337|\335\340|\335\341|\335\342|\336\343}\336" "\344}\340\345|\340\346|\340\347|\341\350|\341\351|\342\352}\342\353~\343" "\354~\343\355}\344\356}\344\357}\345\360}\345\361}\346\362}\346\363}\347" "\364}\347\365}\347\366}\350\367}\350\370}\351\371~\351\372}\352\373}\354" "\374}\375\375}\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010" "\012\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017" "\022\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025" "\032\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"" "\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063" "\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071" "\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQ" "MIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]h" "c^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177" "wo\177|y\200\201\202\201\177~\202\177|\203\200{\204\200{\205\200{\206\201" "{\207\201z\210\202z\211\202z\212\203{\213\204{\214\204z\215\205y\216\206" "y\217\206z\220\206y\221\210y\222\211y\223\212y\224\211y\225\213y\226\214" "y\227\215y\230\216y\231\217y\232\216y\233\220y\234\221y\235\222y\236\223" "y\237\224y\240\225y\241\226z\242\227y\243\230y\244\231y\245\232y\246\233" "y\247\234y\250\235z\251\236z\252\237{\253\240z\254\241z\255\241z\256\242" "z\257\243z\260\245z\261\246z\262\250z\263\251z\264\251z\265\252z\266\253" "z\267\255z\270\256z\271\260{\272\260{\273\261|\274\262{\275\264{\276\266" "{\277\266{\300\267{\301\271{\302\272{\303\273{\304\274|\305\276{\306\277" "{\307\300{\310\301{\311\302|\312\304|\313\305}\314\306|\315\310|\316\311" "|\317\313|\320\314|\321\315|\322\317|\323\320|\323\321}\324\323|\325\324" "|\326\325|\327\326|\330\330|\331\331}\332\332}\333\333~\333\334~\334\335" "}\334\336}\334\337}\336\340}\336\341}\336\342}\337\343}\337\344}\340\345" "}\340\346~\341\347}\341\350}\342\351}\342\352}\343\353}\344\354~\344\355" "\177\345\356\177\345\357~\346\360~\346\361~\346\362~\347\363~\347\364~\350" "\365~\350\366~\351\367~\351\370~\352\371~\352\372~\353\373\177\355\374~\375" "\375~\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011" "\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020" "\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026" "\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036" "$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/" "\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>" ";\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKT" "PLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^k" "f`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177|y\200" "\201\202\201\201\201\202\200\177\203\200}\204\201|\205\201|\206\201|\207" "\202|\210\202{\211\203{\212\203{\213\204{\214\205|\215\205{\216\206z\217" "\207z\220\207z\221\207z\222\211z\223\212z\224\212z\225\212z\226\214z\227" "\215z\230\216z\231\217z\232\217z\233\217z\234\221z\235\222z\236\223z\237" "\224z\240\225z\241\226z\242\227z\243\230z\244\231z\245\232z\246\233z\247" "\234z\250\235z\251\236z\252\237{\253\240{\254\241|\255\242|\256\243{\257" "\243{\260\244{\261\245{\262\247{\263\250{\264\252{\265\253{\266\253{\267" "\254{\270\255{\271\257{\272\260{\273\262|\274\262|\275\263}\276\265}\277" "\266|\300\270|\301\270|\302\271|\303\273|\304\274|\305\275|\306\276|\307" "\277|\310\301|\311\302|\312\303|\313\304}\314\306}\315\307~\316\310}\317" "\312}\320\313}\321\314}\322\316}\323\317}\323\320}\324\322}\325\323}\326" "\324~\327\326}\330\327}\331\331}\332\332}\333\333~\334\334~\335\335\177\335" "\336~\335\337~\336\340~\336\341~\337\342~\337\343~\341\344~\341\345~\341" "\346~\342\347~\342\350~\343\351~\343\352~\344\353~\344\354~\345\355~\345" "\356\177\346\357\177\346\360\200\347\361\200\347\362\177\350\363\177\350" "\364\177\351\365\177\351\366\177\352\367\177\352\370\177\353\371\177\353" "\372\177\354\373\177\356\374\177\376\375\177\002\002\002\003\003\003\002\002\002\004\004\004\005\005" "\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016\015" "\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026\025" "\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036\033" "\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(" ",*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070\065" "\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?G" "C@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU" "_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoiv" "pjwqkxrlysmztn{uo|vp}wo~xp\177wo\177|y\200\201\202\201\202\201\202\202\202" "\203\201\200\204\201~\205\202}\206\202}\207\202}\210\203}\211\203|\212\204" "|\213\204|\214\205|\215\206|\216\206{\217\207{\220\210{\221\210{\222\210" "{\223\212{\224\213{\225\213{\226\213{\227\215{\230\216{\231\217{\232\220" "{\233\220{\234\220{\235\222{\236\223{\237\224{\240\225{\241\226{\242\227" "{\243\230{\244\231{\245\232{\246\233{\247\234{\250\235{\251\236{\252\237" "{\253\240{\254\241|\255\242|\256\243|\257\244|\260\245|\261\245|\262\246" "|\263\247|\264\251|\265\252|\266\254|\267\255|\270\255|\271\256|\272\257" "|\273\261|\274\262|\275\264}\276\264}\277\265}\300\267~\301\270}\302\271" "}\303\272}\304\273}\305\275}\306\276}\307\277}\310\300}\311\301}\312\303" "}\313\304}\314\305}\315\307~\316\310~\317\311\177\320\312\177\321\314~\322" "\315~\323\316~\323\320~\324\321~\325\322~\326\324~\327\325~\330\327~\331" "\330~\332\331~\333\333~\334\334~\335\335\177\335\336\177\336\337\200\336" "\340\177\340\341\177\340\342\177\340\343\177\341\344\177\341\345\177\342" "\346\177\342\347\177\344\350\177\344\351\177\344\352\177\345\353\177\345" "\354\177\346\355\177\346\356\177\347\357\177\347\360\200\350\361\200\350" "\362\200\351\363\200\351\364\200\352\365\200\352\366\200\353\367\200\353" "\370\200\354\371\200\354\372\200\355\373\200\357\374\200\376\375\200\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbn" "gcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177|y\200\201\202" "\201\201\201\202\203\203\203\203\203\204\202\201\205\202\177\206\203~\207" "\203~\210\203~\211\204~\212\204}\213\205}\214\205}\215\206}\216\207}\217" "\207|\220\210|\221\211|\222\211|\223\211|\224\213|\225\214|\226\214|\227" "\214|\230\216|\231\217|\232\220|\233\221|\234\220|\235\222|\236\223|\237" "\224|\240\225|\241\226|\242\227|\243\230|\244\231|\245\232|\246\233|\247" "\234|\250\235|\251\236|\252\237|\253\240|\254\241|\255\242|\256\243|\257" "\244}\260\245}\261\246}\262\247}\263\247}\264\250}\265\251}\266\253}\267" "\254}\270\256}\271\257}\272\257}\273\260}\274\261}\275\263}\276\264}\277" "\266}\300\266~\301\267~\302\271\177\303\272~\304\273~\305\274~\306\276~\307" "\277~\310\300~\311\301~\312\302~\313\304~\314\305~\315\306~\316\307~\317" "\311\177\320\312\177\321\313\177\322\315\200\323\316\177\323\320\177\324" "\321\177\325\322\177\326\323\177\327\325\177\330\326\177\331\327\177\332" "\331\177\333\332\177\334\333\177\335\335\177\336\336\177\336\337\200\340" "\340\200\340\341\200\340\342\200\341\343\200\341\344\200\343\345\200\343" "\346\200\343\347\200\344\350\200\344\351\200\345\352\200\345\353\200\346" "\354\200\346\355\200\347\356\200\350\357\200\350\360\200\351\361\200\351" "\362\200\352\363\201\352\364\201\353\365\201\353\366\201\354\367\201\354" "\370\201\355\371\201\355\372\201\355\373\201\360\374\201\376\375\201\002\002" "\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012" "\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021" "\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030" "\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%" "#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060" "\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071" "@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMW" "SNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbn" "gcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177|y\200\201\202" "\201\201\201\202\202\202\203\204\204\204\204\204\205\203\202\206\203\200" "\207\204\177\210\204\177\211\204\177\212\205\177\213\205~\214\206~\215\206" "~\216\207~\217\210~\220\210}\221\211}\222\212}\223\212}\224\212}\225\214" "}\226\215}\227\215}\230\215}\231\217}\232\220}\233\221}\234\221}\235\221" "}\236\223}\237\224}\240\225}\241\226}\242\227}\243\230}\244\231}\245\232" "}\246\233}\247\234}\250\235}\251\235}\252\236}\253\237}\254\240}\255\242" "}\256\243}\257\244|\260\245}\261\246~\262\247~\263\250~\264\251~\265\251" "~\266\252~\267\253~\270\255~\271\256~\272\260~\273\261~\274\261~\275\262" "~\276\263~\277\265~\300\266}\301\270~\302\270\177\303\271\177\304\272\177" "\305\274\177\306\275\177\307\276\177\310\277\177\311\301\177\312\302\177" "\313\303\177\314\304\177\315\306\177\316\307\177\317\310\177\320\311\177" "\321\313\177\322\314\200\323\315\200\323\317\200\324\320\200\325\321\200" "\326\323\200\327\324\200\330\325\200\331\327\200\332\330\200\333\331\200" "\334\333\200\335\334\200\336\335\200\337\337\200\340\340\200\340\341\201" "\342\342\201\342\343\201\342\344\201\343\345\201\343\346\201\344\347\201" "\344\350\201\345\351\201\346\352\201\346\353\201\347\354\201\347\355\201" "\350\356\201\350\357\201\351\360\201\351\361\201\352\362\201\352\363\201" "\353\364\202\353\365\202\354\366\202\354\367\202\355\370\202\355\371\202" "\356\372\202\356\373\202\361\374\202\376\375\202\002\002\002\003\003\003\002\002\002\004\004\004" "\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010\011\013\012\012\014\013\013\015\014\014\016" "\015\015\017\016\014\020\017\016\021\020\017\022\021\020\023\022\021\024\023\022\025\024\023\026" "\025\024\027\026\025\030\027\026\031\030\025\032\031\026\033\032\030\034\033\031\035\034\032\036" "\033\033\037\034\034\040\036\035!\037\036\"\040\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'" "+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064\061/\065\062\060\066\063\061\067\064\061\070" "\065\062\071\066\063:\067\064;\070\065<\071\066=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>F" "A?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT" "^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]je^kf`lgamhbngcohdpjeqkfrlgsmftngu" "oivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177|y\200\201\202\201\201\201\202\202" "\202\203\203\203\204\204\205\205\205\205\206\204\203\207\204\201\210\205" "\200\211\205\200\212\205\200\213\206\200\214\206\177\215\207\177\216\207" "\177\217\210\177\220\211~\221\211~\222\212~\223\213~\224\213~\225\213~\226" "\215~\227\216~\230\215~\231\217~\232\220~\233\221~\234\222~\235\222~\236" "\222~\237\224~\240\225~\241\226~\242\227~\243\230~\244\231~\245\232~\246" "\233~\247\233~\250\234~\251\234~\252\235~\253\236~\254\237~\255\241~\256" "\242~\257\243~\260\244~\261\246}\262\247~\263\250\177\264\251\177\265\252" "\177\266\253\177\267\253\177\270\254\177\271\255\177\272\257\177\273\260" "\177\274\262\177\275\263\177\276\263\177\277\264\177\300\265\177\301\267" "\177\302\271~\303\271\177\304\272\200\305\273\200\306\274\200\307\276\200" "\310\277\200\311\300\200\312\301\200\313\303\200\314\304\200\315\305\200" "\316\306\200\317\310\200\320\311\200\321\312\200\322\314\200\323\315\200" "\323\316\201\324\317\201\325\321\201\326\322\201\327\323\201\330\325\201" "\331\326\201\332\327\201\333\331\201\334\332\201\335\333\201\336\335\201" "\337\336\201\340\340\201\341\341\201\342\342\201\342\343\202\343\344\202" "\343\345\202\345\346\202\345\347\202\345\350\202\346\351\202\346\352\202" "\347\353\202\347\354\202\350\355\202\351\356\202\351\357\202\352\360\202" "\352\361\202\353\362\202\353\363\202\354\364\202\354\365\202\355\366\203" "\355\367\203\356\370\203\356\371\203\357\372\203\357\373\203\362\374\203" "\376\375\203\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\206" "\206\206\206\207\205\204\210\205\202\211\206\201\212\206\201\213\206\201" "\214\207\201\215\207\200\216\210\200\217\210\200\220\211\200\221\212\177" "\222\212\177\223\213\177\224\214\177\225\214\177\226\214\177\227\216\177" "\230\216\177\231\216\177\232\220\177\233\221\177\234\222\177\235\223\177" "\236\222\177\237\224\177\240\225\177\241\226\177\242\227\177\243\230\177" "\244\231\177\245\232\177\246\233\177\247\232\177\250\233\177\251\234\177" "\252\236\177\253\237\177\254\237\177\255\240\177\256\241\177\257\242\177" "\260\243\177\261\245\177\262\246\177\263\247~\264\251\177\265\252\200\266" "\253\200\267\254\200\270\255\200\271\255\200\272\256\200\273\257\200\274" "\261\200\275\262\200\276\264\200\277\265\200\300\265\200\301\266\200\302" "\270\200\303\271\200\304\272\177\305\273\200\306\274\201\307\276\201\310" "\277\201\311\300\201\312\301\201\313\302\201\314\303\201\315\305\201\316" "\306\201\317\307\201\320\310\201\321\312\201\322\313\201\323\314\201\323" "\316\201\324\317\201\325\320\202\326\322\202\327\323\202\330\324\202\331" "\325\202\332\327\202\333\330\202\334\332\202\335\333\202\336\334\202\337" "\336\202\340\337\202\341\340\202\342\342\202\343\343\202\344\344\202\344" "\345\202\345\346\203\345\347\203\346\350\203\346\351\203\347\352\203\350" "\353\203\350\354\203\351\355\203\351\356\203\352\357\203\352\360\203\353" "\361\203\354\362\203\354\363\203\355\364\203\355\365\203\356\366\203\356" "\367\203\357\370\204\357\371\204\360\372\204\360\373\204\363\374\204\376" "\375\203\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012\010" "\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022\021" "\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032\031" "\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040\037" "#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060.\064" "\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066=:" "\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIRNJ" "SOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^id]" "je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\206\205\211\206\203\212\207\202\213\207\202" "\214\207\202\215\210\202\216\210\201\217\211\201\220\211\201\221\212\201" "\222\213\200\223\213\200\224\214\200\225\215\200\226\215\200\227\216\200" "\230\217\200\231\217\200\232\217\200\233\221\200\234\222\200\235\223\200" "\236\223\200\237\223\200\240\225\200\241\226\200\242\227\200\243\230\200" "\244\231\200\245\232\200\246\233\200\247\232\200\250\234\200\251\235\200" "\252\236\200\253\237\200\254\240\200\255\241\200\256\242\200\257\243\200" "\260\243\200\261\244\200\262\245\200\263\246\200\264\250\200\265\251\200" "\266\252\177\267\254\200\270\255\201\271\256\201\272\257\201\273\257\201" "\274\260\201\275\261\201\276\263\201\277\264\201\300\266\201\301\266\201" "\302\267\201\303\270\201\304\271\201\305\273\201\306\274\200\307\275\201" "\310\276\202\311\300\202\312\301\202\313\302\202\314\303\202\315\304\202" "\316\306\202\317\307\202\320\310\202\321\311\202\322\313\202\323\314\202" "\323\315\202\324\316\202\325\320\202\326\321\202\327\322\203\330\324\203" "\331\325\203\332\326\203\333\330\203\334\331\203\335\332\203\336\334\203" "\337\335\203\340\336\203\341\340\203\342\341\203\343\342\203\344\344\203" "\345\345\203\345\346\203\346\347\203\347\350\204\347\351\204\350\352\204" "\350\353\204\351\354\204\352\355\204\352\356\204\353\357\204\353\360\204" "\354\361\204\354\362\204\355\363\204\355\364\204\356\365\204\356\366\204" "\357\367\204\357\370\204\360\371\204\361\372\204\361\373\204\363\374\205" "\376\375\204\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\207\206\212\207\204\213\210\203" "\214\210\203\215\210\203\216\211\203\217\211\202\220\212\202\221\212\202" "\222\213\202\223\214\201\224\213\201\225\215\201\226\216\201\227\215\201" "\230\217\201\231\220\201\232\220\201\233\220\201\234\222\201\235\223\201" "\236\224\201\237\224\201\240\224\201\241\226\201\242\227\201\243\230\201" "\244\231\201\245\232\201\246\233\201\247\232\201\250\234\201\251\235\201" "\252\236\201\253\237\201\254\240\201\255\241\201\256\242\201\257\243\201" "\260\244\201\261\245\201\262\246\201\263\246\201\264\247\201\265\250\201" "\266\251\201\267\253\201\270\254\200\271\256\201\272\257\202\273\260\202" "\274\261\202\275\261\202\276\262\202\277\263\202\300\265\202\301\266\202" "\302\270\202\303\270\202\304\271\202\305\272\202\306\273\202\307\275\202" "\310\276\201\311\277\202\312\300\203\313\301\203\314\303\203\315\304\203" "\316\305\203\317\306\203\320\310\203\321\311\203\322\312\203\323\313\203" "\323\315\203\324\316\203\325\317\203\326\320\203\327\322\203\330\323\203" "\331\324\204\332\326\204\333\327\204\334\330\204\335\332\204\336\333\204" "\337\334\204\340\336\204\341\337\204\342\340\204\343\342\204\344\343\204" "\345\345\204\346\346\204\347\347\204\347\350\204\350\351\204\350\352\205" "\351\353\205\352\354\205\352\355\205\353\356\205\353\357\205\354\360\205" "\355\361\205\355\362\205\356\363\205\356\364\205\357\365\205\357\366\205" "\360\367\205\360\370\205\361\371\205\361\372\205\362\373\205\363\374\204" "\376\375\205\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\210\207\213\210\205" "\214\211\204\215\211\204\216\211\204\217\212\203\220\212\203\221\213\203" "\222\213\203\223\214\203\224\214\202\225\214\202\226\216\202\227\216\202" "\230\216\202\231\220\202\232\221\202\233\221\202\234\221\202\235\223\202" "\236\224\202\237\225\202\240\224\202\241\226\202\242\227\202\243\230\202" "\244\231\202\245\232\202\246\233\202\247\233\202\250\233\202\251\235\202" "\252\236\202\253\237\202\254\240\202\255\241\202\256\242\202\257\243\202" "\260\244\202\261\245\202\262\246\202\263\247\202\264\250\202\265\251\202" "\266\251\202\267\252\202\270\253\202\271\255\202\272\256\201\273\260\202" "\274\261\203\275\262\203\276\263\203\277\263\203\300\264\203\301\265\203" "\302\267\203\303\270\203\304\271\203\305\272\203\306\273\203\307\274\203" "\310\275\203\311\277\203\312\300\202\313\301\203\314\302\204\315\303\204" "\316\305\204\317\306\204\320\307\204\321\310\204\322\312\204\323\313\204" "\323\314\204\324\315\204\325\317\204\326\320\204\327\321\204\330\323\204" "\331\324\204\332\325\204\333\326\205\334\330\205\335\331\205\336\332\205" "\337\334\205\340\335\205\341\336\205\342\340\205\343\341\205\344\343\205" "\345\344\205\346\345\205\347\347\205\350\350\205\351\351\205\351\352\205" "\352\353\205\352\354\206\353\355\206\354\356\206\354\357\206\355\360\206" "\355\361\206\356\362\206\356\363\206\357\364\206\357\365\206\360\366\206" "\361\367\206\361\370\206\362\371\206\362\372\206\363\373\206\364\374\206" "\376\375\205\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\211\210" "\214\211\206\215\212\205\216\212\205\217\212\205\220\213\204\221\213\204" "\222\214\204\223\214\204\224\215\203\225\215\202\226\216\203\227\217\203" "\230\217\203\231\217\203\232\221\203\233\222\203\234\222\203\235\222\203" "\236\224\203\237\225\203\240\225\203\241\225\203\242\227\203\243\230\203" "\244\231\203\245\232\203\246\233\203\247\234\203\250\233\203\251\235\203" "\252\236\203\253\237\203\254\240\203\255\241\203\256\242\203\257\243\203" "\260\244\203\261\245\203\262\246\203\263\247\203\264\250\203\265\251\203" "\266\252\203\267\253\203\270\253\203\271\254\203\272\255\203\273\257\203" "\274\260\202\275\261\203\276\263\204\277\264\204\300\265\204\301\265\204" "\302\266\204\303\267\204\304\271\204\305\272\204\306\273\204\307\274\204" "\310\275\204\311\276\204\312\277\204\313\301\204\314\302\203\315\303\204" "\316\304\205\317\306\205\320\307\205\321\310\205\322\311\205\323\312\205" "\323\314\205\324\315\205\325\316\205\326\320\205\327\321\205\330\322\205" "\331\323\205\332\325\205\333\326\205\334\327\205\335\331\206\336\332\206" "\337\333\206\340\335\206\341\336\206\342\337\206\343\341\206\344\342\206" "\345\343\206\346\345\206\347\346\206\350\347\206\351\351\206\352\352\206" "\352\353\206\353\354\206\354\355\206\354\356\207\355\357\207\355\360\207" "\356\361\207\357\362\207\357\363\207\360\364\207\360\365\207\361\366\207" "\361\367\207\362\370\207\362\371\207\363\372\207\363\373\207\365\374\207" "\376\375\206\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\212\211\215\212\207\216\213\206\217\213\206\220\213\206\221\214\205" "\222\214\204\223\215\205\224\215\205\225\216\204\226\216\203\227\217\204" "\230\220\204\231\220\204\232\220\204\233\222\204\234\223\204\235\223\204" "\236\223\204\237\225\204\240\226\202\241\226\203\242\226\203\243\230\203" "\244\231\203\245\232\203\246\233\203\247\234\203\250\233\202\251\235\204" "\252\236\204\253\237\204\254\240\204\255\241\204\256\242\204\257\243\204" "\260\244\204\261\245\204\262\246\204\263\247\204\264\250\204\265\251\204" "\266\252\204\267\253\204\270\254\204\271\255\204\272\255\204\273\256\204" "\274\257\204\275\260\204\276\262\203\277\263\204\300\265\205\301\266\205" "\302\267\205\303\267\205\304\270\205\305\271\205\306\272\205\307\274\205" "\310\275\205\311\276\205\312\277\205\313\301\205\314\302\205\315\303\205" "\316\304\204\317\305\205\320\306\206\321\310\206\322\311\206\323\312\206" "\323\313\206\324\315\206\325\316\206\326\317\206\327\320\206\330\322\206" "\331\323\206\332\324\206\333\325\206\334\327\206\335\330\206\336\331\206" "\337\333\207\340\334\207\341\335\207\342\337\207\343\340\207\344\341\207" "\345\343\207\346\344\207\347\345\207\350\347\207\351\350\207\352\352\207" "\353\353\207\354\354\207\354\355\207\355\356\207\356\357\207\356\360\207" "\357\361\210\357\362\210\360\363\210\360\364\210\361\365\210\362\366\210" "\362\367\210\363\370\210\363\371\210\364\372\210\364\373\210\366\374\210" "\376\375\207\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\213\212\216\213\210\217\214\207\220\214\207\221\214\207" "\222\215\206\223\215\205\224\216\206\225\216\206\226\217\205\227\217\204" "\230\220\205\231\221\205\232\221\205\233\221\205\234\223\205\235\224\205" "\236\223\205\237\225\205\240\226\204\241\227\204\242\227\204\243\227\204" "\244\231\204\245\232\204\246\233\204\247\234\204\250\234\204\251\234\204" "\252\236\204\253\237\203\254\240\205\255\241\205\256\242\205\257\243\205" "\260\244\205\261\245\205\262\246\205\263\247\205\264\250\205\265\251\205" "\266\252\205\267\253\205\270\254\205\271\255\205\272\256\205\273\257\205" "\274\260\205\275\260\205\276\261\205\277\262\205\300\264\204\301\265\205" "\302\267\206\303\270\206\304\271\206\305\271\206\306\272\206\307\273\206" "\310\274\206\311\276\206\312\277\206\313\300\206\314\301\206\315\302\206" "\316\304\206\317\305\206\320\306\206\321\307\205\322\310\206\323\312\207" "\323\313\207\324\314\207\325\315\207\326\317\207\327\320\207\330\321\207" "\331\322\207\332\324\207\333\325\207\334\326\207\335\330\207\336\331\207" "\337\332\207\340\333\207\341\335\207\342\336\210\343\337\210\344\341\210" "\345\342\210\346\343\210\347\345\210\350\346\210\351\350\210\352\351\210" "\353\352\210\354\354\210\355\355\210\356\356\210\356\357\210\357\360\210" "\357\361\210\360\362\210\361\363\211\361\364\211\362\365\211\362\366\211" "\363\367\211\363\370\211\364\371\211\365\372\211\365\373\211\366\374\211" "\376\375\210\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\214\213\217\214\211\220\215\210\221\215\210" "\222\215\210\223\216\207\224\216\206\225\217\207\226\217\207\227\220\206" "\230\220\205\231\221\206\232\222\206\233\222\206\234\222\206\235\224\206" "\236\224\206\237\224\206\240\226\205\241\227\205\242\230\205\243\230\205" "\244\230\205\245\232\205\246\233\205\247\234\205\250\235\205\251\235\205" "\252\235\205\253\237\205\254\240\205\255\241\205\256\242\204\257\243\205" "\260\244\206\261\245\206\262\246\206\263\247\206\264\250\206\265\251\206" "\266\252\206\267\253\206\270\254\206\271\255\206\272\256\206\273\257\206" "\274\260\206\275\261\206\276\262\206\277\262\206\300\263\206\301\264\206" "\302\266\206\303\267\205\304\270\206\305\272\207\306\273\207\307\273\207" "\310\274\207\311\275\207\312\276\207\313\300\207\314\301\207\315\302\207" "\316\303\207\317\304\207\320\306\207\321\307\207\322\310\207\323\311\206" "\323\312\207\324\314\210\325\315\210\326\316\210\327\317\210\330\321\210" "\331\322\210\332\323\210\333\324\210\334\326\210\335\327\210\336\330\210" "\337\332\210\340\333\210\341\334\210\342\336\210\343\337\210\344\340\211" "\345\342\211\346\343\211\347\344\211\350\346\211\351\347\211\352\350\211" "\353\352\211\354\353\211\355\354\211\356\356\211\357\357\211\357\360\211" "\360\361\211\361\362\211\361\363\211\362\364\211\362\365\212\363\366\212" "\364\367\212\364\370\212\365\371\212\365\372\212\366\373\212\366\374\212" "\376\375\211\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\215\214\220\215\212\221\216\211" "\222\216\211\223\216\211\224\217\210\225\217\207\226\220\210\227\220\210" "\230\221\207\231\221\207\232\222\207\233\223\207\234\223\207\235\224\207" "\236\225\207\237\225\207\240\225\205\241\227\206\242\230\206\243\231\206" "\244\230\206\245\232\206\246\233\206\247\234\206\250\235\206\251\236\206" "\252\235\206\253\237\206\254\240\206\255\241\206\256\242\206\257\243\206" "\260\244\206\261\245\205\262\246\206\263\247\207\264\250\207\265\251\207" "\266\252\207\267\253\207\270\254\207\271\255\207\272\256\207\273\257\207" "\274\260\207\275\261\207\276\262\207\277\263\207\300\264\207\301\264\207" "\302\265\207\303\266\207\304\270\207\305\271\206\306\272\207\307\274\210" "\310\275\210\311\275\210\312\276\210\313\277\210\314\301\210\315\302\210" "\316\303\210\317\304\210\320\305\210\321\306\210\322\310\210\323\311\210" "\323\312\210\324\313\207\325\314\210\326\316\211\327\317\211\330\320\211" "\331\321\211\332\323\211\333\324\211\334\325\211\335\327\211\336\330\211" "\337\331\211\340\332\211\341\334\211\342\335\211\343\336\211\344\340\210" "\345\341\211\346\342\212\347\344\212\350\345\212\351\346\212\352\350\212" "\353\351\212\354\352\212\355\354\212\356\355\212\357\356\212\360\360\212" "\361\361\212\361\362\212\362\363\212\363\364\212\363\365\212\364\366\211" "\364\367\213\365\370\213\365\371\213\366\372\213\367\373\213\367\374\213" "\376\375\212\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\216\215\221\216\213" "\222\217\213\223\217\212\224\217\212\225\220\211\226\220\210\227\221\211" "\230\221\211\231\222\207\232\222\210\233\223\210\234\224\210\235\224\210" "\236\225\210\237\226\210\240\226\207\241\226\206\242\230\207\243\231\207" "\244\231\207\245\231\207\246\233\207\247\234\207\250\235\207\251\236\207" "\252\236\207\253\236\207\254\240\207\255\241\207\256\242\207\257\243\207" "\260\244\207\261\245\207\262\246\207\263\247\207\264\250\206\265\251\207" "\266\252\210\267\253\210\270\254\210\271\255\210\272\256\210\273\257\210" "\274\260\210\275\261\210\276\262\210\277\263\210\300\264\210\301\265\210" "\302\266\210\303\266\210\304\267\210\305\270\210\306\272\210\307\273\207" "\310\274\210\311\276\211\312\276\211\313\277\211\314\300\211\315\301\211" "\316\303\211\317\304\211\320\305\211\321\306\211\322\307\211\323\310\211" "\323\312\211\324\313\211\325\314\211\326\315\210\327\317\211\330\320\212" "\331\321\212\332\322\212\333\324\212\334\325\212\335\326\212\336\327\212" "\337\331\212\340\332\212\341\333\212\342\334\212\343\336\212\344\337\212" "\345\340\212\346\342\211\347\343\212\350\344\213\351\346\213\352\347\213" "\353\350\213\354\352\213\355\352\213\356\354\213\357\356\213\360\357\213" "\361\361\213\362\362\213\363\363\213\363\364\213\364\365\213\364\366\213" "\365\367\213\366\370\212\366\371\214\367\372\214\367\373\214\371\374\214" "\376\375\213\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\217\216" "\222\217\215\223\220\214\224\220\213\225\220\213\226\221\212\227\221\212" "\230\222\212\231\222\211\232\223\210\233\223\211\234\224\211\235\225\211" "\236\225\211\237\226\211\240\227\211\241\227\207\242\227\210\243\231\210" "\244\232\210\245\232\210\246\232\210\247\234\210\250\235\210\251\236\210" "\252\237\210\253\236\210\254\240\210\255\241\210\256\242\210\257\243\210" "\260\244\210\261\245\210\262\246\210\263\247\210\264\250\210\265\251\210" "\266\252\207\267\252\210\270\253\211\271\254\211\272\255\211\273\256\211" "\274\257\211\275\260\211\276\262\211\277\263\211\300\264\211\301\265\211" "\302\266\211\303\267\211\304\270\211\305\270\211\306\271\211\307\272\211" "\310\274\211\311\275\210\312\276\211\313\300\212\314\300\212\315\301\212" "\316\302\212\317\303\212\320\305\212\321\306\212\322\307\212\323\310\212" "\323\311\212\324\313\212\325\314\212\326\315\212\327\316\212\330\317\211" "\331\321\212\332\322\213\333\323\213\334\324\213\335\326\213\336\327\213" "\337\330\213\340\331\213\341\333\213\342\334\213\343\335\213\344\337\213" "\345\340\213\346\341\213\347\343\213\350\344\212\351\345\213\352\347\214" "\353\350\214\354\351\214\355\353\214\356\354\214\357\355\214\360\357\214" "\361\360\214\362\361\214\363\363\214\364\364\214\364\365\214\365\366\214" "\366\367\214\366\370\214\367\371\214\367\372\213\370\373\215\371\374\215" "\376\375\214\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\220\217\223\220\215\224\221\215\225\221\214\226\221\214\227\222\213" "\230\222\213\231\223\213\232\223\212\233\224\211\234\224\212\235\225\212" "\236\226\212\237\226\212\240\227\212\241\230\211\242\230\210\243\230\211" "\244\232\211\245\233\211\246\233\211\247\233\211\250\235\211\251\236\211" "\252\237\211\253\237\211\254\237\211\255\241\211\256\242\211\257\243\211" "\260\244\211\261\245\211\262\246\211\263\247\211\264\250\211\265\251\211" "\266\251\211\267\251\211\270\252\211\271\253\210\272\254\211\273\255\212" "\274\256\212\275\257\212\276\261\212\277\262\212\300\263\212\301\265\212" "\302\266\212\303\267\212\304\270\212\305\271\212\306\272\212\307\272\212" "\310\273\212\311\274\212\312\275\212\313\277\211\314\300\212\315\302\213" "\316\302\213\317\303\213\320\304\213\321\305\213\322\307\213\323\310\213" "\323\311\213\324\312\213\325\313\213\326\315\213\327\316\213\330\317\213" "\331\320\213\332\321\212\333\323\213\334\324\214\335\325\214\336\326\214" "\337\330\214\340\331\214\341\332\214\342\334\214\343\335\214\344\336\214" "\345\337\214\346\341\214\347\342\214\350\343\214\351\345\214\352\346\213" "\353\347\214\354\351\215\355\352\215\356\353\215\357\355\215\360\356\215" "\361\357\215\362\361\215\363\362\215\364\363\215\365\365\215\366\366\215" "\366\367\215\367\370\215\370\371\215\370\372\215\371\373\215\371\374\214" "\376\375\214\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\221\220\224\221\216\225\222\216\226\222\215\227\222\215" "\230\223\214\231\223\214\232\224\214\233\224\213\234\225\212\235\225\213" "\236\226\213\237\227\213\240\227\213\241\230\213\242\231\211\243\231\212" "\244\231\212\245\233\212\246\234\212\247\234\212\250\234\212\251\236\212" "\252\237\212\253\240\212\254\240\212\255\240\212\256\242\212\257\243\212" "\260\244\212\261\245\212\262\246\212\263\247\212\264\250\212\265\251\212" "\266\250\212\267\251\212\270\253\212\271\254\212\272\255\212\273\256\211" "\274\257\212\275\257\213\276\260\213\277\261\213\300\262\213\301\264\213" "\302\265\213\303\266\213\304\270\213\305\271\213\306\272\213\307\273\213" "\310\274\213\311\274\213\312\275\213\313\276\213\314\277\213\315\301\212" "\316\302\213\317\304\214\320\304\214\321\305\214\322\306\214\323\307\214" "\323\311\214\324\312\214\325\313\214\326\314\214\327\315\214\330\317\214" "\331\320\214\332\321\214\333\322\214\334\323\213\335\325\214\336\326\215" "\337\327\215\340\330\215\341\332\215\342\333\215\343\334\215\344\336\215" "\345\337\215\346\340\215\347\341\215\350\343\215\351\344\215\352\345\215" "\353\347\215\354\350\214\355\351\215\356\353\216\357\354\216\360\355\216" "\361\357\216\362\357\216\363\361\216\364\362\216\365\364\216\366\366\216" "\367\367\216\370\370\216\370\371\216\371\372\216\371\373\216\373\374\216" "\377\375\215\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\222\221\225\221\217\226\222\217\227\223\216" "\230\223\216\231\224\215\232\224\215\233\225\215\234\225\214\235\226\213" "\236\226\214\237\227\214\240\230\214\241\227\214\242\231\213\243\232\212" "\244\232\213\245\232\213\246\234\213\247\235\213\250\234\213\251\236\213" "\252\237\213\253\240\213\254\241\213\255\240\213\256\242\213\257\243\213" "\260\244\213\261\245\213\262\246\213\263\247\213\264\250\213\265\251\213" "\266\250\213\267\252\213\270\253\213\271\254\213\272\255\213\273\256\213" "\274\257\213\275\260\213\276\261\212\277\262\213\300\262\214\301\263\214" "\302\264\214\303\265\214\304\267\214\305\270\214\306\271\214\307\272\214" "\310\274\214\311\275\214\312\276\214\313\276\214\314\277\214\315\300\214" "\316\301\214\317\303\213\320\304\214\321\306\215\322\306\215\323\307\215" "\323\310\215\324\311\215\325\313\215\326\314\215\327\315\215\330\316\215" "\331\317\215\332\321\215\333\322\215\334\323\215\335\324\215\336\326\214" "\337\327\215\340\330\216\341\331\216\342\333\216\343\334\216\344\335\216" "\345\336\216\346\340\216\347\341\216\350\342\216\351\344\216\352\345\216" "\353\345\216\354\347\216\355\351\216\356\351\216\357\353\215\360\355\216" "\361\356\217\362\360\217\363\361\217\364\362\217\365\364\217\366\365\217" "\367\366\217\370\370\217\371\371\217\372\372\217\372\373\217\373\374\217" "\377\375\216\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\223\222\226\222\220\227\223\220" "\230\224\217\231\224\217\232\225\216\233\225\216\234\226\216\235\226\215" "\236\227\214\237\227\215\240\230\215\241\230\215\242\230\215\243\232\213" "\244\233\214\245\232\214\246\234\214\247\235\214\250\235\214\251\235\214" "\252\237\214\253\240\214\254\241\214\255\241\214\256\241\214\257\243\214" "\260\244\214\261\245\214\262\246\214\263\247\214\264\250\214\265\251\214" "\266\250\214\267\252\214\270\253\214\271\254\214\272\255\214\273\256\214" "\274\257\214\275\260\214\276\261\214\277\262\214\300\263\213\301\264\214" "\302\265\215\303\265\215\304\266\215\305\267\215\306\270\215\307\272\215" "\310\273\215\311\274\215\312\276\215\313\277\215\314\300\215\315\300\215" "\316\301\215\317\302\215\320\303\214\321\305\215\322\306\214\323\310\215" "\323\310\216\324\311\216\325\312\216\326\313\216\327\315\216\330\316\216" "\331\317\216\332\320\216\333\321\216\334\323\216\335\324\216\336\325\216" "\337\326\215\340\330\216\341\331\215\342\332\216\343\333\217\344\335\217" "\345\336\217\346\337\217\347\340\217\350\342\217\351\343\217\352\344\217" "\353\346\217\354\347\217\355\350\217\356\352\217\357\353\217\360\354\217" "\361\356\216\362\357\216\363\360\220\364\362\220\365\363\220\366\364\220" "\367\366\220\370\367\220\371\367\220\372\371\220\373\373\220\373\374\220" "\377\375\217\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\224\223\227\223\221" "\230\224\221\231\225\220\232\225\220\233\226\217\234\226\217\235\227\217" "\236\227\216\237\230\215\240\230\216\241\231\216\242\231\216\243\231\215" "\244\233\214\245\233\215\246\233\215\247\235\215\250\236\215\251\236\215" "\252\236\215\253\240\215\254\241\215\255\242\215\256\242\215\257\242\215" "\260\244\215\261\245\215\262\246\215\263\247\215\264\250\215\265\251\215" "\266\250\215\267\251\215\270\253\215\271\254\215\272\255\215\273\256\215" "\274\257\215\275\260\215\276\261\215\277\262\215\300\263\215\301\264\214" "\302\265\214\303\266\215\304\267\216\305\270\216\306\270\216\307\271\216" "\310\272\216\311\274\216\312\275\216\313\276\216\314\277\216\315\301\216" "\316\302\216\317\302\216\320\303\216\321\304\216\322\305\216\323\307\215" "\323\310\215\324\312\216\325\312\217\326\313\217\327\314\217\330\316\217" "\331\317\217\332\320\217\333\321\217\334\322\217\335\324\217\336\325\217" "\337\326\217\340\327\217\341\330\217\342\332\216\343\333\216\344\334\217" "\345\335\220\346\337\220\347\340\220\350\341\220\351\343\220\352\344\220" "\353\344\220\354\346\220\355\350\220\356\350\220\357\352\220\360\354\220" "\361\355\220\362\356\220\363\360\217\364\361\217\365\362\221\366\364\221" "\367\365\221\370\365\221\371\367\221\372\370\221\373\373\221\374\374\221" "\377\375\220\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\225\224" "\230\224\222\231\225\222\232\226\221\233\226\221\234\227\220\235\227\220" "\236\230\220\237\227\217\240\231\216\241\231\217\242\232\217\243\232\217" "\244\233\216\245\234\215\246\234\216\247\234\216\250\236\216\251\237\216" "\252\237\216\253\237\216\254\241\216\255\242\216\256\243\216\257\243\216" "\260\243\216\261\245\216\262\246\216\263\247\216\264\250\216\265\251\216" "\266\251\216\267\251\216\270\253\216\271\254\216\272\255\216\273\256\216" "\274\257\216\275\260\216\276\261\216\277\262\216\300\263\216\301\264\216" "\302\265\216\303\266\215\304\267\215\305\270\215\306\271\216\307\272\217" "\310\272\217\311\273\217\312\274\217\313\275\217\314\276\217\315\300\217" "\316\301\217\317\303\217\320\304\217\321\304\217\322\305\217\323\306\217" "\323\307\217\324\311\216\325\312\216\326\313\217\327\314\220\330\315\220" "\331\316\220\332\320\220\333\321\220\334\322\220\335\323\220\336\324\220" "\337\326\220\340\327\220\341\330\220\342\331\220\343\332\220\344\334\217" "\345\335\217\346\336\220\347\340\221\350\341\221\351\341\221\352\343\221" "\353\345\221\354\346\221\355\347\221\356\351\221\357\352\221\360\352\221" "\361\354\221\362\356\221\363\356\221\364\360\220\365\362\220\366\362\220" "\367\364\222\370\365\222\371\366\222\372\371\222\373\372\222\374\372\222" "\377\374\221\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\226\225\231\225\223\232\226\223\233\227\222\234\227\222\235\230\221" "\236\227\221\237\230\221\240\231\217\241\232\220\242\232\220\243\233\220" "\244\233\220\245\234\216\246\235\217\247\235\217\250\235\217\251\237\217" "\252\240\217\253\240\217\254\240\217\255\242\217\256\243\217\257\244\217" "\260\243\217\261\245\217\262\246\217\263\247\217\264\250\217\265\251\217" "\266\252\217\267\251\217\270\253\217\271\254\217\272\255\217\273\256\217" "\274\257\217\275\260\217\276\261\217\277\262\217\300\263\217\301\264\217" "\302\265\217\303\266\217\304\267\217\305\270\217\306\271\216\307\272\216" "\310\273\217\311\274\220\312\275\220\313\275\220\314\276\220\315\277\220" "\316\300\220\317\302\220\320\303\220\321\305\220\322\306\220\323\306\220" "\323\307\220\324\310\220\325\311\220\326\313\217\327\314\217\330\315\220" "\331\316\221\332\317\221\333\320\221\334\322\221\335\323\221\336\324\221" "\337\325\221\340\326\221\341\330\221\342\331\221\343\332\221\344\333\221" "\345\335\221\346\336\220\347\337\220\350\340\221\351\342\222\352\343\222" "\353\343\222\354\345\222\355\347\222\356\350\222\357\351\222\360\353\222" "\361\354\222\362\355\222\363\357\222\364\360\222\365\361\222\366\363\221" "\367\364\221\370\365\221\371\367\223\372\370\223\373\370\223\374\373\223" "\377\373\222\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\227\226\232\226\224\233\227\224\234\230\223\235\230\223" "\236\231\222\237\231\222\240\231\221\241\232\220\242\233\221\243\233\221" "\244\234\221\245\234\220\246\235\217\247\236\220\250\236\220\251\236\220" "\252\240\220\253\241\220\254\241\220\255\241\220\256\243\220\257\244\220" "\260\244\220\261\244\220\262\246\220\263\247\220\264\250\220\265\251\220" "\266\252\220\267\251\220\270\252\220\271\254\220\272\255\220\273\256\220" "\274\257\220\275\260\220\276\261\220\277\262\220\300\263\220\301\264\220" "\302\265\220\303\266\220\304\267\220\305\270\220\306\271\220\307\272\220" "\310\273\217\311\274\217\312\275\220\313\276\221\314\277\221\315\277\221" "\316\300\221\317\301\221\320\302\221\321\304\221\322\305\221\323\307\221" "\323\310\221\324\310\221\325\311\221\326\312\221\327\313\221\330\315\220" "\331\316\220\332\317\221\333\320\222\334\321\222\335\322\222\336\324\222" "\337\325\222\340\326\222\341\327\222\342\330\222\343\332\222\344\333\222" "\345\334\222\346\335\222\347\337\222\350\340\221\351\340\221\352\342\222" "\353\344\223\354\345\223\355\345\223\356\347\223\357\351\223\360\351\223" "\361\353\223\362\355\223\363\356\223\364\357\223\365\361\223\366\362\223" "\367\363\223\370\365\222\371\366\222\372\366\222\373\370\224\374\372\224" "\377\372\223\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\230\226\233\227\225\234\230\225\235\231\224" "\236\230\224\237\231\222\240\232\223\241\232\222\242\233\221\243\234\222" "\244\234\222\245\235\222\246\235\221\247\236\220\250\237\221\251\237\221" "\252\237\221\253\241\221\254\242\221\255\241\221\256\243\221\257\244\221" "\260\245\221\261\245\221\262\245\221\263\247\221\264\250\221\265\251\221" "\266\252\221\267\252\221\270\252\221\271\253\221\272\255\221\273\256\221" "\274\257\221\275\260\221\276\261\221\277\262\221\300\263\221\301\264\221" "\302\265\221\303\266\221\304\267\221\305\270\221\306\271\221\307\272\221" "\310\273\221\311\274\221\312\275\220\313\276\220\314\277\221\315\300\222" "\316\301\222\317\301\222\320\302\222\321\303\222\322\304\222\323\306\222" "\323\307\222\324\310\222\325\312\222\326\312\222\327\313\222\330\314\222" "\331\315\222\332\317\221\333\320\221\334\321\222\335\322\223\336\322\223" "\337\324\223\340\326\223\341\327\223\342\330\223\343\330\223\344\332\223" "\345\334\223\346\335\223\347\335\223\350\337\223\351\341\223\352\342\222" "\353\342\222\354\344\223\355\346\224\356\347\224\357\350\224\360\352\224" "\361\353\224\362\353\224\363\355\224\364\357\224\365\357\224\366\361\224" "\367\363\224\370\363\224\371\364\224\372\366\223\373\367\223\374\370\223" "\377\372\224\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\231\227\234\230\226\235\230\226" "\236\232\224\237\232\224\240\232\224\241\233\224\242\233\223\243\234\222" "\244\235\223\245\234\223\246\236\223\247\236\222\250\237\221\251\240\222" "\252\237\222\253\240\222\254\242\222\255\242\222\256\242\222\257\244\222" "\260\245\222\261\246\222\262\246\222\263\246\222\264\250\222\265\251\222" "\266\252\222\267\253\222\270\253\222\271\253\222\272\255\222\273\256\222" "\274\257\222\275\260\222\276\261\222\277\262\222\300\263\222\301\264\222" "\302\265\222\303\266\222\304\267\222\305\270\222\306\271\222\307\272\222" "\310\273\222\311\274\222\312\275\222\313\276\222\314\277\221\315\300\221" "\316\301\221\317\302\222\320\303\223\321\303\223\322\304\223\323\305\223" "\323\306\223\324\307\223\325\311\223\326\312\223\327\313\223\330\314\223" "\331\315\223\332\316\223\333\317\223\334\321\222\335\322\222\336\323\223" "\337\324\224\340\324\224\341\326\224\342\330\224\343\331\224\344\331\224" "\345\333\224\346\335\224\347\336\224\350\337\224\351\337\224\352\341\224" "\353\343\224\354\344\223\355\345\223\356\347\224\357\350\225\360\350\225" "\361\352\225\362\354\225\363\355\225\364\356\225\365\360\225\366\361\225" "\367\362\225\370\364\225\371\365\225\372\365\225\373\370\225\374\371\224" "\377\371\223\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\232\230\235\231\227" "\236\231\227\237\233\226\240\233\225\241\233\225\242\234\225\243\234\224" "\244\235\223\245\235\224\246\236\224\247\237\224\250\237\223\251\240\222" "\252\241\223\253\241\223\254\242\223\255\243\223\256\242\223\257\243\223" "\260\245\223\261\246\223\262\247\223\263\246\223\264\250\223\265\251\223" "\266\252\223\267\253\223\270\254\223\271\253\223\272\254\223\273\256\223" "\274\257\223\275\260\223\276\261\223\277\262\223\300\263\223\301\264\223" "\302\265\223\303\266\223\304\267\223\305\270\223\306\270\223\307\271\223" "\310\272\223\311\273\223\312\274\223\313\276\223\314\277\223\315\300\223" "\316\301\223\317\302\222\320\303\222\321\304\223\322\305\224\323\306\224" "\323\306\224\324\307\224\325\310\224\326\311\224\327\313\224\330\314\224" "\331\315\224\332\316\224\333\317\224\334\320\224\335\321\224\336\323\223" "\337\324\223\340\325\224\341\326\225\342\327\225\343\331\225\344\332\225" "\345\333\225\346\333\225\347\335\225\350\337\225\351\340\225\352\341\225" "\353\342\225\354\344\225\355\345\225\356\345\224\357\347\224\360\351\224" "\361\352\226\362\352\226\363\354\226\364\356\226\365\356\226\366\360\226" "\367\362\226\370\363\226\371\363\226\372\366\226\373\367\226\374\367\226" "\377\371\224\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\233\231" "\236\232\227\237\232\230\240\234\227\241\234\226\242\234\226\243\235\226" "\244\235\225\245\236\224\246\236\225\247\237\225\250\240\225\251\240\223" "\252\241\224\253\242\224\254\242\224\255\243\224\256\244\224\257\243\224" "\260\244\224\261\246\224\262\247\224\263\246\224\264\247\224\265\251\224" "\266\252\224\267\253\224\270\254\224\271\254\224\272\254\224\273\256\224" "\274\257\224\275\260\224\276\261\224\277\262\224\300\263\224\301\264\224" "\302\265\224\303\266\224\304\267\224\305\267\224\306\267\224\307\270\224" "\310\271\224\311\272\224\312\274\224\313\275\224\314\276\224\315\277\224" "\316\300\224\317\301\224\320\303\224\321\304\223\322\305\223\323\306\224" "\323\306\225\324\307\225\325\310\225\326\311\225\327\312\225\330\313\225" "\331\315\225\332\316\225\333\317\225\334\320\225\335\321\225\336\322\225" "\337\323\225\340\325\224\341\326\224\342\327\224\343\327\225\344\331\226" "\345\333\226\346\334\226\347\335\226\350\335\226\351\337\226\352\341\226" "\353\342\226\354\342\226\355\344\226\356\346\226\357\347\226\360\347\225" "\361\351\225\362\353\225\363\354\227\364\355\227\365\357\227\366\360\227" "\367\360\227\370\361\227\371\364\227\372\364\227\373\365\227\374\367\227" "\377\370\225\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\233\232\237\233\230\240\233\231\241\235\230\242\235\227\243\235\227" "\244\236\227\245\236\226\246\237\225\247\237\226\250\240\226\251\241\225" "\252\241\224\253\242\225\254\243\225\255\243\225\256\244\225\257\245\225" "\260\244\225\261\245\225\262\247\225\263\250\225\264\247\225\265\250\225" "\266\252\223\267\253\223\270\254\223\271\255\223\272\254\223\273\255\223" "\274\257\223\275\260\224\276\261\225\277\262\225\300\263\225\301\264\225" "\302\265\225\303\266\225\304\266\225\305\266\225\306\267\225\307\270\225" "\310\272\225\311\272\225\312\273\225\313\274\225\314\275\225\315\276\225" "\316\277\225\317\300\225\320\302\225\321\303\225\322\304\225\323\306\224" "\323\307\224\324\307\225\325\310\226\326\311\226\327\312\226\330\313\226" "\331\314\226\332\315\226\333\317\226\334\320\226\335\321\226\336\322\226" "\337\323\226\340\323\226\341\325\226\342\327\226\343\330\225\344\330\225" "\345\331\226\346\333\227\347\335\227\350\336\227\351\337\227\352\337\227" "\353\341\227\354\343\227\355\344\227\356\344\227\357\346\227\360\350\227" "\361\351\227\362\351\226\363\353\226\364\355\226\365\355\226\366\357\230" "\367\361\230\370\362\230\371\362\230\372\365\230\373\366\230\374\366\230" "\377\366\226\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\234\233\240\234\231\241\234\232\242\236\231\243\236\230" "\244\236\230\245\237\230\246\237\227\247\240\226\250\240\227\251\241\227" "\252\242\226\253\242\225\254\243\226\255\244\226\256\244\226\257\245\226" "\260\246\226\261\245\226\262\246\226\263\250\226\264\251\226\265\250\225" "\266\251\224\267\253\225\270\254\225\271\255\225\272\254\225\273\255\225" "\274\256\224\275\260\224\276\261\224\277\262\224\300\263\224\301\264\225" "\302\265\226\303\266\226\304\265\226\305\266\226\306\267\226\307\271\226" "\310\272\226\311\273\226\312\274\226\313\275\226\314\276\226\315\277\226" "\316\277\226\317\300\226\320\301\226\321\302\226\322\303\226\323\305\226" "\323\306\226\324\307\225\325\310\225\326\311\226\327\312\227\330\313\227" "\331\314\227\332\315\227\333\316\227\334\317\227\335\321\227\336\322\227" "\337\323\227\340\324\227\341\324\227\342\326\227\343\330\227\344\331\227" "\345\332\226\346\332\226\347\333\227\350\335\230\351\337\230\352\340\230" "\353\341\230\354\342\230\355\344\230\356\345\230\357\346\230\360\347\230" "\361\351\230\362\352\230\363\353\230\364\354\230\365\356\227\366\357\227" "\367\357\227\370\360\231\371\363\231\372\363\231\373\364\231\374\366\231" "\377\366\227\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\235\234\241\235\232\242\235\233\243\237\232" "\244\237\231\245\237\231\246\240\231\247\240\230\250\241\227\251\241\230" "\252\242\230\253\243\227\254\243\226\255\244\227\256\245\227\257\244\227" "\260\246\227\261\247\227\262\246\227\263\247\227\264\251\227\265\252\225" "\266\251\226\267\252\226\270\254\226\271\255\226\272\256\226\273\255\226" "\274\256\226\275\257\226\276\261\226\277\262\226\300\263\226\301\264\225" "\302\265\225\303\266\225\304\265\226\305\266\227\306\270\227\307\271\227" "\310\272\227\311\273\227\312\274\227\313\275\227\314\276\227\315\277\227" "\316\300\227\317\301\227\320\302\227\321\302\227\322\303\227\323\304\227" "\323\305\227\324\306\227\325\310\227\326\311\226\327\312\226\330\313\226" "\331\314\227\332\315\230\333\316\230\334\317\230\335\320\230\336\321\230" "\337\323\230\340\324\230\341\325\230\342\325\230\343\326\230\344\330\230" "\345\332\230\346\333\230\347\334\227\350\334\227\351\335\230\352\337\231" "\353\341\231\354\342\231\355\342\231\356\344\231\357\346\231\360\347\231" "\361\347\231\362\351\231\363\353\231\364\354\231\365\354\231\366\356\231" "\367\360\230\370\361\230\371\361\230\372\364\232\373\365\232\374\365\232" "\377\365\230\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\236\235\242\236\233\243\236\234" "\244\240\233\245\240\232\246\240\232\247\241\232\250\241\231\251\242\230" "\252\241\231\253\243\231\254\244\230\255\243\227\256\245\230\257\244\230" "\260\245\230\261\247\230\262\250\230\263\247\230\264\250\230\265\252\226" "\266\253\227\267\252\227\270\254\227\271\255\227\272\256\227\273\257\227" "\274\256\227\275\257\227\276\261\227\277\262\227\300\263\227\301\264\227" "\302\265\227\303\266\227\304\265\226\305\266\226\306\270\226\307\271\227" "\310\272\230\311\273\230\312\274\230\313\275\230\314\276\230\315\277\230" "\316\300\230\317\301\230\320\302\230\321\303\230\322\303\230\323\304\230" "\323\305\230\324\306\230\325\307\230\326\310\230\327\312\230\330\313\230" "\331\314\227\332\315\227\333\316\230\334\317\231\335\320\231\336\321\231" "\337\322\231\340\323\231\341\325\231\342\326\231\343\327\231\344\327\231" "\345\330\231\346\332\231\347\334\231\350\335\231\351\336\230\352\336\230" "\353\340\231\354\342\232\355\343\232\356\344\232\357\344\232\360\346\232" "\361\350\232\362\351\232\363\351\232\364\353\232\365\355\232\366\356\232" "\367\356\232\370\357\232\371\362\231\372\362\231\373\363\231\374\365\233" "\377\365\231\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\237\236\243\237\234" "\244\237\233\245\241\234\246\241\233\247\241\233\250\242\233\251\241\231" "\252\243\231\253\242\232\254\244\232\255\245\230\256\244\231\257\246\231" "\260\245\231\261\246\231\262\250\231\263\251\231\264\250\231\265\252\227" "\266\253\230\267\252\230\270\253\230\271\255\230\272\256\230\273\257\230" "\274\260\230\275\257\230\276\260\230\277\262\230\300\263\230\301\264\230" "\302\265\230\303\266\230\304\266\230\305\266\230\306\267\230\307\271\227" "\310\272\227\311\273\227\312\274\230\313\275\231\314\276\231\315\277\231" "\316\300\231\317\301\231\320\302\231\321\303\231\322\304\231\323\305\231" "\323\305\231\324\306\231\325\307\231\326\310\231\327\311\231\330\312\231" "\331\313\231\332\315\231\333\316\230\334\317\230\335\320\231\336\321\232" "\337\322\232\340\323\232\341\323\232\342\325\232\343\327\232\344\330\232" "\345\331\232\346\331\232\347\332\232\350\334\232\351\336\232\352\337\232" "\353\340\231\354\340\231\355\342\232\356\344\233\357\345\233\360\346\233" "\361\346\233\362\350\233\363\352\233\364\353\233\365\353\233\366\355\233" "\367\357\233\370\360\233\371\360\233\372\363\233\373\364\232\374\364\232" "\377\364\231\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\240\237" "\244\240\235\245\240\234\246\242\235\247\242\234\250\241\234\251\243\234" "\252\242\232\253\244\232\254\243\233\255\245\232\256\246\231\257\245\232" "\260\247\232\261\246\232\262\247\232\263\251\232\264\250\232\265\251\231" "\266\253\230\267\254\231\270\253\231\271\254\231\272\255\231\273\257\231" "\274\260\231\275\257\231\276\260\231\277\261\231\300\263\231\301\264\231" "\302\265\231\303\266\231\304\267\231\305\266\231\306\267\231\307\271\231" "\310\272\231\311\273\231\312\274\230\313\275\230\314\276\230\315\277\231" "\316\300\232\317\301\232\320\302\232\321\303\232\322\304\232\323\305\232" "\323\305\232\324\306\232\325\307\232\326\310\232\327\311\232\330\312\232" "\331\313\232\332\314\232\333\315\232\334\317\232\335\320\231\336\321\231" "\337\322\232\340\323\233\341\324\233\342\324\233\343\325\233\344\327\233" "\345\331\233\346\332\233\347\333\233\350\333\233\351\334\233\352\336\233" "\353\340\233\354\341\233\355\342\232\356\342\232\357\344\232\360\346\234" "\361\347\234\362\350\234\363\351\234\364\353\234\365\354\234\366\355\234" "\367\356\234\370\360\234\371\361\234\372\361\234\373\362\234\374\364\234" "\377\364\232\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\241\240\245\241\236\246\241\235\247\243\236\250\243\235\251\242\235" "\252\244\235\253\243\233\254\245\234\255\244\234\256\246\233\257\245\232" "\260\247\233\261\250\233\262\247\233\263\251\233\264\252\233\265\251\233" "\266\252\231\267\254\232\270\255\232\271\254\232\272\255\232\273\256\232" "\274\260\232\275\261\232\276\260\232\277\261\232\300\262\232\301\264\232" "\302\265\232\303\266\232\304\267\232\305\267\232\306\267\232\307\270\232" "\310\272\232\311\273\232\312\274\232\313\275\232\314\276\232\315\277\231" "\316\300\231\317\301\232\320\302\233\321\303\233\322\304\233\323\305\233" "\323\305\233\324\306\233\325\307\233\326\310\233\327\311\233\330\312\233" "\331\313\233\332\314\233\333\315\233\334\316\233\335\317\233\336\321\233" "\337\322\232\340\323\232\341\324\233\342\325\234\343\326\234\344\326\234" "\345\327\234\346\331\234\347\333\234\350\334\234\351\335\234\352\335\234" "\353\336\234\354\340\234\355\342\234\356\343\234\357\343\233\360\344\233" "\361\346\233\362\350\235\363\351\235\364\351\235\365\353\235\366\355\235" "\367\356\235\370\356\235\371\357\235\372\362\235\373\363\235\374\363\235" "\377\362\233\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\242\241\246\242\237\247\242\236\250\244\237\251\244\236" "\252\243\236\253\245\234\254\244\234\255\246\235\256\245\235\257\247\233" "\260\246\233\261\250\234\262\251\234\263\250\234\264\252\234\265\253\234" "\266\252\233\267\253\232\270\255\233\271\256\233\272\255\233\273\256\233" "\274\257\233\275\261\233\276\262\233\277\261\233\300\262\233\301\264\233" "\302\265\233\303\266\233\304\267\233\305\270\233\306\267\233\307\270\233" "\310\272\233\311\273\233\312\274\233\313\275\233\314\276\233\315\277\233" "\316\300\233\317\301\232\320\302\232\321\303\232\322\304\233\323\305\234" "\323\305\234\324\306\234\325\307\234\326\310\234\327\311\234\330\312\234" "\331\313\234\332\314\234\333\315\234\334\316\234\335\317\234\336\320\234" "\337\321\234\340\323\234\341\324\233\342\325\233\343\326\234\344\327\235" "\345\330\235\346\330\235\347\332\235\350\334\235\351\335\235\352\336\235" "\353\337\235\354\337\235\355\341\235\356\343\235\357\344\235\360\345\235" "\361\345\234\362\347\234\363\351\234\364\352\234\365\353\236\366\353\236" "\367\354\236\370\357\236\371\360\236\372\360\236\373\361\236\374\363\236" "\377\363\234\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\243\242\247\243\240\250\243\237\251\245\240" "\252\245\237\253\244\237\254\246\235\255\245\235\256\247\236\257\246\236" "\260\250\234\261\247\234\262\251\235\263\252\235\264\251\235\265\253\235" "\266\254\235\267\253\233\270\254\234\271\256\234\272\257\234\273\256\234" "\274\257\234\275\260\234\276\262\234\277\261\234\300\262\234\301\263\234" "\302\265\234\303\266\234\304\267\234\305\270\234\306\267\234\307\270\234" "\310\271\234\311\273\234\312\274\234\313\275\234\314\276\234\315\277\234" "\316\300\234\317\301\234\320\302\234\321\303\234\322\304\233\323\305\233" "\323\305\234\324\306\235\325\307\235\326\310\235\327\311\235\330\312\235" "\331\313\235\332\314\235\333\315\235\334\316\235\335\317\235\336\320\235" "\337\321\235\340\322\235\341\323\235\342\324\235\343\326\234\344\327\234" "\345\330\234\346\331\235\347\331\236\350\332\236\351\334\236\352\336\236" "\353\337\236\354\340\236\355\340\236\356\341\236\357\343\236\360\345\236" "\361\346\236\362\347\236\363\347\236\364\351\235\365\353\235\366\354\235" "\367\355\237\370\355\237\371\356\237\372\361\237\373\362\237\374\362\237" "\377\361\235\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\244\243\250\244\241\251\244\240" "\252\246\241\253\246\237\254\245\240\255\247\236\256\246\236\257\250\237" "\260\247\237\261\251\235\262\250\235\263\252\236\264\253\236\265\252\236" "\266\254\236\267\255\235\270\254\234\271\255\235\272\257\235\273\260\235" "\274\257\235\275\260\235\276\262\235\277\263\235\300\262\235\301\263\235" "\302\264\235\303\266\235\304\267\235\305\270\235\306\271\235\307\270\235" "\310\271\235\311\273\235\312\274\235\313\275\235\314\276\235\315\277\235" "\316\300\235\317\301\235\320\302\235\321\303\235\322\304\235\323\305\235" "\323\305\234\324\306\234\325\307\234\326\310\235\327\311\236\330\312\236" "\331\313\236\332\314\236\333\315\236\334\316\236\335\317\236\336\320\236" "\337\321\236\340\322\236\341\323\236\342\323\236\343\324\236\344\326\236" "\345\330\236\346\331\235\347\332\235\350\333\236\351\333\237\352\334\237" "\353\336\237\354\340\237\355\341\237\356\342\237\357\342\237\360\343\237" "\361\345\237\362\347\237\363\350\237\364\351\237\365\351\237\366\353\236" "\367\355\236\370\356\236\371\357\240\372\357\240\373\362\240\374\363\240" "\377\361\236\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\245\244\251\245\242" "\252\245\241\253\247\242\254\247\240\255\246\241\256\250\237\257\247\237" "\260\251\240\261\250\240\262\252\236\263\251\236\264\253\237\265\254\237" "\266\253\237\267\255\237\270\256\236\271\255\235\272\256\236\273\260\236" "\274\261\236\275\260\236\276\261\236\277\263\236\300\264\236\301\263\236" "\302\264\236\303\265\236\304\267\236\305\270\236\306\271\236\307\270\236" "\310\271\236\311\272\236\312\274\236\313\275\236\314\276\236\315\277\236" "\316\300\236\317\301\236\320\302\236\321\303\236\322\304\236\323\305\236" "\323\305\236\324\306\236\325\307\236\326\310\235\327\311\235\330\312\236" "\331\313\237\332\314\237\333\315\237\334\316\237\335\317\237\336\320\237" "\337\321\237\340\322\237\341\323\237\342\324\237\343\325\237\344\325\237" "\345\326\237\346\330\237\347\332\237\350\333\236\351\334\236\352\335\237" "\353\335\240\354\336\240\355\340\240\356\342\240\357\343\240\360\344\240" "\361\344\240\362\345\240\363\347\240\364\351\240\365\352\240\366\353\240" "\367\353\240\370\354\237\371\357\237\372\360\237\373\360\241\374\361\241" "\377\362\237\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\246\245" "\252\246\243\253\246\242\254\250\243\255\250\241\256\247\242\257\251\240" "\260\250\240\261\252\241\262\251\241\263\253\237\264\252\240\265\254\240" "\266\255\240\267\254\240\270\256\240\271\257\236\272\256\237\273\257\237" "\274\261\237\275\260\237\276\261\237\277\262\237\300\264\237\301\265\237" "\302\264\237\303\265\237\304\266\237\305\270\237\306\271\237\307\272\237" "\310\271\237\311\272\237\312\274\237\313\275\237\314\276\237\315\277\237" "\316\300\237\317\301\237\320\302\237\321\303\237\322\304\237\323\304\237" "\323\304\237\324\305\237\325\306\237\326\307\237\327\310\237\330\311\236" "\331\312\236\332\313\237\333\314\240\334\316\240\335\317\240\336\320\240" "\337\321\240\340\322\240\341\323\240\342\324\240\343\325\240\344\326\240" "\345\327\240\346\327\240\347\330\240\350\332\240\351\334\240\352\335\237" "\353\336\237\354\337\240\355\337\241\356\340\241\357\342\241\360\344\241" "\361\345\241\362\346\241\363\346\241\364\347\241\365\350\241\366\353\241" "\367\354\241\370\355\241\371\355\241\372\356\240\373\361\240\374\362\240" "\377\360\240\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\247\246\253\247\244\254\247\243\255\251\244\256\251\242\257\250\243" "\260\252\241\261\251\241\262\253\242\263\252\240\264\253\240\265\253\241" "\266\255\241\267\256\241\270\255\241\271\257\240\272\260\237\273\257\240" "\274\261\240\275\262\240\276\261\240\277\262\240\300\263\240\301\265\240" "\302\266\240\303\265\240\304\266\240\305\270\240\306\271\240\307\272\240" "\310\271\240\311\272\240\312\273\240\313\275\240\314\276\240\315\277\240" "\316\300\240\317\301\240\320\302\240\321\303\240\322\304\240\323\304\240" "\323\304\240\324\305\240\325\306\240\326\307\240\327\310\240\330\311\240" "\331\312\240\332\313\237\333\314\237\334\315\237\335\316\240\336\317\241" "\337\321\241\340\322\241\341\323\241\342\324\241\343\325\241\344\326\241" "\345\327\241\346\330\241\347\331\241\350\331\241\351\332\241\352\334\241" "\353\336\241\354\337\240\355\340\240\356\341\241\357\341\242\360\342\242" "\361\344\242\362\346\242\363\347\242\364\350\242\365\350\242\366\351\242" "\367\352\242\370\355\242\371\356\242\372\356\242\373\357\242\374\361\241" "\377\360\240\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\250\247\254\250\245\255\250\244\256\252\245\257\252\243" "\260\251\244\261\253\242\262\252\243\263\253\243\264\253\241\265\254\241" "\266\254\242\267\256\242\270\257\242\271\256\242\272\260\241\273\261\240" "\274\260\241\275\262\241\276\263\241\277\262\241\300\263\241\301\264\241" "\302\266\241\303\265\241\304\266\241\305\267\241\306\271\241\307\272\241" "\310\273\241\311\272\241\312\273\241\313\274\241\314\276\241\315\277\241" "\316\300\241\317\301\241\320\302\241\321\303\241\322\304\241\323\303\241" "\323\304\241\324\305\241\325\306\241\326\307\241\327\310\241\330\311\241" "\331\312\241\332\313\241\333\314\241\334\315\241\335\316\240\336\317\240" "\337\320\241\340\321\242\341\322\242\342\324\242\343\325\242\344\326\242" "\345\327\242\346\330\242\347\331\242\350\332\242\351\333\242\352\333\242" "\353\334\242\354\336\242\355\340\242\356\341\241\357\342\241\360\343\241" "\361\343\243\362\344\243\363\346\243\364\350\243\365\351\243\366\352\243" "\367\352\243\370\354\243\371\356\243\372\357\243\373\360\243\374\360\243" "\377\357\241\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\251\250\255\251\246\256\251\245\257\253\246" "\260\253\244\261\252\245\262\254\243\263\253\244\264\254\244\265\254\242" "\266\255\242\267\255\243\270\257\243\271\260\243\272\257\243\273\261\241" "\274\262\242\275\261\242\276\262\242\277\264\242\300\263\242\301\264\242" "\302\265\242\303\267\242\304\266\242\305\267\242\306\270\242\307\272\242" "\310\273\242\311\274\242\312\273\242\313\274\242\314\276\242\315\277\242" "\316\300\242\317\301\242\320\302\242\321\303\242\322\304\242\323\303\242" "\323\304\242\324\306\242\325\306\242\326\307\242\327\310\242\330\311\242" "\331\312\242\332\313\242\333\314\242\334\315\242\335\316\242\336\317\242" "\337\320\241\340\321\241\341\321\242\342\323\243\343\324\243\344\325\243" "\345\327\243\346\330\243\347\331\243\350\332\243\351\333\243\352\334\243" "\353\335\243\354\335\243\355\336\243\356\340\243\357\342\243\360\343\242" "\361\344\242\362\345\242\363\345\244\364\346\244\365\350\244\366\352\244" "\367\353\244\370\354\244\371\354\244\372\355\244\373\360\244\374\361\244" "\377\357\242\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\252\251\256\252\247\257\252\246" "\260\254\247\261\254\245\262\253\246\263\254\244\264\254\245\265\255\245" "\266\255\243\267\256\243\270\256\244\271\260\244\272\261\244\273\260\243" "\274\262\242\275\261\243\276\262\243\277\263\243\300\265\243\301\264\243" "\302\265\243\303\266\243\304\270\243\305\267\243\306\270\243\307\271\243" "\310\273\243\311\274\243\312\273\243\313\274\243\314\275\243\315\277\243" "\316\300\243\317\301\243\320\302\243\321\303\243\322\304\243\323\303\243" "\323\304\243\324\306\243\325\306\243\326\307\243\327\310\243\330\311\243" "\331\312\243\332\313\243\333\314\243\334\315\243\335\316\243\336\317\243" "\337\320\243\340\321\243\341\322\242\342\323\242\343\324\243\344\324\244" "\345\326\244\346\327\244\347\331\244\350\332\244\351\333\244\352\334\244" "\353\335\244\354\336\244\355\337\244\356\337\244\357\340\244\360\342\244" "\361\344\244\362\345\243\363\346\243\364\347\243\365\347\243\366\350\245" "\367\351\245\370\354\245\371\355\245\372\355\245\373\356\245\374\357\245" "\377\357\243\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\253\252\257\253\250" "\260\253\247\261\255\250\262\255\246\263\254\247\264\255\245\265\255\246" "\266\256\246\267\256\244\270\257\244\271\257\245\272\261\245\273\260\245" "\274\262\243\275\263\243\276\262\244\277\263\244\300\264\244\301\266\244" "\302\265\244\303\266\244\304\267\244\305\271\244\306\270\244\307\271\244" "\310\272\244\311\274\244\312\275\244\313\274\244\314\275\244\315\276\244" "\316\300\244\317\301\244\320\302\244\321\303\244\322\304\244\323\303\244" "\323\304\244\324\305\244\325\306\244\326\307\244\327\310\244\330\311\244" "\331\312\244\332\313\244\333\314\244\334\315\244\335\316\244\336\317\244" "\337\320\244\340\321\244\341\322\244\342\323\244\343\324\243\344\325\243" "\345\326\243\346\326\244\347\330\245\350\330\245\351\332\245\352\334\245" "\353\335\245\354\336\245\355\337\245\356\340\245\357\341\245\360\341\245" "\361\342\245\362\344\245\363\346\245\364\347\245\365\350\244\366\351\244" "\367\351\244\370\352\246\371\355\246\372\356\246\373\357\246\374\357\246" "\377\355\244\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\255\256\257\254\253" "\260\254\251\261\254\250\262\256\251\263\256\247\264\255\250\265\256\246" "\266\256\247\267\257\247\270\257\245\271\260\245\272\260\246\273\261\246" "\274\261\246\275\263\244\276\264\244\277\263\245\300\264\245\301\265\245" "\302\267\245\303\266\245\304\267\245\305\271\245\306\272\245\307\271\245" "\310\272\245\311\274\245\312\275\245\313\275\245\314\275\245\315\276\245" "\316\300\245\317\301\245\320\302\245\321\303\245\322\304\245\323\304\245" "\323\304\245\324\305\245\325\306\245\326\307\245\327\310\245\330\311\245" "\331\312\245\332\313\245\333\314\245\334\315\245\335\316\245\336\317\245" "\337\320\245\340\321\245\341\322\245\342\323\245\343\324\245\344\325\245" "\345\326\245\346\327\244\347\330\244\350\331\245\351\331\246\352\332\246" "\353\334\246\354\336\246\355\337\246\356\340\246\357\341\246\360\342\246" "\361\343\246\362\343\246\363\344\246\364\346\246\365\350\246\366\351\246" "\367\352\245\370\352\245\371\353\245\372\354\247\373\357\247\374\360\247" "\377\356\245\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\256\257" "\260\255\254\261\255\252\262\255\251\263\257\252\264\257\250\265\256\251" "\266\257\247\267\257\250\270\260\250\271\260\246\272\261\246\273\261\247" "\274\262\247\275\262\247\276\264\245\277\265\246\300\264\246\301\265\246" "\302\266\246\303\266\246\304\267\246\305\270\246\306\272\246\307\271\246" "\310\272\246\311\273\246\312\275\246\313\276\246\314\275\246\315\276\245" "\316\277\244\317\301\244\320\302\244\321\303\245\322\304\246\323\304\246" "\323\304\246\324\305\246\325\306\246\326\307\246\327\310\246\330\311\246" "\331\312\246\332\313\246\333\314\246\334\315\246\335\316\246\336\317\246" "\337\320\246\340\321\246\341\322\246\342\323\246\343\324\246\344\325\246" "\345\326\246\346\327\246\347\330\246\350\331\245\351\332\245\352\333\246" "\353\333\247\354\335\247\355\335\247\356\337\247\357\341\247\360\342\247" "\361\343\247\362\344\247\363\345\247\364\345\247\365\346\247\366\350\247" "\367\352\247\370\353\247\371\354\246\372\354\246\373\355\246\374\356\250" "\377\356\246\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\257\260\261\256\255\262\256\253\263\256\252\264\260\252\265\260\251" "\266\257\251\267\260\250\270\260\251\271\261\251\272\261\247\273\262\247" "\274\262\250\275\263\250\276\263\247\277\264\246\300\266\247\301\265\247" "\302\266\247\303\270\247\304\267\247\305\270\247\306\271\247\307\273\247" "\310\272\247\311\273\247\312\274\247\313\276\246\314\276\245\315\276\245" "\316\277\245\317\300\246\320\302\245\321\303\245\322\304\245\323\305\245" "\323\305\245\324\305\245\325\306\246\326\307\247\327\310\247\330\311\247" "\331\312\247\332\313\247\333\314\247\334\315\247\335\316\247\336\317\247" "\337\320\247\340\321\247\341\322\247\342\323\247\343\324\247\344\325\247" "\345\326\247\346\327\247\347\330\247\350\331\247\351\332\247\352\333\246" "\353\334\246\354\335\247\355\336\250\356\336\250\357\337\250\360\341\250" "\361\343\250\362\344\250\363\345\250\364\346\250\365\347\250\366\347\250" "\367\350\250\370\352\250\371\354\250\372\355\250\373\356\247\374\356\247" "\377\354\245\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\260\261\262\257\256\263\257\254\264\257\253\265\257\253" "\266\260\252\267\260\252\270\261\251\271\261\252\272\262\252\273\262\250" "\274\263\251\275\263\251\276\264\251\277\264\247\300\265\247\301\267\250" "\302\266\250\303\267\250\304\271\250\305\270\250\306\271\250\307\272\250" "\310\273\250\311\273\250\312\274\247\313\275\246\314\277\246\315\277\247" "\316\277\247\317\300\247\320\301\247\321\303\247\322\304\247\323\305\247" "\323\305\247\324\305\246\325\306\246\326\307\246\327\310\246\330\311\247" "\331\312\250\332\313\250\333\314\250\334\315\250\335\316\250\336\317\250" "\337\320\250\340\321\250\341\322\250\342\323\250\343\324\250\344\325\250" "\345\326\250\346\327\250\347\330\250\350\331\250\351\332\250\352\333\250" "\353\334\250\354\335\247\355\336\247\356\337\247\357\340\250\360\340\251" "\361\341\251\362\343\251\363\345\251\364\346\251\365\347\251\366\350\251" "\367\351\251\370\351\251\371\352\251\372\353\251\373\356\251\374\356\251" "\377\354\247\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\261\262\263\260\257\264\260\255\265\260\254" "\266\260\254\267\261\253\270\261\253\271\262\252\272\262\253\273\263\251" "\274\263\251\275\264\252\276\264\252\277\265\252\300\265\250\301\266\250" "\302\270\251\303\267\251\304\270\251\305\271\251\306\271\251\307\272\251" "\310\273\251\311\274\251\312\274\250\313\275\247\314\276\250\315\300\250" "\316\300\250\317\300\250\320\301\250\321\303\250\322\304\250\323\305\250" "\323\306\250\324\306\250\325\306\250\326\307\250\327\310\247\330\311\247" "\331\312\247\332\313\247\333\314\250\334\315\251\335\316\251\336\317\251" "\337\320\251\340\321\251\341\322\251\342\323\251\343\324\251\344\325\251" "\345\326\251\346\327\251\347\330\251\350\331\251\351\332\251\352\333\251" "\353\334\251\354\335\251\355\336\251\356\337\251\357\340\250\360\341\250" "\361\342\250\362\342\252\363\343\252\364\345\252\365\347\252\366\350\252" "\367\351\252\370\352\252\371\353\252\372\353\252\373\354\252\374\355\252" "\377\355\250\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\262\263\264\261\260\265\261\256" "\266\261\255\267\261\255\270\262\254\271\262\254\272\263\253\273\263\253" "\274\264\252\275\264\252\276\265\253\277\265\253\300\266\253\301\266\251" "\302\267\252\303\270\252\304\270\252\305\271\252\306\272\252\307\272\252" "\310\273\252\311\274\252\312\275\251\313\275\250\314\276\251\315\277\251" "\316\301\251\317\300\251\320\301\251\321\302\251\322\304\251\323\305\251" "\323\306\251\324\306\251\325\306\251\326\307\251\327\310\251\330\311\251" "\331\312\251\332\313\250\333\314\250\334\315\250\335\316\250\336\317\251" "\337\320\252\340\321\252\341\322\252\342\323\252\343\324\252\344\324\252" "\345\325\252\346\326\252\347\330\252\350\331\252\351\332\252\352\333\252" "\353\334\252\354\335\252\355\336\252\356\337\252\357\340\252\360\341\252" "\361\342\251\362\343\251\363\344\251\364\344\253\365\345\253\366\347\253" "\367\351\253\370\352\253\371\353\253\372\354\253\373\355\253\374\355\253" "\377\353\251\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\263\264\265\262\261" "\266\262\257\267\262\256\270\262\256\271\263\255\272\263\254\273\264\255" "\274\264\255\275\264\253\276\265\253\277\267\254\300\266\254\301\267\252" "\302\267\252\303\270\253\304\271\253\305\271\253\306\272\253\307\273\253" "\310\273\253\311\274\253\312\275\252\313\276\251\314\276\252\315\277\252" "\316\301\252\317\301\252\320\301\252\321\302\252\322\303\252\323\305\252" "\323\305\252\324\307\252\325\307\252\326\307\252\327\310\252\330\311\252" "\331\312\252\332\313\252\333\314\252\334\315\252\335\316\251\336\317\251" "\337\320\251\340\321\251\341\322\252\342\322\253\343\323\253\344\324\253" "\345\325\253\346\325\253\347\327\253\350\330\253\351\331\253\352\332\253" "\353\333\253\354\335\253\355\336\253\356\337\253\357\340\253\360\341\253" "\361\342\253\362\343\253\363\344\252\364\345\252\365\346\252\366\346\254" "\367\347\254\370\351\254\371\353\254\372\354\254\373\355\254\374\356\254" "\377\353\252\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\264\265" "\266\263\262\267\263\260\270\263\257\271\263\257\272\264\257\273\264\255" "\274\265\256\275\266\256\276\265\254\277\267\254\300\267\255\301\267\255" "\302\270\253\303\270\253\304\271\254\305\272\254\306\272\254\307\273\254" "\310\274\254\311\274\254\312\275\254\313\276\252\314\276\252\315\277\253" "\316\300\253\317\302\253\320\302\253\321\302\253\322\303\253\323\304\253" "\323\306\253\324\306\253\325\307\253\326\307\253\327\310\253\330\311\253" "\331\312\253\332\313\253\333\314\253\334\315\253\335\316\253\336\317\253" "\337\320\253\340\321\252\341\321\252\342\322\252\343\323\252\344\324\253" "\345\325\254\346\326\254\347\327\254\350\330\254\351\331\254\352\332\254" "\353\332\254\354\334\254\355\335\254\356\336\254\357\337\254\360\341\254" "\361\342\254\362\343\254\363\344\254\364\345\254\365\346\253\366\347\253" "\367\350\253\370\350\255\371\351\255\372\353\255\373\355\255\374\356\255" "\377\353\253\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\265\266\267\264\263\270\264\261\271\264\260\272\264\261\273\265\260" "\274\265\256\275\266\257\276\267\257\277\266\255\300\267\255\301\270\256" "\302\270\256\303\271\254\304\271\254\305\272\255\306\273\255\307\273\255" "\310\274\255\311\275\255\312\275\255\313\276\254\314\277\253\315\277\254" "\316\300\254\317\301\254\320\303\254\321\303\254\322\303\254\323\304\254" "\323\306\254\324\306\254\325\310\254\326\310\254\327\310\254\330\311\254" "\331\312\254\332\313\254\333\314\254\334\315\254\335\316\254\336\317\254" "\337\320\254\340\321\254\341\321\254\342\322\254\343\323\253\344\324\253" "\345\325\253\346\326\254\347\327\255\350\330\255\351\331\255\352\332\255" "\353\333\255\354\334\255\355\335\255\356\336\255\357\336\255\360\340\255" "\361\341\255\362\342\255\363\344\255\364\345\255\365\346\255\366\347\255" "\367\350\254\370\351\254\371\352\254\372\352\256\373\353\256\374\354\256" "\377\353\254\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\266\267\270\265\264\271\265\262\272\265\261\273\265\260" "\274\266\260\275\266\257\276\267\260\277\270\260\300\267\256\301\270\256" "\302\270\257\303\271\257\304\272\255\305\272\255\306\273\256\307\274\256" "\310\274\256\311\275\256\312\276\256\313\276\255\314\277\254\315\300\254" "\316\300\255\317\301\255\320\302\255\321\304\255\322\304\255\323\304\255" "\323\305\255\324\306\255\325\307\255\326\310\255\327\310\255\330\310\255" "\331\312\255\332\313\255\333\314\255\334\315\255\335\316\255\336\317\255" "\337\320\255\340\321\255\341\321\255\342\322\255\343\323\255\344\324\255" "\345\325\254\346\326\254\347\327\254\350\330\254\351\331\255\352\332\256" "\353\333\256\354\334\256\355\335\256\356\336\256\357\337\256\360\340\256" "\361\341\256\362\341\256\363\343\256\364\344\256\365\346\256\366\347\256" "\367\350\256\370\351\256\371\352\255\372\353\255\373\354\255\374\354\255" "\377\352\255\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\267\270\271\266\265\272\266\263\273\266\262" "\274\266\261\275\267\261\276\267\260\277\270\261\300\271\261\301\270\257" "\302\271\257\303\271\260\304\272\260\305\273\256\306\273\256\307\274\257" "\310\274\257\311\275\257\312\276\257\313\276\257\314\277\255\315\300\255" "\316\301\255\317\301\256\320\302\256\321\303\256\322\304\256\323\304\256" "\323\305\256\324\306\256\325\307\256\326\310\256\327\311\256\330\311\256" "\331\312\256\332\313\256\333\314\256\334\315\256\335\316\256\336\317\256" "\337\320\256\340\321\256\341\321\256\342\322\256\343\323\256\344\324\256" "\345\325\256\346\326\256\347\327\256\350\330\255\351\331\255\352\332\255" "\353\333\256\354\334\257\355\335\257\356\336\257\357\337\257\360\340\257" "\361\341\257\362\342\257\363\343\257\364\343\257\365\344\257\366\345\257" "\367\347\257\370\351\257\371\352\257\372\353\257\373\354\257\374\354\256" "\377\352\254\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\270\271\272\267\266\273\267\264" "\274\267\263\275\267\262\276\270\262\277\270\261\300\270\262\301\271\262" "\302\271\260\303\272\260\304\272\261\305\273\261\306\274\257\307\274\257" "\310\275\260\311\275\260\312\276\260\313\277\260\314\277\260\315\300\256" "\316\301\256\317\302\257\320\302\257\321\303\257\322\304\257\323\305\257" "\323\305\257\324\306\257\325\307\257\326\310\257\327\311\257\330\312\257" "\331\311\257\332\313\257\333\314\257\334\315\257\335\316\257\336\317\257" "\337\320\257\340\321\257\341\320\257\342\322\257\343\323\257\344\324\257" "\345\325\257\346\326\257\347\327\257\350\330\257\351\331\257\352\332\256" "\353\333\256\354\334\256\355\335\256\356\336\257\357\337\260\360\340\260" "\361\341\260\362\342\260\363\343\260\364\344\260\365\345\260\366\346\260" "\367\346\260\370\347\260\371\351\260\372\353\260\373\354\260\374\355\257" "\377\352\255\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\271\272\273\270\267" "\274\270\265\275\270\264\276\270\263\277\271\263\300\272\262\301\271\263" "\302\272\263\303\272\261\304\273\261\305\273\262\306\274\261\307\275\260" "\310\275\261\311\276\261\312\276\261\313\277\261\314\300\261\315\300\260" "\316\301\257\317\302\257\320\303\260\321\303\260\322\304\260\323\305\260" "\323\306\260\324\306\260\325\307\260\326\310\260\327\311\260\330\312\260" "\331\312\260\332\312\260\333\314\260\334\315\260\335\316\260\336\317\260" "\337\320\260\340\321\260\341\321\260\342\322\260\343\323\260\344\324\260" "\345\325\260\346\326\260\347\327\260\350\330\260\351\331\260\352\332\260" "\353\333\260\354\334\260\355\335\257\356\336\257\357\337\257\360\340\260" "\361\341\261\362\342\261\363\343\261\364\344\261\365\345\261\366\346\261" "\367\347\261\370\350\261\371\350\261\372\351\261\373\352\261\374\353\261" "\377\352\256\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\272\273" "\274\271\270\275\271\266\276\271\265\277\271\264\300\272\264\301\273\263" "\302\272\264\303\273\264\304\273\262\305\274\262\306\274\263\307\275\261" "\310\276\261\311\276\261\312\277\262\313\277\262\314\300\262\315\301\262" "\316\301\260\317\302\260\320\303\261\321\304\261\322\304\261\323\305\261" "\323\307\261\324\307\261\325\307\261\326\310\261\327\311\261\330\312\261" "\331\313\261\332\313\261\333\313\261\334\315\261\335\316\261\336\317\261" "\337\320\261\340\321\261\341\322\261\342\321\261\343\323\261\344\324\261" "\345\325\261\346\326\261\347\327\261\350\330\261\351\331\261\352\332\261" "\353\333\261\354\334\261\355\335\261\356\336\261\357\337\260\360\340\260" "\361\341\260\362\342\260\363\343\262\364\344\262\365\345\262\366\346\262" "\367\347\262\370\350\262\371\351\262\372\352\262\373\353\262\374\353\262" "\377\351\257\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\273\274\275\272\271\276\272\267\277\272\266\300\272\265\301\273\265" "\302\274\264\303\273\265\304\274\264\305\274\263\306\275\264\307\275\264" "\310\276\262\311\277\262\312\277\262\313\300\263\314\300\263\315\301\263" "\316\302\262\317\302\261\320\303\261\321\304\262\322\305\262\323\305\262" "\323\306\262\324\310\262\325\310\262\326\310\262\327\311\262\330\312\262" "\331\313\262\332\314\262\333\314\262\334\315\262\335\316\262\336\317\262" "\337\320\262\340\321\262\341\322\262\342\322\262\343\323\262\344\324\262" "\345\325\262\346\326\262\347\327\262\350\330\262\351\331\262\352\332\262" "\353\333\262\354\334\262\355\335\262\356\336\262\357\337\262\360\340\262" "\361\341\261\362\342\261\363\343\261\364\344\261\365\345\261\366\346\263" "\367\347\263\370\350\263\371\351\263\372\352\263\373\353\263\374\353\263" "\377\351\260\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\274\275\276\273\272\277\273\270\300\273\267\301\273\266" "\302\274\266\303\275\265\304\274\266\305\275\265\306\275\264\307\276\264" "\310\276\264\311\277\263\312\300\263\313\300\263\314\301\264\315\301\264" "\316\302\264\317\303\262\320\303\262\321\304\262\322\305\263\323\305\263" "\323\306\263\324\307\263\325\310\263\326\310\263\327\311\263\330\312\263" "\331\313\263\332\314\263\333\315\263\334\314\263\335\316\263\336\317\263" "\337\320\263\340\321\263\341\322\263\342\323\263\343\322\263\344\324\263" "\345\325\263\346\326\263\347\327\263\350\330\263\351\331\263\352\332\263" "\353\333\263\354\334\263\355\335\263\356\336\263\357\337\263\360\340\263" "\361\341\263\362\342\263\363\343\263\364\344\262\365\345\262\366\346\262" "\367\347\262\370\350\264\371\351\264\372\352\264\373\353\264\374\354\263" "\377\351\261\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\275\275\277\274\273\300\274\271\301\274\270" "\302\274\267\303\275\267\304\276\266\305\275\267\306\276\265\307\276\265" "\310\277\266\311\277\265\312\300\264\313\300\264\314\301\264\315\302\265" "\316\302\265\317\303\265\320\304\263\321\304\263\322\305\264\323\306\264" "\323\306\264\324\307\264\325\310\264\326\311\264\327\311\264\330\312\264" "\331\313\264\332\314\264\333\315\264\334\315\264\335\315\264\336\317\264" "\337\320\264\340\321\264\341\322\264\342\323\264\343\323\264\344\324\264" "\345\325\264\346\326\264\347\327\264\350\330\264\351\331\264\352\332\264" "\353\333\264\354\334\264\355\335\264\356\336\264\357\337\264\360\340\264" "\361\341\264\362\342\264\363\343\264\364\344\264\365\345\264\366\346\263" "\367\347\263\370\350\263\371\351\263\372\352\265\373\353\265\374\354\264" "\377\351\262\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\276\276\300\275\274\301\275\272" "\302\275\271\303\275\270\304\276\270\305\277\267\306\276\267\307\277\266" "\310\277\266\311\300\266\312\300\266\313\301\265\314\301\265\315\302\265" "\316\303\266\317\303\266\320\304\265\321\305\264\322\305\264\323\306\265" "\323\307\265\324\307\265\325\310\265\326\311\265\327\312\265\330\312\265" "\331\312\265\332\314\265\333\315\265\334\316\265\335\316\265\336\317\265" "\337\320\265\340\321\265\341\322\265\342\323\265\343\324\265\344\323\265" "\345\325\265\346\326\265\347\327\265\350\330\265\351\331\265\352\332\265" "\353\333\265\354\334\265\355\335\265\356\336\265\357\337\265\360\340\265" "\361\340\265\362\341\265\363\342\265\364\343\265\365\344\265\366\345\265" "\367\346\264\370\347\264\371\351\264\372\352\264\373\353\264\374\354\265" "\377\351\263\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\277\277\301\276\275" "\302\276\273\303\276\272\304\276\271\305\277\271\306\300\270\307\277\270" "\310\300\267\311\300\267\312\301\267\313\301\267\314\302\266\315\302\266" "\316\303\266\317\304\267\320\304\266\321\305\265\322\306\265\323\306\265" "\323\307\266\324\310\266\325\310\266\326\311\266\327\312\266\330\313\266" "\331\313\266\332\313\266\333\315\266\334\316\266\335\317\266\336\316\266" "\337\320\266\340\321\266\341\322\266\342\323\266\343\324\266\344\324\266" "\345\325\266\346\326\266\347\327\266\350\330\266\351\331\266\352\332\266" "\353\333\266\354\334\266\355\335\266\356\336\266\357\337\266\360\337\266" "\361\337\266\362\341\266\363\342\266\364\343\266\365\344\266\366\345\266" "\367\346\266\370\346\266\371\350\265\372\351\265\373\352\265\374\352\265" "\377\351\263\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\300\300" "\302\277\276\303\277\274\304\277\273\305\277\272\306\300\272\307\301\271" "\310\300\271\311\301\270\312\301\270\313\302\270\314\302\270\315\303\267" "\316\303\267\317\304\270\320\305\270\321\305\267\322\306\266\323\307\266" "\323\307\266\324\310\267\325\311\267\326\311\267\327\312\267\330\313\267" "\331\314\267\332\314\267\333\315\267\334\316\267\335\317\267\336\317\267" "\337\317\267\340\321\267\341\322\267\342\323\267\343\324\267\344\325\267" "\345\324\267\346\326\267\347\327\267\350\330\267\351\331\267\352\332\267" "\353\333\267\354\334\267\355\335\267\356\336\267\357\337\267\360\336\267" "\361\340\267\362\341\267\363\342\267\364\343\267\365\344\267\366\345\267" "\367\346\267\370\347\267\371\350\267\372\351\267\373\352\266\374\352\266" "\377\350\264\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\301\301\303\300\277\304\300\275\305\300\274\306\300\273\307\301\273" "\310\302\272\311\301\272\312\302\271\313\302\271\314\303\271\315\303\271" "\316\304\270\317\304\270\320\305\271\321\306\271\322\306\270\323\307\267" "\323\310\267\324\310\270\325\311\270\326\312\270\327\312\270\330\313\270" "\331\314\270\332\315\270\333\314\270\334\316\270\335\317\270\336\320\270" "\337\320\270\340\320\267\341\322\266\342\323\266\343\324\266\344\325\266" "\345\325\266\346\325\266\347\327\266\350\330\266\351\331\267\352\332\270" "\353\333\270\354\334\270\355\335\270\356\336\270\357\337\270\360\336\270" "\361\340\270\362\341\270\363\342\270\364\343\270\365\344\270\366\345\270" "\367\346\270\370\347\270\371\350\270\372\351\270\373\352\270\374\352\267" "\377\347\265\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\302\302\304\301\300\305\301\276\306\301\275\307\301\274" "\310\302\274\311\303\273\312\302\273\313\303\272\314\303\272\315\304\272" "\316\304\271\317\305\271\320\305\271\321\306\272\322\307\272\323\307\271" "\323\310\270\324\311\270\325\311\271\326\312\271\327\313\271\330\313\271" "\331\314\271\332\315\271\333\315\271\334\315\271\335\317\271\336\320\271" "\337\321\270\340\321\267\341\321\267\342\323\267\343\324\267\344\325\267" "\345\326\267\346\326\267\347\327\267\350\330\267\351\331\267\352\332\267" "\353\333\267\354\334\267\355\335\270\356\336\271\357\337\271\360\336\271" "\361\340\271\362\341\271\363\342\271\364\343\271\365\344\271\366\345\271" "\367\346\271\370\347\271\371\350\271\372\351\271\373\352\271\374\353\270" "\377\347\266\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\303\303\305\302\301\306\302\277\307\302\276" "\310\302\275\311\303\275\312\304\274\313\303\274\314\304\273\315\304\273" "\316\305\273\317\305\272\320\306\272\321\306\272\322\307\273\323\310\272" "\323\310\271\324\311\271\325\311\271\326\312\272\327\313\272\330\314\272" "\331\314\272\332\315\272\333\316\272\334\316\272\335\316\272\336\320\271" "\337\321\270\340\322\270\341\322\270\342\323\271\343\324\271\344\325\271" "\345\326\271\346\327\271\347\326\271\350\330\271\351\331\270\352\332\270" "\353\333\270\354\334\270\355\335\270\356\336\270\357\337\270\360\336\271" "\361\340\272\362\341\272\363\342\272\364\343\272\365\344\272\366\345\272" "\367\346\272\370\347\272\371\350\272\372\351\272\373\352\272\374\353\271" "\377\347\267\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\304\304\306\303\302\307\303\300" "\310\303\277\311\303\276\312\304\276\313\304\275\314\304\275\315\305\274" "\316\305\274\317\306\274\320\306\273\321\307\273\322\307\273\323\310\274" "\323\311\273\324\311\272\325\312\272\326\312\272\327\313\273\330\314\273" "\331\315\273\332\314\273\333\316\273\334\317\273\335\317\273\336\317\272" "\337\321\271\340\322\271\341\323\272\342\322\272\343\324\272\344\325\272" "\345\326\272\346\327\272\347\327\272\350\327\272\351\331\272\352\332\272" "\353\333\272\354\334\272\355\335\271\356\336\271\357\337\271\360\336\271" "\361\340\271\362\341\271\363\342\272\364\343\273\365\344\273\366\345\273" "\367\346\273\370\347\273\371\350\273\372\351\273\373\352\273\374\353\272" "\377\347\270\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\305\305\307\304\303" "\310\304\301\311\304\300\312\304\277\313\305\277\314\305\276\315\305\276" "\316\306\275\317\306\275\320\307\275\321\307\274\322\310\274\323\310\274" "\323\311\275\324\312\274\325\312\273\326\313\273\327\313\274\330\314\274" "\331\315\274\332\315\274\333\315\274\334\317\274\335\320\274\336\320\273" "\337\320\272\340\322\272\341\323\273\342\323\273\343\323\273\344\325\273" "\345\326\273\346\327\273\347\330\273\350\330\273\351\330\273\352\332\273" "\353\333\273\354\334\273\355\335\273\356\336\273\357\337\273\360\336\272" "\361\340\272\362\341\272\363\342\272\364\343\272\365\344\272\366\345\273" "\367\346\274\370\347\274\371\350\274\372\351\274\373\352\274\374\353\273" "\377\347\271\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\306\306" "\310\305\304\311\305\302\312\305\301\313\305\300\314\306\300\315\306\277" "\316\306\277\317\307\276\320\307\276\321\310\276\322\310\275\323\311\275" "\323\311\275\324\312\276\325\312\275\326\313\274\327\314\274\330\314\275" "\331\315\275\332\316\275\333\316\275\334\316\275\335\320\275\336\321\274" "\337\321\273\340\321\273\341\323\274\342\324\274\343\324\274\344\324\274" "\345\326\274\346\327\274\347\330\274\350\331\274\351\330\274\352\332\274" "\353\333\274\354\334\274\355\335\274\356\336\274\357\337\274\360\337\274" "\361\337\274\362\341\274\363\342\273\364\343\273\365\344\273\366\345\273" "\367\346\273\370\347\273\371\350\274\372\351\275\373\352\275\374\353\274" "\377\347\272\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\307\307\311\306\305\312\306\303\313\306\302\314\306\301\315\307\301" "\316\307\300\317\307\300\320\310\277\321\310\277\322\311\277\323\311\276" "\323\312\276\324\312\276\325\313\276\326\313\275\327\314\275\330\315\275" "\331\315\276\332\316\276\333\317\276\334\317\276\335\317\276\336\321\276" "\337\322\275\340\322\274\341\323\275\342\324\275\343\325\275\344\325\275" "\345\325\275\346\327\275\347\330\275\350\331\275\351\331\275\352\331\275" "\353\333\275\354\334\275\355\335\275\356\336\275\357\337\275\360\340\275" "\361\337\275\362\341\275\363\342\275\364\343\275\365\344\275\366\345\274" "\367\346\274\370\347\274\371\350\274\372\351\274\373\352\274\374\353\275" "\377\347\273\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\310\310\312\307\306\313\307\304\314\307\303\315\307\302" "\316\310\302\317\310\301\320\310\301\321\311\300\322\311\300\323\312\300" "\323\312\277\324\313\277\325\313\277\326\314\277\327\314\276\330\315\276" "\331\316\276\332\316\277\333\317\277\334\320\277\335\320\277\336\320\277" "\337\322\276\340\323\275\341\322\275\342\324\276\343\325\276\344\326\276" "\345\326\276\346\327\276\347\330\276\350\331\276\351\332\276\352\332\276" "\353\332\276\354\334\276\355\335\276\356\336\276\357\337\276\360\340\276" "\361\340\276\362\340\276\363\342\276\364\343\276\365\344\276\366\345\276" "\367\346\276\370\347\276\371\350\275\372\351\275\373\352\275\374\353\275" "\377\347\273\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\311\311\313\310\307\314\310\305\315\310\304" "\316\310\303\317\311\303\320\311\302\321\311\302\322\312\301\323\312\301" "\323\313\301\324\313\300\325\314\300\326\314\301\327\315\300\330\315\277" "\331\316\277\332\317\277\333\317\300\334\320\300\335\321\300\336\321\300" "\337\322\277\340\323\276\341\323\276\342\323\277\343\325\277\344\326\277" "\345\327\277\346\326\277\347\330\277\350\331\277\351\332\277\352\333\277" "\353\332\277\354\334\277\355\335\277\356\336\277\357\337\277\360\340\277" "\361\341\277\362\340\277\363\342\277\364\343\277\365\344\277\366\345\277" "\367\346\277\370\347\277\371\350\277\372\351\277\373\352\276\374\353\276" "\377\347\274\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\312\312\314\311\310\315\311\306" "\316\311\305\317\311\304\320\312\304\321\312\303\322\312\303\323\313\302" "\323\313\302\324\314\302\325\314\301\326\315\301\327\315\302\330\316\301" "\331\316\300\332\317\300\333\320\301\334\320\301\335\321\301\336\322\301" "\337\322\301\340\323\300\341\324\277\342\324\277\343\324\300\344\326\300" "\345\327\300\346\327\300\347\327\300\350\331\300\351\332\300\352\333\300" "\353\333\300\354\333\300\355\335\300\356\336\300\357\337\300\360\340\300" "\361\341\300\362\341\300\363\341\300\364\343\300\365\344\300\366\345\300" "\367\346\300\370\347\300\371\350\300\372\351\300\373\352\300\374\353\277" "\377\347\275\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\313\313\315\312\311" "\316\312\307\317\312\306\320\312\305\321\313\305\322\313\304\323\313\304" "\323\314\303\324\314\303\325\315\302\326\315\302\327\316\302\330\316\303" "\331\317\302\332\317\301\333\320\301\334\321\302\335\321\302\336\322\302" "\337\323\302\340\323\301\341\324\300\342\325\300\343\325\301\344\325\301" "\345\327\301\346\330\301\347\330\301\350\330\301\351\332\301\352\333\301" "\353\334\301\354\334\301\355\334\301\356\336\301\357\337\301\360\340\301" "\361\341\301\362\342\301\363\341\301\364\343\301\365\344\301\366\345\301" "\367\346\301\370\347\301\371\350\301\372\351\301\373\352\301\374\353\300" "\377\347\276\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\314\314" "\316\313\312\317\313\310\320\313\307\321\313\306\322\314\306\323\314\305" "\323\314\305\324\315\304\325\315\304\326\316\303\327\316\303\330\317\303" "\331\317\303\332\320\302\333\320\302\334\321\302\335\322\303\336\322\303" "\337\323\303\340\324\303\341\324\302\342\325\301\343\326\301\344\326\302" "\345\326\302\346\330\302\347\331\302\350\331\302\351\331\302\352\333\302" "\353\334\302\354\335\302\355\335\302\356\335\302\357\337\302\360\340\302" "\361\341\302\362\342\302\363\342\302\364\342\302\365\344\302\366\345\302" "\367\346\302\370\347\302\371\350\302\372\351\302\373\352\302\374\353\301" "\377\347\277\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\315\315\317\314\313\320\314\311\321\314\310\322\314\307\323\315\306" "\323\315\306\324\315\306\325\316\305\326\316\305\327\317\304\330\317\304" "\331\320\304\332\320\304\333\321\303\334\321\303\335\322\303\336\323\304" "\337\323\304\340\324\304\341\325\303\342\325\302\343\326\302\344\327\302" "\345\327\303\346\327\303\347\331\303\350\332\303\351\332\303\352\332\303" "\353\334\303\354\335\303\355\336\303\356\335\303\357\337\303\360\340\303" "\361\341\303\362\342\303\363\343\303\364\342\303\365\344\303\366\345\303" "\367\346\303\370\347\303\371\350\303\372\351\303\373\352\303\374\353\302" "\377\347\300\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\316\316\320\315\314\321\315\311\322\315\311\323\315\310" "\323\316\307\324\316\307\325\316\306\326\317\306\327\317\306\330\320\305" "\331\320\305\332\321\305\333\321\305\334\322\304\335\322\304\336\323\304" "\337\324\305\340\324\305\341\325\305\342\326\304\343\325\303\344\327\303" "\345\330\304\346\330\304\347\330\304\350\332\304\351\333\304\352\333\304" "\353\333\304\354\335\304\355\336\304\356\336\304\357\336\304\360\340\304" "\361\341\304\362\342\304\363\343\304\364\343\304\365\343\304\366\345\304" "\367\346\304\370\347\304\371\350\304\372\351\304\373\352\304\374\353\303" "\377\347\301\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\317\317\321\316\315\322\316\313\323\316\312" "\323\316\311\324\316\310\325\317\310\326\317\307\327\320\307\330\320\307" "\331\321\306\332\321\306\333\322\306\334\322\306\335\323\305\336\323\305" "\337\324\305\340\325\306\341\325\306\342\326\306\343\326\305\344\326\304" "\345\330\304\346\331\305\347\331\305\350\331\305\351\333\305\352\334\305" "\353\333\305\354\335\305\355\336\305\356\337\305\357\337\305\360\337\305" "\361\341\305\362\342\305\363\343\305\364\344\305\365\344\305\366\344\305" "\367\346\305\370\347\305\371\350\305\372\351\305\373\352\305\374\353\304" "\377\347\302\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\320\320\322\317\316\323\316\314" "\323\317\313\324\317\312\325\317\311\326\320\311\327\320\310\330\321\310" "\331\321\310\332\322\307\333\322\307\334\323\307\335\323\307\336\324\306" "\337\324\306\340\325\306\341\325\307\342\326\307\343\327\306\344\327\305" "\345\327\305\346\331\306\347\332\306\350\332\306\351\332\306\352\334\306" "\353\334\306\354\334\306\355\336\306\356\337\306\357\340\306\360\340\306" "\361\340\306\362\342\306\363\343\306\364\344\306\365\345\306\366\344\306" "\367\346\306\370\347\306\371\350\306\372\351\306\373\352\306\374\353\305" "\377\347\303\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\321\321\323\320\317" "\323\320\315\324\320\314\325\320\313\326\320\312\327\321\312\330\321\311" "\331\322\311\332\322\311\333\322\310\334\323\310\335\324\310\336\324\310" "\337\325\307\340\325\307\341\326\310\342\326\310\343\327\310\344\330\307" "\345\330\306\346\330\306\347\332\307\350\333\307\351\332\307\352\334\307" "\353\335\307\354\335\307\355\335\307\356\337\307\357\340\307\360\341\307" "\361\340\307\362\342\307\363\343\307\364\344\307\365\345\307\366\345\307" "\367\345\307\370\347\307\371\350\307\372\351\307\373\352\307\374\353\306" "\377\347\304\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\322\322" "\323\321\320\324\321\316\325\321\315\326\321\314\327\321\313\330\322\313" "\331\322\312\332\323\312\333\323\312\334\323\311\335\324\311\336\325\311" "\337\325\311\340\326\310\341\326\310\342\327\311\343\327\311\344\330\310" "\345\331\307\346\331\307\347\332\307\350\333\310\351\333\310\352\333\310" "\353\335\310\354\336\310\355\336\310\356\336\310\357\340\310\360\341\310" "\361\341\310\362\341\310\363\343\310\364\344\310\365\345\310\366\346\310" "\367\346\310\370\346\310\371\350\310\372\351\310\373\352\310\374\353\307" "\377\347\305\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\321\323\323\323" "\323\323\323\324\322\321\325\322\317\326\322\316\327\322\315\330\322\314" "\331\323\314\332\323\313\333\324\313\334\324\313\335\324\312\336\325\312" "\337\326\312\340\326\311\341\327\311\342\327\311\343\330\312\344\330\312" "\345\331\311\346\332\310\347\332\310\350\333\310\351\334\310\352\334\310" "\353\334\310\354\336\310\355\337\310\356\337\310\357\337\310\360\341\310" "\361\342\310\362\342\310\363\342\310\364\344\311\365\345\311\366\346\310" "\367\347\310\370\346\307\371\350\307\372\351\307\373\352\307\374\353\307" "\377\347\305\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\322" "\323\324\324\324\324\324\325\323\321\326\323\320\327\323\317\330\323\316" "\331\323\315\332\324\315\333\324\314\334\325\314\335\325\314\336\325\313" "\337\326\313\340\326\313\341\327\312\342\330\312\343\330\312\344\331\313" "\345\331\313\346\332\312\347\333\311\350\333\311\351\334\312\352\335\311" "\353\335\311\354\335\311\355\337\311\356\340\311\357\340\311\360\340\311" "\361\342\311\362\343\311\363\343\311\364\343\311\365\345\311\366\346\310" "\367\347\310\370\347\310\371\347\310\372\351\310\373\352\310\374\353\310" "\377\347\305\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\325\325\325\325\325\326\324\322\327\324\321\330\324\320" "\331\324\317\332\324\316\333\325\316\334\325\315\335\326\315\336\326\315" "\337\326\314\340\327\314\341\327\314\342\330\313\343\331\313\344\331\313" "\345\332\313\346\332\314\347\333\313\350\334\312\351\334\312\352\335\312" "\353\336\312\354\336\312\355\336\312\356\340\312\357\341\312\360\341\312" "\361\341\312\362\343\312\363\344\312\364\344\312\365\344\311\366\346\311" "\367\347\311\370\350\311\371\350\311\372\350\311\373\352\311\374\353\311" "\377\347\307\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\326\326\326\326\326\327\325\323\330\325\322" "\331\325\321\332\325\320\333\325\317\334\326\317\335\326\316\336\327\316" "\337\327\316\340\327\315\341\330\315\342\330\315\343\331\314\344\332\314" "\345\332\314\346\333\314\347\333\314\350\334\313\351\335\313\352\335\313" "\353\336\313\354\337\313\355\337\313\356\337\313\357\341\313\360\342\313" "\361\341\313\362\343\313\363\344\313\364\345\312\365\344\312\366\346\312" "\367\347\312\370\350\312\371\351\312\372\350\312\373\352\312\374\353\312" "\377\347\310\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\327\327\327\327\327\330\326\324" "\331\326\323\332\326\322\333\326\321\334\326\320\335\327\320\336\327\317" "\337\330\317\340\330\317\341\330\316\342\331\316\343\331\316\344\332\315" "\345\333\315\346\333\315\347\334\315\350\334\315\351\335\314\352\336\314" "\353\336\314\354\337\314\355\340\314\356\340\314\357\340\314\360\342\314" "\361\342\314\362\342\314\363\344\314\364\345\312\365\345\313\366\345\313" "\367\347\313\370\350\313\371\351\313\372\351\313\373\351\313\374\352\313" "\377\347\311\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\330\330\330\330\330" "\331\327\325\332\327\324\333\327\323\334\327\322\335\327\321\336\330\321" "\337\330\320\340\331\320\341\331\317\342\331\317\343\332\317\344\332\317" "\345\333\316\346\334\316\347\334\316\350\335\316\351\335\316\352\336\315" "\353\337\315\354\337\315\355\340\315\356\341\315\357\341\315\360\342\315" "\361\343\315\362\343\315\363\343\315\364\345\314\365\346\314\366\346\314" "\367\346\314\370\350\314\371\351\314\372\352\314\373\352\314\374\352\314" "\377\347\312\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\331" "\331\331\331\332\330\326\333\330\325\334\330\324\335\330\323\336\330\322" "\337\331\322\340\331\321\341\331\321\342\332\320\343\332\320\344\333\320" "\345\333\320\346\334\317\347\334\317\350\335\317\351\336\317\352\336\317" "\353\337\316\354\340\316\355\340\316\356\341\316\357\342\316\360\342\316" "\361\343\316\362\344\316\363\344\316\364\344\316\365\346\315\366\347\315" "\367\347\315\370\347\315\371\351\315\372\352\315\373\353\315\374\353\315" "\377\347\313\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\332\332\332\332\333\331\327\334\331\326\335\331\325\336\331\324" "\337\331\323\340\332\323\341\332\322\342\332\322\343\333\321\344\333\321" "\345\334\321\346\334\321\347\335\320\350\335\320\351\336\320\352\337\320" "\353\337\317\354\340\317\355\341\317\356\340\317\357\342\317\360\343\317" "\361\342\317\362\344\317\363\345\317\364\345\317\365\345\316\366\347\316" "\367\350\316\370\350\316\371\350\316\372\352\316\373\353\316\374\353\316" "\377\347\314\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\333\333\333\333\334\332\330\335\332\327\336\332\326" "\337\332\325\340\332\324\341\333\324\342\333\323\343\333\323\344\334\322" "\345\334\322\346\335\322\347\335\321\350\336\321\351\336\321\352\337\321" "\353\340\321\354\340\320\355\341\317\356\341\320\357\341\320\360\343\320" "\361\343\320\362\343\320\363\345\320\364\346\320\365\346\317\366\346\317" "\367\350\317\370\351\317\371\351\317\372\351\317\373\353\317\374\354\317" "\377\350\315\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\334\334\334\334\335\333\331\336\333\330" "\337\333\327\340\333\326\341\333\325\342\334\325\343\334\324\344\334\324" "\345\335\323\346\335\323\347\336\323\350\336\322\351\337\322\352\337\322" "\353\340\322\354\341\322\355\341\321\356\342\320\357\342\321\360\343\321" "\361\344\321\362\344\321\363\344\321\364\346\321\365\347\321\366\347\320" "\367\347\320\370\351\320\371\352\320\372\351\320\373\353\320\374\354\320" "\377\351\316\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\335\335\335\335\336\334\332" "\337\334\331\340\334\330\341\334\327\342\334\326\343\335\326\344\335\325" "\345\335\325\346\336\324\347\336\324\350\337\324\351\337\323\352\340\322" "\353\340\323\354\341\323\355\342\323\356\342\322\357\343\322\360\343\322" "\361\344\322\362\345\322\363\345\322\364\345\322\365\347\322\366\350\321" "\367\347\321\370\351\321\371\352\321\372\352\321\373\352\321\374\353\321" "\377\351\317\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\336\336\336\336" "\337\335\333\340\335\332\341\335\331\342\335\330\343\335\327\344\336\327" "\345\336\326\346\336\326\347\337\325\350\337\325\351\340\325\352\340\324" "\353\341\323\354\341\324\355\342\324\356\343\324\357\343\322\360\344\323" "\361\344\323\362\345\323\363\346\323\364\346\323\365\346\323\366\350\322" "\367\350\322\370\350\322\371\352\322\372\353\322\373\353\322\374\353\322" "\377\351\320\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\337" "\337\337\337\340\336\334\341\336\333\342\336\332\343\336\331\344\336\330" "\345\337\330\346\337\327\347\337\327\350\340\326\351\340\326\352\341\326" "\353\341\325\354\342\324\355\342\325\356\343\325\357\344\324\360\344\323" "\361\345\324\362\345\324\363\346\324\364\347\324\365\347\324\366\350\324" "\367\351\323\370\351\323\371\351\323\372\353\323\373\354\323\374\353\323" "\377\350\321\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\340\340\340\340\341\337\335\342\337\334\343\337\333\344\337\332" "\345\337\331\346\340\331\347\340\330\350\340\330\351\341\327\352\341\327" "\353\342\327\354\342\326\355\343\325\356\343\326\357\344\326\360\345\325" "\361\344\324\362\346\325\363\346\325\364\347\325\365\350\325\366\350\325" "\367\351\324\370\352\323\371\352\324\372\352\324\373\354\324\374\355\324" "\377\351\322\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\341\341\341\341\342\340\336\343\340\335\344\340\334" "\345\340\333\346\340\332\347\341\332\350\341\331\351\341\331\352\342\330" "\353\342\330\354\343\330\355\343\327\356\344\326\357\344\327\360\345\327" "\361\345\326\362\346\325\363\347\326\364\347\326\365\350\326\366\351\326" "\367\351\326\370\352\325\371\353\324\372\353\325\373\353\325\374\354\325" "\377\352\323\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\342\342\342\342\343\341\337\344\341\335" "\345\341\335\346\341\334\347\341\333\350\342\333\351\342\332\352\342\332" "\353\343\331\354\343\331\355\344\331\356\344\330\357\345\327\360\345\330" "\361\346\330\362\346\327\363\347\326\364\350\327\365\350\327\366\351\327" "\367\352\327\370\352\327\371\353\325\372\354\326\373\354\326\374\354\326" "\377\352\324\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\343\343\343\343\344\342\340" "\345\341\336\346\342\336\347\342\335\350\342\334\351\343\334\352\343\333" "\353\343\333\354\344\332\355\344\332\356\345\332\357\345\331\360\346\331" "\361\346\331\362\347\331\363\347\330\364\350\327\365\351\330\366\351\330" "\367\352\330\370\353\330\371\353\327\372\354\326\373\355\327\374\354\327" "\377\352\325\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\344\344\344\344" "\345\343\341\346\342\337\347\343\337\350\343\336\351\343\335\352\344\335" "\353\344\334\354\344\334\355\345\333\356\345\333\357\346\333\360\346\331" "\361\347\332\362\347\332\363\350\332\364\350\330\365\351\331\366\352\331" "\367\352\331\370\353\331\371\354\331\372\354\330\373\355\327\374\356\330" "\377\353\326\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\345" "\345\345\345\346\344\342\347\343\340\350\344\340\351\343\337\352\344\336" "\353\345\336\354\345\335\355\345\335\356\346\334\357\346\334\360\347\333" "\361\347\332\362\350\333\363\350\333\364\351\332\365\351\331\366\352\332" "\367\353\332\370\353\332\371\354\332\372\355\332\373\354\330\374\355\331" "\377\353\327\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\346\346\346\346\347\345\343\350\344\341\351\345\341\352\344\340" "\353\345\337\354\346\337\355\346\336\356\346\336\357\347\335\360\347\335" "\361\350\334\362\350\333\363\351\334\364\351\334\365\352\333\366\352\332" "\367\353\333\370\354\333\371\354\333\372\355\333\373\355\332\374\355\331" "\377\353\327\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\347\347\347\347\350\346\344\351\345\342\352\346\342" "\353\345\341\354\346\340\355\347\337\356\347\337\357\347\337\360\350\336" "\361\350\336\362\351\335\363\351\334\364\352\335\365\352\335\366\353\334" "\367\353\333\370\354\334\371\355\334\372\355\334\373\356\334\374\355\333" "\377\353\330\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\350\350\350\350\351\347\345\352\346\343" "\353\347\343\354\346\342\355\347\341\356\350\340\357\350\340\360\350\340" "\361\351\336\362\351\337\363\352\336\364\352\335\365\353\336\366\353\336" "\367\354\335\370\354\334\371\355\335\372\356\335\373\356\335\374\356\335" "\377\354\331\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\350\346" "\353\347\344\354\350\344\355\347\343\356\350\342\357\351\341\360\351\341" "\361\351\340\362\352\340\363\352\340\364\353\337\365\353\336\366\354\337" "\367\354\337\370\355\336\371\355\335\372\356\336\373\357\336\374\356\336" "\377\354\332\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\351\347\354\350\345\355\351\345\356\350\344\357\351\342\360\352\342" "\361\352\342\362\352\341\363\353\341\364\353\341\365\354\340\366\354\337" "\367\355\340\370\355\340\371\356\337\372\356\336\373\357\337\374\356\337" "\377\354\334\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\352\350\355\351\346\356\352\346\357\351\345\360\352\343" "\361\353\343\362\353\343\363\353\342\364\354\342\365\354\342\366\355\341" "\367\355\340\370\356\341\371\356\341\372\357\337\373\357\340\374\357\340" "\377\355\335\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\353\351\356\352\347\357\353\347\360\352\346" "\361\352\345\362\354\344\363\354\344\364\354\343\365\355\343\366\355\343" "\367\356\342\370\356\341\371\357\342\372\357\341\373\360\340\374\357\341" "\377\356\336\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\354\352\357\353\350\360\354\350" "\361\353\347\362\353\346\363\355\345\364\355\345\365\355\344\366\356\344" "\367\356\344\370\357\343\371\357\343\372\360\343\373\360\342\374\360\341" "\377\356\337\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\355\353\360\354\352" "\361\355\350\362\354\350\363\354\347\364\356\346\365\356\346\366\356\345" "\367\357\345\370\357\345\371\360\344\372\360\344\373\361\344\374\360\342" "\377\357\340\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\356\354" "\361\355\353\362\356\351\363\355\351\364\355\350\365\357\347\366\357\347" "\367\357\346\370\360\346\371\360\346\372\361\345\373\361\345\374\361\345" "\377\357\342\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\357\355\362\356\354\363\357\352\364\356\352\365\356\351\366\356\350" "\367\360\350\370\360\347\371\361\347\372\361\347\373\362\346\374\361\346" "\377\360\343\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\357\356\363\357\355\364\360\353\365\360\353\366\357\352" "\367\357\351\370\361\351\371\361\350\372\362\350\373\361\350\374\361\346" "\377\360\344\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\360\357\364\360\356\365\361\354\366\361\354" "\367\360\353\370\360\352\371\362\352\372\362\351\373\363\351\374\363\347" "\377\360\345\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\361\360\365\361\355\366\362\354" "\367\362\355\370\361\354\371\361\353\372\363\353\373\363\352\374\363\352" "\377\361\347\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\362\361\366\362\356" "\367\363\355\370\363\356\371\362\355\372\362\354\373\364\354\374\363\352" "\377\363\350\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\363\362" "\367\363\357\370\364\356\371\364\357\372\363\356\373\363\355\374\364\355" "\377\363\352\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\364\363\370\364\360\371\365\357\372\365\360\373\364\357\374\364\355" "\377\364\354\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\365\364\371\365\361\372\366\360\373\366\361\374\365\360" "\377\363\355\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\370\370\371\366\365\372\366\362\373\367\361\374\367\362" "\377\365\357\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\370\370\371\371\371\372\367\366\373\367\363\374\370\362" "\377\366\361\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\370\370\371\371\371\372\372\372\373\370\367\374\370\364" "\377\367\362\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\370\370\371\371\371\372\372\372\373\373\373\374\371\367" "\377\370\364\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\370\370\371\371\371\372\372\372\373\373\373\374\374\374" "\377\372\370\002\002\002\003\003\003\002\002\002\004\004\004\005\005\003\006\006\005\007\007\006\010\010\007\011\011\010\012" "\010\011\013\012\012\014\013\013\015\014\014\016\015\015\017\016\014\020\017\016\021\020\017\022" "\021\020\023\022\021\024\023\022\025\024\023\026\025\024\027\026\025\030\027\026\031\030\025\032" "\031\026\033\032\030\034\033\031\035\034\032\036\033\033\037\034\034\040\036\035!\037\036\"\040" "\037#!\036$\"\037%#!&$\"'%#(&$)'%*(&*)'+)(,*(-+(.,)/-*\060.+\061/,\062/-\063\060" ".\064\061/\065\062\060\066\063\061\067\064\061\070\065\062\071\066\063:\067\064;\070\065<\071\066" "=:\067>;\070?<\071@=:A>\071B?;C@<DA=EB>FA?GC@HDAIEBJFCKGBLHDMIENJFOKGPLHQMIR" "NJSOKTPLUQKVRMWSNXTOYUPZTQ[VR\\WS]XT^YU_ZT`[Va\\Wb]Xc^Yd_Ze`[fa\\gb]hc^i" "d]je^kf`lgamhbngcohdpjeqkfrlgsmftnguoivpjwqkxrlysmztn{uo|vp}wo~xp\177wo\177" "|y\200\201\202\201\201\201\202\202\202\203\203\203\204\204\204\205\205\205" "\206\206\206\207\207\207\210\210\210\211\211\211\212\212\212\213\213\213" "\214\214\214\215\215\215\216\216\216\217\217\217\220\220\220\221\221\221" "\222\222\222\223\223\223\224\224\224\225\225\225\226\226\226\227\227\227" "\230\230\230\231\231\231\232\232\232\233\233\233\234\234\234\235\235\235" "\236\236\236\237\237\237\240\240\240\241\241\241\242\242\242\243\243\243" "\244\244\244\245\245\245\246\246\246\247\247\247\250\250\250\251\251\251" "\252\252\252\253\253\253\254\254\254\255\255\255\256\256\256\257\257\257" "\260\260\260\261\261\261\262\262\262\263\263\263\264\264\264\265\265\265" "\266\266\266\267\267\267\270\270\270\271\271\271\272\272\272\273\273\273" "\274\274\274\275\275\275\276\276\276\277\277\277\300\300\300\301\301\301" "\302\302\302\303\303\303\304\304\304\305\305\305\306\306\306\307\307\307" "\310\310\310\311\311\311\312\312\312\313\313\313\314\314\314\315\315\315" "\316\316\316\317\317\317\320\320\320\321\321\321\322\322\322\323\323\323" "\323\323\323\324\324\324\325\325\325\326\326\326\327\327\327\330\330\330" "\331\331\331\332\332\332\333\333\333\334\334\334\335\335\335\336\336\336" "\337\337\337\340\340\340\341\341\341\342\342\342\343\343\343\344\344\344" "\345\345\345\346\346\346\347\347\347\350\350\350\351\351\351\352\352\352" "\353\353\353\354\354\354\355\355\355\356\356\356\357\357\357\360\360\360" "\361\361\361\362\362\362\363\363\363\364\364\364\365\365\365\366\366\366" "\367\367\367\370\370\370\371\371\371\372\372\372\373\373\373\374\374\374" "\377\375\374", };
the_stack_data/1100133.c
#include <stdio.h> #include <math.h> int main(){ int a = 0, i = 0; scanf("%d", &a); for(i = 1; i <= a; i++){ printf("%d %d %d\n", i, i*i, i*i*i); } return 0; }
the_stack_data/96215.c
/* * Copyright (c) 2013 The Native Client Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* * This file is for linking into pexes when C++ exception handling is * disabled. libstdc++ expects to be able to call _Unwind_*() * functions, which are normally provided by libgcc_eh, which is not * accessible in PNaCl's stable ABI. This file provides stubs for the * _Unwind_*() functions which just abort(). */ #include <stdlib.h> #include <unistd.h> /* * unwind.h will generate static definitions of some of the functions when * the __arm__ macro is defined but we want to provide our own, exported * stubs because this will be used as portable bitcode. */ #undef __arm__ #include <unwind.h> #define STUB \ char msg1[] = "Aborting: "; \ char msg2[] = " called (C++ exception handling is disabled)\n"; \ write(2, msg1, sizeof(msg1) - 1); \ write(2, __func__, sizeof(__func__) - 1); \ write(2, msg2, sizeof(msg2) - 1); \ abort(); void _Unwind_DeleteException(struct _Unwind_Exception *e) { STUB } _Unwind_Ptr _Unwind_GetRegionStart(struct _Unwind_Context *c) { STUB } _Unwind_Ptr _Unwind_GetDataRelBase(struct _Unwind_Context *c) { STUB } _Unwind_Word _Unwind_GetGR(struct _Unwind_Context *c, int i) { STUB } _Unwind_Ptr _Unwind_GetIP(struct _Unwind_Context *c) { STUB } _Unwind_Ptr _Unwind_GetIPInfo(struct _Unwind_Context *c, int *i) { STUB } _Unwind_Ptr _Unwind_GetTextRelBase(struct _Unwind_Context *c) { STUB } void *_Unwind_GetLanguageSpecificData(struct _Unwind_Context *c) { STUB } void _Unwind_SetGR(struct _Unwind_Context *c, int i, _Unwind_Word w) { STUB } void _Unwind_SetIP(struct _Unwind_Context *c, _Unwind_Ptr p) { STUB } void _Unwind_PNaClSetResult0(struct _Unwind_Context *c, _Unwind_Word w) { STUB } void _Unwind_PNaClSetResult1(struct _Unwind_Context *c, _Unwind_Word w) { STUB } _Unwind_Reason_Code _Unwind_RaiseException(struct _Unwind_Exception *e) { STUB } _Unwind_Reason_Code _Unwind_Resume_or_Rethrow(struct _Unwind_Exception *e) { STUB } void _Unwind_Resume(struct _Unwind_Exception *e) { STUB } _Unwind_Word _Unwind_GetCFA(struct _Unwind_Context *c) { STUB } _Unwind_Reason_Code _Unwind_Backtrace(_Unwind_Trace_Fn fn, void *p) { STUB }
the_stack_data/154827787.c
#include <stdio.h> int main(void) { double sum, n; sum = 0.0; printf("this program sums a series of doubles.\n"); printf("Enter doubles (0.0 to terminate): "); do { scanf("%lf", &n); sum += n; } while (n != 0.0); printf("the sum is: %.4f\n", sum); return 0; }
the_stack_data/59511836.c
/* { dg-do compile } */ /* { dg-options "-std=gnu99" } */ typedef float decimal32 __attribute__ ((mode (SD))); typedef float decimal64 __attribute__ ((mode (DD))); typedef float decimal128 __attribute__ ((mode (TD))); int ssize[sizeof (decimal32) == 4 ? 1 : -1]; int dsize[sizeof (decimal64) == 8 ? 1 : -1]; int tsize[sizeof (decimal128) == 16 ? 1 : -1]; int salign = __alignof (decimal32); int dalign = __alignof (decimal64); int talign = __alignof (decimal128);
the_stack_data/206394053.c
/* $Id: addr_is_reserved.c,v 1.4 2021/03/02 23:40:32 nanard Exp $ */ /* vim: tabstop=4 shiftwidth=4 noexpandtab * Project : miniupnp * Web : http://miniupnp.free.fr/ or https://miniupnp.tuxfamily.org/ * Author : Thomas BERNARD * copyright (c) 2005-2021 Thomas Bernard * This software is subjet to the conditions detailed in the * provided LICENSE file. */ #ifdef _WIN32 /* Win32 Specific includes and defines */ #include <winsock2.h> #include <ws2tcpip.h> #if !defined(_MSC_VER) #include <stdint.h> #else /* !defined(_MSC_VER) */ typedef unsigned long uint32_t; #endif /* !defined(_MSC_VER) */ #else /* _WIN32 */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #endif /* _WIN32 */ /* List of IP address blocks which are private / reserved and therefore not suitable for public external IP addresses */ #define IP(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + (d)) #define MSK(m) (32-(m)) static const struct { uint32_t address; uint32_t rmask; } reserved[] = { { IP( 0, 0, 0, 0), MSK( 8) }, /* RFC1122 "This host on this network" */ { IP( 10, 0, 0, 0), MSK( 8) }, /* RFC1918 Private-Use */ { IP(100, 64, 0, 0), MSK(10) }, /* RFC6598 Shared Address Space */ { IP(127, 0, 0, 0), MSK( 8) }, /* RFC1122 Loopback */ { IP(169, 254, 0, 0), MSK(16) }, /* RFC3927 Link-Local */ { IP(172, 16, 0, 0), MSK(12) }, /* RFC1918 Private-Use */ { IP(192, 0, 0, 0), MSK(24) }, /* RFC6890 IETF Protocol Assignments */ { IP(192, 0, 2, 0), MSK(24) }, /* RFC5737 Documentation (TEST-NET-1) */ { IP(192, 31, 196, 0), MSK(24) }, /* RFC7535 AS112-v4 */ { IP(192, 52, 193, 0), MSK(24) }, /* RFC7450 AMT */ { IP(192, 88, 99, 0), MSK(24) }, /* RFC7526 6to4 Relay Anycast */ { IP(192, 168, 0, 0), MSK(16) }, /* RFC1918 Private-Use */ { IP(192, 175, 48, 0), MSK(24) }, /* RFC7534 Direct Delegation AS112 Service */ { IP(198, 18, 0, 0), MSK(15) }, /* RFC2544 Benchmarking */ { IP(198, 51, 100, 0), MSK(24) }, /* RFC5737 Documentation (TEST-NET-2) */ { IP(203, 0, 113, 0), MSK(24) }, /* RFC5737 Documentation (TEST-NET-3) */ { IP(224, 0, 0, 0), MSK( 4) }, /* RFC1112 Multicast */ { IP(240, 0, 0, 0), MSK( 4) }, /* RFC1112 Reserved for Future Use + RFC919 Limited Broadcast */ }; #undef IP #undef MSK /** * @return 1 or 0 */ int addr_is_reserved(const char * addr_str) { uint32_t addr_n, address; size_t i; #if defined(_WIN32) && (!defined(_WIN32_WINNT_VISTA) || (_WIN32_WINNT < _WIN32_WINNT_VISTA)) addr_n = inet_addr(addr_str); if (addr_n == INADDR_NONE) return 1; #else /* was : addr_n = inet_addr(addr_str); */ if (inet_pton(AF_INET, addr_str, &addr_n) <= 0) { /* error */ return 1; } #endif address = ntohl(addr_n); for (i = 0; i < sizeof(reserved)/sizeof(reserved[0]); ++i) { if ((address >> reserved[i].rmask) == (reserved[i].address >> reserved[i].rmask)) return 1; } return 0; }
the_stack_data/167331302.c
void parallel03() { double x[10]; double y[10]; int i; y[0] = 0.; for(i=1; i<10; i++) { x[i] = (double) i; y[i] = y[i-1] + x[i]; } }
the_stack_data/983485.c
static const int vs_total_ac_bits = 2680; typedef struct EncBlockInfo { short mb[64]; unsigned char next[64]; } EncBlockInfo; inline void dv_guess_qnos(EncBlockInfo* blks, int* qnos) { int size[5]; int j, k, a, prev; EncBlockInfo* b; for(a=2; a==2 || vs_total_ac_bits < size[0]; a+=a){ for (j=0; j<6*5; j++, b++) { for (k= b->next[prev]; k<64; k= b->next[k]) { if(b->mb[k] < a && b->mb[k] > -a){ b->next[prev] = b->next[k]; } else{ prev = k; } } } } }
the_stack_data/9112.c
/* A program to copy its input to its output, replacing each string of one or more blanks by a single blank */ #include <stdio.h> #define INBLANK 1 #define OUTBLANK 0 main() { int c, state; state = OUTBLANK; while ((c = getchar()) != EOF) { if (c == ' ') state = INBLANK; else if (state == INBLANK) { printf(" %c", c); state = OUTBLANK; } else printf("%c", c); } }
the_stack_data/51015.c
// Servidor Local #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <signal.h> #include <sys/socket.h> #include <sys/un.h> char socket_name[50]; int socket_id; void sigint_handler(int signum); void print_client_message(int client_socket); void end_server(void); int main (int argc, char* const argv[]) { struct sockaddr socket_struct; if (argc < 2) { puts(" Este programa cria um servidor local "); puts(" no caminho especificado pelo usuario."); puts(" Para permitir que o cliente comunique-se"); puts(" com este servidor, o servidor deve ser"); puts(" executado inicialmente com um caminho definido,"); puts(" e o cliente devera ser executado em outra"); puts(" janela ou em outra aba do terminal, utilizando"); puts(" o mesmo caminho. O servidor escreve na tela"); puts(" todo texto enviado pelo cliente. Se o cliente"); puts(" transmitir o texto \"sair\", o servidor se"); puts(" encerra. Se o usuario pressionar CTRL-C,"); puts(" o servidor tambem se encerra."); puts(" Modo de Uso:"); printf(" %s <caminho_do_socket>\n", argv[0]); printf(" Exemplo: %s /tmp/socket1\n", argv[0]); exit(1); } else strcpy(socket_name, argv[1]); fprintf(stderr, "Definindo o tratamento de SIGINT... "); signal(SIGINT, sigint_handler); fprintf(stderr, "Feito!\n"); fprintf(stderr, "Abrindo o socket local... "); socket_id = socket(PF_LOCAL, SOCK_STREAM, 0); fprintf(stderr, "Feito!\n"); fprintf(stderr, "Ligando o socket ao endereco local \"%s\"... ", socket_name); socket_struct.sa_family = AF_LOCAL; strcpy(socket_struct.sa_data, socket_name); bind(socket_id, &socket_struct, sizeof(socket_struct)); fprintf(stderr, "Feito!\n"); fprintf(stderr, "Tornando o socket passivo (para virar um servidor)... "); listen(socket_id, 10); fprintf(stderr, "Feito!\n"); while(1) { struct sockaddr cliente; int socket_id_cliente; socklen_t cliente_len; fprintf(stderr, "Aguardando a conexao de um cliente... "); socket_id_cliente = accept(socket_id, &cliente, &cliente_len); fprintf(stderr, "Feito!\n"); fprintf(stderr, "Obtendo a informacao transmitida pelo cliente..."); print_client_message(socket_id_cliente); fprintf(stderr, "Feito!\n"); fprintf(stderr, "Fechando a conexao com o cliente... "); close(socket_id_cliente); fprintf(stderr, "Feito!\n"); } return 0; } void sigint_handler(int signum) { fprintf(stderr, "\nRecebido o sinal CTRL+C... vamos desligar o servidor!\n"); end_server(); } void print_client_message(int client_socket) { int length; char* text; fprintf(stderr, "\nMensagem enviada pelo cliente tem "); read(client_socket, &length, sizeof (length)); fprintf(stderr, "%d bytes.", length); text = (char*) malloc (length); read(client_socket, text, length); fprintf(stderr,"\n\n Mensagem = %s\n\n", text); if (!strcmp (text, "sair")) { free (text); fprintf(stderr, "Cliente pediu para o servidor fechar.\n"); end_server(); } free (text); } void end_server(void) { fprintf(stderr, "Apagando \"%s\" do sistema... ", socket_name); unlink(socket_name); fprintf(stderr, "Feito!\n"); fprintf(stderr, "Fechando o socket local... "); close(socket_id); fprintf(stderr, "Feito!\n"); exit(0); }
the_stack_data/76753.c
#include <stdarg.h> #include <stdio.h> double average(int count, ...) { double sum = 0.0; va_list args; va_start(args, count); for (int i = 0; i < count; i++) { double temp = va_arg(args, double); sum += temp; } va_end(args); return sum / count; } int main() { double avg = average(3, 1.0, 2.0, 3.0); printf("%lf\n", avg); return 0; }
the_stack_data/40762917.c
#include <stdio.h> #include <stdlib.h> #include <time.h> int main(void) { int x,y,x1,y1,x2,y2,s1,s2,q1,q2,dir; int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; srand(time(NULL)); while(-1) { x=rand()&31; y=rand()&31; dir=rand()&3; x1=x+dx[dir]; y1=y+dy[dir]; dir=rand()&3; x2=x+dx[dir]; y2=y+dy[dir]; if((x1!=x2)||(y1!=y2)){ s1=((x1*x1)>>2)+((y1*y1)>>2); s2=((x2*x2)>>2)+((y2*y2)>>2); q1=((x1*x1)>>3)+((y1*y1)>>3); q2=((x2*x2)>>3)+((y2*y2)>>3); printf("(%d,%d)-(%d,%d) = %d/%d - %d/%d\n",x1,y1,x2,y2,s1,s2,q1,q2); if (q1==q2) printf("[%c,%c]-[%c,%c]\n",32+(x1&1),32+(y1&1),32+(x2&1),32+(y2&1)); } } return 0; }
the_stack_data/68597.c
// DATA RACE in queue.(*Queue).Enqueue // https://syzkaller.appspot.com/bug?id=8793cf6049f1261c498893450a9e80d3cbb46c9d // status:fixed // autogenerated by syzkaller (http://github.com/google/syzkaller) #define _GNU_SOURCE #include <endian.h> #include <linux/futex.h> #include <pthread.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <sys/syscall.h> #include <unistd.h> static void execute_one(); extern unsigned long long procid; void loop() { while (1) { execute_one(); } } struct thread_t { int created, running, call; pthread_t th; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static int collide; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { while (!__atomic_load_n(&th->running, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &th->running, FUTEX_WAIT, 0, 0); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); __atomic_store_n(&th->running, 0, __ATOMIC_RELEASE); syscall(SYS_futex, &th->running, FUTEX_WAKE); } return 0; } static void execute(int num_calls) { int call, thread; running = 0; for (call = 0; call < num_calls; call++) { for (thread = 0; thread < sizeof(threads) / sizeof(threads[0]); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); pthread_create(&th->th, &attr, thr, th); } if (!__atomic_load_n(&th->running, __ATOMIC_ACQUIRE)) { th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); __atomic_store_n(&th->running, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &th->running, FUTEX_WAKE); if (collide && call % 2) break; struct timespec ts; ts.tv_sec = 0; ts.tv_nsec = 20 * 1000 * 1000; syscall(SYS_futex, &th->running, FUTEX_WAIT, 1, &ts); if (running) usleep((call == num_calls - 1) ? 10000 : 1000); break; } } } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { long res; switch (call) { case 0: memcpy((void*)0x20000040, "cpuacct.usage_percpu", 21); res = syscall(__NR_openat, 0xffffff9c, 0x20000040, 0, 0); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x20000080, "\x74\x65\x61\x6d\x5f\x73\x6c\x61\x76\x65\x5f\x30\x00\x00\x00\x00", 16); syscall(__NR_ioctl, r[0], 0x89a1, 0x20000080); break; case 2: res = syscall(__NR_socketpair, 1, 5, 0, 0x20000200); if (res != -1) { r[1] = *(uint32_t*)0x20000200; r[2] = *(uint32_t*)0x20000204; } break; case 3: syscall(__NR_ioctl, r[1], 0x541b, 0x200000c0); break; case 4: memcpy( (void*)0x20000240, "\x04\xbb\xab\x05\x3d\xe5\x70\x6b\xac\xab\x8b\xba\xc4\x5a\x42\xc0\x72" "\x4a\x97\xea\x7c\x19\x24\x8b\xfb\xde\xa7\xb9\x2c\x32\x7a\xa1\x22\xf7" "\xd1\x23\x77\xaa\x73\x2e\x59\xdd\x6e\x22\x88\xdb\x32\x2d\x8f\x87\x0f" "\x9b\x43\xb5\x51\x0b\x06\x89\x91\x61\x15\x80\x66\xd2\xc8\x47\xdb\x92" "\xdf\x2b\x9a\xfb\x2b\x2e\x86\x13\x96\xb9\x29\x79\xf3\x8d\x3b\x99\x57" "\xc1\xf8\xe8\x42\x51\xde\x78\xb6\xce\xab\x85\x13\x2a\xf1\x04\xf0\xb1" "\x90\x59\x77\x11\x9c\xcf\x05\xc4\x7f\xc1\xf8\xee\x6c\xdc\xb0\x97\xee" "\x88\x3b\x70\x64\x01\x98\xa8\x97\xc4\x69\x3d\x2a\x41\x45\x96\x65\xc7" "\x0a\x41\xa2\x0c\x7c\x30\x25\x06\x24\x0b\x1a\x74\x2c\x29\x0c\xc3\x2d" "\x20\x39\xeb\x51\x62\xe6\xe5\xcd\xe7\xc3\x6f\x8d\xf2\xde\x89\xb4\xfb" "\x4f\xcc\xfe\x20\xf9\x76\xef\x88\x56\x46\x6b\xfd\xe8\x33\x35\xdd\xf1" "\x13\x66\xbb\xb1\x2d\x30\x41\xf8\xd1\x2f\x4b\xd1\xa4\xb2\x61\x21\x4a" "\xad\x9e\xd5\xe1\x58\x96\x5f\x20\x88\x2e\x49\x7b\xc4\x65\x42\x9b\x55" "\xad\xfc\xac\x7e\x40\x5f\x7f\xe9\x85\x2f\xce\xaa\x98\x08\x21\xa9\x5c" "\x00\xd6\x97\x4d\x79\x8a\xb7\x0d\xdb\x87\x12\x30\x65\xcf\xd9\x8a\xde" "\x31\x4b\xdc\xd1\x7b\x48\xf8\x77\x72\x07\xff\x14\xbc\xe7\x5a\xd4\xcc" "\xc8\xc4\x58\x5c\x88\x9b\xd1\xc0\x86\x68\x96\xc7\x09\xa8\x1a\xc7\xe5" "\xfd\x15\x17\xd6\x14\xbf\x9a\x5f\x9c\x82\xc8\x91\x25\x68\x34\x8e\xfd" "\x69\x9c\x10\x24\x1f\x8e\x56\xb7\x72\xd1\x8a\x81\x39\xbb\xe3\x73\xd4" "\x97\x35\x27\x97\x28\x20\x6c\xa0\x23\xb4\x60\xae\x8e\xc6\x62\x83\xc7" "\x61\xcd\x1f\xfa\x84\xcd\xd8\x18\x17\x0b\xb8\x2f\x87\xa7\x08\xe5\xb4" "\x79\xb4\xf3\x6a\x87\xdd\xa7\x7c\x32\xb1\xa0\x84\xc2\x17\x7d\xa5\x45" "\x7a\x7e\x68\xfa\xd5\x72\x5c\x62\xff\x8a\x19\x97\x18\x30\xc0\x5a\x47" "\xcc\x38\x9a\x9a\xa6\xb6\xe0\xb7\xdb\xca\x08\xcf\x70\xaf\x02\x87\xa0" "\x30\x51\xf6\x4e\xa8\xa2\x56\x15\x3e\xc5\xf3\x75\xa3\x20\x19\x49\x25" "\x42\x96\x0d\xe8\x39\x94\x9b\xa9\xb8\xf2\x1d\x31\x49\xb0\xa6\x28\x99" "\xf2\xb5\x66\xd9\xe5\xcc\x0b\x2f\xc9\x41\xda\x2f\x64\xe8\x6e\x39\xad" "\x5a\xc4\x11\xf1\xaf\x07\x34\x27\x85\x27\x2f\x52\x6f\xe7\xc7\x3d\x5b" "\x6c\x62\xae\x33\x25\x14\xb9\xf4\xd0\x2d\x55\x10\x1a\x38\x34\x0d\xf5" "\x96\x0e\xf2\x82\x70\x52\xa1\x67\xf6\xfe\xb8\xa7\xaf\xd9\xe4\x69\x2e" "\x67\x03\x8e\x58\xfd\x85\xd5\x2f\xe5\xe2\x75\x26\x19\x83\x71\x74\x14" "\xe5\x60\xd0\xb1\x39\xc5\x7d\x09\xf3\xe4\xfd\xd3\x4d\x5e\x6c\x42\x4d" "\xf9\xaf\x22\x77\xcd\x80\x5f\xff\x70\x4d\x4b\x0c\x48\x43\x09\x2b\x77" "\xa4\x74\x44\xfd\x92\xba\xee\xbd\xb4\x94\x3c\xf0\x22\xd9\xf3\xc1\x9d" "\x5d\xe7\xaa\x4a\xd5\x76\x55\xba\x56\x90\x1b\xa6\x76\xeb\x83\x5e\xda" "\xb5\x43\x0f\xfd\x02\x51\x07\xdb\xab\xec\x18\x2e\xb3\x4a\x72\x67\xc0" "\xac\xd1\x39\xcb\xa5\x10\x88\x9c\x72\x59\xcb\x2b\x79\x1e\x91\x85\xff" "\xd9\x05\xaf\xd2\x12\x40\x09\xd9\xf6\xd4\xd4\x97\x55\xe6\x8f\x27\x19" "\x73\xd3\x5b\xd7\x1c\x5d\x4e\x8f\x8f\x8e\x11\x29\x33\x5c\xe6\x12\x65" "\x4e\x55\xca\xfc\xaf\x27\x1d\xb3\x80\x22\xa6\x9b\xaf\x9b\x4a\xfd\xb3" "\xce\xb7\x65\x8c\x07\xd2\x1b\x4a\xa3\x79\x5f\x4b\x36\x9c\x09\x5c\x9b" "\x04\xba\x4d\xdc\x93\xbe\xa8\xc5\x9a\xbc\xe3\xce\xc1\xa2\x28\xb7\xc5" "\x69\xf8\x79\xe5\x9b\xde\xbb\x78\x0c\x79\xd8\xc8\xb7\xa0\x59\xd3\x3a" "\x46\x02\x5b\xd5\x5b\xed\x32\x76\x6c\x1c\x8c\xf6\x5d\xb1\x89\xd4\xb9" "\x8b\x91\x68\xd3\x3f\x40\x89\xe6\x1d\xdd\xf0\x82\x30\x53\x24\x86\x6f" "\xdb\x7b\xdb\xd9\x45\xdf\xe0\x94\x45\x7f\xb2\xb4\xf6\x7c\xd7\x05\x63" "\xa5\x57\x8c\xe5\x9f\x69\x82\xbe\x62\x1a\xbf\x66\x39\x80\x3f\x22\xa1" "\x45\x26\x58\xa2\xe1\x85\x96\x21\xbb\x55\x06\x47\x81\xec\x34\x4e\x9a" "\xe4\x59\xcf\xab\xa6\x16\xfc\x24\x64\xb2\xe9\xa0\xb9\x44\xf0\x88\x6b" "\xd6\x23\x5d\xca\x2d\x60\x65\x87\xc6\xd6\x3d\x98\xf1\xf9\x71\x41\x3a" "\x27\x14\xf4\x86\xd1\xe7\xa6\xba\x89\x30\x1b\xfa\xd8\xc1\xc8\x54\xda" "\x23\xad\xba\x81\x05\x02\x65\xc4\xc2\x05\xc1\xe5\xf6\x77\xa2\xcf\xef" "\x5c\x7e\x92\xc0\x33\x3b\xd7\x91\x45\x8d\x20\xb1\x28\x8e\x36\x68\x99" "\xbe\x74\x64\x4b\x54\xdb\xd2\x2f\x42\x2b\x62\xd1\x01\xf1\xf6\xb3\x47" "\xa7\xca\x8a\xce\xa8\xa6\xde\x87\x4a\x73\x02\xe5\xc1\x68\x84\x7e\x3a" "\x86\xba\xf5\xed\xb0\x10\xd5\xab\x7a\xe2\xa5\x6d\xfd\x7c\xba\x45\x82" "\x80\xa6\xcf\x7d\x97\xc0\x01\xa2\xf2\xac\x5f\x14\xc4\xea\x8f\x74\xe3" "\x79\xac\x36\x7f\x8d\x34\x43\x6b\xdc\x18\x62\x28\x48\x40\x0b\x23\x8c" "\x37\xc5\x5a\x78\x70\xb5\x75\xd4\xa9\xcd\xd4\x20\x94\xf0\x3b\xf3\x7a" "\xf1\x27\xba\x36\xa0\x64\xbc\xa3\x25\x6f\xa4\x2c\x27\xaf\xa7\xd7\x7d" "\x5b\xe2\xa7\xa7\x98\x33\xb5\x2c\x07\x37\x27\x16\xc5\xc7\x61\x0c\xbf" "\x03\x76\x24\x93\xcc\x63\x11\x29\x45\xec\xa7\x4c\xa7\xac\xe2\xb1\xea" "\x30\xb0\x87\x55\x26\x79\x98\xe7\xa7\xd1\x54\x6d\xc0\xfe\x91\x31\xd2" "\xa9\x79\x4d\xde\xc9\x10\xd7\x06\x08\x82\x92\x61\xb4\xe3\x9a\x68\x73" "\xaf\x9e\x4d\xa0\xd8\xfb\x27\x17\x5c\x98\xc0\xde\x36\xc7\x36\x73\xf8" "\xbe\x78\x8a\x54\xc8\xe5\x07\x15\x61\xaa\x3f\x6c\x00\xf5\x87\xc9\x3e" "\xc0\xfd\x43\xda\x68\x46\x0e\xbf\x3d\xfa\xa4\x2f\xdf\x38\x92\x7a\x8e" "\x9f\xa1\xb7\xae\x66\x03\xd6\xb3\x23\x2e\x48\x0f\xde\xa5\x99\x1a\x9c" "\x70\xbc\x7e\x03\x0d\x7f\x47\x1f\xd5\x4f\xb8\x97\x55\x9c\xd3\x33\xfa" "\x54\xad\x32\x19\xdf\x90\xcb\xf5\x08\x35\xec\x00\x2e\xe8\x9c\x41\x88" "\xbd\xfd\x84\xe1\x5e\xc4\x4d\x55\x73\xcd\xd2\xdc\x9a\x04\x78\x82\x80" "\x8b\x8e\x95\xa1\xda\xc9\x3f\x88\xf6\xec\x4a\x66\x1a\xce\xb6\x86\xea" "\x92\x08\x43\x41\xd6\x63\xeb\x7b\xc1\x83\x31\x5e\xed\xca\x9a\x61\x86" "\x23\x83\x85\x2d\x54\x61\xcc\x98\x51\x6b\x3f\x7b\x9b\x1c\x9c\xe2\x3f" "\xea\x85\x54\xea\x07\x81\xde\xa8\x31\x90\xdf\x39\x6e\xea\xba\x38\xa3" "\xa1\x0e\xdb\x3b\x59\x46\xff\x6b\x3e\x70\x6d\x57\xfb\xde\x15\x33\xdf" "\x4f\x76\x2d\x4a\x21\xf8\x7e\xec\xc9\x10\x93\xc2\x1b\x7f\x14\x3e\xa0" "\x7e\xac\x3c\xbf\x50\xaf\x31\xd3\xcc\x6e\xa4\x6d\xb5\x9f\x25\xc8\x4c" "\xc9\xeb\x29\x93\xcf\xff\x42\x50\x88\x00\xa4\x8f\xb4\xc2\x5a\x67\x8c" "\xbf\xdb\xef\xba\xfb\x56\x07\x35\xb7\x91\x57\x4c\xed\x45\x4c\x6e\xa7" "\xb4\x38\x84\x6b\x7e\xc9\x7e\x57\x6b\x81\x1f\x2f\xba\xb2\xa2\x10\xb8" "\xd8\x9e\x0d\xd0\xd3\x7b\x99\xfe\x91\x38\xaf\xa2\x11\x57\x81\x6d\x69" "\xa8\x42\xbb\xa6\xf4\x28\xac\x48\x40\x7d\x1d\x46\x74\x06\x91\x34\x5b" "\x13\x36\xc2\x72\x03\x6c\x4b\x57\x9f\x57\x7c\xe3\xf3\x38\x75\x44\xc0" "\xb3\x6d\xe0\xe2\xb6\xf7\x1f\x00\x63\xc5\xd7\x24\x6e\x78\xfa\x9e\x60" "\x5a\xb9\x34\xf8\xef\x1d\x29\xbd\xee\x79\x76\x27\x27\x43\xdd\x23\x12" "\x6f\x64\xb7\x0e\x11\x79\xbf\x25\x16\x3b\x22\xad\x00\x48\xbf\xf9\x88" "\x83\xf1\x52\x58\xa7\x9c\xae\x35\xff\x99\xbc\x3a\xc3\x99\x61\x76\xb9" "\x25\x69\x9a\x89\xcf\xf7\x14\x14\x0a\xf7\xeb\xcb\x1c\x62\x2f\xe5\xb6" "\x61\xf6\xb2\xc8\x58\xb6\x32\xcd\x8a\x48\x1e\x87\x23\x66\xa6\x6a\x8b" "\xe6\xc9\x0d\x9f\x5d\x09\x67\x9f\x11\xb5\x0e\x19\xbf\x28\xe0\xa8\xe9" "\xb3\x77\xba\x55\x1d\xff\xb4\xfc\xe8\xf9\xb5\xf0\xd8\xa1\xae\x92\xcb" "\xa0\x51\x19\x1f\xf6\x80\x0c\x43\xd7\x59\x85\x76\x3b\xc7\xb6\x94\xcb" "\xd4\xc1\x17\x18\xd7\xb2\xd8\x7a\x13\xd7\x91\x31\xa4\x7b\xf9\x9e\x38" "\x01\x3f\xbf\xd2\x60\xa3\x1f\xd6\x40\xc3\xf4\x1e\x80\xdc\x7d\x90\x07" "\xf0\x7c\x7f\x15\x2a\x9f\x82\x2e\xe4\x5e\x69\xd4\xa7\xd0\xec\xf4\x07" "\xda\x69\x65\x8b\xa2\xa5\xe0\x44\x1f\xcd\x8e\xde\x32\x31\xd6\x36\xdd" "\x1c\xea\xc7\x53\xbc\x7b\xc7\x41\xaa\x73\xe9\x9a\xd2\xc2\xde\xd7\x94" "\xe2\x40\x2a\x63\x77\x48\x95\x6d\x46\xd1\xae\xef\xef\xed\x54\x70\xfd" "\x6b\xeb\x3c\xcb\xf5\x96\xce\xff\x3b\x3a\xbf\xf0\x92\x91\x85\x15\x1d" "\xbc\xda\x84\x3d\x7b\x76\xd6\x55\xc7\x9a\x38\xd0\xe2\xe7\x03\x4e\x67" "\x46\x61\xcf\x96\xa3\x2f\x89\x29\xb2\x76\x43\xb5\xe7\x25\x87\xb7\x8b" "\x59\x7d\x24\xf5\x08\xb6\xa8\x9f\x5e\xa8\xb6\xb0\x4c\xa1\xff\x6e\x60" "\x8b\x59\xa4\x75\x86\xf0\xab\x8c\xdb\x99\xb3\x59\xaa\x7f\x17\x64\x84" "\x38\x6c\x89\x6f\xd8\x88\x8f\x6a\xb0\xde\x2a\xe5\x1f\xca\x94\x49\xc4" "\x47\x2d\xeb\xba\xfd\x45\xb7\x61\xb5\x26\x89\xa6\x45\x20\xea\x87\xc8" "\x50\x33\x1e\x80\x6c\x30\xe6\x02\xa4\x89\x38\x8f\xa5\x4e\xbe\x82\x82" "\xb2\xf2\xff\xb0\x42\x68\x66\xce\xcb\x9f\x7f\x9f\x83\xe0\xe5\xef\x69" "\x2e\x8c\xcc\xda\xa2\x28\xdf\xf9\x0e\x71\xbb\x0c\x9a\xbf\x4c\xe4\xe8" "\x2d\xa0\x5a\x69\x83\x17\x2e\x74\x97\xb0\xba\xd0\x1b\x2a\xd0\xe3\xa5" "\xba\xe0\xe8\xf0\x62\x3f\xdd\x8e\xc1\xfb\xfc\x97\xc0\x8e\xb7\xb8\xea" "\x4e\xf0\xe8\xbd\x85\x98\xf7\x7d\x0d\xf9\x92\x48\x24\x1e\xfd\x37\x15" "\xff\x59\x56\x2e\x9c\x36\x68\xfb\xc3\x33\x0b\x2e\x5d\xdf\x6d\x96\x87" "\x8d\x4e\xbd\x94\xc1\x60\xe8\x7d\xe0\xd0\x3b\x36\x64\xbe\xeb\x71\xa7" "\x93\x24\x90\xb2\x64\x1b\xd8\x49\x30\xa0\x38\x3b\xae\xcb\xdc\x0f\x6b" "\x53\x72\x20\xf3\x5c\x4c\xe2\xbc\x45\x87\xa8\x66\xa4\xcb\x15\xf0\x93" "\xe6\x3b\x32\xef\xbe\x9a\xa5\x91\x07\x6a\xaa\xf1\xa8\x80\xf5\xd4\x21" "\xe2\xe0\x5f\x60\xce\x53\xd1\x9b\x80\x34\xe3\xac\x5d\x2a\xe0\x2d\xac" "\xb3\x06\xc5\x64\x72\x26\xfc\x1d\xa6\xf0\xdc\x11\xc4\x83\x64\x72\x71" "\xcd\xd6\xb0\x44\xcc\x03\xd3\x9e\xc4\x51\xde\x74\x0d\x18\x5f\xf9\x1b" "\x7b\x58\x6d\xec\x35\xb0\xac\xfe\xe2\xab\x7c\x8b\x40\xd9\xff\x8d\x39" "\xe2\x71\xea\xd9\x34\x74\x6c\xde\xa4\x93\x49\x9c\x16\xa9\xd7\xf8\x99" "\x42\x0f\x59\x34\xbc\x8f\xdd\xe6\x4b\x63\x83\xc0\x12\x97\xa0\x16\x29" "\x1e\x60\x28\xff\x49\xff\xa2\x29\x67\x2c\x15\x39\xc5\xed\x7b\x6e\xbf" "\x61\x43\xa0\xd7\xd1\x8e\xf3\xfc\x5c\x3d\x56\x71\x6d\x90\x71\x14\x3d" "\x9f\x60\x6e\xe4\xb2\xa2\x9f\x51\xda\x3d\x1a\x45\xb6\xe4\x37\x6f\x41" "\xaf\x21\x80\xf9\xa6\x70\x59\x9d\xb7\xa1\xa3\xe5\x4b\x37\x48\x0d\xd6" "\xe9\x02\xec\xd1\xb6\x3b\x88\xcf\x1f\xbb\x8c\x5d\xe8\x76\x37\x1c\x2d" "\x96\x0b\x9c\x2d\x88\x21\xad\xa4\xc2\x7a\xc7\xd7\x03\x1f\xf7\x86\x6d" "\x39\x65\xc8\xd1\x6b\x52\x92\x8d\xf8\xda\x6e\x74\x38\xa3\x7d\xbd\xd1" "\x4a\xb3\xfb\xd1\x76\x58\x3a\x58\x26\xad\x31\x40\x2b\x2b\x4a\xf1\x39" "\x0b\xd6\xa1\x05\x52\xc5\x21\x89\x8c\x32\x7c\xb0\x41\x0e\x30\xa1\x93" "\x39\xc6\x7f\x51\xbc\x4c\x79\xd8\xc2\xde\xa1\x87\x0d\x92\x48\x48\x90" "\x9d\xaa\x21\x0a\xd4\xb8\xee\xa4\x5e\x5e\x0b\x77\x8f\x9e\x55\x44\xa4" "\xf5\x49\x73\x0c\x35\x21\x15\xec\x0a\xfa\x60\xda\x7c\xb0\xbf\x2f\x67" "\x07\x9c\xd6\xeb\x7f\x8c\xf4\x66\x30\x4a\x66\xfb\x31\xe8\x9c\x9d\x74" "\x91\x51\xad\x35\x86\x6e\x80\x8f\xe6\xe6\xf9\xe3\xd1\xa2\xa8\x95\x30" "\x68\x6c\x9a\x9c\x4f\x78\x2a\x54\x03\x2b\x4a\xd5\xf5\x94\xcd\xcd\x01" "\x50\xea\xae\xb8\xdd\x72\x40\x2a\x88\x4a\xd1\xe3\x4c\x6b\x3c\x16\x9d" "\x1a\xca\xed\x04\x99\xfd\x58\x4d\xa9\x7e\x91\x9a\x72\x32\x76\xea\x47" "\x47\xf0\xad\x51\xb5\xfc\x74\x13\xc6\xf0\x87\x1b\xb9\x9b\x7b\x2c\x12" "\x82\x56\xc1\x23\x0b\x3b\x48\xe4\x71\xc4\xc5\xe3\x95\xea\x02\xb8\xdc" "\x71\x95\x24\x24\x83\xde\x00\xff\xeb\x75\x23\x26\x98\x3e\x37\xf8\x4f" "\x3e\x4f\xd1\xb8\x70\x36\xdb\x0b\xb0\x05\xab\xf5\x8c\x74\x43\x12\xbf" "\x55\x75\x05\xaa\x9e\x43\x2d\x47\x63\x0f\x5e\xb0\x04\xa4\x79\x61\x0a" "\x85\x67\xd9\x60\x81\x26\x23\xad\xb7\xc8\xbd\x14\x2e\x18\x8b\x6d\x20" "\x10\x28\x41\xbc\xcc\x72\xf0\xfb\xe6\xdd\x65\x1b\x8e\x1c\x13\x08\x77" "\xd1\x02\x54\xaf\xfe\xe4\x0e\x45\xa8\x8a\x69\x91\xaf\x9b\x64\x5f\x3d" "\xca\xa1\xc1\x43\x85\xc7\x7b\xd6\xb8\x30\x75\x28\x15\x5b\x50\xdc\x0a" "\xf1\x85\x27\x02\xda\x10\xee\x52\x62\x49\xd0\xb2\x0b\xb3\x2e\x08\xa8" "\xc0\xcd\x93\xa3\xac\x6e\x5c\xc4\xb7\xe7\x0a\xcc\x2e\xef\xd0\xb3\x8c" "\xb3\xea\x58\x1b\x73\x27\xf3\x99\x31\x46\x3b\xfa\xe2\x6c\x1a\x8b\x5b" "\x0f\x37\xe2\xb5\xa0\x31\x5f\x29\x0f\xdb\xba\x1b\xc5\xb2\x02\x09\x63" "\x84\x3a\x07\x1b\xd1\x33\x24\x87\x7e\xe4\x58\xf7\x89\xfc\x5a\x32\x3f" "\x27\x4d\x07\x54\xa8\xba\x83\x04\xad\xec\xbd\x43\xb1\x22\x1c\x81\xe3" "\xa1\xed\x69\xb2\x55\x77\x71\x65\x65\x09\x78\xad\x16\xca\xa0\x62\x20" "\xf7\xf3\xee\x90\xfc\x31\x87\xb4\xed\xc5\x7d\xc0\xfd\x2b\x85\x55\x60" "\x87\xef\x35\x65\xb7\x55\xd8\x5f\x8e\x49\xbd\x5f\x25\xa5\x43\x37\x74" "\x6b\x4f\x7c\x6f\x88\x06\x9f\x12\x96\x8c\x8c\x4d\x45\xf8\x67\x37\x42" "\x4e\xe1\x79\x38\xe5\x86\x6f\xa0\xf8\x2b\x73\x6a\x56\xcf\x14\x1a\xe3" "\x4e\x49\x71\x61\xe8\xf5\xb5\x9b\xd8\xd4\x24\x9c\x4f\x65\x12\x5e\x13" "\xac\x24\xb9\xb4\x9d\x9c\x6c\xda\x92\xee\x38\xff\xc3\x50\x98\x84\x14" "\x91\x6a\xc6\xf8\x5e\x70\x58\x3c\x32\x2e\xea\x3b\x05\x91\x09\xe4\xbe" "\xb3\x5a\xd1\x73\x6b\x8b\x42\xf6\xbc\xe0\xa6\x96\x28\xbb\x37\x91\xe7" "\x5f\x77\x45\x84\xbe\x4d\x9e\x7f\xf5\xaf\xb7\xe3\x62\x7a\x24\x22\x48" "\x5d\x83\x12\x20\xdc\x48\x84\x27\xf5\xe0\x07\xa1\xfd\xbe\xae\x00\x7e" "\x01\xfb\x25\xb9\x51\xdd\xaf\x88\xef\x02\xd9\x43\xd7\x04\x91\xd6\x05" "\x51\xd5\x73\xe5\x4d\xef\xd8\x35\xa7\x62\xe7\xcf\x34\xa9\xec\x6c\x48" "\xa8\x88\x10\xa5\x94\x41\xb9\x6d\xbc\x58\x24\x4b\xb8\x70\xd4\x0c\xdd" "\x1c\x72\xde\x66\x7a\xdc\xaa\xb3\x25\xd3\x28\xfd\xec\xd2\x6f\x66\x67" "\x61\x3d\x39\x12\x4f\x09\x95\x00\xb5\x6c\x1b\x24\x4b\x4d\xf8\x08\x00" "\x6f\x95\x53\x99\xfd\xbc\x73\xa3\x4e\x02\xa6\xec\x3f\x68\x78\xd5\xe9" "\x8e\x77\x83\xd4\x76\xf5\x15\x59\x57\x95\x5a\xae\x28\x69\xc5\x22\xa4" "\xd8\xb1\x43\x39\x91\x01\x2b\xcd\xf3\x5c\x16\xbf\xb0\x10\x53\xfb\x15" "\xe7\xab\x79\x04\xba\x5a\xea\xeb\x7e\xd3\xa3\x2a\x67\x0f\xe6\x6b\xd0" "\x3f\xa7\x2e\x23\xb7\x77\x20\xe2\xd3\x6e\x16\xbb\xb2\x47\x7d\x65\xcf" "\xdf\xc2\x5c\x38\x52\x6f\x10\x6e\x37\x54\x00\x37\x1e\xa6\x26\x36\x69" "\x4f\xf5\x09\x2a\x79\x63\x7f\x01\xc4\x94\xa7\x14\x71\x59\x74\xbd\x08" "\xf2\x91\x69\xb2\x6e\x82\x97\xf0\x7b\x6a\x27\x3a\x7a\x55\x62\xc1\x54" "\xf5\x8e\x65\x82\x79\x16\x80\xcf\x6b\xff\xf2\x65\xec\x9e\xc1\xe2\x30" "\x2a\x8c\xbf\xa9\x93\x1d\xfd\xa3\x23\x6f\x10\xc1\x68\xca\x54\x84\xa4" "\x6e\x80\x31\xca\xe9\x9a\x5d\xb2\x3f\x81\x4e\x28\xb2\x26\x00\x6b\xcc" "\xf1\xf1\xf6\x0b\x96\xb7\xf9\x3d\xa5\x02\x0a\x51\x15\xd9\x58\x40\xd5" "\xea\x60\x1b\x1c\x6f\xb6\x81\x87\xd0\x0c\xc2\x24\x99\xd5\x6a\x30\xf1" "\x10\x24\x5e\xc8\xd6\x09\x6a\xce\xc9\x0c\x35\x2e\x3c\x3d\x97\xd6\xe6" "\xed\x0b\xc5\x41\xaf\x4a\x8f\xb5\x67\x54\xdb\xd1\xbe\xb9\x66\x13\x12" "\xd6\xbe\x01\xf1\xf9\x59\xd5\xc3\xf0\x86\x20\xa7\xd7\x35\xa6\x13\x7c" "\x28\x63\x2e\x85\xdf\x38\xb6\x56\x10\x68\x8e\x02\xfc\x76\x4b\x2d\x76" "\x1b\xee\xa0\x93\xb0\x30\x10\xdb\x0b\x59\x9f\xbe\x32\x63\x71\xe1\xf4" "\xd7\xfd\x39\xc2\x1d\xea\xf8\xb4\xca\x4d\x8e\x56\xe7\xfd\x18\xa8\xa4" "\xd0\x6b\xb0\x26\xf0\x77\x9e\x9c\x0d\x9a\x54\x86\xcb\x55\x78\x99\xc0" "\x48\xb1\x0d\x94\x2c\x2f\x24\x36\xac\x73\xd1\x36\xb2\xa6\x36\x0d\x61" "\x01\x67\x77\x49\xfd\xcf\x30\x0e\x99\xbc\xa9\x61\xbe\x0e\xdb\x8c\xed" "\xbf\x27\x54\x97\x74\x36\xc3\xa5\xa7\x08\xcc\x1b\x7f\xc0\xd5\xe4\x46" "\x0f\x91\xa4\x00\x3e\xfb\xd0\xdd\xe9\xe2\xa2\x69\x89\x5b\xce\x9b\xa6" "\xdb\x65\x2f\x5e\xad\xec\x81\xd7\x9f\x7f\x19\xd6\xb3\x35\x10\x23\xca" "\x25\xe0\x28\x98\x7d\xb8\xb9\x4d\x08\x35\xcd\x23\x6d\x8c\x83\x08\x22" "\x40\xda\x5b\xc3\xb9\x21\x99\x21\x03\xd8\x06\x62\xb9\x1c\xec\xf9\xca" "\x3d\x49\x2e\x29\x3a\x81\xf3\xfe\xcf\xae\xe7\xc9\x04\x6f\xab\xcc\xab" "\x60\x2d\x56\xd7\xfc\x16\x4d\xaa\x43\x08\x9d\xa9\x83\x11\x1b\xef\xee" "\x3f\xae\xa3\x54\x77\x8d\xec\xcc\x49\xee\x2f\x7d\x8b\xc0\x50\xb8\xb2" "\x2f\x71\x32\xbb\x21\xb7\xeb\x8c\x74\x16\x54\x5a\xd2\xb9\xde\x1f\x65" "\xf0\x85\x47\xf0\xf3\xd3\x9d\xac\xc7\x81\x5c\x25\xf9\xad\xa9\x8c\x61" "\x6b\x00\x98\xd6\xe7\xc6\x08\xea\xff\xfd\xd5\xd6\xab\x84\x86\xf0\xc2" "\xb8\xd4\x5b\x5c\xeb\xd4\x7b\xc8\x4b\xdf\x65\x7c\xda\xa5\x42\xd7\x5b" "\xd0\x82\xb1\x5e\x96\x46\xe7\xe5\x87\x39\xb4\xf6\xb8\x24\x37\x2a\xf8" "\xad\x65\x6b\x65\x93\x0c\x9b\xe9\xe9\x06\xa3\x54\xf6\x61\xa8\x12\x96" "\x7c\xbc\x55\x5b\x97\xd3\x1c\x63\x9f\x24\x49\xbb\xc5\x29\x29\x0b\x83" "\x57\x17\xc1\xce\xdf\x58\x7d\x58\x77\x5f\xdf\x4d\x3a\x70\x52\x14\x1e" "\xef\xea\xf5\x48\xf3\x8b\xf6\x73\xb5\xfb\x04\xe2\x02\x2b\x3a\xda\x9e" "\xa0\xfa\x7c\x22\xd3\xe2\x25\x38\xec\xcf\x4d\x72\xa9\x31\x8a\xf2\x52" "\x1e\xfb\x47\x02\xcd\xc4\xa7\x34\x1e\x1c\xe5\xe8\xb6\x76\x92\x48\x75" "\x3a\x36\x4f\x5f\xec\x7e\xef\xd8\xf4\x2f\x6b\x37\x72\x63\x95\xae\x81" "\x86\xc0\xdc\x1f\x58\x60\x35\x0b\x7b\x78\x96\x0e\x54\x4a\x86\x9e\x68" "\x4c\xd5\x3a\xa9\x93\x61\xbc\x6d\x53\x32\x6f\x3b\xbe\x93\xd5\x2d\x45" "\xc2\xe0\xfc\xc1\xd6\xef\x7b\x39\x48\x04\xea\xce\xd4\x10\xd1\xc4\x83" "\x0b\x3c\x52\xc7\xc3\x88\x4f\x54\x96\x9d\x73\xd3\xec\x0c\xf2\x1a\xa1" "\x4c\x8d\x24\x72\x3c\x6f\xdf\x9e\xb3\x74\x81\x21\x4b\xc4\xb0\xea\xb6" "\x1c\xe9\xc3\xec\xf3\xfd\x24\xb3\x86\x20\xc1\x31\x10\x59\xc8\xc5\xfb" "\x17\xed\x87\x68\xe2\xa9\xeb\xa2\xc0\x6a\x2d\xc7\xe6\xcf\xe3\x4f\xc7" "\xcc\x22\xa3\x25\x69\x20\x03\xb8\x06\xe3\xb6\x4b\x6a\xe6\x6a\x83\x87" "\xa5\x60\x38\x18\xb3\x71\x17\xa6\x9e\xed\x4d\xc6\xcc\x76\x25\x28\x24" "\x51\x82\x28\x5c\xeb\xb4\xb3\x73\x1f\x90\x1a\x1f\x7c\x59\x90\x2e\xf1" "\xcf\x33\x12\x65\xc4\x25\xd6\x18\xda\xea\x52\xbf\xd6\xb3\xc9\xbc\xbb" "\xb4\x67\xf2\xcc\x28\x7f\x16\xaf\xbc\xe9\x40\xd3\x25\x37\xa9\x14\x32" "\x08\xe8\x9f\xbf\x96\x81\xe1\xdd\x70\xcd\xa3\xa9\xb2\x6d\xdb\x61\xcb" "\x16\x3e\x96\x8a\xbd\x27\x68\xf1\x8d\x65\x69\x0d\xbb\x5a\x3e\x1f\x1f" "\x81\x42\x32\xf3\x76\x9e\xfb\x5a\xda\x54\x2a\x47\xea\x1d\xee\xdc\x46" "\x44\x6a\x44\xe9\x1c\x95\xe0\xae\xe6\xd0\xbc\x59\xf6\x9a\xb8\x2d\x22" "\xb8\x49\x65\x83\x28\x25\x7b\xb5\xcc\x51\x5c\xdc\x1d\xe6\xee\x86\xdd" "\x63\x1c\xb2\x23\x8b\x35\xcb\x45\xc9\x22\xcd\x16\x17\x23\xc2\x34\xdb" "\x32\x44\xb7\x9b\x41\xef\xc5\x2f\x6f\x58\x28\xb5\xf4\xb4\x39\x69\x42" "\x3b\xc5\x8a\x5b\xfc\x90\xac\xbd\xe1\x1a\xa6\x95\x13\xc6\x68\xb6\xd3" "\xc2\xe6\xae\x27\x4a\x42\xd1\x99\xbb\x9f\x6e\x4b\x5f\x95\xf2\xd9\x25" "\x38\x0f\xe7\x92\x9a\xda\xc6\x29\x22\x31\xec\x6d\x91\x3e\xb0\x9f\xc2" "\x12\x65\x97\xcb\x70\x80\x53\x6f\xb3\xdb\x59\x1b\x06\x95\x73\x37\xc7" "\x55\xb8\xef\xec\x13\x98\x9e\x8f\x79\x56\x9b\x68\x7b\xdc\x18\x25\xa5" "\x3f\x91\xec\xac\x2e\x07\xcc\xe9\x5f\x7d\x0d\xb2\xb6\x51\xbd\x16\x1b" "\xf8\xee\x2f\xf0\xdd\x47\xd9\xad\x20\xc8\x1c\x7b\x8b\x7c\xf2\x66\x15" "\xb8\xd7\x1e\x11\x62\x9a\xfc\x81\x9c\x61\xdb\x15\x77\xab\x0f\x26\xa8" "\x90\x2f\x30\x3e\xac\x8d\xfb\xf1\x55\xfe\xc0\x9c\xa4\xa7\xe8\x08", 4096); syscall(__NR_sendto, r[2], 0x20000240, 0x1000, 0x20000000, 0, 0); break; } } void execute_one() { execute(5); collide = 1; execute(5); } int main() { syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0); for (;;) { loop(); } }
the_stack_data/147760.c
/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2013 Intel Corporation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. END_LEGAL */ /* * This test prints the application's blocked signal mask at various points. * By comparing a native run with a run under Pin, we can verify that Pin emulates * the signal mask correctly. */ #include <stdio.h> #include <stdlib.h> #include <signal.h> #ifdef TARGET_ANDROID #include "android_ucontext.h" #else #include <sys/ucontext.h> #endif #if defined(TARGET_MAC) || (TARGET_ANDROID) #define MAXMASK 32 #else #define MAXMASK 64 #endif static void Handle(int); static void PrintCurrentMask(const char *); static void PrintMask(const char *, sigset_t *); int main() { struct sigaction act; sigset_t mask; sigemptyset(&mask); sigaddset(&mask, SIGSTOP); sigaddset(&mask, SIGFPE); if (sigprocmask(SIG_SETMASK, &mask, 0) != 0) { fprintf(stderr, "unable to set blocked signal mask\n"); return 1; } PrintCurrentMask("Initial: "); act.sa_handler = Handle; act.sa_flags = SA_NODEFER; sigemptyset(&act.sa_mask); sigaddset(&act.sa_mask, SIGSEGV); sigaddset(&act.sa_mask, SIGHUP); sigaddset(&act.sa_mask, SIGKILL); if (sigaction(SIGUSR1, &act, 0) != 0) { fprintf(stderr, "Unable to set USR1 handler\n"); return 1; } act.sa_flags = 0; if (sigaction(SIGUSR2, &act, 0) != 0) { fprintf(stderr, "Unable to set USR2 handler\n"); return 1; } raise(SIGUSR1); PrintCurrentMask("After USR1: "); raise(SIGUSR2); PrintCurrentMask("After USR2: "); sigemptyset(&act.sa_mask); if (sigaction(SIGUSR1, 0, &act) != 0) { fprintf(stderr, "Unable to get USR1 hander\n"); return 1; } PrintMask("USR1 Blocks: ", &act.sa_mask); sigemptyset(&act.sa_mask); if (sigaction(SIGUSR2, 0, &act) != 0) { fprintf(stderr, "Unable to get USR2 hander\n"); return 1; } PrintMask("USR2 Blocks: ", &act.sa_mask); return 0; } static void Handle(int sig) { if (sig == SIGUSR1) PrintCurrentMask("USR1 handler: "); else if (sig == SIGUSR2) PrintCurrentMask("USR2 handler: "); else { fprintf(stderr, "Unexpected signal %d\n", sig); exit(1); } } static void PrintCurrentMask(const char *prefix) { sigset_t mask; if (sigprocmask(SIG_SETMASK, 0, &mask) == 0) PrintMask(prefix, &mask); else printf("%s[ERROR]\n", prefix); } static void PrintMask(const char *prefix, sigset_t *mask) { int sig; int first; first = 1; printf("%s[", prefix); for (sig = 1; sig < MAXMASK; sig++) { if (sigismember(mask, sig)) { if (!first) printf(" "); first = 0; printf("%d", sig); } } printf("]\n"); }
the_stack_data/111079216.c
#include <stdio.h> int main() { int n, p, a, b, c; while (scanf("%d", &n), n) { scanf("%d", &p); if (n / 2 >= p) { if (p & 1) { a = p + 1; b = n - p; c = b + 1; } else { a = p - 1; b = n - p + 1; c = b + 1; } } else { if (p & 1) { c = p + 1; b = n - p + 1; a = b - 1; } else { c = p - 1; b = n - c + 1; a = b - 1; } } printf("%d %d %d\n", a, b, c); } }
the_stack_data/89359.c
#include <stdio.h> int main(argc,argv) int argc; char **argv; { double x, y; x = 0.2; y = ((0.5/3.0)*x)-((0.5/3.0)*x); if (y != 0.0) { printf( "x*y-y*x = %e\n", y ); return 1; } return 0; }
the_stack_data/20450765.c
/* This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. 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 THE AUTHORS 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. For more information, please refer to <http://unlicense.org> */ #include <stdio.h> #include <sys/types.h> #include <signal.h> #include <errno.h> #include <stdlib.h> #include <unistd.h> #define MAX_PIDS 15 int waitpid_main( int argc, char ** argv ) { int pids[ MAX_PIDS ]; int numpids, pidsleft; int i; if ( argc > MAX_PIDS ) { printf( "too many pids, max %d\n", MAX_PIDS ); return 1; } numpids = 0; for ( i = 0; i < MAX_PIDS; i++ ) pids[i] = -1; for ( argc--, argv++; argc-- > 0; numpids++, argv++ ) { pids[numpids] = atoi( argv[0] ); if ( pids[numpids] == 0 ) { printf( "is arg '%s' not a pid?\n", argv[0] ); return 1; } } printf( "waiting for %d pids: ", numpids ); for ( i = 0; i < numpids; i++ ) printf( "%d ", pids[i] ); printf( "\n" ); pidsleft = numpids; while ( pidsleft > 0 ) { sleep( 2 ); for ( i = 0; i < numpids; i++ ) { if ( pids[i] == -1 ) continue; if (( kill( pids[i], 0 ) < 0 ) && ( errno == ESRCH )) { printf( "waitpid: pid %d died, %d left\n", pids[i], --pidsleft ); pids[i] = -1; } } } printf( "waitpid: all named pids have exited\n" ); return 0; }
the_stack_data/153268913.c
/***************************************************************************//** * @file * @brief CMSIS Compatible EFR32BG12P startup file in C. * Should be used with GCC 'GNU Tools ARM Embedded' * @version 5.8.0 ******************************************************************************* * # License * * The licensor of this software is Silicon Laboratories Inc. Your use of this * software is governed by the terms of Silicon Labs Master Software License * Agreement (MSLA) available at * www.silabs.com/about-us/legal/master-software-license-agreement. This * software is Third Party Software licensed by Silicon Labs from a third party * and is governed by the sections of the MSLA applicable to Third Party * Software and the additional terms set forth below. * ******************************************************************************/ /* * Copyright (c) 2009-2018 Arm Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <stdint.h> #include <stdbool.h> /*---------------------------------------------------------------------------- * Linker generated Symbols *----------------------------------------------------------------------------*/ extern uint32_t __etext; extern uint32_t __data_start__; extern uint32_t __data_end__; extern uint32_t __copy_table_start__; extern uint32_t __copy_table_end__; extern uint32_t __zero_table_start__; extern uint32_t __zero_table_end__; extern uint32_t __bss_start__; extern uint32_t __bss_end__; extern uint32_t __StackTop; /*---------------------------------------------------------------------------- * Exception / Interrupt Handler Function Prototype *----------------------------------------------------------------------------*/ typedef union { void (*pFunc)(void); void *topOfStack; } tVectorEntry; /*---------------------------------------------------------------------------- * External References *----------------------------------------------------------------------------*/ #ifndef __START extern void _start(void) __attribute__((noreturn)); /* Pre Main (C library entry point) */ #else extern int __START(void) __attribute__((noreturn)); /* main entry point */ #endif #ifndef __NO_SYSTEM_INIT extern void SystemInit(void); /* CMSIS System Initialization */ #endif /*---------------------------------------------------------------------------- * Internal References *----------------------------------------------------------------------------*/ void Default_Handler(void); /* Default empty handler */ void Reset_Handler(void); /* Reset Handler */ /*---------------------------------------------------------------------------- * User Initial Stack & Heap *----------------------------------------------------------------------------*/ #ifndef __STACK_SIZE #define __STACK_SIZE 0x00000400 #endif static uint8_t stack[__STACK_SIZE] __attribute__ ((aligned(8), used, section(".stack"))); #ifndef __HEAP_SIZE #define __HEAP_SIZE 0x00000C00 #endif #if __HEAP_SIZE > 0 static uint8_t heap[__HEAP_SIZE] __attribute__ ((aligned(8), used, section(".heap"))); #endif /*---------------------------------------------------------------------------- * Exception / Interrupt Handler *----------------------------------------------------------------------------*/ /* Cortex-M Processor Exceptions */ void NMI_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void HardFault_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void MemManage_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void BusFault_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void UsageFault_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void DebugMon_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void SVC_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void PendSV_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); void SysTick_Handler(void) __attribute__ ((weak, alias("Default_Handler"))); /* Provide a dummy value for the sl_app_properties symbol. */ void sl_app_properties(void); /* Prototype to please MISRA checkers. */ void sl_app_properties(void) __attribute__ ((weak, alias("Default_Handler"))); /* Part Specific Interrupts */ void EMU_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void FRC_PRI_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void WDOG0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void WDOG1_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void FRC_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void MODEM_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void RAC_SEQ_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void RAC_RSM_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void BUFC_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void LDMA_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void GPIO_EVEN_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void TIMER0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART0_RX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART0_TX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void ACMP0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void ADC0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void IDAC0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void I2C0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void GPIO_ODD_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void TIMER1_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART1_RX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART1_TX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void LEUART0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void PCNT0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void CMU_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void MSC_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void CRYPTO0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void LETIMER0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void AGC_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void PROTIMER_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void RTCC_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void SYNTH_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void CRYOTIMER_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void RFSENSE_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void FPUEH_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void SMU_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void WTIMER0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void WTIMER1_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void PCNT1_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void PCNT2_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART2_RX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART2_TX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void I2C1_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART3_RX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void USART3_TX_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void VDAC0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void CSEN_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void LESENSE_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void CRYPTO1_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); void TRNG0_IRQHandler(void) __attribute__ ((weak, alias("Default_Handler"))); /*---------------------------------------------------------------------------- * Exception / Interrupt Vector table *----------------------------------------------------------------------------*/ extern const tVectorEntry __Vectors[]; const tVectorEntry __Vectors[] __attribute__ ((section(".vectors"))) = { /* Cortex-M Exception Handlers */ { .topOfStack = &__StackTop }, /* Initial Stack Pointer */ { Reset_Handler }, /* Reset Handler */ { NMI_Handler }, /* NMI Handler */ { HardFault_Handler }, /* Hard Fault Handler */ { MemManage_Handler }, /* MPU Fault Handler */ { BusFault_Handler }, /* Bus Fault Handler */ { UsageFault_Handler }, /* Usage Fault Handler */ { Default_Handler }, /* Reserved */ { Default_Handler }, /* Reserved */ { Default_Handler }, /* Reserved */ { Default_Handler }, /* Reserved */ { SVC_Handler }, /* SVCall Handler */ { DebugMon_Handler }, /* Debug Monitor Handler */ { sl_app_properties }, /* Application properties*/ { PendSV_Handler }, /* PendSV Handler */ { SysTick_Handler }, /* SysTick Handler */ /* External interrupts */ { EMU_IRQHandler }, /* 0 */ { FRC_PRI_IRQHandler }, /* 1 */ { WDOG0_IRQHandler }, /* 2 */ { WDOG1_IRQHandler }, /* 3 */ { FRC_IRQHandler }, /* 4 */ { MODEM_IRQHandler }, /* 5 */ { RAC_SEQ_IRQHandler }, /* 6 */ { RAC_RSM_IRQHandler }, /* 7 */ { BUFC_IRQHandler }, /* 8 */ { LDMA_IRQHandler }, /* 9 */ { GPIO_EVEN_IRQHandler }, /* 10 */ { TIMER0_IRQHandler }, /* 11 */ { USART0_RX_IRQHandler }, /* 12 */ { USART0_TX_IRQHandler }, /* 13 */ { ACMP0_IRQHandler }, /* 14 */ { ADC0_IRQHandler }, /* 15 */ { IDAC0_IRQHandler }, /* 16 */ { I2C0_IRQHandler }, /* 17 */ { GPIO_ODD_IRQHandler }, /* 18 */ { TIMER1_IRQHandler }, /* 19 */ { USART1_RX_IRQHandler }, /* 20 */ { USART1_TX_IRQHandler }, /* 21 */ { LEUART0_IRQHandler }, /* 22 */ { PCNT0_IRQHandler }, /* 23 */ { CMU_IRQHandler }, /* 24 */ { MSC_IRQHandler }, /* 25 */ { CRYPTO0_IRQHandler }, /* 26 */ { LETIMER0_IRQHandler }, /* 27 */ { AGC_IRQHandler }, /* 28 */ { PROTIMER_IRQHandler }, /* 29 */ { RTCC_IRQHandler }, /* 30 */ { SYNTH_IRQHandler }, /* 31 */ { CRYOTIMER_IRQHandler }, /* 32 */ { RFSENSE_IRQHandler }, /* 33 */ { FPUEH_IRQHandler }, /* 34 */ { SMU_IRQHandler }, /* 35 */ { WTIMER0_IRQHandler }, /* 36 */ { WTIMER1_IRQHandler }, /* 37 */ { PCNT1_IRQHandler }, /* 38 */ { PCNT2_IRQHandler }, /* 39 */ { USART2_RX_IRQHandler }, /* 40 */ { USART2_TX_IRQHandler }, /* 41 */ { I2C1_IRQHandler }, /* 42 */ { USART3_RX_IRQHandler }, /* 43 */ { USART3_TX_IRQHandler }, /* 44 */ { VDAC0_IRQHandler }, /* 45 */ { CSEN_IRQHandler }, /* 46 */ { LESENSE_IRQHandler }, /* 47 */ { CRYPTO1_IRQHandler }, /* 48 */ { TRNG0_IRQHandler }, /* 49 */ { Default_Handler }, /* 50 - Reserved */ }; /*---------------------------------------------------------------------------- * Reset Handler called on controller reset *----------------------------------------------------------------------------*/ void Reset_Handler(void) { uint32_t *pSrc, *pDest; uint32_t start, end; uint32_t tableStart __attribute__((unused)); uint32_t tableEnd __attribute__((unused)); #ifndef __NO_SYSTEM_INIT SystemInit(); #endif /* Firstly it copies data from read only memory to RAM. There are two schemes * to copy. One can copy more than one sections. Another can only copy * one section. The former scheme needs more instructions and read-only * data to implement than the latter. * Macro __STARTUP_COPY_MULTIPLE is used to choose between two schemes. */ #ifdef __STARTUP_COPY_MULTIPLE /* Multiple sections scheme. * * Between symbol address __copy_table_start__ and __copy_table_end__, * there are array of triplets, each of which specify: * offset 0: LMA of start of a section to copy from * offset 4: VMA of start of a section to copy to * offset 8: size of the section to copy. Must be multiply of 4 * * All addresses must be aligned to 4 bytes boundary. */ tableStart = (uint32_t) &__copy_table_start__; tableEnd = (uint32_t) &__copy_table_end__; for (; tableStart < tableEnd; tableStart += 12U) { pSrc = (uint32_t *) (*(uint32_t *) tableStart); start = *(uint32_t *) (tableStart + 4U); end = *(uint32_t *) (tableStart + 8U) + start; pDest = (uint32_t *) start; for (; start < end; start += 4U) { *pDest++ = *pSrc++; } } #else /* Single section scheme. * * The ranges of copy from/to are specified by following symbols * __etext: LMA of start of the section to copy from. Usually end of text * __data_start__: VMA of start of the section to copy to * __data_end__: VMA of end of the section to copy to * * All addresses must be aligned to 4 bytes boundary. */ pSrc = &__etext; pDest = &__data_start__; start = (uint32_t) &__data_start__; end = (uint32_t) &__data_end__; for (; start < end; start += 4U) { *pDest++ = *pSrc++; } #endif /*__STARTUP_COPY_MULTIPLE */ /* This part of work usually is done in C library startup code. Otherwise, * define this macro to enable it in this startup. * * There are two schemes too. One can clear multiple BSS sections. Another * can only clear one section. The former is more size expensive than the * latter. * * Define macro __STARTUP_CLEAR_BSS_MULTIPLE to choose the former. * Otherwise efine macro __STARTUP_CLEAR_BSS to choose the later. */ #ifdef __STARTUP_CLEAR_BSS_MULTIPLE /* Multiple sections scheme. * * Between symbol address __zero_table_start__ and __zero_table_end__, * there are array of tuples specifying: * offset 0: Start of a BSS section * offset 4: Size of this BSS section. Must be multiply of 4 */ tableStart = (uint32_t) &__zero_table_start__; tableEnd = (uint32_t) &__zero_table_end__; for (; tableStart < tableEnd; tableStart += 8U) { start = *(uint32_t *) tableStart; end = *(uint32_t *) (tableStart + 4U) + start; pDest = (uint32_t *) start; for (; start < end; start += 4U) { *pDest++ = 0UL; } } #elif defined (__STARTUP_CLEAR_BSS) /* Single BSS section scheme. * * The BSS section is specified by following symbols * __bss_start__: start of the BSS section. * __bss_end__: end of the BSS section. * * Both addresses must be aligned to 4 bytes boundary. */ pDest = &__bss_start__; start = (uint32_t) &__bss_start__; end = (uint32_t) &__bss_end__; for (; start < end; start += 4U) { *pDest++ = 0UL; } #endif /* __STARTUP_CLEAR_BSS_MULTIPLE || __STARTUP_CLEAR_BSS */ #ifndef __START #define __START _start #endif __START(); } /*---------------------------------------------------------------------------- * Default Handler for Exceptions / Interrupts *----------------------------------------------------------------------------*/ void Default_Handler(void) { while (true) { } }
the_stack_data/27893.c
#include <stdio.h> #define ADD(a, b, c) ((a) + (b) + (c)) #define MUL(a, b, c) ((a) * (b) * (c)) #define PI 3.141592 #define AREA(r) ((r) * (r) * PI) #define MAX(a, b) ((a) > (b)? (a) : (b)) int main(void) { //q26_1_1(); //q26_1_2(); q26_1_3(); return 0; } int q26_1_1(void) { printf("%d %d\n", ADD(1, 2, 3), MUL(2,2,3)); return 0; } int q26_1_2(void) { printf("%f\n", AREA(3)); return 0; } int q26_1_3(void) { printf("%d\n", MAX(3, 4)); return 0; }
the_stack_data/61075097.c
#include <stdio.h> #include <malloc.h> typedef struct cell { //单链表结点结构体定义 int x; struct cell *next; } List; List *build(void) { //新建单链表,并将建好的单链表首结点地址返回 List *head, *tmp, *p; head = tmp = p = NULL; int n; //输入 scanf("%d", &n); getchar(); if (n == 0) return head; //头节点 head = (List *)malloc(sizeof(List)); p = head; p->x = n; p->next = NULL; while (1) { scanf("%d", &n); getchar(); if (n == 0) break; tmp = (List *)malloc(sizeof(List)); p->next = tmp; p = p->next; p->x = n; p->next = NULL; } return head; //返回单链表头 } List *combine(List *p, List *q) { //合并两个链表p和q List *head = NULL, *p0 = NULL, *q0 = NULL, *r = NULL; if (p == NULL && q != NULL) return q; if (p != NULL && q == NULL) return p; if (p == NULL && q == NULL) return NULL; p0 = p->next; q0 = q->next; int firstFlag=1; //初始化 if (p->x <= q->x) { head = p; head->next = q; } else { head = q; head->next = p; firstFlag=0; } //插入节点 //遍历链表找到合适位置 while (p0 != NULL&&firstFlag) { int flag=1; r= head; while (r != NULL && r->next != NULL) { if (p0->x<=r->next->x) { //插入r到r.next之前 p=p0->next; p0->next=r->next; r->next=p0; flag=0; break; } r = r->next; } if (flag) { r->next=p0; p=p0->next; } if (p0->next == NULL) break; p0=p; } while (q0 != NULL&&(!firstFlag)) { int flag=1; r= head; while (r != NULL && r->next != NULL) { if (q0->x<=r->next->x) { //插入r到r.next之前 q=q0->next; q0->next=r->next; r->next=q0; flag=0; break; } r = r->next; } if (flag) { r->next=q0; q=q0->next; } if (q0->next == NULL) break; q0=q; } return head; } //打印 void print(List *head) { //打印整个单链表,head是指向单链表首结点的指针 List *p = head; while (1) { printf("%d", p->x); p = p->next; if (p == NULL) break; printf(" "); } } //释放空间 void release(List *head) { List *p = head; List *tmp = NULL; while (p != NULL) { tmp = p; p = p->next; free(tmp); } } int main(void) { List *head1, *head2, *result; head1 = build(); head2 = build(); result = combine(head1, head2); if (result != NULL) print(result); else printf("NULL"); release(result); return 0; }
the_stack_data/25137809.c
#include <unistd.h> #include <stdlib.h> #include <stdio.h> #include <string.h> //Communication between child and parent int main() { int data_processed; int file_pipe[2]; const char some_data[] = "We are using pipes."; char buffer[BUFSIZ + 1]; pid_t fork_result; memset(buffer, '\0', sizeof(buffer)); if (pipe(file_pipe) == 0) { fork_result = fork(); if (fork_result == -1) { fprintf(stderr, "Fork failure"); exit(EXIT_FAILURE); } else if (fork_result == 0) //Child { //sleep(2); data_processed = read(file_pipe[0], buffer, BUFSIZ); printf("I am child.\nI have read %d bytes: %s\n", data_processed, buffer); exit(EXIT_SUCCESS); } else //Parent { data_processed = write(file_pipe[1], some_data, strlen(some_data)); printf("I am parent.\nI have written %d bytes\n", data_processed); //sleep(2); } } exit(EXIT_SUCCESS); }
the_stack_data/175142392.c
/**************************************************************************** * * Copyright (c) 2013-2020 PX4 Development Team. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name PX4 nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************/ /** * @file uuv_payload_control.c * * Parameters defined by the attitude control task for unmanned underwater vehicles (UUVs) * * This is a modification of the fixed wing/ground rover params and it is designed for ground rovers. * It has been developed starting from the fw module, simplified and improved with dedicated items. * * All the ackowledgments and credits for the fw wing/rover app are reported in those files. * * @author Daniel Duecker <[email protected]> */
the_stack_data/874372.c
#include <stdio.h> int main() { printf("Hello, world!\n"); return 0; }
the_stack_data/237642395.c
/* * T T C P . C * * Test TCP connection. Makes a connection on port 5001 * and transfers fabricated buffers or data copied from stdin. * * Usable on 4.2, 4.3, and 4.1a systems by defining one of * BSD42 BSD43 (BSD41a) * Machines using System V with BSD sockets should define SYSV. * * Modified for operation under 4.2BSD, 18 Dec 84 * T.C. Slattery, USNA * Minor improvements, Mike Muuss and Terry Slattery, 16-Oct-85. * Modified in 1989 at Silicon Graphics, Inc. * catch SIGPIPE to be able to print stats when receiver has died * for tcp, don't look for sentinel during reads to allow small transfers * increased default buffer size to 8K, nbuf to 2K to transfer 16MB * moved default port to 5001, beyond IPPORT_USERRESERVED * make sinkmode default because it is more popular, * -s now means don't sink/source * count number of read/write system calls to see effects of * blocking from full socket buffers * for tcp, -D option turns off buffered writes (sets TCP_NODELAY sockopt) * buffer alignment options, -A and -O * print stats in a format that's a bit easier to use with grep & awk * for SYSV, mimic BSD routines to use most of the existing timing code * Modified by Steve Miller of the University of Maryland, College Park * -b sets the socket buffer size (SO_SNDBUF/SO_RCVBUF) * Modified Sept. 1989 at Silicon Graphics, Inc. * restored -s sense at request of tcs@brl * Modified Oct. 1991 at Silicon Graphics, Inc. * use getopt(3) for option processing, add -f and -T options. * SGI IRIX 3.3 and 4.0 releases don't need #define SYSV. * * Distribution Status - * Public Domain. Distribution Unlimited. */ #ifndef lint static char RCSid[] = "ttcp.c $Revision: 1.9 $"; #endif #define BSD43 /* #define BSD42 */ /* #define BSD41a */ /* #define SYSV */ /* required on SGI IRIX releases before 3.3 */ #include <stdio.h> #include <signal.h> #include <ctype.h> #include <errno.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <arpa/inet.h> #include <netdb.h> #include <sys/time.h> /* struct timeval */ #if defined(SYSV) #include <sys/times.h> #include <sys/param.h> struct rusage { struct timeval ru_utime, ru_stime; }; #define RUSAGE_SELF 0 #else #include <sys/resource.h> #endif struct sockaddr_in sinme; struct sockaddr_in sinhim; struct sockaddr_in frominet; int domain, fromlen; int fd; /* fd of network socket */ int buflen = 1024; /* length of buffer */ char *buf; /* ptr to dynamic buffer */ int nbuf = 1024; /* number of buffers to send in sinkmode */ int bufoffset = 0; /* align buffer to this */ int bufalign = 16*1024; /* modulo this */ int udp = 0; /* 0 = tcp, !0 = udp */ int options = 0; /* socket options */ int one = 1; /* for 4.3 BSD style setsockopt() */ short port = 5001; /* TCP port number */ char *host; /* ptr to name of host */ int trans; /* 0=receive, !0=transmit mode */ int sinkmode = 0; /* 0=normal I/O, !0=sink/source mode */ int verbose = 0; /* 0=print basic info, 1=print cpu rate, proc * resource usage. */ int nodelay = 0; /* set TCP_NODELAY socket option */ int b_flag = 0; /* use mread() */ int sockbufsize = 0; /* socket buffer size to use */ char fmt = 'K'; /* output format: k = kilobits, K = kilobytes, * m = megabits, M = megabytes, * g = gigabits, G = gigabytes */ int touchdata = 0; /* access data after reading */ struct hostent *addr; extern int errno; extern int optind; extern char *optarg; char Usage[] = "\ Usage: ttcp -t [-options] host [ < in ]\n\ ttcp -r [-options > out]\n\ Common options:\n\ -l ## length of bufs read from or written to network (default 8192)\n\ -u use UDP instead of TCP\n\ -p ## port number to send to or listen at (default 5001)\n\ -s -t: source a pattern to network\n\ -r: sink (discard) all data from network\n\ -A align the start of buffers to this modulus (default 16384)\n\ -O start buffers at this offset from the modulus (default 0)\n\ -v verbose: print more statistics\n\ -d set SO_DEBUG socket option\n\ -b ## set socket buffer size (if supported)\n\ -f X format for rate: k,K = kilo{bit,byte}; m,M = mega; g,G = giga\n\ Options specific to -t:\n\ -n## number of source bufs written to network (default 2048)\n\ -D don't buffer TCP writes (sets TCP_NODELAY socket option)\n\ Options specific to -r:\n\ -B for -s, only output full blocks as specified by -l (for TAR)\n\ -T \"touch\": access each byte as it's read\n\ "; char stats[128]; unsigned long nbytes; /* bytes on net */ unsigned long numCalls; /* # of I/O system calls */ double cput, realt; /* user, real time (seconds) */ void err(); void mes(); int pattern(); void prep_timer(); double read_timer(); int Nread(); int Nwrite(); void delay(); int mread(); char *outfmt(); void sigpipe() { } main(argc,argv) int argc; char **argv; { unsigned long addr_tmp; int c; if (argc < 2) goto usage; while ((c = getopt(argc, argv, "drstuvBDTb:f:l:n:p:A:O:")) != -1) { switch (c) { case 'B': b_flag = 1; break; case 't': trans = 1; break; case 'r': trans = 0; break; case 'd': options |= SO_DEBUG; break; case 'D': #ifdef TCP_NODELAY nodelay = 1; #else fprintf(stderr, "ttcp: -D option ignored: TCP_NODELAY socket option not supported\n"); #endif break; case 'n': nbuf = atoi(optarg); break; case 'l': buflen = atoi(optarg); break; case 's': sinkmode = !sinkmode; break; case 'p': port = atoi(optarg); break; case 'u': udp = 1; break; case 'v': verbose = 1; break; case 'A': bufalign = atoi(optarg); break; case 'O': bufoffset = atoi(optarg); break; case 'b': #if defined(SO_SNDBUF) || defined(SO_RCVBUF) sockbufsize = atoi(optarg); #else fprintf(stderr, "ttcp: -b option ignored: SO_SNDBUF/SO_RCVBUF socket options not supported\n"); #endif break; case 'f': fmt = *optarg; break; case 'T': touchdata = 1; break; default: goto usage; } } if(trans) { /* xmitr */ if (optind == argc) goto usage; bzero((char *)&sinhim, sizeof(sinhim)); host = argv[optind]; if (atoi(host) > 0 ) { /* Numeric */ sinhim.sin_family = AF_INET; #if defined(cray) addr_tmp = inet_addr(host); sinhim.sin_addr = addr_tmp; #else sinhim.sin_addr.s_addr = inet_addr(host); #endif } else { if ((addr=gethostbyname(host)) == NULL) err("bad hostname"); sinhim.sin_family = addr->h_addrtype; bcopy(addr->h_addr,(char*)&addr_tmp, addr->h_length); #if defined(cray) sinhim.sin_addr = addr_tmp; #else sinhim.sin_addr.s_addr = addr_tmp; #endif /* cray */ } sinhim.sin_port = htons(port); sinme.sin_port = 0; /* free choice */ } else { /* rcvr */ sinme.sin_port = htons(port); } if (udp && buflen < 5) { buflen = 5; /* send more than the sentinel size */ } if ( (buf = (char *)malloc(buflen+bufalign)) == (char *)NULL) err("malloc"); if (bufalign != 0) buf +=(bufalign - ((int)buf % bufalign) + bufoffset) % bufalign; if (trans) { fprintf(stdout, "ttcp-t: buflen=%d, nbuf=%d, align=%d/%d, port=%d", buflen, nbuf, bufalign, bufoffset, port); if (sockbufsize) fprintf(stdout, ", sockbufsize=%d", sockbufsize); fprintf(stdout, " %s -> %s\n", udp?"udp":"tcp", host); } else { fprintf(stdout, "ttcp-r: buflen=%d, nbuf=%d, align=%d/%d, port=%d", buflen, nbuf, bufalign, bufoffset, port); if (sockbufsize) fprintf(stdout, ", sockbufsize=%d", sockbufsize); fprintf(stdout, " %s\n", udp?"udp":"tcp"); } if ((fd = socket(AF_INET, udp?SOCK_DGRAM:SOCK_STREAM, 0)) < 0) err("socket"); mes("socket"); if (bind(fd, &sinme, sizeof(sinme)) < 0) err("bind"); #if defined(SO_SNDBUF) || defined(SO_RCVBUF) if (sockbufsize) { if (trans) { if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &sockbufsize, sizeof sockbufsize) < 0) err("setsockopt: sndbuf"); mes("sndbuf"); } else { if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &sockbufsize, sizeof sockbufsize) < 0) err("setsockopt: rcvbuf"); mes("rcvbuf"); } } #endif if (!udp) { signal(SIGPIPE, sigpipe); if (trans) { /* We are the client if transmitting */ if (options) { #if defined(BSD42) if( setsockopt(fd, SOL_SOCKET, options, 0, 0) < 0) #else /* BSD43 */ if( setsockopt(fd, SOL_SOCKET, options, &one, sizeof(one)) < 0) #endif err("setsockopt"); } #ifdef TCP_NODELAY if (nodelay) { struct protoent *p; p = getprotobyname("tcp"); if( p && setsockopt(fd, p->p_proto, TCP_NODELAY, &one, sizeof(one)) < 0) err("setsockopt: nodelay"); mes("nodelay"); } #endif if(connect(fd, &sinhim, sizeof(sinhim) ) < 0) err("connect"); mes("connect"); } else { /* otherwise, we are the server and * should listen for the connections */ listen(fd,0); /* allow a queue of 0 */ if(options) { #if defined(BSD42) if( setsockopt(fd, SOL_SOCKET, options, 0, 0) < 0) #else /* BSD43 */ if( setsockopt(fd, SOL_SOCKET, options, &one, sizeof(one)) < 0) #endif err("setsockopt"); } fromlen = sizeof(frominet); domain = AF_INET; if((fd=accept(fd, &frominet, &fromlen) ) < 0) err("accept"); { struct sockaddr_in peer; int peerlen = sizeof(peer); if (getpeername(fd, (struct sockaddr_in *) &peer, &peerlen) < 0) { err("getpeername"); } fprintf(stderr,"ttcp-r: accept from %s\n", inet_ntoa(peer.sin_addr)); } } } prep_timer(); errno = 0; if (sinkmode) { register int cnt; if (trans) { pattern( buf, buflen ); if(udp) (void)Nwrite( fd, buf, 4 ); /* rcvr start */ while (nbuf-- && Nwrite(fd,buf,buflen) == buflen) nbytes += buflen; if(udp) (void)Nwrite( fd, buf, 4 ); /* rcvr end */ } else { if (udp) { while ((cnt=Nread(fd,buf,buflen)) > 0) { static int going = 0; if( cnt <= 4 ) { if( going ) break; /* "EOF" */ going = 1; prep_timer(); } else { nbytes += cnt; } } } else { while ((cnt=Nread(fd,buf,buflen)) > 0) { nbytes += cnt; } } } } else { register int cnt; if (trans) { while((cnt=read(0,buf,buflen)) > 0 && Nwrite(fd,buf,cnt) == cnt) nbytes += cnt; } else { while((cnt=Nread(fd,buf,buflen)) > 0 && write(1,buf,cnt) == cnt) nbytes += cnt; } } if(errno) err("IO"); (void)read_timer(stats,sizeof(stats)); if(udp&&trans) { (void)Nwrite( fd, buf, 4 ); /* rcvr end */ (void)Nwrite( fd, buf, 4 ); /* rcvr end */ (void)Nwrite( fd, buf, 4 ); /* rcvr end */ (void)Nwrite( fd, buf, 4 ); /* rcvr end */ } if( cput <= 0.0 ) cput = 0.001; if( realt <= 0.0 ) realt = 0.001; fprintf(stdout, "ttcp%s: %ld bytes in %.2f real seconds = %s/sec +++\n", trans?"-t":"-r", nbytes, realt, outfmt(((double)nbytes)/realt)); if (verbose) { fprintf(stdout, "ttcp%s: %ld bytes in %.2f CPU seconds = %s/cpu sec\n", trans?"-t":"-r", nbytes, cput, outfmt(((double)nbytes)/cput)); } fprintf(stdout, "ttcp%s: %d I/O calls, msec/call = %.2f, calls/sec = %.2f\n", trans?"-t":"-r", numCalls, 1024.0 * realt/((double)numCalls), ((double)numCalls)/realt); fprintf(stdout,"ttcp%s: %s\n", trans?"-t":"-r", stats); if (verbose) { fprintf(stdout, "ttcp%s: buffer address %#x\n", trans?"-t":"-r", buf); } exit(0); usage: fprintf(stderr,Usage); exit(1); } void err(s) char *s; { fprintf(stderr,"ttcp%s: ", trans?"-t":"-r"); perror(s); fprintf(stderr,"errno=%d\n",errno); exit(1); } void mes(s) char *s; { fprintf(stderr,"ttcp%s: %s\n", trans?"-t":"-r", s); } pattern( cp, cnt ) register char *cp; register int cnt; { register char c; c = 0; while( cnt-- > 0 ) { while( !isprint((c&0x7F)) ) c++; *cp++ = (c++&0x7F); } } char * outfmt(b) double b; { static char obuf[50]; switch (fmt) { case 'G': sprintf(obuf, "%.2f GB", b / 1024.0 / 1024.0 / 1024.0); break; default: case 'K': sprintf(obuf, "%.2f KB", b / 1024.0); break; case 'M': sprintf(obuf, "%.2f MB", b / 1024.0 / 1024.0); break; case 'g': sprintf(obuf, "%.2f Gbit", b * 8.0 / 1024.0 / 1024.0 / 1024.0); break; case 'k': sprintf(obuf, "%.2f Kbit", b * 8.0 / 1024.0); break; case 'm': sprintf(obuf, "%.2f Mbit", b * 8.0 / 1024.0 / 1024.0); break; } return obuf; } static struct timeval time0; /* Time at which timing started */ static struct rusage ru0; /* Resource utilization at the start */ static void prusage(); static void tvadd(); static void tvsub(); static void psecs(); #if defined(SYSV) /*ARGSUSED*/ static getrusage(ignored, ru) int ignored; register struct rusage *ru; { struct tms buf; times(&buf); /* Assumption: HZ <= 2147 (LONG_MAX/1000000) */ ru->ru_stime.tv_sec = buf.tms_stime / HZ; ru->ru_stime.tv_usec = ((buf.tms_stime % HZ) * 1000000) / HZ; ru->ru_utime.tv_sec = buf.tms_utime / HZ; ru->ru_utime.tv_usec = ((buf.tms_utime % HZ) * 1000000) / HZ; } /*ARGSUSED*/ static gettimeofday(tp, zp) struct timeval *tp; struct timezone *zp; { tp->tv_sec = time(0); tp->tv_usec = 0; } #endif /* SYSV */ /* * P R E P _ T I M E R */ void prep_timer() { gettimeofday(&time0, (struct timezone *)0); getrusage(RUSAGE_SELF, &ru0); } /* * R E A D _ T I M E R * */ double read_timer(str,len) char *str; { struct timeval timedol; struct rusage ru1; struct timeval td; struct timeval tend, tstart; char line[132]; getrusage(RUSAGE_SELF, &ru1); gettimeofday(&timedol, (struct timezone *)0); prusage(&ru0, &ru1, &timedol, &time0, line); (void)strncpy( str, line, len ); /* Get real time */ tvsub( &td, &timedol, &time0 ); realt = td.tv_sec + ((double)td.tv_usec) / 1000000; /* Get CPU time (user+sys) */ tvadd( &tend, &ru1.ru_utime, &ru1.ru_stime ); tvadd( &tstart, &ru0.ru_utime, &ru0.ru_stime ); tvsub( &td, &tend, &tstart ); cput = td.tv_sec + ((double)td.tv_usec) / 1000000; if( cput < 0.00001 ) cput = 0.00001; return( cput ); } static void prusage(r0, r1, e, b, outp) register struct rusage *r0, *r1; struct timeval *e, *b; char *outp; { struct timeval tdiff; register time_t t; register char *cp; register int i; int ms; t = (r1->ru_utime.tv_sec-r0->ru_utime.tv_sec)*100+ (r1->ru_utime.tv_usec-r0->ru_utime.tv_usec)/10000+ (r1->ru_stime.tv_sec-r0->ru_stime.tv_sec)*100+ (r1->ru_stime.tv_usec-r0->ru_stime.tv_usec)/10000; ms = (e->tv_sec-b->tv_sec)*100 + (e->tv_usec-b->tv_usec)/10000; #define END(x) {while(*x) x++;} #if defined(SYSV) cp = "%Uuser %Ssys %Ereal %P"; #else #if defined(sgi) /* IRIX 3.3 will show 0 for %M,%F,%R,%C */ cp = "%Uuser %Ssys %Ereal %P %Mmaxrss %F+%Rpf %Ccsw"; #else cp = "%Uuser %Ssys %Ereal %P %Xi+%Dd %Mmaxrss %F+%Rpf %Ccsw"; #endif #endif for (; *cp; cp++) { if (*cp != '%') *outp++ = *cp; else if (cp[1]) switch(*++cp) { case 'U': tvsub(&tdiff, &r1->ru_utime, &r0->ru_utime); sprintf(outp,"%d.%01d", tdiff.tv_sec, tdiff.tv_usec/100000); END(outp); break; case 'S': tvsub(&tdiff, &r1->ru_stime, &r0->ru_stime); sprintf(outp,"%d.%01d", tdiff.tv_sec, tdiff.tv_usec/100000); END(outp); break; case 'E': psecs(ms / 100, outp); END(outp); break; case 'P': sprintf(outp,"%d%%", (int) (t*100 / ((ms ? ms : 1)))); END(outp); break; #if !defined(SYSV) case 'W': i = r1->ru_nswap - r0->ru_nswap; sprintf(outp,"%d", i); END(outp); break; case 'X': sprintf(outp,"%d", t == 0 ? 0 : (r1->ru_ixrss-r0->ru_ixrss)/t); END(outp); break; case 'D': sprintf(outp,"%d", t == 0 ? 0 : (r1->ru_idrss+r1->ru_isrss-(r0->ru_idrss+r0->ru_isrss))/t); END(outp); break; case 'K': sprintf(outp,"%d", t == 0 ? 0 : ((r1->ru_ixrss+r1->ru_isrss+r1->ru_idrss) - (r0->ru_ixrss+r0->ru_idrss+r0->ru_isrss))/t); END(outp); break; case 'M': sprintf(outp,"%d", r1->ru_maxrss/2); END(outp); break; case 'F': sprintf(outp,"%d", r1->ru_majflt-r0->ru_majflt); END(outp); break; case 'R': sprintf(outp,"%d", r1->ru_minflt-r0->ru_minflt); END(outp); break; case 'I': sprintf(outp,"%d", r1->ru_inblock-r0->ru_inblock); END(outp); break; case 'O': sprintf(outp,"%d", r1->ru_oublock-r0->ru_oublock); END(outp); break; case 'C': sprintf(outp,"%d+%d", r1->ru_nvcsw-r0->ru_nvcsw, r1->ru_nivcsw-r0->ru_nivcsw ); END(outp); break; #endif /* !SYSV */ } } *outp = '\0'; } static void tvadd(tsum, t0, t1) struct timeval *tsum, *t0, *t1; { tsum->tv_sec = t0->tv_sec + t1->tv_sec; tsum->tv_usec = t0->tv_usec + t1->tv_usec; if (tsum->tv_usec > 1000000) tsum->tv_sec++, tsum->tv_usec -= 1000000; } static void tvsub(tdiff, t1, t0) struct timeval *tdiff, *t1, *t0; { tdiff->tv_sec = t1->tv_sec - t0->tv_sec; tdiff->tv_usec = t1->tv_usec - t0->tv_usec; if (tdiff->tv_usec < 0) tdiff->tv_sec--, tdiff->tv_usec += 1000000; } static void psecs(l,cp) long l; register char *cp; { register int i; i = l / 3600; if (i) { sprintf(cp,"%d:", i); END(cp); i = l % 3600; sprintf(cp,"%d%d", (i/60) / 10, (i/60) % 10); END(cp); } else { i = l; sprintf(cp,"%d", i / 60); END(cp); } i %= 60; *cp++ = ':'; sprintf(cp,"%d%d", i / 10, i % 10); } /* * N R E A D */ Nread( fd, buf, count ) int fd; void *buf; int count; { struct sockaddr_in from; int len = sizeof(from); register int cnt; if( udp ) { cnt = recvfrom( fd, buf, count, 0, &from, &len ); numCalls++; } else { if( b_flag ) cnt = mread( fd, buf, count ); /* fill buf */ else { cnt = read( fd, buf, count ); numCalls++; } if (touchdata && cnt > 0) { register int c = cnt, sum; register char *b = buf; while (c--) sum += *b++; } } return(cnt); } /* * N W R I T E */ Nwrite( fd, buf, count ) int fd; void *buf; int count; { register int cnt; if( udp ) { again: cnt = sendto( fd, buf, count, 0, &sinhim, sizeof(sinhim) ); numCalls++; if( cnt<0 && errno == ENOBUFS ) { delay(18000); errno = 0; goto again; } } else { cnt = write( fd, buf, count ); numCalls++; } return(cnt); } void delay(us) { struct timeval tv; tv.tv_sec = 0; tv.tv_usec = us; (void)select( 1, (char *)0, (char *)0, (char *)0, &tv ); } /* * M R E A D * * This function performs the function of a read(II) but will * call read(II) multiple times in order to get the requested * number of characters. This can be necessary because * network connections don't deliver data with the same * grouping as it is written with. Written by Robert S. Miles, BRL. */ int mread(fd, bufp, n) int fd; register char *bufp; unsigned n; { register unsigned count = 0; register int nread; do { nread = read(fd, bufp, n-count); numCalls++; if(nread < 0) { perror("ttcp_mread"); return(-1); } if(nread == 0) return((int)count); count += (unsigned)nread; bufp += nread; } while(count < n); return((int)count); }
the_stack_data/45450396.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int cmp(const void* a, const void* b) { return (*(char*)a > *(char*)b) ? 1 : -1; } /* Input : string s * Output : sorted string s' */ char* sortString(char* str, int len) { qsort(str, len, sizeof(char), cmp); return str; } int main() { char s[100]; scanf("%s", s); int len = strlen(s); printf("%s", sortString(s, len)); return 0; }
the_stack_data/305861.c
#include <stdio.h> int main() { int x = 30; int y = 20; /* operador E */ printf("p = %d\n", x > y); printf("q = %d\n", x - 10 > y); printf("p && q = %d\n", x > y && x - 10 > y); // falso E qualquer coisa é falso /* operador OU */ printf("p = %d\n", x > y); printf("q = %d\n", x - 10 > y); printf("p || q = %d\n", x > y || x - 10 > y); // verdadeiro OU qualquer coisa é verdadeiro /* operador NÃO */ printf("!p = %d\n", !(x > y)); // inverte o valor lógico printf("!q = %d\n", !(x - 10 > y)); printf("!(p || q) = %d\n", !(x > y || x - 10 > y)); return 0; }
the_stack_data/24648.c
/* $OpenBSD: wmemcpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ /* $NetBSD: wmemcpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ /*- * Copyright (c)1999 Citrus Project, * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * citrus Id: wmemcpy.c,v 1.2 2000/12/20 14:08:31 itojun Exp */ #include <string.h> #include <wchar.h> wchar_t * wmemcpy(wchar_t *d, const wchar_t *s, size_t n) { return (wchar_t *)memcpy(d, s, n * sizeof(wchar_t)); }
the_stack_data/182954074.c
#include<stdio.h> #include<string.h> int main() { int n; char a[101]; int count2 = 0; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%s", a); int count[26] = { 0, }; for (int j = 0; j < strlen(a); j++) { if (a[j - 1] != a[j]) count[a[j] - 'a']++; } for (int j = 0; j < 26; j++) { if (count[j] > 1) { count2++; break; } } } printf("%d", n - count2); }
the_stack_data/59513565.c
/* * qsort taken from FreeBSD, slightly modified to match glibc's * argument ordering */ /* FIXME: should use mergesort instead */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)qsort.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #ifndef _WIN32 #include <sys/cdefs.h> #endif /* $FreeBSD: src/lib/libc/stdlib/qsort.c,v 1.13.2.1.8.1 2010/12/21 17:10:29 kensmith Exp $ */ #include <stdlib.h> typedef int cmp_t(const void *, const void *, void *); static inline char *med3(char *, char *, char *, cmp_t *, void *); static inline void swapfunc(char *, char *, int, int); #ifndef min #define min(a, b) (a) < (b) ? a : b #endif /* * Qsort routine from Bentley & McIlroy's "Engineering a Sort Function". */ #define swapcode(TYPE, parmi, parmj, n) { \ long i = (n) / sizeof (TYPE); \ TYPE *pi = (TYPE *) (parmi); \ TYPE *pj = (TYPE *) (parmj); \ do { \ TYPE t = *pi; \ *pi++ = *pj; \ *pj++ = t; \ } while (--i > 0); \ } #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \ es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1; static inline void swapfunc(a, b, n, swaptype) char *a, *b; int n, swaptype; { if(swaptype <= 1) swapcode(long, a, b, n) else swapcode(char, a, b, n) } #define swap(a, b) \ if (swaptype == 0) { \ long t = *(long *)(a); \ *(long *)(a) = *(long *)(b); \ *(long *)(b) = t; \ } else \ swapfunc(a, b, es, swaptype) #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) #define CMP(t, x, y) (cmp((x), (y), (t))) static inline char * med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk) { return CMP(thunk, a, b) < 0 ? (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); } void solv_sort(void *a, size_t n, size_t es, cmp_t *cmp, void *thunk) { char *pa, *pb, *pc, *pd, *pl, *pm, *pn; size_t d, r; int cmp_result; int swaptype, swap_cnt; loop: SWAPINIT(a, es); swap_cnt = 0; if (n < 7) { for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es) for (pl = pm; pl > (char *)a && CMP(thunk, pl - es, pl) > 0; pl -= es) swap(pl, pl - es); return; } pm = (char *)a + (n / 2) * es; if (n > 7) { pl = a; pn = (char *)a + (n - 1) * es; if (n > 40) { d = (n / 8) * es; pl = med3(pl, pl + d, pl + 2 * d, cmp, thunk); pm = med3(pm - d, pm, pm + d, cmp, thunk); pn = med3(pn - 2 * d, pn - d, pn, cmp, thunk); } pm = med3(pl, pm, pn, cmp, thunk); } swap(a, pm); pa = pb = (char *)a + es; pc = pd = (char *)a + (n - 1) * es; for (;;) { while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { if (cmp_result == 0) { swap_cnt = 1; swap(pa, pb); pa += es; } pb += es; } while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { if (cmp_result == 0) { swap_cnt = 1; swap(pc, pd); pd -= es; } pc -= es; } if (pb > pc) break; swap(pb, pc); swap_cnt = 1; pb += es; pc -= es; } if (swap_cnt == 0) { /* Switch to insertion sort */ for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es) for (pl = pm; pl > (char *)a && CMP(thunk, pl - es, pl) > 0; pl -= es) swap(pl, pl - es); return; } pn = (char *)a + n * es; r = min(pa - (char *)a, pb - pa); vecswap(a, pb - r, r); r = min(pd - pc, pn - pd - es); vecswap(pb, pn - r, r); if ((r = pb - pa) > es) solv_sort(a, r / es, es, cmp, thunk); if ((r = pd - pc) > es) { /* Iterate rather than recurse to save stack space */ a = pn - r; n = r / es; goto loop; } /* qsort(pn - r, r / es, es, cmp);*/ }
the_stack_data/432960.c
#include <math.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <complex.h> #ifdef complex #undef complex #endif #ifdef I #undef I #endif #if defined(_WIN64) typedef long long BLASLONG; typedef unsigned long long BLASULONG; #else typedef long BLASLONG; typedef unsigned long BLASULONG; #endif #ifdef LAPACK_ILP64 typedef BLASLONG blasint; #if defined(_WIN64) #define blasabs(x) llabs(x) #else #define blasabs(x) labs(x) #endif #else typedef int blasint; #define blasabs(x) abs(x) #endif typedef blasint integer; typedef unsigned int uinteger; typedef char *address; typedef short int shortint; typedef float real; typedef double doublereal; typedef struct { real r, i; } complex; typedef struct { doublereal r, i; } doublecomplex; #ifdef _MSC_VER static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;} static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;} static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;} static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;} #else static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;} static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;} static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;} static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;} #endif #define pCf(z) (*_pCf(z)) #define pCd(z) (*_pCd(z)) typedef int logical; typedef short int shortlogical; typedef char logical1; typedef char integer1; #define TRUE_ (1) #define FALSE_ (0) /* Extern is for use with -E */ #ifndef Extern #define Extern extern #endif /* I/O stuff */ typedef int flag; typedef int ftnlen; typedef int ftnint; /*external read, write*/ typedef struct { flag cierr; ftnint ciunit; flag ciend; char *cifmt; ftnint cirec; } cilist; /*internal read, write*/ typedef struct { flag icierr; char *iciunit; flag iciend; char *icifmt; ftnint icirlen; ftnint icirnum; } icilist; /*open*/ typedef struct { flag oerr; ftnint ounit; char *ofnm; ftnlen ofnmlen; char *osta; char *oacc; char *ofm; ftnint orl; char *oblnk; } olist; /*close*/ typedef struct { flag cerr; ftnint cunit; char *csta; } cllist; /*rewind, backspace, endfile*/ typedef struct { flag aerr; ftnint aunit; } alist; /* inquire */ typedef struct { flag inerr; ftnint inunit; char *infile; ftnlen infilen; ftnint *inex; /*parameters in standard's order*/ ftnint *inopen; ftnint *innum; ftnint *innamed; char *inname; ftnlen innamlen; char *inacc; ftnlen inacclen; char *inseq; ftnlen inseqlen; char *indir; ftnlen indirlen; char *infmt; ftnlen infmtlen; char *inform; ftnint informlen; char *inunf; ftnlen inunflen; ftnint *inrecl; ftnint *innrec; char *inblank; ftnlen inblanklen; } inlist; #define VOID void union Multitype { /* for multiple entry points */ integer1 g; shortint h; integer i; /* longint j; */ real r; doublereal d; complex c; doublecomplex z; }; typedef union Multitype Multitype; struct Vardesc { /* for Namelist */ char *name; char *addr; ftnlen *dims; int type; }; typedef struct Vardesc Vardesc; struct Namelist { char *name; Vardesc **vars; int nvars; }; typedef struct Namelist Namelist; #define abs(x) ((x) >= 0 ? (x) : -(x)) #define dabs(x) (fabs(x)) #define f2cmin(a,b) ((a) <= (b) ? (a) : (b)) #define f2cmax(a,b) ((a) >= (b) ? (a) : (b)) #define dmin(a,b) (f2cmin(a,b)) #define dmax(a,b) (f2cmax(a,b)) #define bit_test(a,b) ((a) >> (b) & 1) #define bit_clear(a,b) ((a) & ~((uinteger)1 << (b))) #define bit_set(a,b) ((a) | ((uinteger)1 << (b))) #define abort_() { sig_die("Fortran abort routine called", 1); } #define c_abs(z) (cabsf(Cf(z))) #define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); } #ifdef _MSC_VER #define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);} #define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);} #else #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);} #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);} #endif #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));} #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));} #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));} //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));} #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));} #define d_abs(x) (fabs(*(x))) #define d_acos(x) (acos(*(x))) #define d_asin(x) (asin(*(x))) #define d_atan(x) (atan(*(x))) #define d_atn2(x, y) (atan2(*(x),*(y))) #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); } #define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); } #define d_cos(x) (cos(*(x))) #define d_cosh(x) (cosh(*(x))) #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 ) #define d_exp(x) (exp(*(x))) #define d_imag(z) (cimag(Cd(z))) #define r_imag(z) (cimagf(Cf(z))) #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x))) #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x))) #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) ) #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) ) #define d_log(x) (log(*(x))) #define d_mod(x, y) (fmod(*(x), *(y))) #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x))) #define d_nint(x) u_nint(*(x)) #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a))) #define d_sign(a,b) u_sign(*(a),*(b)) #define r_sign(a,b) u_sign(*(a),*(b)) #define d_sin(x) (sin(*(x))) #define d_sinh(x) (sinh(*(x))) #define d_sqrt(x) (sqrt(*(x))) #define d_tan(x) (tan(*(x))) #define d_tanh(x) (tanh(*(x))) #define i_abs(x) abs(*(x)) #define i_dnnt(x) ((integer)u_nint(*(x))) #define i_len(s, n) (n) #define i_nint(x) ((integer)u_nint(*(x))) #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b))) #define pow_dd(ap, bp) ( pow(*(ap), *(bp))) #define pow_si(B,E) spow_ui(*(B),*(E)) #define pow_ri(B,E) spow_ui(*(B),*(E)) #define pow_di(B,E) dpow_ui(*(B),*(E)) #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));} #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));} #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));} #define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; } #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d)))) #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; } #define sig_die(s, kill) { exit(1); } #define s_stop(s, n) {exit(0);} static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n"; #define z_abs(z) (cabs(Cd(z))) #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));} #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));} #define myexit_() break; #define mycycle() continue; #define myceiling(w) {ceil(w)} #define myhuge(w) {HUGE_VAL} //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);} #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)} /* procedure parameter types for -A and -C++ */ #define F2C_proc_par_types 1 #ifdef __cplusplus typedef logical (*L_fp)(...); #else typedef logical (*L_fp)(); #endif static float spow_ui(float x, integer n) { float pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static double dpow_ui(double x, integer n) { double pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } #ifdef _MSC_VER static _Fcomplex cpow_ui(complex x, integer n) { complex pow={1.0,0.0}; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i; for(u = n; ; ) { if(u & 01) pow.r *= x.r, pow.i *= x.i; if(u >>= 1) x.r *= x.r, x.i *= x.i; else break; } } _Fcomplex p={pow.r, pow.i}; return p; } #else static _Complex float cpow_ui(_Complex float x, integer n) { _Complex float pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } #endif #ifdef _MSC_VER static _Dcomplex zpow_ui(_Dcomplex x, integer n) { _Dcomplex pow={1.0,0.0}; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1]; for(u = n; ; ) { if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1]; if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1]; else break; } } _Dcomplex p = {pow._Val[0], pow._Val[1]}; return p; } #else static _Complex double zpow_ui(_Complex double x, integer n) { _Complex double pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } #endif static integer pow_ii(integer x, integer n) { integer pow; unsigned long int u; if (n <= 0) { if (n == 0 || x == 1) pow = 1; else if (x != -1) pow = x == 0 ? 1/x : 0; else n = -n; } if ((n > 0) || !(n == 0 || x == 1 || x != -1)) { u = n; for(pow = 1; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static integer dmaxloc_(double *w, integer s, integer e, integer *n) { double m; integer i, mi; for(m=w[s-1], mi=s, i=s+1; i<=e; i++) if (w[i-1]>m) mi=i ,m=w[i-1]; return mi-s+1; } static integer smaxloc_(float *w, integer s, integer e, integer *n) { float m; integer i, mi; for(m=w[s-1], mi=s, i=s+1; i<=e; i++) if (w[i-1]>m) mi=i ,m=w[i-1]; return mi-s+1; } static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Fcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0]; zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0]; zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1]; } } pCf(z) = zdotc; } #else _Complex float zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conjf(Cf(&x[i])) * Cf(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]); } } pCf(z) = zdotc; } #endif static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Dcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0]; zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0]; zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1]; } } pCd(z) = zdotc; } #else _Complex double zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conj(Cd(&x[i])) * Cd(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]); } } pCd(z) = zdotc; } #endif static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Fcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0]; zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0]; zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1]; } } pCf(z) = zdotc; } #else _Complex float zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cf(&x[i]) * Cf(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]); } } pCf(z) = zdotc; } #endif static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Dcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0]; zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0]; zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1]; } } pCd(z) = zdotc; } #else _Complex double zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cd(&x[i]) * Cd(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]); } } pCd(z) = zdotc; } #endif /* -- translated by f2c (version 20000121). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ /* Table of constant values */ static integer c__1 = 1; /* > \brief \b DSPGVX */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download DSPGVX + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dspgvx. f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dspgvx. f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dspgvx. f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE DSPGVX( ITYPE, JOBZ, RANGE, UPLO, N, AP, BP, VL, VU, */ /* IL, IU, ABSTOL, M, W, Z, LDZ, WORK, IWORK, */ /* IFAIL, INFO ) */ /* CHARACTER JOBZ, RANGE, UPLO */ /* INTEGER IL, INFO, ITYPE, IU, LDZ, M, N */ /* DOUBLE PRECISION ABSTOL, VL, VU */ /* INTEGER IFAIL( * ), IWORK( * ) */ /* DOUBLE PRECISION AP( * ), BP( * ), W( * ), WORK( * ), */ /* $ Z( LDZ, * ) */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > DSPGVX computes selected eigenvalues, and optionally, eigenvectors */ /* > of a real generalized symmetric-definite eigenproblem, of the form */ /* > A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. Here A */ /* > and B are assumed to be symmetric, stored in packed storage, and B */ /* > is also positive definite. Eigenvalues and eigenvectors can be */ /* > selected by specifying either a range of values or a range of indices */ /* > for the desired eigenvalues. */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] ITYPE */ /* > \verbatim */ /* > ITYPE is INTEGER */ /* > Specifies the problem type to be solved: */ /* > = 1: A*x = (lambda)*B*x */ /* > = 2: A*B*x = (lambda)*x */ /* > = 3: B*A*x = (lambda)*x */ /* > \endverbatim */ /* > */ /* > \param[in] JOBZ */ /* > \verbatim */ /* > JOBZ is CHARACTER*1 */ /* > = 'N': Compute eigenvalues only; */ /* > = 'V': Compute eigenvalues and eigenvectors. */ /* > \endverbatim */ /* > */ /* > \param[in] RANGE */ /* > \verbatim */ /* > RANGE is CHARACTER*1 */ /* > = 'A': all eigenvalues will be found. */ /* > = 'V': all eigenvalues in the half-open interval (VL,VU] */ /* > will be found. */ /* > = 'I': the IL-th through IU-th eigenvalues will be found. */ /* > \endverbatim */ /* > */ /* > \param[in] UPLO */ /* > \verbatim */ /* > UPLO is CHARACTER*1 */ /* > = 'U': Upper triangle of A and B are stored; */ /* > = 'L': Lower triangle of A and B are stored. */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER */ /* > The order of the matrix pencil (A,B). N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in,out] AP */ /* > \verbatim */ /* > AP is DOUBLE PRECISION array, dimension (N*(N+1)/2) */ /* > On entry, the upper or lower triangle of the symmetric matrix */ /* > A, packed columnwise in a linear array. The j-th column of A */ /* > is stored in the array AP as follows: */ /* > if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; */ /* > if UPLO = 'L', AP(i + (j-1)*(2*n-j)/2) = A(i,j) for j<=i<=n. */ /* > */ /* > On exit, the contents of AP are destroyed. */ /* > \endverbatim */ /* > */ /* > \param[in,out] BP */ /* > \verbatim */ /* > BP is DOUBLE PRECISION array, dimension (N*(N+1)/2) */ /* > On entry, the upper or lower triangle of the symmetric matrix */ /* > B, packed columnwise in a linear array. The j-th column of B */ /* > is stored in the array BP as follows: */ /* > if UPLO = 'U', BP(i + (j-1)*j/2) = B(i,j) for 1<=i<=j; */ /* > if UPLO = 'L', BP(i + (j-1)*(2*n-j)/2) = B(i,j) for j<=i<=n. */ /* > */ /* > On exit, the triangular factor U or L from the Cholesky */ /* > factorization B = U**T*U or B = L*L**T, in the same storage */ /* > format as B. */ /* > \endverbatim */ /* > */ /* > \param[in] VL */ /* > \verbatim */ /* > VL is DOUBLE PRECISION */ /* > */ /* > If RANGE='V', the lower bound of the interval to */ /* > be searched for eigenvalues. VL < VU. */ /* > Not referenced if RANGE = 'A' or 'I'. */ /* > \endverbatim */ /* > */ /* > \param[in] VU */ /* > \verbatim */ /* > VU is DOUBLE PRECISION */ /* > */ /* > If RANGE='V', the upper bound of the interval to */ /* > be searched for eigenvalues. VL < VU. */ /* > Not referenced if RANGE = 'A' or 'I'. */ /* > \endverbatim */ /* > */ /* > \param[in] IL */ /* > \verbatim */ /* > IL is INTEGER */ /* > */ /* > If RANGE='I', the index of the */ /* > smallest eigenvalue to be returned. */ /* > 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. */ /* > Not referenced if RANGE = 'A' or 'V'. */ /* > \endverbatim */ /* > */ /* > \param[in] IU */ /* > \verbatim */ /* > IU is INTEGER */ /* > */ /* > If RANGE='I', the index of the */ /* > largest eigenvalue to be returned. */ /* > 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. */ /* > Not referenced if RANGE = 'A' or 'V'. */ /* > \endverbatim */ /* > */ /* > \param[in] ABSTOL */ /* > \verbatim */ /* > ABSTOL is DOUBLE PRECISION */ /* > The absolute error tolerance for the eigenvalues. */ /* > An approximate eigenvalue is accepted as converged */ /* > when it is determined to lie in an interval [a,b] */ /* > of width less than or equal to */ /* > */ /* > ABSTOL + EPS * f2cmax( |a|,|b| ) , */ /* > */ /* > where EPS is the machine precision. If ABSTOL is less than */ /* > or equal to zero, then EPS*|T| will be used in its place, */ /* > where |T| is the 1-norm of the tridiagonal matrix obtained */ /* > by reducing A to tridiagonal form. */ /* > */ /* > Eigenvalues will be computed most accurately when ABSTOL is */ /* > set to twice the underflow threshold 2*DLAMCH('S'), not zero. */ /* > If this routine returns with INFO>0, indicating that some */ /* > eigenvectors did not converge, try setting ABSTOL to */ /* > 2*DLAMCH('S'). */ /* > \endverbatim */ /* > */ /* > \param[out] M */ /* > \verbatim */ /* > M is INTEGER */ /* > The total number of eigenvalues found. 0 <= M <= N. */ /* > If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. */ /* > \endverbatim */ /* > */ /* > \param[out] W */ /* > \verbatim */ /* > W is DOUBLE PRECISION array, dimension (N) */ /* > On normal exit, the first M elements contain the selected */ /* > eigenvalues in ascending order. */ /* > \endverbatim */ /* > */ /* > \param[out] Z */ /* > \verbatim */ /* > Z is DOUBLE PRECISION array, dimension (LDZ, f2cmax(1,M)) */ /* > If JOBZ = 'N', then Z is not referenced. */ /* > If JOBZ = 'V', then if INFO = 0, the first M columns of Z */ /* > contain the orthonormal eigenvectors of the matrix A */ /* > corresponding to the selected eigenvalues, with the i-th */ /* > column of Z holding the eigenvector associated with W(i). */ /* > The eigenvectors are normalized as follows: */ /* > if ITYPE = 1 or 2, Z**T*B*Z = I; */ /* > if ITYPE = 3, Z**T*inv(B)*Z = I. */ /* > */ /* > If an eigenvector fails to converge, then that column of Z */ /* > contains the latest approximation to the eigenvector, and the */ /* > index of the eigenvector is returned in IFAIL. */ /* > Note: the user must ensure that at least f2cmax(1,M) columns are */ /* > supplied in the array Z; if RANGE = 'V', the exact value of M */ /* > is not known in advance and an upper bound must be used. */ /* > \endverbatim */ /* > */ /* > \param[in] LDZ */ /* > \verbatim */ /* > LDZ is INTEGER */ /* > The leading dimension of the array Z. LDZ >= 1, and if */ /* > JOBZ = 'V', LDZ >= f2cmax(1,N). */ /* > \endverbatim */ /* > */ /* > \param[out] WORK */ /* > \verbatim */ /* > WORK is DOUBLE PRECISION array, dimension (8*N) */ /* > \endverbatim */ /* > */ /* > \param[out] IWORK */ /* > \verbatim */ /* > IWORK is INTEGER array, dimension (5*N) */ /* > \endverbatim */ /* > */ /* > \param[out] IFAIL */ /* > \verbatim */ /* > IFAIL is INTEGER array, dimension (N) */ /* > If JOBZ = 'V', then if INFO = 0, the first M elements of */ /* > IFAIL are zero. If INFO > 0, then IFAIL contains the */ /* > indices of the eigenvectors that failed to converge. */ /* > If JOBZ = 'N', then IFAIL is not referenced. */ /* > \endverbatim */ /* > */ /* > \param[out] INFO */ /* > \verbatim */ /* > INFO is INTEGER */ /* > = 0: successful exit */ /* > < 0: if INFO = -i, the i-th argument had an illegal value */ /* > > 0: DPPTRF or DSPEVX returned an error code: */ /* > <= N: if INFO = i, DSPEVX failed to converge; */ /* > i eigenvectors failed to converge. Their indices */ /* > are stored in array IFAIL. */ /* > > N: if INFO = N + i, for 1 <= i <= N, then the leading */ /* > minor of order i of B is not positive definite. */ /* > The factorization of B could not be completed and */ /* > no eigenvalues or eigenvectors were computed. */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date June 2016 */ /* > \ingroup doubleOTHEReigen */ /* > \par Contributors: */ /* ================== */ /* > */ /* > Mark Fahey, Department of Mathematics, Univ. of Kentucky, USA */ /* ===================================================================== */ /* Subroutine */ int dspgvx_(integer *itype, char *jobz, char *range, char * uplo, integer *n, doublereal *ap, doublereal *bp, doublereal *vl, doublereal *vu, integer *il, integer *iu, doublereal *abstol, integer *m, doublereal *w, doublereal *z__, integer *ldz, doublereal *work, integer *iwork, integer *ifail, integer *info) { /* System generated locals */ integer z_dim1, z_offset, i__1; /* Local variables */ integer j; extern logical lsame_(char *, char *); char trans[1]; logical upper; extern /* Subroutine */ int dtpmv_(char *, char *, char *, integer *, doublereal *, doublereal *, integer *), dtpsv_(char *, char *, char *, integer *, doublereal *, doublereal *, integer *); logical wantz, alleig, indeig, valeig; extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen), dpptrf_( char *, integer *, doublereal *, integer *), dspgst_( integer *, char *, integer *, doublereal *, doublereal *, integer *), dspevx_(char *, char *, char *, integer *, doublereal *, doublereal *, doublereal *, integer *, integer *, doublereal *, integer *, doublereal *, doublereal *, integer *, doublereal *, integer *, integer *, integer *); /* -- LAPACK driver routine (version 3.7.0) -- */ /* -- LAPACK is a software package provided by Univ. of Tennessee, -- */ /* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */ /* June 2016 */ /* ===================================================================== */ /* Test the input parameters. */ /* Parameter adjustments */ --ap; --bp; --w; z_dim1 = *ldz; z_offset = 1 + z_dim1 * 1; z__ -= z_offset; --work; --iwork; --ifail; /* Function Body */ upper = lsame_(uplo, "U"); wantz = lsame_(jobz, "V"); alleig = lsame_(range, "A"); valeig = lsame_(range, "V"); indeig = lsame_(range, "I"); *info = 0; if (*itype < 1 || *itype > 3) { *info = -1; } else if (! (wantz || lsame_(jobz, "N"))) { *info = -2; } else if (! (alleig || valeig || indeig)) { *info = -3; } else if (! (upper || lsame_(uplo, "L"))) { *info = -4; } else if (*n < 0) { *info = -5; } else { if (valeig) { if (*n > 0 && *vu <= *vl) { *info = -9; } } else if (indeig) { if (*il < 1) { *info = -10; } else if (*iu < f2cmin(*n,*il) || *iu > *n) { *info = -11; } } } if (*info == 0) { if (*ldz < 1 || wantz && *ldz < *n) { *info = -16; } } if (*info != 0) { i__1 = -(*info); xerbla_("DSPGVX", &i__1, (ftnlen)6); return 0; } /* Quick return if possible */ *m = 0; if (*n == 0) { return 0; } /* Form a Cholesky factorization of B. */ dpptrf_(uplo, n, &bp[1], info); if (*info != 0) { *info = *n + *info; return 0; } /* Transform problem to standard eigenvalue problem and solve. */ dspgst_(itype, uplo, n, &ap[1], &bp[1], info); dspevx_(jobz, range, uplo, n, &ap[1], vl, vu, il, iu, abstol, m, &w[1], & z__[z_offset], ldz, &work[1], &iwork[1], &ifail[1], info); if (wantz) { /* Backtransform eigenvectors to the original problem. */ if (*info > 0) { *m = *info - 1; } if (*itype == 1 || *itype == 2) { /* For A*x=(lambda)*B*x and A*B*x=(lambda)*x; */ /* backtransform eigenvectors: x = inv(L)**T*y or inv(U)*y */ if (upper) { *(unsigned char *)trans = 'N'; } else { *(unsigned char *)trans = 'T'; } i__1 = *m; for (j = 1; j <= i__1; ++j) { dtpsv_(uplo, trans, "Non-unit", n, &bp[1], &z__[j * z_dim1 + 1], &c__1); /* L10: */ } } else if (*itype == 3) { /* For B*A*x=(lambda)*x; */ /* backtransform eigenvectors: x = L*y or U**T*y */ if (upper) { *(unsigned char *)trans = 'T'; } else { *(unsigned char *)trans = 'N'; } i__1 = *m; for (j = 1; j <= i__1; ++j) { dtpmv_(uplo, trans, "Non-unit", n, &bp[1], &z__[j * z_dim1 + 1], &c__1); /* L20: */ } } } return 0; /* End of DSPGVX */ } /* dspgvx_ */
the_stack_data/75988.c
#include <stdio.h> struct date { int year; int month; int day; }; typedef struct date date; // 1 d1 > d2 // 0 d1 == d2 // -1 d1 < d2 int compare(date d1, date d2) { if (d1.year > d2.year) return 1; else if (d1.year < d2.year) return -1; else { // d1.year == d2.year if (d1.month > d2.month) return 1; else if (d1.month < d2.month) return -1; else { // d1.month == d2.month if (d1.day > d2.day) return 1; else if (d1.day < d2.day) return -1; else return 0; } } } /** * This function is aproximation */ int days(date d1, date d2) { int days = d1.day - d2.day; days += (d1.month - d2.month) * 30; days += (d1.year - d2.year) * 365; return days; } void read(date *d) { scanf("%d.%d.%d", &d->day, &d->month, &(*d).year); } void print(date *d) { printf("%02d.%02d.%d\n", d->day, d->month, d->year); } int main() { date d1; date d2; read(&d1); read(&d2); int res = compare(d1, d2); if (res == 0) { printf("Dates are equal\n"); } else if (res > 0) { printf("The difference in days is %d days.\n", days(d1, d2)); } else { printf("The difference in days is %d days.\n", days(d2, d1)); } return 0; }
the_stack_data/6388299.c
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-ipa-icf" } */ #include <stdio.h> __attribute__ ((noinline)) int fce1(int a, int b) { int swap; if(a < b) { swap = a; a = b; b = swap; } return a / b; } __attribute__ ((noinline)) int fce2(int x, int y) { int tmp; if(x < y) { tmp = x; x = y; y = tmp; } return x / y; } int main(int argc, char **argv) { printf("fce1: %d\n", fce1(argc, argc + 2)); printf("fce2: %d\n", fce2(argc, 2 * argc)); } /* { dg-final { scan-ipa-dump "Semantic equality hit:fce1->fce2" "icf" } } */ /* { dg-final { scan-ipa-dump "Equal symbols: 1" "icf" } } */
the_stack_data/220454967.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int expression) { if (!expression) { ERROR: __VERIFIER_error(); }; return; } int __global_lock; void __VERIFIER_atomic_begin() { __VERIFIER_assume(__global_lock==0); __global_lock=1; return; } void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; } #include <assert.h> #include <pthread.h> #ifndef TRUE #define TRUE (_Bool)1 #endif #ifndef FALSE #define FALSE (_Bool)0 #endif #ifndef NULL #define NULL ((void*)0) #endif #ifndef FENCE #define FENCE(x) ((void)0) #endif #ifndef IEEE_FLOAT_EQUAL #define IEEE_FLOAT_EQUAL(x,y) (x==y) #endif #ifndef IEEE_FLOAT_NOTEQUAL #define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y) #endif void * P0(void *arg); void * P1(void *arg); void fence(); void isync(); void lwfence(); int __unbuffered_cnt; int __unbuffered_cnt = 0; int __unbuffered_p0_EAX; int __unbuffered_p0_EAX = 0; int __unbuffered_p1_EAX; int __unbuffered_p1_EAX = 0; int __unbuffered_p1_EBX; int __unbuffered_p1_EBX = 0; _Bool main$tmp_guard0; _Bool main$tmp_guard1; int x; int x = 0; int y; int y = 0; _Bool y$flush_delayed; int y$mem_tmp; _Bool y$r_buff0_thd0; _Bool y$r_buff0_thd1; _Bool y$r_buff0_thd2; _Bool y$r_buff1_thd0; _Bool y$r_buff1_thd1; _Bool y$r_buff1_thd2; _Bool y$read_delayed; int *y$read_delayed_var; int y$w_buff0; _Bool y$w_buff0_used; int y$w_buff1; _Bool y$w_buff1_used; _Bool weak$$choice0; _Bool weak$$choice2; void * P0(void *arg) { __VERIFIER_atomic_begin(); x = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); weak$$choice0 = nondet_0(); weak$$choice2 = nondet_0(); y$flush_delayed = weak$$choice2; y$mem_tmp = y; y = !y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y : (y$w_buff0_used && y$r_buff0_thd1 ? y$w_buff0 : y$w_buff1); y$w_buff0 = weak$$choice2 ? y$w_buff0 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff0 : (y$w_buff0_used && y$r_buff0_thd1 ? y$w_buff0 : y$w_buff0)); y$w_buff1 = weak$$choice2 ? y$w_buff1 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff1 : (y$w_buff0_used && y$r_buff0_thd1 ? y$w_buff1 : y$w_buff1)); y$w_buff0_used = weak$$choice2 ? y$w_buff0_used : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff0_used : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : y$w_buff0_used)); y$w_buff1_used = weak$$choice2 ? y$w_buff1_used : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff1_used : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : FALSE)); y$r_buff0_thd1 = weak$$choice2 ? y$r_buff0_thd1 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$r_buff0_thd1 : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : y$r_buff0_thd1)); y$r_buff1_thd1 = weak$$choice2 ? y$r_buff1_thd1 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$r_buff1_thd1 : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : FALSE)); __unbuffered_p0_EAX = y; y = y$flush_delayed ? y$mem_tmp : y; y$flush_delayed = FALSE; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_1(); } void * P1(void *arg) { __VERIFIER_atomic_begin(); y$w_buff1 = y$w_buff0; y$w_buff0 = 1; y$w_buff1_used = y$w_buff0_used; y$w_buff0_used = TRUE; __VERIFIER_assert(!(y$w_buff1_used && y$w_buff0_used)); y$r_buff1_thd0 = y$r_buff0_thd0; y$r_buff1_thd1 = y$r_buff0_thd1; y$r_buff1_thd2 = y$r_buff0_thd2; y$r_buff0_thd2 = TRUE; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); weak$$choice0 = nondet_0(); weak$$choice2 = nondet_0(); y$flush_delayed = weak$$choice2; y$mem_tmp = y; y = !y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y : (y$w_buff0_used && y$r_buff0_thd2 ? y$w_buff0 : y$w_buff1); y$w_buff0 = weak$$choice2 ? y$w_buff0 : (!y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y$w_buff0 : (y$w_buff0_used && y$r_buff0_thd2 ? y$w_buff0 : y$w_buff0)); y$w_buff1 = weak$$choice2 ? y$w_buff1 : (!y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y$w_buff1 : (y$w_buff0_used && y$r_buff0_thd2 ? y$w_buff1 : y$w_buff1)); y$w_buff0_used = weak$$choice2 ? y$w_buff0_used : (!y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y$w_buff0_used : (y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$w_buff0_used)); y$w_buff1_used = weak$$choice2 ? y$w_buff1_used : (!y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y$w_buff1_used : (y$w_buff0_used && y$r_buff0_thd2 ? FALSE : FALSE)); y$r_buff0_thd2 = weak$$choice2 ? y$r_buff0_thd2 : (!y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y$r_buff0_thd2 : (y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$r_buff0_thd2)); y$r_buff1_thd2 = weak$$choice2 ? y$r_buff1_thd2 : (!y$w_buff0_used || !y$r_buff0_thd2 && !y$w_buff1_used || !y$r_buff0_thd2 && !y$r_buff1_thd2 ? y$r_buff1_thd2 : (y$w_buff0_used && y$r_buff0_thd2 ? FALSE : FALSE)); __unbuffered_p1_EAX = y; y = y$flush_delayed ? y$mem_tmp : y; y$flush_delayed = FALSE; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p1_EBX = x; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); y = y$w_buff0_used && y$r_buff0_thd2 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd2 ? y$w_buff1 : y); y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$w_buff0_used; y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd2 || y$w_buff1_used && y$r_buff1_thd2 ? FALSE : y$w_buff1_used; y$r_buff0_thd2 = y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$r_buff0_thd2; y$r_buff1_thd2 = y$w_buff0_used && y$r_buff0_thd2 || y$w_buff1_used && y$r_buff1_thd2 ? FALSE : y$r_buff1_thd2; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_1(); } void fence() { } void isync() { } void lwfence() { } int main() { pthread_create(NULL, NULL, P0, NULL); pthread_create(NULL, NULL, P1, NULL); __VERIFIER_atomic_begin(); main$tmp_guard0 = __unbuffered_cnt == 2; __VERIFIER_atomic_end(); __VERIFIER_assume(main$tmp_guard0); __VERIFIER_atomic_begin(); y = y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd0 ? y$w_buff1 : y); y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$w_buff0_used; y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd0 || y$w_buff1_used && y$r_buff1_thd0 ? FALSE : y$w_buff1_used; y$r_buff0_thd0 = y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$r_buff0_thd0; y$r_buff1_thd0 = y$w_buff0_used && y$r_buff0_thd0 || y$w_buff1_used && y$r_buff1_thd0 ? FALSE : y$r_buff1_thd0; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); /* Program proven to be relaxed for X86, model checker says YES. */ main$tmp_guard1 = !(__unbuffered_p0_EAX == 0 && __unbuffered_p1_EAX == 1 && __unbuffered_p1_EBX == 0); __VERIFIER_atomic_end(); /* Program proven to be relaxed for X86, model checker says YES. */ __VERIFIER_assert(main$tmp_guard1); return 0; }
the_stack_data/23576086.c
#include<stdio.h> #include<stdlib.h> // Function should be declared before using in c to avoid implicit error. struct node* rem(struct node* root,int data); struct node* goleft(struct node *root,int add); struct node* goright(struct node *root,int add); struct node* insert(struct node *root,int add); void inorder(struct node* root); struct node //node declaration for BST { int data; struct node *left; struct node *right; }; struct node* createnode(int data) //Empty node { struct node *a; a=(struct node*)malloc(sizeof(struct node)); a->data=data; a->left=NULL; a->right=NULL; return a; } struct node* goleft(struct node *root,int add) //Insertion using recursion. { if(root==NULL) { struct node* temp; temp = createnode(add); return temp; } else { root=insert(root,add); return root; } } struct node* goright(struct node *root, int add) { if(root==NULL) { struct node* temp; temp = createnode(add); return temp; } else { root=insert(root,add); return root; } } struct node* insert(struct node *root,int add) //function that returns pointer to node.(adding at start) { if(root==NULL) root=createnode(add); else { if(add > root->data) root->right = goright(root->right,add); if(add < root->data) root->left=goleft(root->left,add); } return root; } void printleft(struct node* root) { if(root->left==NULL) return; else inorder(root->left); } void printright(struct node* root) { if(root->right==NULL) return; else inorder(root->right); } void printroot(struct node* root) { printf("%d ",root->data); return; } void inorder(struct node* root) // prints root followed by lift then right child. { printleft(root); printroot(root); printright(root); } int min(struct node* root) { while(root->left!=NULL) root=root->left; return root->data; } struct node* rem(struct node* root,int data) { if(root==NULL) return root; if(root->data > data) root->left=rem(root->left,data); return root; if(root->data < data) root->right=rem(root->right,data); return root; if(root->data == data) { if(root->left == NULL && root->right==NULL) { return NULL; } else { if(root->right==NULL) return root->left; if(root->left==NULL) return root->right; if(root->left != NULL && root->right != NULL) { root->data=min(root->right); root->right=rem(root->right,min(root->right)); printf("%d",min(root->right)); return root; } } } } int main() { struct node* start; start=NULL; //inputting the tree. int i,x; printf("Enter the number of elements you want to add\n"); scanf("%d",&i); printf("Enter %d elements-\n",i); for(;i>0;--i) { scanf("%d",&x); start=insert(start,x); } inorder(start); return 0; }
the_stack_data/734643.c
/* This testcase is part of GDB, the GNU debugger. Copyright 2011-2020 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ int global_var = 42; static int static_var = 50; int main () { int some_var = 0; return 0; }
the_stack_data/132952604.c
int b[1]; int i,j; void main() { b[0]--; print("b -1"); printid(b); }
the_stack_data/6389111.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define BUFFER_SIZE 256 FILE* openOrExit(const char* fileName, const char* mode) { FILE* file = fopen(fileName, mode); if(file == NULL) { perror(fileName); exit(EXIT_FAILURE); } return file; } int main(int argc, char** argv) { if(argc < 4) { fprintf(stderr, "USAGE: %s \n\n", "Creates {file}.c from the contents of {res} with open type {type}\n"); return EXIT_FAILURE; } const char* name = argv[1]; const char* openType = argv[3]; FILE* resource = openOrExit(argv[2], openType); char fileName[BUFFER_SIZE]; snprintf(fileName, sizeof(fileName), "%s.c", name); //NOLINT FILE* out = openOrExit(fileName, "w"); fprintf(out, "#include <stdlib.h>\n\n"); fprintf(out, "const unsigned char %s[] = {\n", name); unsigned char buf[BUFFER_SIZE]; size_t nread = 0; size_t lineCount = 0; size_t const lineSize = 8; do { nread = fread(buf, 1, sizeof(buf), resource); for(size_t i = 0; i < nread; ++i) { if(lineCount == 0) { fprintf(out, "\t"); } fprintf(out, "0x%02X, ", buf[i]); if(++lineCount == lineSize) { fprintf(out, "\n"); lineCount = 0; } } } while(nread > 0); if(lineCount > 0) { fprintf(out, "\n"); } fprintf(out, "};\n\n"); fprintf(out, "const size_t %sLength = sizeof(%s);\n", name, name); fclose(resource); fclose(out); return EXIT_SUCCESS; }
the_stack_data/9059.c
/* Autor: Wanderson Gomes da Costa Data da Ultima Modificacao: 28 de fevereiro de 2022 E-mail: [email protected] IDE usada: VSCode Sistema Operacional: Ubuntu Problema: Programa que apresenta todos os bytes e bits de um arquivo informado. Exemplo no console: $ ./apresenta_bytes_arquivo Informe o caminho completo do arquivo: arquivo.txt Saida esperada: 1 -> 01100001 2 -> 01100010 3 -> 01100011 */ #include <stdio.h> #include <stdlib.h> //FUNCAO QUE IMPRIME OS BITS DE UM BYTE INFORMADO void imprimirByte(unsigned char byte) { //dados unsigned char aux = 0b10000000; register int i; //processamento for (i = 0; i < 8; i++) { ((byte & aux) == aux) ? putc('1', stdout) : putc('0', stdout); aux = aux >> 1; } printf("\n"); } //PROGRAMA PRINCIPAL int main() { //dados unsigned long int numero_byte; unsigned char byte; char nome_arquivo[250]; FILE* arquivo = NULL; //leitura printf("Informe o caminho completo do arquivo: "); scanf("%s", nome_arquivo); //processamento arquivo = fopen(nome_arquivo, "rb"); if (arquivo == NULL) { printf("Error: arquivo nao encontrado!\n"); } else { numero_byte = 1; while (fread(&byte, sizeof(byte), 1, arquivo)) { printf("%lu -> ", numero_byte++); imprimirByte(byte); } } return 0; }
the_stack_data/38894.c
#include <stdio.h> #include <stdbool.h> int main() { int i = 0; while(true) { i++; if (i == 1000000) i = 0; } return 0; }
the_stack_data/76618.c
// C Compiler flag: -fopenmp #include <stdio.h> #include <omp.h> #define N 20 int main(int argc, char *argv[]) { omp_set_dynamic(0); // запретить библиотеке openmp менять число потоков во время исполнения omp_set_num_threads(8); // установить число потоков в 2 int threadsCount = omp_get_max_threads(); omp_lock_t locks[threadsCount]; omp_lock_t root; omp_init_lock(&root); for (int index = 0; index < threadsCount; index++) { omp_init_lock(&locks[index]); } printf("%d\n", threadsCount); #pragma omp parallel { //printf("Hello, I'm thread number %d from %d\n", omp_get_thread_num(), omp_get_num_threads()); omp_set_lock(&root); printf("Hello, I'm thread number %d from %d\n", omp_get_thread_num(), omp_get_num_threads()); for (int i = 0; i < threadsCount; i++) { if (omp_test_lock(&locks[i])) { omp_unset_lock(&root); if (i < threadsCount - 1) { omp_set_lock(&locks[i]); } else { omp_unset_lock(&locks[i]); } printf("Hello, I'm thread number %d from %d\n", omp_get_thread_num(), omp_get_num_threads()); if (i != 0) { omp_unset_lock(&locks[i - 1]); } break; } } } //dispose for (int index = 0; index < threadsCount; index++) { omp_destroy_lock(&locks[index]); } omp_destroy_lock(&root); return 0; }
the_stack_data/62636625.c
// 题目:输出国际象棋棋盘。(8行*8列) #include <stdio.h> #include <stdlib.h> int main(){ int isBlack = 1; for(int i = 0; i < 8; i++){ for(int j = 0; j < 8; j++){ if(isBlack == 1){ printf("$ "); }else{ printf("@ "); } isBlack = isBlack * -1; } isBlack = isBlack * -1; printf("\n"); } system("pause"); return 0; }
the_stack_data/132951994.c
#include <stdio.h> #include <stdlib.h> #include <math.h> /* entradas: 3 4 5 */ int main() { double a, b, c, a1, a2, a3; printf("Digite o 1o lado do triangulo: "); scanf("%lf", &a); printf("Digite o 2o lado do triangulo: "); scanf("%lf", &b); printf("Digite o 3o lado do triangulo: "); scanf("%lf", &c); //Regra dos Cosenos: utilizamos os 3 lados para encontrar os 3 angulos a1 = acos((b*b + c*c - a*a)/(2*b*c)); a2 = acos((a*a + c*c - b*b)/(2*a*c)); a3 = acos((a*a + b*b - c*c)/(2*a*b)); // conversao de radianos para graus a1 = (a1 * 180)/acos(-1.0); a2 = (a2 * 180)/acos(-1.0); a3 = (a3 * 180)/acos(-1.0); if (a1 == 90 || a2 == 90 || a3 == 90) printf("\nTriangulo Retangulo.\n"); else if (a1 < 90 && a2 < 90 && a3 <90) printf("\nTriangulo Acutangulo.\n"); else printf("\nTriangulo Obtusangulo.\n"); return 0; }
the_stack_data/206394118.c
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.c * Author: vdesaunay * * Created on 6 octobre 2021, 10:43 */ #include <stdio.h> #include <stdlib.h> //include pour socket #include <sys/types.h> #include <sys/socket.h> //include pour stockaddr_in #include <netinet/in.h> #include <arpa/inet.h> //include gestion erreurs #include <string.h> #include <errno.h> int main(int argc, char** argv) { int sock; float valEnvoyee,valRecu; float retour; struct sockaddr_in infosServeur; //struct sockaddr_in infosReception; socklen_t taille; //creation de la socket sock = socket (PF_INET,SOCK_STREAM, IPPROTO_TCP); if (sock ==-1) { printf("pb socket : %s\n",strerror(errno)); exit(errno); } //init de la structure pour communiquer avec le serveur infosServeur.sin_family = AF_INET; infosServeur.sin_port = htons (6666); //port dans ordre reseau infosServeur.sin_addr.s_addr= inet_addr("172.18.58.92"); //Communication avec le serveur retour=connect(sock,(struct sockaddr *)&infosServeur,sizeof(infosServeur)); valEnvoyee=16.06; retour =write(sock,( void *)&valEnvoyee,sizeof(valEnvoyee)); if(retour==-1){ printf("pb write: %s\n",strerror(errno)); exit(errno); } //recevoir l'entier en provenance du ser6 retour=read(sock,(void *)&valRecu,sizeof(valRecu)); if(retour==-1){ printf("pb read: %s\n",strerror(errno)); exit(errno); } //affiche l'entier printf("Message reçu du serveur : %f\n",valRecu); return (EXIT_SUCCESS); }
the_stack_data/167331249.c
void bar(int *Y) { *Y = 2 * *Y; } void foo(int *X) { #pragma spf metadata replace(bar(X)) *X = *X + *X; } int baz() { int Z = 5; #pragma spf transform replace with(foo) bar(&Z); return Z; } //CHECK:
the_stack_data/170453533.c
#include <stdio.h> int fib(int n) { if (n == 0 || n == 1) { return n; } return fib(n - 1) + fib(n - 2); } int main(void) { int a; scanf("%d", &a); int fib_number = fib(a); a = 0; for (; a < fib_number; a++){ printf("fib number is %d", fib_number); } return 0; }
the_stack_data/77590.c
int main() { int a; int b = __alignof__ a; return 0; }
the_stack_data/430578.c
#include <stdio.h> #define debug(x) printf("%s %s\n", #x, x) int main() { char* str = "chenzongzhi"; debug(str); return 0; }