// https://syzkaller.appspot.com/bug?id=e08f517c82716c706611555c83e4fa826effabfd // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_ioctl #define __NR_ioctl 29 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static const char* setup_fault() { int fd = open("/proc/self/make-it-fail", O_WRONLY); if (fd == -1) return "CONFIG_FAULT_INJECTION is not enabled"; close(fd); fd = open("/proc/thread-self/fail-nth", O_WRONLY); if (fd == -1) return "kernel does not have systematic fault injection support"; close(fd); static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) return "failed to write fault injection file"; } } return NULL; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000040, "bcachefs\000", 9); memcpy((void*)0x20000180, "./bus\000", 6); sprintf((char*)0x20000140, "%020llu", (long long)-1); memcpy( (void*)0x20001280, "\x78\x9c\xec\xdd\x0f\x8c\x5d\x55\xfd\x20\xf0\x7b\xdf\x9b\x69\x67\x3a\x6d" "\x99\xa2\x40\x2d\x7f\x3a\x94\xd2\x2d\xac\xc0\x94\xe2\x02\x0d\xc6\x81\x8d" "\x80\xab\x45\x04\x2d\x2a\x48\x5b\xe9\xb4\x0c\xf6\x0f\x74\x5a\x0b\x55\x6c" "\x21\x11\x0d\xb2\x2c\xc9\x6e\x94\x35\x91\x10\xa2\x09\x1b\x42\x70\x97\xac" "\xeb\x9f\x35\xc5\x2c\x62\x56\xd6\xd8\xc4\x65\x8b\xbb\xeb\x62\x40\xb3\xb2" "\x1b\xac\x41\xd0\xfe\x28\xb1\xbf\xcc\xcc\x3d\x33\xf3\xee\xdc\xf3\xee\x9b" "\xf7\xde\xd4\x02\x9f\x4f\x60\xee\xbb\xf7\x9d\xf7\x3d\xe7\x7b\xee\x99\x3b" "\xf7\x9e\x77\xfb\x5e\x02\x00\x00\xc0\x3b\xc2\x33\x5f\x1e\xfe\xcb\x55\x8b" "\x3e\xf8\xf3\xbb\x07\x5f\xdf\x73\xe5\x0f\xb7\xdc\x95\xf4\x54\x47\xb7\x77" "\x85\x02\xbd\xd9\xf2\xf6\xbf\x57\x0b\x39\x9a\x66\x77\x2c\x1c\x5d\xe6\xc7" "\xc5\x03\x03\xb3\x9e\xf9\xc0\x7d\x1f\x79\xfe\x5b\x9f\xf9\xce\x8b\x2f\x2d" "\x58\xbe\xe2\xdb\xb7\x5c\x7e\xf8\xb6\xb9\xab\xef\xbd\x77\xe0\x57\x17\x1e" "\xfe\xc5\xdf\xee\x2c\x8b\x1b\xc6\xd3\x59\x13\xeb\xe9\x2b\x69\x92\x9c\xfa" "\xcb\xe5\x5f\xbf\xe7\xa7\xcf\x9e\x34\xb2\x2d\x4d\x92\xa4\x9a\xf6\xee\x4d" "\x92\x05\x69\xe5\x27\x0b\xd2\x5c\x88\xfe\x37\x92\x24\xd9\x30\xde\xce\xda" "\x27\x9f\x7c\x7d\xe5\xc6\x91\xe5\xde\xaf\xcd\xae\xd9\x7e\x5c\x2e\x88\xf1" "\xfe\xce\xd6\x95\x8d\xb3\xaf\xfc\x78\xdb\x29\x7f\x38\xf7\xf2\xe7\xf7\xfd" "\xfa\xb2\xd7\xfb\xbb\xde\xd8\xbe\x77\xa2\x48\xda\x35\x69\x3c\x25\xc9\xfc" "\x75\x93\x5f\xdf\x99\x24\x49\x77\xf6\xff\x88\x30\xda\x16\x86\x17\x67\xcb" "\xab\x93\x24\x99\x33\xe9\x75\x17\x95\xb4\x6b\x49\x83\xed\x3f\x27\xb2\xbe" "\x28\x5b\xce\xca\x96\x3d\x25\x71\xc2\xf3\xa7\xe7\xd6\x3b\x1b\x6c\x47\x47" "\x6e\xd9\xd5\xe0\xeb\x9a\x55\x99\xe1\xf8\x41\xd8\x7f\x73\x67\xb8\xfe\xfc" "\xc1\x2d\x5f\xcf\x82\x6c\xf9\xbd\x6c\x79\xd6\x34\xe3\x57\xc3\xff\x69\x52" "\x49\x93\x8e\xf1\xea\x36\xa7\x13\x63\x24\x99\xb4\xdf\xd2\x24\x1d\xdd\xf7" "\x13\xeb\x95\x9a\xb1\x90\xe6\xc6\x46\x9a\x24\x69\x6e\xbd\x92\x5b\xaf\x76" "\xe6\xf2\x1a\xad\x37\x1b\x68\xd5\x34\xad\xdd\x1e\xca\xe5\xb6\xf7\x65\xdb" "\x3b\xb2\xed\xa7\x97\x8c\xb5\x6b\x23\xdb\xdf\x13\xf2\xcd\x7e\x51\x0f\xe5" "\xf2\xcf\x07\xed\x99\xf2\x60\x3c\xaf\x51\xa1\x5d\xbf\xad\xd3\x96\xa3\xa1" "\x32\xe9\x18\x54\xb4\x3d\xb4\xb7\x2b\xdb\x19\x3d\xd9\xb6\x9e\xf4\xf8\x29" "\xaf\x39\x52\x20\x3c\xb7\xe6\xa5\xfb\x9f\x78\x71\xf7\x43\x4b\x7b\x23\xed" "\x48\xbf\x9b\x66\xf1\xd3\xa6\xe2\x3f\xb7\xe5\xe2\x03\xcb\x76\xff\xe6\xe0" "\xc2\x58\xfc\x75\x95\x2c\x7e\xa5\xa9\xf8\xc3\xe7\xbe\xfa\xf8\xcb\xd7\xfc" "\xec\xa4\x68\xfc\x07\x42\xfc\x6a\x53\xf1\x5f\xb8\x60\xd9\x37\x7e\xb4\x67" "\xd7\xa1\x68\xff\xfc\x29\xf4\x4f\x47\x53\xf1\xab\xab\xce\x3e\xbc\xe2\xee" "\xfe\x35\xd1\xf6\x3f\x1c\xe2\x77\x35\x15\xff\x91\xcb\x1e\xfb\xe6\xfc\xf7" "\x3d\xfd\x78\xb4\xfd\xfd\xa1\x7f\xba\x9b\xeb\x9f\xa1\x9d\x6f\x5e\xff\xe8" "\x09\x07\xa3\xf1\x93\x10\x7f\x4e\x53\xf1\x2f\x7d\xed\xc4\x33\x57\x6d\x7b" "\x6c\x53\x34\xfe\x53\xa1\x7f\x7a\x9a\x8a\xff\xec\xf0\xd0\xea\x7b\x6e\x5e" "\xbc\xab\x2f\x16\x7f\x7f\x88\x3f\xaf\xa9\xf8\x4b\x7e\x77\xc3\xf5\xfb\x0e" "\x0c\xbe\x10\x6d\xff\x40\xe8\x9f\xde\xa6\xe2\xbf\x7f\xe9\xa5\x57\xaf\x3e" "\xb8\xf5\xbe\xd8\xb1\x33\xdd\x7b\xb4\xfe\xc2\x02\xbc\x3d\xbd\x2b\x3b\xc7" "\xfa\x6a\xb6\xde\xec\x75\x66\xab\x26\x5d\x2f\x3c\xd8\x9b\x8e\x9d\xf3\xcd" "\xcd\xfe\x9f\x57\x6d\x67\x4d\xb5\x46\xea\x99\x3f\x73\xe1\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x87\x7a" "\xa4\x77\xc3\xe0\xdf\x7e\x70\xda\x9b\x1d\xd9\xfa\xec\xec\xc1\x69\xd5\xb1" "\x65\xd8\x3e\x2b\x49\xd2\xee\x24\x49\x86\x77\xac\xdf\xbe\x63\x68\xeb\xa6" "\xbe\x5b\xb6\xed\xdc\xbe\x75\xfd\xe6\xbe\xf5\x3b\xfa\x06\xb7\xee\xd8\x7e" "\x47\xdf\x05\xef\xed\xdb\x3e\x78\xeb\xe6\xf5\x77\x8c\x3c\xdb\x7f\xce\xca" "\xb1\xd7\x1d\x9f\xa4\x63\xcb\xf4\xd4\x29\x75\x1f\x39\x72\xe4\x48\xa5\xb7" "\x76\x5b\xa8\xef\x73\x17\xfe\xeb\x27\xfb\x4e\x3b\xf0\x3f\x93\xa4\xff\x84" "\x5f\x9d\xd6\x11\x6d\xff\x47\xef\x5c\xf4\xcf\x17\x14\xfc\xcc\x49\x07\x8e" "\x6c\xfe\x57\x67\xde\xf8\xf2\xdc\xff\xba\x73\x6c\x43\x6f\xd6\xae\xde\x48" "\xbb\x92\x48\xbb\x2e\x79\xf4\x95\x55\x7f\xf8\x61\xf7\xbf\x4c\x92\xfe\x13" "\xeb\xb5\xeb\xff\x2e\xbf\xe2\xa7\x35\x0d\x1a\xdd\x30\x11\x27\x53\x99\x9d" "\x54\x46\x1f\xcc\x4e\xe7\x14\xb6\x63\xbc\xd5\x59\x7b\x42\x7f\x75\x6c\x1c" "\xda\x3c\xd8\x5f\xde\xbf\xd5\x48\x1e\xbf\x3f\xf4\x1f\x3e\xb1\x6b\xf8\xa6" "\xbd\x63\xfd\xdb\x15\xcd\xa3\xc1\xfe\xed\x1e\x38\xf2\xd7\xad\xdf\x7f\xea" "\xa6\x4b\x76\x5f\x3d\xb6\xe1\x58\xdd\xef\x65\xfd\x1d\xb2\x08\xed\x0b\xfd" "\xd7\x95\xf5\xf7\xfc\x2c\xaf\xf9\x91\xbc\x3a\x22\x79\xdd\x73\xe6\xe9\xff" "\xe7\x7f\xfc\xdb\x2d\xaf\xec\x4d\xfa\x3b\xfe\xbc\x78\x6a\xdd\x65\x79\x75" "\x66\x03\xa0\x33\x7d\x4f\x43\xf5\x86\x1a\xe6\xa4\xb5\x7d\xd2\x95\x95\x0f" "\x7b\x3c\xbc\xee\xbc\x1d\x5b\x6e\x3d\x6f\xf8\x8e\xdd\xe7\x0c\x6d\x59\xbf" "\x69\x70\xd3\xe0\xd6\x95\x2b\x57\x5e\x74\xc1\xca\xf3\x2f\x3c\xff\x9f\x9d" "\x37\x9a\xfa\xd8\xcf\xb6\xe5\x1f\xea\xff\x27\x0d\xe6\x7f\x74\xc6\xd3\xb6" "\x0b\x07\x86\xc2\xcf\xc6\xc6\x53\x59\xbb\xca\xfa\x63\xa4\x5d\xe5\xfd\x31" "\xb9\x45\xb1\xdf\xbf\x77\x7f\xfc\x8a\xff\x75\xd7\x7f\x7c\xe0\x9a\xb1\x0d" "\x65\xe3\x3c\x94\x1e\x3f\x9e\x64\xcb\x39\x23\xbb\x79\x45\x32\x69\xbc\x4d" "\xed\xab\xa2\xbc\xca\xfa\xa1\x33\xd2\x0f\x9b\xae\xed\xf9\x77\xaf\xf5\x6d" "\xfb\x87\xb2\xe3\xd0\xe4\x3d\x33\xf2\xb3\x2f\x7b\x9c\x93\x0e\x1c\xf9\xf3" "\xd0\x7f\xfb\xc0\xdc\x7d\x67\xdc\x38\xb6\xe1\xa8\x1c\xe7\x27\x37\xae\xc9" "\xe3\xfc\x78\xab\xb3\xf6\x74\x4e\x3e\xee\xac\x38\xfa\xfd\xbb\xa0\xc1\xfe" "\x9d\x9d\x54\xb3\xbc\x7a\x0a\xdb\x75\xc6\xdd\xaf\x7e\xf2\xbf\xff\x20\xed" "\x1b\x6f\xdf\xac\x59\xc9\xed\xeb\x77\xec\xd8\xbe\x62\xec\xe7\x51\xca\xeb" "\xdd\xd7\x7e\xb1\x36\xaf\xb4\xc5\xbc\x2e\x5a\xf6\xff\x6f\xdb\xbd\xee\xae" "\x05\x53\xf2\x3a\x7f\xec\xe7\xdc\xac\xa5\x73\xd3\x93\x0b\xdb\x95\xdf\x1a" "\xf2\x5a\x3c\xfa\xb3\x9a\x84\x06\x86\x76\x76\x55\x8a\xf3\xeb\x4c\xc6\xda" "\x97\xff\xbb\x10\x5e\x97\xef\xd5\x9e\xec\xb9\x9e\xf4\xf8\xc2\xbc\xf2\xc2" "\x73\x6b\x5e\xba\xff\x89\x17\x77\x3f\xb4\x34\xd6\xd3\xe9\x77\xc7\x6a\xec" "\x4e\xe6\x8d\x2d\xd3\x53\x22\x25\x37\xe7\x5e\x58\x1d\x6f\x70\x51\xfd\x65" "\xe3\x23\x49\x92\x75\x93\xb7\x85\x7e\x7c\xea\xfb\xff\xa6\x6f\xdf\xcf\x17" "\x6c\x29\x1d\x1f\x63\x23\x63\xca\xcf\x7c\x7a\x03\x47\xbe\x74\xf1\xdc\xdf" "\x0f\x5f\xb7\x7f\xf5\xd8\x86\xa3\x73\x5c\x99\xd4\xa0\x26\x8f\x2b\xe3\xad" "\x9e\x68\xcf\x68\x7f\x8d\x1e\x57\xce\x3f\x76\xf2\xf8\xfb\xed\xe7\x9a\x5f" "\xac\x74\xe0\xc8\xbe\x53\xde\xbb\x69\xe5\x7f\xde\x91\xfd\xda\x97\xf5\xef" "\x78\xe9\xa2\xfe\x5d\x99\x24\x65\xc7\x81\xc5\xb9\xf5\x99\x3a\x0e\xe4\xeb" "\x99\x28\x5f\x1c\xaf\x2f\xb7\xde\x93\x54\x9b\x3a\x6e\xbc\x70\xc1\xb2\x6f" "\xfc\x68\xcf\xae\x43\xd1\xe3\xc6\x9f\x1a\x3d\x6e\x7c\xb1\x66\xad\xda\xe2" "\x71\x23\x8d\x8c\xa7\x03\x5f\xfa\xf7\x7f\xfd\xc2\x81\xe7\x3e\xd4\xbe\xe3" "\xc6\x87\x96\x55\x3f\xfd\xbf\x17\xaf\xcc\x3a\xf4\x58\xf9\x7d\xeb\xca\xc6" "\x75\x57\x64\x5c\x8f\xb7\x3a\x6b\x4f\x3a\x79\x5c\x9f\x7b\xd3\xb6\xcd\x1b" "\xc6\xb6\x1f\xbb\xe7\xbf\xd9\xb2\xe4\xfa\x27\xfc\xfd\x1e\xbe\x63\xf7\xe7" "\xd6\x6f\xde\x3c\xb8\x7d\xb8\xb1\xbc\x1a\x3d\x2f\x09\xf5\xe4\x7b\x39\x76" "\x5e\x92\x33\xe5\xbc\x24\xfc\xf6\x1d\x5f\x92\x57\xd8\x5f\x13\x79\xcd\xdc" "\x83\x46\xfa\xab\xd1\xdf\xb7\xd0\xfe\x0d\xf9\xfe\x6a\xf2\xf7\x0d\x8a\xf4" "\x24\x69\x53\x7f\xcf\x9e\xdb\x72\xf1\x81\x65\xbb\x7f\x73\xb0\x37\x12\x37" "\x5d\x57\xc9\xe2\x57\x9a\x8a\x3f\x7c\xee\xab\x8f\xbf\x7c\xcd\xcf\x4e\x8a" "\xc6\x7f\x20\xc4\xef\x68\x2a\x7e\x75\xd5\xd9\x87\x57\xdc\xdd\xbf\x26\x1a" "\xff\xe1\x34\x8b\xdf\xd5\x54\xfc\x47\x2e\x7b\xec\x9b\xf3\xdf\xf7\xf4\xe3" "\xd1\xf8\xfd\xa1\xfd\xdd\xcd\x9d\x4f\x0c\xed\x7c\xf3\xfa\x47\x4f\x88\xf7" "\x7f\x12\xe2\xf7\x34\x15\xff\xd9\xe1\xa1\xd5\xf7\xdc\xbc\x78\x57\x34\xfe" "\xfe\x34\xab\x67\xe4\xdc\x2e\x49\x9e\x7c\x7d\xe5\xc6\xb1\xf5\x34\xe9\xcc" "\x8e\xc3\xa1\x1d\x9d\x35\xed\x4a\xf2\xeb\x69\x6e\xbd\x92\x5b\xaf\x4e\x5e" "\xaf\x8c\xcd\xc1\x8f\x57\x50\x4d\xd3\xda\xed\xa1\x5c\xb6\xfd\xf4\x49\x6d" "\x29\x72\x5d\x92\x24\xfb\x67\x4f\xdd\x1e\xce\x1e\xbb\x16\x8e\x2d\x0f\x85" "\xf5\x24\xff\xa0\xfe\xf6\x63\x4d\x65\xd2\x39\x41\xd1\xf6\xb2\xf3\x6b\x00" "\x78\x3b\x09\xef\xff\x87\x73\x8d\xf0\xfe\xff\xe2\xec\x0f\xe2\xa4\xf7\xff" "\xc7\x96\xe9\xac\x9a\xd7\x2f\xcc\xce\xa7\x16\x4e\x6c\x1a\xbd\xce\xbb\xab" "\x6f\xec\x0f\xe9\x74\xe7\xf5\x42\x3b\xf2\xf3\x7a\x21\xfe\xf2\x33\x6a\x63" "\x34\x3b\xaf\x57\x36\x2f\xb7\x24\x17\x21\xb4\x6b\x71\xd6\x2b\xa1\x3d\x75" "\xce\x1b\xe6\x26\x0d\xcc\xcb\x2d\xc9\xbd\xa8\x6c\x5e\x2e\x97\x7e\xf9\xbc" "\x59\xdf\x57\x73\x1b\x3a\x46\xe7\xf6\x62\xfb\xad\x33\x9b\xa9\x28\x7a\x9f" "\x39\xd7\xde\xb9\x23\x11\x5a\x3d\xcf\x5e\x58\xdc\xea\xf1\xf3\xec\xd8\xb8" "\xcb\xcf\x77\x84\xf7\xe9\xd3\x06\xc7\x5d\xfe\xbe\x88\xb0\x7f\xf3\xf7\x45" "\x84\xf8\x8b\x72\x13\x68\xcd\xde\x17\xd1\xc8\xb8\x2b\x6a\x57\x18\x77\x61" "\x5a\xa3\xce\xb8\x1b\xcd\xac\x7c\x3e\x75\xea\xb8\x48\xea\xf4\xeb\xc4\xb8" "\x28\x8e\x96\x1f\x17\xd3\x18\x47\xbd\x63\xe3\x68\x66\xdf\x97\x7a\xeb\x5f" "\xef\xcf\xec\xfc\xfb\x3b\x66\x3e\x21\xd9\x5b\xdb\x3f\x0d\xce\x27\x1c\xeb" "\xd7\xfb\x61\x7b\x38\x3e\x74\x34\x38\x0f\xb0\x26\xb2\xbd\x5d\xf3\x00\xe1" "\x70\x11\xda\xf5\xdb\x3a\x6d\x39\x1a\xcc\x03\x00\xc0\xc4\xf5\x7f\x38\xa7" "\x18\xb9\xfe\x1f\xf9\x5b\xdd\x97\x3b\xcf\x2f\xbb\x6e\xc9\x5f\x65\x84\x78" "\xd1\xfb\x58\xaa\xc5\xed\x29\xbb\xfe\x9d\x7a\x3f\xdb\x9c\xa6\xce\x2b\x2f" "\x7d\xed\xc4\x33\x57\x6d\x7b\x6c\x53\xf4\xbc\xf8\xa9\x46\xef\x4b\xb9\xb5" "\x66\x6d\x4e\xc9\x7d\x29\x65\xfd\xb8\x34\xb7\x5e\xda\x8f\x91\x5b\x41\xca" "\xe6\x1d\x96\xe5\xca\xf7\x24\xf3\x9a\xea\xc7\x25\xbf\xbb\xe1\xfa\x7d\x07" "\x06\x5f\x88\xf6\xe3\xc0\xd8\x89\x54\x79\x3f\x3e\x50\xb3\x36\xaf\xc5\x7e" "\x5c\x9e\x5b\x2f\xed\xc7\xce\xe2\x56\x95\xf5\x63\xbe\x9e\xb2\xf1\x7b\x56" "\x6e\xbd\x27\xbb\x23\x68\xba\xfd\xfe\xfe\xa5\x97\x5e\xbd\xfa\xe0\xd6\xfb" "\xa2\xfd\xbe\xb7\xd1\x7e\x7f\xb8\x66\xad\xb7\xa4\xdf\x5d\xa7\x47\xe2\xbb" "\x4e\x7f\x5b\xbc\xef\x5f\x36\x1f\xf9\x77\x9b\x07\xc8\xe6\xad\x67\x6a\x1e" "\xe0\xda\xc8\xf6\xe9\xce\x03\xf4\x4c\x79\x30\x9e\xd7\xa8\xb7\xdc\x3c\x40" "\xe4\xef\x02\x00\xbc\x95\x85\xeb\xff\xf1\xfb\xe5\xb3\xeb\xff\xff\x92\x2b" "\xd7\xea\xf5\x61\xf4\xbc\x6d\xa0\x3d\xf7\xb3\x2e\x8c\xdc\xef\x3d\x71\x5e" "\xdb\xda\x79\x79\xb4\xfd\xe3\xe7\xe5\xad\x5d\x17\x45\xe3\x8f\x5f\x17\xb5" "\x76\xdd\x12\x3d\xaf\x1d\xbf\x6e\x69\xed\xba\x2b\x1a\x7f\xfc\xba\xab\xb5" "\x79\x9a\x68\xff\x3c\x15\xfa\x67\xea\x79\xff\x9e\x06\xe2\x87\xf3\xfe\xd8" "\x3f\x17\x08\xe7\xfd\x6f\xfd\xeb\xa2\x99\x9d\x67\x70\x5d\x94\xad\x27\xf9" "\x07\x63\x5c\x17\x01\x00\x70\x2c\x08\xd7\xff\xe1\x74\x35\xdc\xff\xff\x74" "\xb6\x9e\x3f\x37\x9e\xf9\xeb\xdc\x99\xbe\x0e\x9d\xe9\xeb\xe8\x99\x9e\x67" "\x68\x71\x9e\x24\x16\xff\x6d\xf3\xfe\xdf\xd1\x9f\x67\x68\x24\x7e\xe3\xf3" "\x0c\x33\x3d\xcf\x66\x1e\xc0\x3c\x40\x39\xf3\x00\x00\x00\x6f\x0f\x1f\xcc" "\x96\x37\x36\x58\xbe\x63\xf4\x1e\xe2\x24\xf9\xec\x4d\x37\x9f\xbf\x76\xc3" "\xe0\xe7\xd7\x6e\xdc\x3e\x38\x38\x7c\xeb\xfa\x9b\x06\xd7\x0e\x6d\x1d\xda" "\x31\x5e\xae\x73\xf4\xca\x6b\xea\x7d\xd2\xb1\xfa\xca\xee\x93\x2e\x2a\x3f" "\xa7\x4e\xf9\xb5\xd1\xf8\xb5\xed\xb9\x3c\x52\x3e\xa6\xd5\xfc\x63\xf5\x95" "\xe5\x5f\x54\xbe\x5e\xfe\xeb\xa2\xf1\x6b\xdb\x73\x45\xa4\x7c\x4c\xab\xf9" "\xc7\xea\x2b\xcb\xbf\xa8\x7c\xbd\xfc\xd7\x47\xe3\xd7\xb6\xe7\xca\x48\xf9" "\x98\x56\xf3\x8f\xd5\x57\x96\x7f\x51\xf9\x7a\xf9\x7f\x36\x1a\xbf\xb6\x3d" "\x1f\x8a\x94\x8f\x69\x35\xff\x58\x7d\x65\xf9\x17\x95\xaf\x97\xff\x4d\xd1" "\xf8\xb5\xed\xf9\x17\x91\xf2\x31\xad\xe6\x1f\xab\xaf\x2c\xff\xa2\xf2\xf5" "\xf2\xcf\x7f\x5e\x66\x2c\xff\x0f\x47\xca\xc7\xb4\x9a\x7f\xac\xbe\xb2\xfc" "\x8b\xca\xd7\xcb\x7f\x30\x1a\xbf\xb6\x3d\x1f\x89\x94\x8f\x69\x35\xff\x58" "\x7d\x65\xf9\x17\x95\xaf\x97\xff\xc6\x68\xfc\xda\xf6\xac\x8e\x94\x8f\x69" "\x35\xff\x58\x7d\x65\xf9\x17\x95\xaf\x97\xff\xa6\x68\xfc\xda\xf6\x5c\x15" "\x29\x1f\xd3\x6a\xfe\xb1\xfa\xca\xf2\x2f\x2a\x5f\x2f\xff\x9b\xa3\xf1\x6b" "\xdb\xf3\xd1\x48\xf9\x98\x56\xf3\x8f\xd5\x57\x96\x7f\x51\xf9\x7a\xf9\x0f" "\x45\xe3\xd7\xb6\xe7\xea\x48\xf9\x1a\x93\x26\x8e\x5b\xcd\x3f\x56\x5f\x59" "\xfe\x45\xe5\xeb\xe5\x7f\x4b\x34\x7e\x6d\x7b\x3e\x16\x29\x9f\x99\x32\xe5" "\xdb\x6a\xfe\xb1\xfa\xca\xf2\x2f\x2a\x5f\x2f\xff\xcf\x45\xe3\xd7\xb6\xe7" "\x9a\x48\xf9\x98\x56\xf3\x8f\xd5\x57\x96\x7f\x51\xf9\x7a\xf9\x6f\x8e\xc6" "\xaf\x6d\xcf\xb5\x91\xf2\x31\xad\xe6\x1f\xab\xaf\x2c\xff\xa2\xf2\xf5\xf2" "\xdf\x12\x8d\x5f\xdb\x9e\x8f\x47\xca\xc7\xb4\x9a\x7f\xac\xbe\xb2\xfc\x8b" "\xca\xd7\xcb\x7f\x6b\x34\x7e\x6d\x7b\x3e\x11\x29\x1f\xd3\x6a\xfe\xb1\xfa" "\xca\xf2\x2f\x2a\x5f\x2f\xff\x6d\xd1\xf8\xb5\xed\x59\x13\x29\x1f\xd3\x6a" "\xfe\xb1\xfa\xca\xf2\x2f\x2a\x5f\x2f\xff\x5b\xa3\xf1\x6b\xdb\x73\x5d\xa4" "\x7c\x4c\xab\xf9\xc7\xea\x2b\xcb\xbf\xa8\x7c\xbd\xfc\x6f\x8b\xc6\xaf\x6d" "\xcf\x27\x23\xe5\x63\x5a\xcd\x3f\x56\x5f\x59\xfe\x45\xe5\xeb\xe5\xbf\x3d" "\x1a\xbf\xb6\x3d\x9f\x8a\x94\x8f\x69\x35\xff\x58\x7d\x65\xf9\x17\x95\xaf" "\x97\xff\x70\x34\x7e\x6d\x7b\x3e\x1d\x29\x1f\xd3\x6a\xfe\xb1\xfa\xca\xf2" "\x2f\x2a\x5f\x2f\xff\x1d\xd1\xf8\xb5\xed\xb9\x3e\x52\x3e\xa6\xd5\xfc\x63" "\xf5\x95\xe5\x5f\x54\xbe\x5e\xfe\x3b\xa3\xf1\x6b\xdb\x73\x43\xa4\x7c\x4c" "\xab\xf9\xc7\xea\x2b\xcb\xbf\xa8\x7c\xbd\xfc\x3f\x1f\x8d\x5f\xdb\x9e\xcf" "\x44\xca\xc7\xb4\x9a\x7f\xac\xbe\xb2\xfc\x8b\xca\xd7\xcb\x7f\x57\x34\x7e" "\x6d\x7b\x6e\x8c\x94\x8f\x69\x35\xff\x58\x7d\x65\xf9\x17\x95\xaf\x97\xff" "\xed\xd1\xf8\xb5\xed\x59\x1b\x29\x7f\x64\x4f\x71\xdc\xf1\xfc\x77\x6c\x1f" "\x1c\x5c\xbb\xf3\xd6\x0d\xeb\x77\x0c\xae\xdd\xba\x6d\xc3\xe0\xf0\xda\x5d" "\xdb\x87\x76\xec\x18\xcc\x4e\xd4\x5a\xbd\x2f\x31\x7a\x5f\x59\x76\x5f\x62" "\x67\xd2\x51\x37\xff\x45\xb9\xf5\xe3\xb2\xcf\x07\x3a\x2e\xf2\xf9\x40\xf9" "\xf2\x21\xec\xc9\xa3\x0f\xa6\x7e\x3e\x50\xbe\xda\x8e\x92\xcf\xc9\x29\xdb" "\x5f\xf9\xfa\xcb\x3e\x67\xa8\xa8\x7c\xd1\x78\x8b\xed\xdf\xb2\xe3\x41\xbe" "\x7c\xa3\x6a\x7e\x3f\xc6\x06\xc9\xd0\xd6\xe1\xc1\xed\x53\x8f\xdf\xdd\x75" "\xfb\x63\xf2\x98\x48\x46\x6f\x9b\xeb\x1e\x5b\xa6\x27\x36\x54\x3e\xff\x71" "\x9d\x91\x6a\x4a\x35\x9e\x4f\x57\xdd\x7c\xf2\x9b\x67\x67\x37\x02\xce\x4e" "\x4f\x68\xa8\x7c\x12\xf9\x3e\xb8\xe9\x6a\x3c\x9f\x34\x9a\x4f\x51\x3b\xa6" "\xfb\x3d\x76\x21\xec\xb4\xbe\xc7\x2e\xf7\x63\x8a\x82\xcf\x68\xad\xc9\x77" "\xe3\xf0\xe8\x41\x7a\x68\xfd\xe6\xa1\xdd\x83\x53\xdb\x3f\xe7\x18\x68\x7f" "\x23\xfd\xb8\xb7\xed\xed\xa8\x4c\x69\x47\xd9\xfe\x4f\x73\xfd\x11\xbe\x41" "\x77\x41\xec\xfb\xde\x22\xfd\xb7\xeb\x7b\xff\xef\x91\x3f\xfe\xf1\x3f\x7d" "\x38\x49\xfa\x4f\xa8\x9e\xd2\x52\xff\xa5\x03\x47\xd6\x1d\x3a\xf1\xb3\xbf" "\xbc\x64\xf6\x79\x23\xed\xaf\xd4\x6d\xff\x78\xc9\xf0\xbd\xca\x25\xdf\x7f" "\x98\x2f\x1f\xf2\xe9\xd8\xbc\x6d\x78\xc7\x3f\xdd\xb8\x6d\xe7\xd6\xe2\x77" "\xd0\xc2\xfd\xce\x95\xf1\xf5\x19\xba\xdf\x39\xcb\xb3\xda\xe0\xfd\xcb\xb1" "\xfb\x3d\xa6\x7b\xff\x72\x3a\xe5\xc1\xb1\xa9\xd1\xfb\x97\x01\x00\x00\xde" "\x29\xc2\xbf\xff\x0f\xd7\xab\x0b\xb3\x7f\x83\xba\x20\x37\x45\xd0\xf8\x3c" "\x70\x6b\xff\x3e\x3a\x3a\x0f\xbc\xbf\xb1\x79\xe0\xfc\x6c\x44\xd9\x3c\x70" "\xbe\x7c\x48\xbb\xd1\x79\xe0\x9e\x16\xe7\x81\xf3\xf5\xc7\xe6\x69\x2b\x75" "\xca\xd7\x7b\xdf\xa5\xd1\x79\xe0\x4f\x47\xca\x4f\x57\xe3\xe3\xa4\xb5\xcf" "\x01\x88\x8e\x93\xac\xa7\xca\xc6\x49\xfe\xdf\xe1\x97\x8d\x93\x7c\xf9\xe9" "\x8e\x93\xee\x16\xc7\x49\xbe\xfe\xb2\x71\x52\x54\xbe\xde\xfb\xd3\x8d\x8e" "\x93\xeb\x22\xe5\x63\xfe\x9a\xe5\x57\x3e\x1e\x26\x7f\xee\x44\xed\xde\x8d" "\x8e\x87\xbe\x89\xcf\x9d\x88\x8e\x87\xfe\xc6\xc6\x43\xfe\x7b\x35\xcb\xc6" "\x43\xbe\xfc\x74\xc7\x43\x57\x8b\xe3\x21\x5f\x7f\xd9\x78\x28\x2a\x5f\xef" "\x7e\x9d\x46\xc7\xc3\xc7\x23\xe5\x1b\xd5\xf8\xf1\xa2\xb5\xcf\x85\x89\x8e" "\x8f\x75\x8d\x8d\x8f\xfc\xf7\xa5\x94\x8d\x8f\x7c\xf9\xe9\x8e\x8f\xb4\xc5" "\xf1\x91\xaf\xbf\x6c\x7c\x14\x95\xaf\x77\x3f\x63\xa3\xe3\xe3\x63\x91\xf2" "\x41\xe3\xfb\xbf\xb5\xcf\xed\x19\xdd\xff\x05\xef\xa5\x85\xcf\xed\x29\xdb" "\xff\xf9\xef\x6d\x29\xdb\xff\xf9\xf2\xd3\xdd\xff\x95\x16\xf7\x7f\xbe\xfe" "\xb2\xfd\x5f\x54\xbe\xde\xfd\xdc\x8d\xee\xff\xab\x22\xe5\x83\xda\xfd\x3f" "\xb2\xe3\x47\xf7\xfb\xe0\xda\x5d\xdb\xb6\x4f\xbe\x07\x7a\xa6\xbf\xb7\x25" "\xa6\xf1\xf6\xcd\xec\xf7\xd6\x34\xab\xf1\xf6\xcf\xec\xe7\x3e\xcd\x7c\xfb" "\x67\xf6\x73\xa5\x66\xbe\xfd\xad\x5d\x37\x45\xdb\xbf\xbf\xb5\x77\xba\x1a" "\x6f\xff\xcc\x7e\x2f\x51\xb3\x8e\xda\xfb\xb1\xd9\xbf\x19\x2a\xfb\xfc\xa9" "\xb2\xf7\x69\x3f\x15\xd9\x3e\xdd\xf7\x69\x67\x4d\x79\x70\x6c\xf2\x3e\x2d" "\x00\x00\x00\xcc\xbc\xf0\xfe\x7f\xf8\x3a\xfe\xf0\xf9\xf0\x5f\xcb\x96\x91" "\xaf\xe9\x6f\xda\x5b\xff\xfb\xbd\x7d\xff\x76\x61\xfc\x36\x7d\xff\x76\xd9" "\x3c\xa6\xf9\xbc\x3a\x95\x1d\x03\xcc\xe7\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xb4\xc7\xec\x8e\x85\xa3\xcb\x67\xbe\x3c\xfc" "\x97\xab\x16\x7d\xf0\xe7\x77\x0f\xbe\xbe\xe7\xca\x1f\x6e\xb9\xeb\x81\x81" "\x59\xcf\x7c\xe0\xbe\x8f\x3c\xff\xad\xcf\x7c\xe7\xc5\x97\x16\x2c\x5f\xf1" "\xed\x5b\x2e\x3f\x7c\xdb\xdc\xd5\xf7\xde\x3b\xf0\xab\x0b\x0f\xff\xe2\x6f" "\x77\x96\x06\xee\x1d\x5b\x9c\x95\xad\x76\x25\x49\xfa\x4a\x9a\x24\xa7\xfe" "\x72\xf9\xd7\xef\xf9\xe9\xb3\x27\x8d\x6c\x4b\x93\x24\xa9\xa6\xbd\x7b\x93" "\x64\x41\x5a\xf9\x49\x9a\x8f\xd0\xff\x46\x92\x24\x1b\xc6\xdb\x59\xfb\xe4" "\x93\xaf\xaf\xdc\x38\xb2\xdc\xfb\xb5\xd9\x35\xdb\x8f\xcb\x05\xc9\xe7\x95" "\xf4\x54\x43\x7b\x6a\xda\x99\xdc\x5e\x9a\x11\x6f\x41\x5d\xd9\x38\xfb\xca" "\x8f\xb7\x9d\xf2\x87\x73\x2f\x7f\x7e\xdf\xaf\x2f\x7b\xbd\xbf\xeb\x8d\xed" "\x7b\x27\x8a\xa4\x5d\x93\xc6\x53\x92\xcc\x5f\x37\xf9\xf5\x9d\x49\x92\x74" "\x67\xff\x8f\x08\xa3\x6d\x61\x78\x71\xb6\xbc\x3a\x49\x92\x39\x93\x5e\x77" "\x51\x49\xbb\x96\x34\xd8\xfe\x73\x22\xeb\x8b\xb2\xe5\xac\x6c\xd9\x53\x12" "\x27\x3c\x7f\x7a\x6e\xbd\xb3\xc1\x76\x74\xe4\x96\x5d\x0d\xbe\xae\x59\x95" "\x19\x8e\x1f\x84\xfd\x37\x77\x86\xeb\x9f\x72\x74\xcb\xd5\xb3\x20\x5b\x7e" "\x2f\x5b\x9e\x35\xcd\xf8\xd5\xf0\x7f\x9a\x54\xd2\xa4\x63\xbc\xba\xcd\xe9" "\xc4\x18\x49\x26\xed\xb7\x34\x49\x47\xf7\xfd\xc4\x7a\xa5\x66\x2c\xa4\xb9" "\xb1\x91\x26\x49\x9a\x5b\xaf\xe4\xd6\xab\x9d\xb9\xbc\x46\xeb\xcd\x06\x5a" "\x35\x4d\x6b\xb7\x87\x72\xb9\xed\x7d\xd9\xf6\x8e\x6c\xfb\xe9\x25\x63\xed" "\xda\xc8\xf6\xf7\x84\x7c\xb3\x5f\xd4\x43\xb9\xfc\xf3\x41\x7b\xa6\x3c\x18" "\xcf\x6b\x54\x68\xd7\x6f\xeb\xb4\xe5\x68\xa8\x4c\x3a\x06\x15\x6d\x0f\xed" "\xed\xca\x76\x46\x4f\xb6\xad\x27\x3d\x7e\xca\x6b\x8e\x14\x08\xcf\xad\x79" "\xe9\xfe\x27\x5e\xdc\xfd\xd0\xd2\xde\x48\x7d\xe9\x77\xd3\x2c\x7e\xda\x54" "\xfc\xe7\xb6\x5c\x7c\x60\xd9\xee\xdf\x1c\x5c\x18\xc9\x33\x5d\x57\xc9\xe2" "\x57\x9a\x8a\x3f\x7c\xee\xab\x8f\xbf\x7c\xcd\xcf\x4e\x8a\xc6\x7f\x20\xc4" "\xaf\x36\x15\xff\x85\x0b\x96\x7d\xe3\x47\x7b\x76\x1d\xea\x8d\xc5\xff\x53" "\xe8\x9f\x8e\xa6\xe2\x57\x57\x9d\x7d\x78\xc5\xdd\xfd\x6b\xa2\xed\x7f\x38" "\xc4\xef\x6a\x2a\xfe\x23\x97\x3d\xf6\xcd\xf9\xef\x7b\xfa\xf1\x68\xfb\xfb" "\x43\xff\x74\x37\xd7\x3f\x43\x3b\xdf\xbc\xfe\xd1\x13\x0e\x46\xe3\x27\x21" "\xfe\x9c\xa6\xe2\x5f\xfa\xda\x89\x67\xae\xda\xf6\xd8\xa6\x68\xfc\xa7\x42" "\xff\xf4\x34\x15\xff\xd9\xe1\xa1\xd5\xf7\xdc\xbc\x78\x57\x5f\x2c\xfe\xfe" "\x10\x7f\x5e\x53\xf1\x97\xfc\xee\x86\xeb\xf7\x1d\x18\x7c\x21\xda\xfe\x81" "\xd0\x3f\xbd\x4d\xc5\x7f\xff\xd2\x4b\xaf\x5e\x7d\x70\xeb\x7d\xb1\x63\x67" "\xba\xf7\x68\xfd\x85\x05\x78\x7b\x7a\x57\x76\x8e\xf5\xd5\x6c\xbd\xd9\xeb" "\xcc\x56\x4d\xba\x5e\x78\xb0\x37\x1d\x3b\xe7\x9b\x9b\xfd\x3f\xaf\x9d\x15" "\xe5\x8c\xd4\x33\x7f\x06\xe3\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xf6\x34\x78\xc5\x83" "\x7b\xae\xd8\xbf\xf6\xca\x8e\x34\x49\xd2\x48\x99\x23\x05\xc2\x73\xd5\x59" "\x03\x03\x7d\x4d\xd4\x5b\x5d\x75\xf6\xe1\x15\x77\xf7\xaf\x99\xbc\x6d\x61" "\x13\x71\x00\x00\x00\x80\x72\xe1\x3a\xbc\x32\xbe\xa5\x2b\x59\x98\xec\x4a" "\xbb\x93\x93\x0b\xcb\x87\x39\x82\x93\xc3\x5a\x5a\xbb\x3d\x3f\x87\xd0\x3d" "\x51\xb2\x2d\x71\x2a\x6d\x8a\x53\x6d\x53\x9c\x8e\x36\xc5\xe9\x6c\x53\x9c" "\x59\x6d\x8a\x33\xbb\x4d\x71\xba\x4a\xe2\x74\x25\x8d\xc5\xe9\xae\x1b\xa7" "\xd2\x70\x7b\xe6\xb4\x29\x4e\x4f\x9b\xe2\xcc\x6d\x53\x9c\x79\x6d\x8a\x33" "\xbf\x4d\x71\x8e\x6b\x53\x9c\xde\xba\x71\x1a\x1f\x87\x0b\xda\x14\xe7\xf8" "\x36\xc5\x79\x57\x9b\xe2\xbc\xbb\x4d\x71\x4e\x68\x53\x9c\x13\xdb\x14\xe7" "\xa4\x36\xc5\xc9\xcf\x29\x4f\x77\x1c\xce\xcb\x4a\x2e\x8a\xc5\x19\x7d\x50" "\x2d\x8d\xd3\x91\x56\xc7\x9f\x28\x9a\x4f\x0f\xf5\x9c\x9a\x7b\x5d\x65\x9a" "\xf5\xf4\x34\x58\x4f\x7e\xce\x7e\xba\xf5\x74\x37\x58\xcf\x19\x2d\xd6\xd3" "\xd5\x60\x3d\xcb\x5a\xac\x27\x6d\xb0\x9e\xb3\x5a\xac\xa7\x52\x52\x4f\x18" "\xb7\xb7\xe7\xdb\x17\xea\x09\x6b\x0d\x8e\xff\x3b\xda\x14\x67\x77\x9b\xe2" "\x7c\xa1\x4d\x71\xbe\xd8\xa6\x38\x77\xb6\x29\xce\x97\xda\x14\x67\x4f\x8b" "\x71\x00\x1a\x15\xae\xff\x27\xae\x1b\x7b\x93\xd9\x1d\x97\x24\x73\xb2\x23" "\x4e\x7e\x16\x20\x5c\xef\x2e\x1e\x7b\xf5\x94\xe3\x51\x57\xfe\x02\x3d\x13" "\xe2\x9d\x92\xdb\x3e\xab\x2c\x5e\xfe\x42\x3d\x17\x6f\x71\x9b\xdb\xb7\x24" "\xb7\xbd\xb3\x26\x5e\xc7\xf8\x79\x53\x9d\x78\xbd\x93\xe3\x2d\xcd\x3d\x59" "\x9a\x6f\x7e\x42\x21\xd7\xbe\xe5\xd3\x8d\x97\x9f\x58\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x19\x34\x78\xc5\x83\x7b\xae\xd8\xbf\xf6\xca\x24" "\x4d\x46\xfe\x2b\x74\xa4\x40\x78\xae\x3a\x6b\x60\xa0\xaf\x89\x7a\xd7\xbc" "\x74\xff\x13\x2f\xee\x7e\x68\xe9\xe4\x6d\xb3\x3b\x9a\x08\x04\x00\x00\xff" "\xc8\xae\xdd\xc5\xc8\x55\xd5\x01\x00\x3f\x77\xe7\x93\x6d\xc1\xa9\x81\x3a" "\x90\x42\x47\x4a\x2b\x46\xa4\xa5\x8b\xf2\x91\x1a\x2e\xf2\x30\x4b\x0c\x4a" "\x00\xa3\x01\xd3\xdd\x52\xa6\xeb\x86\xed\x2e\xb2\xdb\x14\x56\x64\xad\x0f" "\xc4\x07\x0d\x24\x9a\xb8\xfa\x64\x78\xc2\x10\x1e\xd4\xa0\xa8\x24\xcb\x83" "\xc6\xa0\x24\x6c\xa2\xd8\x44\x50\x5e\x24\x8a\x06\x48\x80\x84\x9a\x98\x8c" "\xe9\xce\xbd\xf3\xd5\x99\xce\x32\xa2\x2d\xf8\xfb\x3d\x9c\x7b\xef\x39\xff" "\x73\xfe\xf7\xcc\x36\x4d\xfe\x67\x06\x80\x81\xd2\x3a\x3c\xd7\xec\x29\x86" "\x42\x76\x67\xc8\x47\xf9\x8e\xb8\x62\x72\x0e\x50\x4c\x9e\x33\xa5\xc6\x35" "\xaa\x8c\xac\x5d\x47\xa3\x4d\x27\x8d\xcf\x26\xf1\x3b\x17\x0e\xde\xb5\x73" "\xfe\xde\xc5\x8f\x4e\x1f\xdc\x37\x55\x9b\xaa\xcd\x8e\x8d\x8d\x5d\x79\xf9" "\xd8\xee\x2b\x76\x7f\x7c\xe7\x81\xe9\x99\xda\xae\x46\x1b\x0a\x03\xd6\xcb" "\x25\xeb\xcd\xdf\xbb\x78\xe7\xbe\x99\x99\xda\xdd\xf3\x8d\xe7\xee\xf7\x2e" "\x27\xf3\xca\xad\xae\xc9\xe3\xcd\x91\xe4\xbd\xdf\x3f\x20\x4f\x94\xc4\xb7" "\xf2\xfc\xf7\x6e\x06\xff\xb5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xe0\xd4\xaa\x55\x97\x97\xaa\xab\x13\xe3\xa3\x51\x08\x51\x9f" "\x98\x7a\x0f\xe9\x58\x26\x1f\xc7\x95\x21\xf2\x5e\xfb\xe6\xe6\xed\x57\xcf" "\x3d\x3a\xd5\xde\x57\xc8\x0e\xb1\x10\x00\x00\x00\x30\x50\x5a\x87\xe7\x9a" "\x3d\xc5\x50\xc8\x66\x42\x26\x9c\xbb\xf6\x74\x61\x2b\xb4\x14\x42\xab\xee" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xff\xd4" "\xaa\xcb\x4b\xd5\xd5\x89\xf1\x0d\x51\x08\x51\x9f\x98\x7a\x0f\xe9\x58\x26" "\x1f\xc7\x95\x21\xf2\xfe\x76\x7e\xfa\x86\x07\xbe\xb8\xf5\x70\x7b\x5f\x79" "\x88\x75\x00\x00\x00\x80\xc1\xd2\x3a\x7c\xa4\xd9\x53\x0c\xe5\xb0\x2d\xe4" "\xa2\x73\x3b\xe2\xd2\xb3\x81\xf3\xba\xe6\x77\xc7\xa5\xeb\x9c\xbf\xce\xb8" "\xee\xb3\x83\x7e\x71\xdb\xd6\x19\xb7\x63\x9d\x71\x1f\x1e\x10\xf7\xe9\xe4" "\x7a\x4f\x00\x00\x00\x80\x77\xbf\xb4\xfe\xcf\x36\x7b\x4a\xa1\x90\x3d\xb3" "\x6f\xfd\x3f\xa8\xae\x4f\xe3\xb6\x76\xc5\x65\x92\xeb\x30\xbf\x15\x00\x00" "\x00\x00\xfe\x33\x69\xfd\x9f\x6f\xf6\x94\x43\x21\x5b\x6e\xd6\xeb\xeb\xad" "\xf7\x2f\xec\x8a\x4b\xe7\x0f\xfa\xde\x3e\x9d\x3f\xe8\x7b\xfb\x34\xee\xe2" "\x3e\x79\xba\xbf\xcf\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4e\x5f\xb5\xea\xf2" "\x52\x75\x75\x62\x3c\x13\x85\x10\xf5\x89\xa9\xf7\x90\x8e\x65\xf2\x71\x5c" "\x19\x22\xef\x8b\x97\xef\xf8\xce\x2f\x96\x0e\x1f\x6b\xef\x2b\x64\x87\x58" "\x08\x00\x00\x00\x18\x28\xad\xc3\x5b\xa5\x77\x31\x14\xb2\xa3\x21\x17\x36" "\xac\xd5\xfd\x57\xee\xf8\xc7\x97\x16\x27\x8f\x6c\xca\x95\x92\xe1\x7c\x3e" "\xdc\xb3\x6f\x61\xe1\xee\xdd\x8d\x36\x8d\xdb\xf6\xb5\xd7\x3f\xff\xfb\x9f" "\x45\x95\x13\xe2\x2e\x6b\xb4\xa7\x64\x73\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\x3b\xaa\x56\x5d\x5e\xaa\xae\x4e\x8c\x9f\x11" "\x85\x10\xf5\x89\xa9\xf7\x90\x8e\x65\xf2\x71\x5c\x19\x22\xef\x8b\xd3\x87" "\xfe\x75\xdb\x23\xe7\xbc\xd6\xde\x57\x1e\x62\x1d\x00\x00\x00\x60\xb0\xb4" "\x0e\x6f\xd5\xfe\xc5\x50\x0e\xf9\x90\x0f\x9b\xd7\x9e\xda\x6b\xfd\xe3\x46" "\xba\xe6\xf7\x3b\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xde\x3b\xe6\xef\x5d\xbc\x73\xdf\xcc\x4c\xed\x6e\x37\x6e\xdc" "\xb8\x69\xde\x9c\xea\xff\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\xd3\x45\xad\xba\xbc\x54\x5d\x9d\x18\x2f\x46" "\x21\x44\x7d\x62\xea\x3d\xa4\x63\x99\x7c\x1c\x57\x86\xc8\xfb\xf0\x27\x1f" "\xfd\xde\x59\x1f\xfb\xe5\x63\xed\x7d\xe5\x21\xd6\x01\x00\x00\x00\x06\x4b" "\xeb\xf0\x56\xed\x5f\x0c\xe5\x90\x0b\xb9\x70\xce\xda\x53\xaf\x33\x81\xb5" "\xfa\xbf\xf4\x3f\x7c\x49\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe0\xb4\x50\xab\x2e\x2f\x55\x57\x27\xc6\xcf\x8c\x42\x88\xfa\xc4" "\xd4\x7b\x48\xc7\x32\xf9\x38\xae\x0c\x91\xf7\xc2\xbf\x7c\xe1\xb6\x95\xa3" "\xb5\x17\xdb\xfb\x0a\xd9\x21\x16\x02\x00\x00\x00\x06\x4a\xeb\xf0\x7c\xb3" "\xa7\x18\x0a\xd9\xcb\x42\x21\x6c\x49\x9e\x67\x3a\x27\x44\x99\xe4\xda\xfb" "\x5c\xa0\x35\xef\xae\x8e\x69\xa3\xeb\x9e\x77\x5f\xc7\xbc\xcc\xba\xe7\x7d" "\xbd\x6b\x67\xd9\x64\x37\x8d\x79\xc5\x74\xbd\x52\xe3\xda\x9c\x57\x39\x71" "\x5e\x25\x84\x50\x4e\xe6\x95\x5b\x03\x93\x1d\xf3\xc2\x43\x1d\xb3\xce\x5c" "\xf7\x7b\x7e\xbf\x63\x5e\x69\xc0\xbc\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xa7\xa1\x5a\x75\x79\xa9\xba\x3a\x31\x1e\x45" "\x21\x44\x7d\x62\xea\x3d\xa4\x63\x99\x7c\x1c\x57\x86\xc8\xfb\xdc\xc1\xab" "\x8e\xee\x58\xfc\xd3\x6b\xed\x7d\xe5\x21\xd6\x01\x00\x00\x00\x06\x4b\xeb" "\xf0\x56\xed\x5f\x0c\xe5\x70\x7e\x38\x2b\x9c\xbf\x56\xf7\x87\x52\x67\x7c" "\x1a\xb7\xe7\x91\x57\xae\xfe\xdb\xcf\xcf\xf8\x66\x08\xbb\x36\xff\xee\x82" "\x6c\xdf\xf5\xff\x7a\x71\xf5\x57\xdd\x4d\x08\x23\x9d\x41\x23\x21\xbc\x2f" "\xc9\x17\xf5\xc9\x77\xf8\x27\x7f\x7f\xf8\xd5\x57\x7f\xfa\xa9\x10\x76\x9d" "\x93\xd9\xf2\x76\xf3\x75\x2e\x19\xd7\x27\x8f\x6d\xbe\xfd\xd9\x3d\x85\x9d" "\x27\xf9\x60\x00\x00\x00\xe0\x3d\x24\xad\xff\x73\xcd\x9e\x52\x28\x64\x67" "\xfb\xd6\xff\x69\xe5\xfd\xb6\xea\xff\xb9\xb3\x6f\xbe\x6f\x53\xd2\x26\x15" "\x79\xd7\x8c\x91\x52\x92\x6f\xa4\x4f\xbe\x3b\xaf\xf8\xd6\x8f\x2b\x17\x1c" "\xfd\xe3\xf1\xfa\xff\x64\xf9\x3e\xf3\x95\xf3\xae\xdb\x14\xe6\xae\x88\xa7" "\xd3\xb6\xd1\xd3\x25\x8a\xeb\x33\x0f\x6e\xdf\xfb\xf2\xc6\xa7\x0f\xa5\xbb" "\x6e\xe4\xcf\x74\xe5\x4f\x3f\x97\x97\x8e\xfd\xe8\xb3\x87\xe7\xf7\x7f\xb5" "\x91\xbf\x18\x8a\x49\xff\x79\xd9\x5e\xf9\x4f\x6c\xbb\x9c\x11\xd7\xdf\x9a" "\x7d\xe2\xa9\xfd\x7b\x16\x6f\xec\xcc\x9f\xed\xb3\xff\x07\xb6\x7f\xf0\xcf" "\x7f\xf8\xee\xc1\x57\x8e\xe7\x7f\x63\xeb\x68\x33\xff\x87\x4e\xb2\xff\x93" "\xe7\x3f\xfb\x96\xea\xf3\x47\x1e\x7f\xe8\xa6\xce\xfc\xb9\x3e\xf9\xa7\x6e" "\xde\xf0\x83\x37\x2b\x73\xff\xec\xde\xff\x68\xd7\xc2\xc9\x27\xdf\xf8\x83" "\xb7\xfd\x15\xba\x44\x71\xfd\x8d\xe9\x67\xae\xd9\xb8\xb2\x6d\x6f\x67\xfe" "\x10\xc2\x64\x7b\x60\xfa\xf9\x3f\xf5\xc4\xb7\x2b\x2b\xbf\xd9\x74\x30\xcd" "\x9f\xfe\x56\xe4\xe2\x6d\x5d\xf9\xdb\xfe\xa9\xb5\xb7\x5d\x67\x4e\x51\x5c" "\x5f\xd9\x72\xc9\xd4\xd8\x93\x0b\x1b\x3a\xf3\x47\x5d\xf9\xd3\xfd\x1f\xbd" "\xff\x87\x6f\x7d\xf9\xe8\x73\xd7\x77\xef\xff\x8e\xee\xfd\xf7\xcd\xdf\xbd" "\xff\xeb\x77\x64\x6e\x7d\x61\xeb\xd8\x30\x3f\x9e\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x78\x17\xa8\x55\x97\x97\xaa\xab\x13\xe3\x21\x13\x42" "\xd4\x27\xa6\xde\x43\x3a\x96\xc9\xc7\x71\x65\x88\xbc\x9f\xb8\xe8\xda\x1b" "\x6f\x78\x6d\xf6\x1b\xed\x7d\x85\xec\x10\x0b\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xef\x98\x5a\x75\x79\xa9" "\xba\x3a\x31\x3e\x12\x85\x10\xf5\x89\xa9\xf7\x90\x8e\x65\xf2\x71\x5c\x19" "\x22\xef\xfc\xa5\xaf\x3f\xf6\xf2\x4d\xbf\xfe\x40\x7b\x5f\x79\x88\x75\x00" "\x00\x00\x80\xc1\xd2\x3a\xbc\x55\xfb\x17\x43\x39\xe4\x43\x3e\x8c\xae\xd5" "\xfd\x93\xc7\x36\xdf\xfe\xec\x9e\xc2\xce\x50\x6a\x8c\x46\xc9\x35\x3b\x33" "\x37\xbf\xf0\x91\x03\x73\x87\x66\xef\x38\x45\x6f\x0e\x00\x00\x00\xac\x57" "\x5a\xff\x67\x9b\x3d\xa5\x50\xc8\x5e\x14\x72\x49\xfd\xbf\xb2\xe5\x92\xa9" "\xb1\x27\x17\x36\xa4\xf5\x7f\x08\x61\xf2\x78\x53\x3c\x30\x3d\x53\x1b\x0b" "\xcd\x73\x82\xeb\x77\x64\x6e\x7d\x61\xeb\x58\xa5\x79\x4e\xd0\x1e\x77\xe9" "\xfe\xb9\x99\xe4\x98\x20\x5d\xf7\xfe\xab\x36\xbe\x34\xff\xb9\xd5\x1b\x7a" "\xae\xbb\xbb\x15\xf7\xc6\xf4\x33\xd7\x6c\x5c\xd9\xb6\x37\x8d\xcb\x25\xd7" "\xb5\xb8\xcb\x5a\x71\x33\x0f\x6e\xdf\xfb\xf2\xc6\xa7\x0f\xa5\x71\x23\xe9" "\x39\xc5\x81\xeb\xb6\xd7\x76\xb5\xe2\xde\x9a\x7d\xe2\xa9\xfd\x7b\x16\x6f" "\x4c\xc7\x33\xed\xeb\xb5\xc5\x9d\x7d\x4b\xf5\xf9\x23\x8f\x3f\x74\x53\x73" "\x9d\xe4\x3a\x9a\xe4\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x37" "\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\xd8\xaf\xa3\x10\xab\x8a\x38\x0e\xc0\x33\xf7\xee\xea\xd5" "\xbb\x6e\xbb\x45\xb9\x49\x91\x8a\x89\x06\xc9\x4a\x45\x25\x44\xab\x90\xf4" "\xd0\x86\x14\xf8\x62\x81\x0f\x59\x19\x99\xd4\x12\x86\x10\x6e\x42\x16\x26" "\xe1\x53\x45\x50\x44\x14\x04\x22\x05\x41\x0f\x45\x58\x50\x06\x49\x14\x44" "\x68\x0f\x61\x68\x0f\xf5\x10\x1b\xd1\x86\xb8\x51\xb1\xbb\x33\xbb\x77\x8f" "\x9e\x76\x3b\xb5\x0a\xf2\x7d\x70\x18\x67\xce\x3d\xbf\xf9\x9f\x39\xe3\xd9" "\x7b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\xbf\xe6" "\xb6\xf5\x8c\xb5\x87\x9f\x1e\xf8\xfd\xce\x45\xb7\x7d\xbe\x7b\xcb\xf0\xae" "\xdb\xdf\xdf\xf6\xd4\xfe\xbe\x39\x87\x6f\xdd\x77\xc7\xb1\x57\xee\x7d\xf3" "\xc4\xc9\xee\x15\xab\xdf\x78\x68\xfd\xc8\xa3\x1d\xfd\x7b\xf7\xf6\x7d\x7d" "\xe3\xc8\x17\x7f\x3e\x39\x6d\xf0\x13\xe3\xcd\xca\xd4\x6d\x84\x10\x7f\x8e" "\x21\x5c\xf9\xe5\x8a\x17\xf6\x7c\x7a\x64\xe1\xe8\x58\x0c\x21\xd4\x63\xd7" "\x60\x08\xdd\xb1\xf6\x71\x77\x2c\x24\xf4\x9e\x0e\x21\xdc\x37\x51\xe7\xd4" "\x93\xef\x0e\x5f\x77\xff\x68\x3b\xf8\xdc\xdc\x29\xe3\x17\x15\x42\x8a\xf7" "\x15\x9a\xf5\x5c\xcf\xb8\xae\xa9\xf5\x72\x61\x69\xa4\x7d\xf6\xcc\x87\xdb" "\xaf\xf8\x71\xd5\xfa\x63\x87\xbe\x5d\x37\xdc\xdb\x38\xfd\xd8\xe0\xe4\x47" "\x62\xa3\x65\x3f\x85\xd0\xb9\xb9\xf5\xfa\xf6\x10\xc2\xbc\x74\x8c\xca\xbb" "\xad\x27\x5f\x9c\xda\x0d\x21\x84\xf9\x2d\xd7\xdd\x34\x4d\x5d\x4b\x67\x58" "\xff\xb5\x25\xfd\x45\xa9\x9d\x93\xda\xe6\x34\x39\xf9\xfc\x92\x42\xbf\x7d" "\x86\x75\xb4\x15\xda\xc6\x0c\xaf\xab\xaa\x36\xcb\xf9\x59\x7e\x7e\x1d\xb3" "\x3c\x7f\xf1\xe5\x56\x9c\xa7\x3b\xb5\xef\xa5\x76\xe5\xbf\xcc\xaf\xe7\x23" "\x86\x5a\x0c\x6d\x13\xd3\x3d\x1c\x27\xf7\x48\x68\x79\x6e\x31\xc4\xb1\x67" "\x3f\xd9\xaf\x4d\xd9\x0b\xb1\xb0\x37\x62\x08\xb1\xd0\xaf\x15\xfa\xf5\xf6" "\xc2\x7d\x8d\xcd\x9b\x36\x5a\x3d\xc6\xa9\xe3\xf9\x73\x85\xf1\xc5\x69\xbc" "\x2d\x8d\x2f\x99\x66\xaf\xdd\x5d\x32\x7e\x79\xbe\xdf\xf4\x1f\xf5\x54\xe1" "\xfe\x8b\xa1\xcd\x33\xfe\x31\x71\x5f\x63\x72\x5d\xdf\xff\x43\x2d\xe7\x42" "\xad\xe5\x1d\x74\xb6\xf1\x5c\x6f\x23\x3d\x8c\x66\x1a\x6b\xc6\x8b\xcf\xb8" "\xe6\xaf\xb3\xc8\xe7\x36\x9e\x7c\xfe\xed\x13\x3b\x5f\x5d\xd6\x55\x52\x47" "\x7c\x27\xa6\xfc\x58\x29\xff\x9b\x6d\x37\x1f\x5d\xbe\xf3\xbb\xa1\x9e\xb2" "\xfc\xcd\xb5\x94\x5f\xab\x94\x3f\xb0\xea\xd7\x83\x3f\xdd\xf5\xd9\xc2\xd2" "\xfc\xfd\x39\xbf\x5e\x29\xff\xf8\xf5\xcb\x5f\xfc\x60\xd7\x8e\x53\xa5\xeb" "\xf3\x4b\x5e\x9f\xb6\x4a\xf9\xf5\x35\xd7\x8c\xac\xde\xdd\xbb\xb1\xb4\xfe" "\xd7\x72\x7e\xa3\x52\xfe\xeb\xeb\x0e\xbc\xdc\x79\xc3\x27\x07\x4b\xeb\xef" "\xcd\xeb\x33\xaf\xda\xfa\x6c\x7d\xfc\x8f\x4d\x6f\x5d\x3a\x54\x9a\x1f\x72" "\xfe\xfc\x4a\xf9\x6b\x7f\xbb\xec\xea\x35\xdb\x0f\x3c\x50\x9a\xff\x51\x5e" "\x9f\x66\xa5\xfc\x23\x03\x5b\xfb\xf7\x3c\x78\xd5\x8e\xc5\x65\xf9\x5f\xe5" "\xfc\x05\x95\xf2\x97\xfe\x70\xcf\xa6\x43\x47\xb7\x1c\x2f\xad\xbf\x2f\xaf" "\x4f\x57\xa5\xfc\x5b\x96\xad\xdd\xd0\x3f\xf4\xc8\xbe\xb2\x77\x67\x1c\x3c" "\x57\x7f\x61\x01\x2e\x4c\x97\xa4\xef\x58\xcf\xa6\x7e\xd5\xdf\x99\xff\x55" "\xcb\xef\x85\x97\xba\xe2\xf8\x77\xbe\x8e\x74\x2c\xf8\x3f\x27\x2a\x18\x9d" "\xa7\x73\x16\xf3\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x66\x07\x0e\x48" "\x00\x00\x00\x00\x04\xfd\x7f\xdd\x8e\x40\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x78\x2a\x00\x00\xff\xff\x72\xa3\x60\x5d", 23360); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000180, /*flags=*/0, /*opts=*/0x20000140, /*chdir=*/1, /*size=*/0x5b40, /*img=*/0x20001280); memcpy((void*)0x20000080, "cgroup.controllers\000", 19); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000080ul, /*flags=*/0x275aul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint16_t*)0x20000000 = 0; *(uint16_t*)0x20000002 = 0; *(uint64_t*)0x20000008 = 0; *(uint64_t*)0x20000010 = 0xfa64; *(uint32_t*)0x20000018 = 0; *(uint32_t*)0x2000001c = 0; memset((void*)0x20000020, 0, 16); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x40305839, /*arg=*/0x20000000ul); *(uint16_t*)0x200000c0 = 0; *(uint16_t*)0x200000c2 = 0; *(uint64_t*)0x200000c8 = 0; *(uint64_t*)0x200000d0 = 0x10004; *(uint32_t*)0x200000d8 = 0; *(uint32_t*)0x200000dc = 0; memset((void*)0x200000e0, 0, 16); inject_fault(5); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x40305839, /*arg=*/0x200000c0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_fault())) printf("the reproducer may not work as expected: fault injection setup " "failed: %s\n", reason); loop(); return 0; }