// https://syzkaller.appspot.com/bug?id=cf345121de613b56f109c3db382c11261dc641fc // 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_memfd_create #define __NR_memfd_create 319 #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; } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } //% 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 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 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[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0x0}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200000000000, "/dev/sg#\000", 9); res = -1; res = syz_open_dev(/*dev=*/0x200000000000, /*id=*/0, /*flags=*/0); if (res != -1) r[0] = res; res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=O_SYNC|O_NOCTTY|O_NOATIME*/ 0x141100, /*mode=*/0); if (res != -1) r[1] = res; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0xc004743e, /*arg=*/0ul); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x2285, /*arg=*/0ul); syscall(__NR_keyctl, /*code=*/0xbul, /*key=*/0, /*payload=*/0ul, /*len=*/0ul, 0); memcpy((void*)0x200000000100, "keyring\000", 8); memcpy((void*)0x200000000200, "syz", 3); *(uint8_t*)0x200000000203 = 0x20; *(uint8_t*)0x200000000204 = 0; res = syscall(__NR_add_key, /*type=*/0x200000000100ul, /*desc=*/0x200000000200ul, /*payload=*/0ul, /*paylen=*/0ul, /*keyring=*/0xfffffffd); if (res != -1) r[2] = res; memcpy((void*)0x200000000880, "bcachefs\000", 9); memcpy((void*)0x200000005900, "./file0\000", 8); memcpy( (void*)0x200000000140, "\x6e\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x75\x38\x87\x8a\x73\x72\x71" "\x75\x6f\x74\x61\x2c\x72\x61\x74\x65\x6c\x69\x6d\x69\x74\x5f\x65\x72\x72" "\x6f\x72\x73\x2c\x65\x72\x72\x6f\x72\x73\x3d\x66\x69\x78\x5f\x73\x61\x66" "\x65\x2c\x61\x63\x6c\x2c\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c\x6a" "\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61\x6e\x73\xa2\xd9\x2d\x7e\xd4\x78" "\xf4\x1e\xc7\xb5\xbc\x59\xfe\xc7\x61\x63\x74\x69\x6f\x6e\x5f\x6e\x61\x6d" "\x65\x73\x2c\x76\x65\x72\x62\x6f\x73\x65\x2c\x66\x69\x78\x5f\x65\x72\x72" "\x6f\xf2\x73\x3d\x61\x73\x6b\x2c\x64\x61\x74\x61\x5f\x63\x68\x65\x33\x60" "\x65\x84\xc8\xc4\x91\xd5\xa2\xba\x3c\x79\xce\x3c\x9b\xa2\x88\xdc\x97\x14" "\xdb\x0e\x48\xcb\x45\x00\xd7\x19\xcb\x39", 172); memcpy( (void*)0x20000000b2c0, "\x78\x9c\xec\xdd\x7d\x8c\x5c\x65\xfd\x28\xf0\xe7\xcc\xcc\x76\xa7\xbb\x7d" "\xd9\x16\x90\x0a\xb2\x5d\x0a\x55\x04\xb5\x5b\xde\x82\x2f\xd1\xea\xf5\x2d" "\x80\xa4\x06\xa3\x94\x5b\x85\x85\x6e\xb1\xda\x96\xa6\x5d\x04\x0a\x4a\xf1" "\x82\x17\x02\x18\x34\x1a\x45\xfd\x03\x0d\x92\x8b\x56\x43\x02\x2a\x95\x88" "\x05\x6e\xcb\x55\x94\x70\xf5\x92\x1b\x24\x57\xef\x45\xff\xf0\x06\x91\x46" "\xa0\x3f\x62\xf8\xb9\xbf\xec\xce\x79\xa6\x3b\x67\xe7\xf4\xcc\xce\xce\x96" "\x16\x3e\x9f\xb4\x7b\xe6\x3c\x73\xe6\xfb\x3c\xe7\x39\xcf\x9c\x39\xdf\x67" "\x66\x77\x02\x00\x00\x00\xaf\x09\xbb\xaf\xdf\xb2\xf7\x9c\xa3\x3e\xf0\xeb" "\x2f\x0e\xbf\x78\xcd\x87\x7f\xbe\xe1\xda\xd0\x5b\x1e\x2f\xaf\xc6\x0d\xfa" "\xd2\xe5\x15\xaf\x54\x0b\x39\x90\xba\x2b\x8b\xc6\x97\xd9\x71\xf1\xa6\xab" "\x7e\xf0\x97\x81\x8b\xdf\xf7\xab\xbb\x7b\xbe\xff\xd2\xae\x35\xc7\xae\xfd" "\xc3\xfb\x0f\xbb\xf8\xfe\xcf\x9c\xb9\xe3\xb6\x6f\x3f\xf8\xc2\xdc\x7b\xff" "\xf5\x74\x51\xdc\x38\x9e\x4e\xdc\xb7\x9e\x3c\x9b\x84\x50\xfd\xc5\x9e\xaf" "\x7f\x69\xd7\xa3\x47\x8e\x95\x25\x21\x84\x72\xd2\xb7\x2d\x84\x05\xc9\xc2" "\x07\x17\x24\xf1\xb1\x95\xda\x62\xf0\x9f\x21\x84\x35\x69\x59\xb9\xd2\x18" "\xff\x9e\x17\x4f\x59\x3b\xb6\xbc\xf6\xa6\xee\x86\xf2\xf9\x99\x76\x18\xef" "\xaf\x6d\xd5\x74\x9c\x6d\xdd\x7b\xf9\x49\xe1\x8f\xef\x5d\x75\xdd\x6f\x17" "\xff\xf8\x47\x5d\xdb\x9f\xd9\xb6\x6f\x93\xa4\x3a\x61\x3c\x85\x30\xef\xc2" "\x89\x8f\xef\x0a\x21\xcc\x4e\xff\x8f\x89\xa3\x6d\x51\x7c\x70\xba\x5c\x19" "\x42\xe8\x99\xf0\xb8\x33\x0a\xda\x75\x5c\x8b\xed\x5f\x96\xb3\x7e\x74\xba" "\x9c\x95\x2e\x7b\x0b\xe2\xc4\xfb\x97\x64\xd6\x4b\x99\xed\xb2\xeb\x51\x57" "\x66\xd9\x53\x50\xdf\x74\xe5\xb5\xa3\xdd\xed\x8a\xcc\xc9\xac\x27\x1d\x8a" "\x1b\xe5\xb5\x33\x96\x2f\x48\x97\x3f\x4b\x97\x27\x4e\x31\x7e\x39\xfe\x4f" "\x42\x29\x09\x95\x7a\xf3\xd7\x27\xfb\xc6\x48\x98\x70\xdc\x92\x90\x8c\x1f" "\xcb\x6a\x7d\xbd\x54\x3f\xb6\x21\xdd\xff\xcc\x7a\x92\x59\x2f\x65\xd6\xcb" "\x5d\x99\xfd\x1a\xaf\x37\x1d\x68\xe5\x24\x69\x2c\x8f\xdb\x65\xca\xe3\xe9" "\xb8\x92\x96\x1f\x3b\xf1\x5c\xdd\xc4\xb9\x39\xe5\xaf\x4f\x97\xd5\xf4\x89" "\xfa\x52\x5c\x0f\xd9\x1b\x35\xbd\x93\x6e\xd4\xf7\x6b\x5c\x6c\xd7\x9e\xfd" "\xb4\xe5\x40\x28\x4d\x38\x07\x35\x2b\xaf\x1f\xf8\xf4\x60\xf4\xa6\x65\xbd" "\xc9\xc2\x49\x8f\x19\x6d\x22\xde\xb7\x6b\xd5\xcd\x4b\xcb\xab\x1f\xda\xdd" "\x97\xd3\x8e\xe4\xee\x24\x8d\x9f\xb4\x15\x7f\xeb\x6f\x16\xcc\xf9\xd4\x0f" "\x6f\xbc\x6c\x51\x5e\xfc\x0b\x4b\x69\xfc\x52\x5b\xf1\xff\x74\xd6\x63\xcf" "\x9d\x7f\xe3\xf7\xbe\x95\x1b\xff\xd6\x18\xbf\xdc\x56\xfc\x93\x1f\xe8\x79" "\xf6\xac\x87\xaf\x5f\x92\xdb\x3f\x7b\x62\xff\x54\xda\x8a\x3f\xf4\xf4\x23" "\xb7\x2c\x3e\xfc\xa2\xed\x8b\x9a\x1e\xed\x10\x92\xdb\x63\xfc\x6a\x5b\xf1" "\x57\xec\x78\xac\x7b\xee\xde\x07\x76\xf6\xe5\x9c\x99\x92\xc1\xd8\x3f\xb3" "\xdb\x8a\xff\xd4\x3b\x3f\xf8\xe7\xbb\x9e\xb8\xef\x99\xdc\xfe\x09\x31\x7e" "\x4f\x5b\xf1\x57\xef\xd8\xf4\xe5\xee\xfe\xbd\x27\xe4\xc6\xdf\x19\xfb\xa7" "\x77\xbc\xa6\x29\x8f\x9f\xe7\xb7\x9f\xfe\x64\x7f\xff\x5f\x07\xf2\xe2\x3f" "\x1e\xe3\xcf\x6d\xab\xfd\x77\x6e\xbb\xed\x1d\x77\xcc\xbf\xe9\xcc\xdc\xf1" "\xb9\x32\xf6\x4f\x5f\x5b\xf1\xcf\x3e\xfe\xfe\xeb\xe6\xec\xbd\xef\x98\xbc" "\x73\x67\x72\x7b\xa7\x5e\x39\x01\x5e\x9b\x0e\x4b\xaf\xb1\x6e\x48\xd7\xdb" "\xcd\x33\xa7\x6b\x42\xbe\xf0\xcd\x81\x4a\xed\x9a\x6f\x4e\xfa\x7f\x6e\x27" "\x2b\xca\x18\xab\x67\xde\x0c\xc6\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\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\xb5\xe9\x88\x93\xfe\xc7\x87\xfe" "\xdf\xc7\xfb\x9e\xad\xa4\xeb\xdd\xe9\x8d\xa7\x4a\xb5\x65\x2c\x9f\x15\x42" "\x32\x3b\x84\xb0\x65\x64\x68\xf3\xc8\xba\x8d\x97\x0c\x7c\xe6\xd2\xcb\x36" "\x6f\x1c\x5a\x3f\x30\x34\x32\x30\xbc\x71\x64\xf3\x95\x03\xa7\xbe\x65\x60" "\xf3\xf0\xa6\xf5\x43\x57\x8e\xdd\x3b\xf8\xd6\x53\x6a\x8f\x5b\x18\x92\xda" "\x32\x39\x66\x52\xdd\xa3\xa3\xa3\xa3\xa5\xbe\xc6\xb2\x58\xdf\x7f\x3a\x7e" "\xfb\x1f\x97\x9e\xf1\xff\xff\x16\xc2\xe0\x11\xbf\xef\xaf\xe4\xb6\x7f\xd9" "\x6d\x1b\xee\x38\xbc\xc9\xcf\x8c\x64\xc5\xe8\x7b\x36\x5c\x76\xce\xef\x4f" "\xfb\x6e\xba\x5f\x7d\x69\xbb\xfa\x72\xda\x15\x72\xda\xf5\xf7\xf3\x5e\xbe" "\xe3\xab\x7b\xfe\x72\x42\x08\x83\xaf\xdb\x5f\xbb\x1e\x79\xea\xdd\xbf\x6c" "\x68\xd0\x78\xc1\xbe\x38\xa9\x52\x77\xa8\x35\xa8\x3b\xe9\x69\xda\x8e\x7a" "\xab\xd3\xf6\xc4\xfe\xaa\xac\x5d\xb7\x7e\x78\xb0\xb8\x7f\xcb\x39\xfb\xf1" "\x9f\xaf\x7a\xe6\x9f\x6b\xaf\xf8\xca\xcb\xb5\xfe\xad\xe6\xee\x47\x8b\xfd" "\x3b\x7b\xc5\xe8\xfa\xd2\x37\x56\x9d\xfd\xef\xdf\xb8\xba\x56\x70\xb0\x1e" "\xf7\xa2\xfe\x8e\x7b\x11\xdb\x17\xfb\xaf\x9a\xf6\xf7\xbc\x74\xbf\xe6\xe5" "\xec\x57\x25\x67\xbf\xae\xff\xed\xce\x27\x7e\x71\xd4\x8d\x2f\x6c\x0b\x83" "\x95\xe7\x17\x4f\xae\xbb\x68\xbf\xba\xd2\x01\xd0\x95\xbc\xbe\xa5\x7a\x63" "\x0d\x3d\xc9\x82\x86\xf2\x6a\xba\x7d\x3c\xe2\xf1\x71\xcb\x46\x36\x6c\x5a" "\xb6\xe5\xca\xad\x6f\x5d\xb7\x61\xe8\x92\xe1\x4b\x86\x37\xbe\x7d\xf9\xa9" "\xcb\x4f\x1f\x3c\xed\xf4\xd3\x96\x8d\xef\xf9\xb2\x0e\xef\x7f\xac\xff\x8d" "\x2d\xee\xff\x81\x19\x4f\xf3\x3f\xb7\xed\x67\xf1\x67\x6b\xe3\xa9\xa8\x5d" "\x45\xfd\x31\xd6\xae\xe2\xfe\x98\xd8\xa2\xbc\xe7\x5f\xcf\xb9\x5f\xfa\xda" "\xdb\x6f\x7b\xf8\x9c\x5a\x41\xd1\x38\x8f\x5b\xd7\xcf\x27\xe9\xb2\x67\xec" "\x38\x2f\x0f\x13\xc6\xdb\xe4\xbe\x6a\xb6\x5f\x45\xfd\x10\x42\x18\x68\xd6" "\x0f\xcf\xbd\x70\x66\x38\xf2\x7f\xaf\xbb\xae\xe8\x3c\x34\xf1\xc8\x4c\xfc" "\x99\x91\xac\x18\x7d\x74\xc9\x3f\xbe\x7b\xc6\x77\x16\xbd\xab\x56\x70\x40" "\xce\xf3\x13\x1b\xd4\xe6\x79\xbe\xde\xea\x7d\xed\x19\xef\xaf\x6a\x7a\x3c" "\x0e\xd6\xfe\xed\x0e\xe5\x74\xbf\x7a\x9b\xb6\x6b\xf9\xa3\x0f\x77\xdd\xbc" "\xfb\x6f\x9f\xaf\xb7\x6f\xd6\xac\x70\xc5\xd0\xc8\xc8\xe6\xe5\xb5\x9f\x73" "\xd2\x96\xce\x49\x8e\x6e\xda\xae\x6c\x69\xdc\xaf\xc5\xe3\x3f\xcb\x21\xed" "\x96\x50\x1f\xa6\x4d\xc6\xeb\x98\xae\x50\x6b\x5f\xf6\xfc\x19\x37\xcf\xf6" "\x6a\x6f\x7a\x5f\x6f\xb2\xb0\xe9\x7e\x65\xc5\xfb\x76\xad\xba\x79\x69\x79" "\xf5\x43\xbb\xf3\x7a\x3a\xb9\xbb\xde\xc0\x6d\x63\x3f\x66\x27\x6f\xc8\xd9" "\x72\x7d\xe6\x81\xe5\x7a\x83\x9b\xd5\x7f\xa8\x8e\x8f\xfe\x0f\x7d\xe7\xde" "\x8f\xdf\xfb\xd3\x53\x27\x8d\x8f\x93\x6b\x3f\x8b\xf6\x2b\xc9\xd9\xaf\x1f" "\x3f\x71\xe7\xd7\xbe\xff\x95\xff\xfa\xd3\xce\xed\xd7\x87\xde\xfd\x58\xdf" "\x3f\xfe\xcf\xa7\x97\xd6\x0a\x0e\x95\xf3\x4a\xbd\xd5\x69\x7b\x92\x89\xe7" "\x95\x93\x43\x28\x7a\xfe\x2d\x0e\xcd\xf7\x23\xf7\xf9\x57\x6a\xbe\x3f\x45" "\xcf\xbf\x6c\x3d\xfb\xb6\x6f\x1e\x6f\x20\xb3\xde\x1b\xca\x6d\x3d\x5f\x4f" "\x7e\xa0\xe7\xd9\xb3\x1e\xbe\x7e\x49\xee\xf3\x75\x4f\xad\x01\xb3\xc3\xdc" "\xda\x32\xf7\xf9\x7a\x75\xc3\x5a\xb9\xe0\xf9\xda\x6c\xfc\xfc\x7d\x42\x7b" "\x0f\xd4\xf8\x79\xe5\x9e\x5f\x0d\x03\x25\x59\x31\xfa\xab\x1b\x0e\xdb\xf6" "\xe0\x35\x2b\x8f\xaa\x15\x14\x8d\xeb\xfa\xd6\xcd\xc6\xf5\x29\x2d\xe4\x1f" "\x39\xfb\xf5\xcb\xf3\x9f\xec\xbf\x74\xe0\xbf\xfc\xaf\xce\x9d\x37\x7e\xf0" "\x96\x7b\x2e\xf8\xc3\xd0\x8a\x2f\xd4\x0a\x0e\x96\xf3\x46\x35\xed\xdf\x6a" "\x4e\xff\xd6\x5b\x1d\xf3\xce\x89\xfd\xfb\xb6\x8b\x2f\x5d\xbf\xa6\x56\x7e" "\xf0\x5e\xff\xa6\xcb\x82\xfc\x27\x9e\x4a\xb6\x5c\xb9\xf5\xb3\x43\xeb\xd7" "\x0f\x6f\xde\xd2\xda\x7e\xb5\xfa\x7a\x1a\xeb\xc9\xf6\x72\xbb\xaf\xa7\xf1" "\xec\xb6\xb0\x60\xbf\x4a\x93\xf6\x6b\xe6\x6e\xb4\xd2\x5f\xad\x3e\xdf\x62" "\xfb\xd7\xb4\xdd\x5f\x8d\xcf\xb7\xde\x90\xb4\xf5\xba\xb0\xf5\x37\x0b\xe6" "\x7c\xea\x87\x37\x5e\xd6\x37\xe9\x51\x69\x45\x17\x96\xd2\xf8\xa5\xb6\xe2" "\xff\xe9\xac\xc7\x9e\x3b\xff\xc6\xef\x7d\x2b\x37\xfe\xad\x31\x7e\xa5\xad" "\xf8\x43\x4f\x3f\x72\xcb\xe2\xc3\x2f\xda\x9e\x1b\xff\xf6\x24\x8d\x5f\x6d" "\x2b\xfe\x8a\x1d\x8f\x75\xcf\xdd\xfb\xc0\xce\xdc\xf8\x83\xb1\xfd\xb3\xdb" "\x8a\xff\xd4\x3b\x3f\xf8\xe7\xbb\x9e\xb8\xef\x99\xdc\xf8\x21\xc6\xef\x6d" "\xaf\xff\x9f\xdf\x7e\xfa\x93\xfd\xfd\x7f\xcd\x8d\xff\x78\x92\xd6\x33\x76" "\x8d\x14\xc2\x3d\x2f\x9e\xb2\xb6\xb6\x9e\x84\xae\xf4\xf9\x16\xdb\xd1\xd5" "\xd0\xae\x90\x5d\x4f\x32\xeb\xa5\xcc\x7a\x79\xe2\x7a\xa9\x36\xd7\x5a\xaf" "\xa0\x9c\x24\x8d\xe5\x71\xbb\xb4\xfc\xd8\x09\x6d\x69\xe6\x13\x39\xe5\xf1" "\x2a\xac\xba\xa8\xb6\x7c\x29\xae\x87\xec\x8d\xfd\x97\x1f\x6c\x4a\x13\xce" "\xfd\xcd\xca\x8b\xae\x53\x01\x00\x5e\xed\xe2\xfb\xff\xf1\x1a\x34\xbe\xff" "\x3f\x9c\x5e\x28\xe5\xcf\x34\xc0\x3e\xd3\xcd\xc3\x16\xe5\xc4\x8d\x79\xd8" "\xbe\xf9\x9c\x59\x0d\xf7\x2f\x4a\xe3\xc7\xc7\xc7\x79\xc0\xfe\xb7\x85\xc1" "\xb1\xe5\xb5\x03\xb5\x0b\xfd\xa9\xce\x73\xc6\xe7\x43\x76\x9e\x33\xd6\x73" "\xc2\x71\x8d\x31\xda\x9d\xe7\x2c\x9a\x7f\x5f\x92\x59\x8f\xed\xaa\xcd\x97" "\x57\x26\xe4\xa1\xa9\xc9\x79\x4d\x25\xb4\x30\xff\x3e\xb9\x9e\xfd\xcf\xbf" "\x67\x76\xbf\x78\x7e\x7c\xe0\x86\x49\xcd\x1a\x98\x30\x6f\x95\x3d\x7e\x5d" "\xe9\x8c\x59\xb3\xcf\x3b\x4c\x6c\xef\xbc\xf1\xfd\x1b\x1d\xcd\x1b\x1f\xd9" "\x79\xb1\xf8\x79\x8e\xfe\x79\x61\xe5\x78\x7d\x2d\x8e\x8f\xec\xe7\x68\xe2" "\x71\xc8\x7e\x8e\x26\xd6\x73\x54\xe6\xc4\x59\xf4\x79\x95\x97\x6a\x4f\x89" "\x49\x9f\xa3\x99\xee\xf8\x88\xcd\xde\xcf\xf8\x18\x6f\x72\xf1\xfb\x1b\x93" "\x8f\x5f\xd8\x4f\xff\xee\x3b\x7e\xcd\xa3\x2d\x69\x08\x34\x3a\xda\xea\xf1" "\xae\x55\x39\x3a\x3a\xd3\xef\xcf\x1e\xfa\xf3\x86\x33\xfb\x7e\x98\x79\xc9" "\x9c\xf8\xe9\x13\xec\x60\x9f\x37\x8c\xe5\x71\x3f\x2a\x2d\xce\x27\x7e\x3c" "\xa7\xbc\x53\xf3\x89\xf1\x74\x11\xdb\xb5\x67\x3f\x6d\x39\x10\xcc\x27\x02" "\xaf\x56\x31\xff\x8f\xaf\x11\x63\xf9\xff\xd8\x05\xf8\xbf\x65\xb6\x2b\xba" "\x0e\xcd\x5e\x35\xc6\x78\xb9\x9f\x13\x2a\x37\x6f\x4f\x51\xde\x31\xf9\x73" "\x7a\x3d\x6d\xbd\x8e\xaf\xde\xb1\xe9\xcb\xdd\xfd\x7b\x4f\xc8\xbd\xce\xd9" "\xd9\xea\xe7\x7e\x36\x35\xac\xf5\x14\x7c\xee\xa7\xa8\x1f\x97\x66\xd6\x0b" "\xfb\x31\x67\x82\xa6\x28\xdf\xcb\xd6\x53\xd4\xef\xd9\xcf\x65\xf4\x86\xb9" "\x6d\xf5\xfb\x9d\xdb\x6e\x7b\xc7\x1d\xf3\x6f\x3a\x33\xb7\xdf\x57\xd6\x5e" "\x48\x8b\xfb\xfd\x6b\x0d\x6b\x73\x0b\xfa\x5d\xbe\x50\xf7\xcb\x86\xf8\x69" "\xbe\x70\x6c\x7a\x80\xe5\x0b\x99\xf8\x87\xc8\xe7\x18\xf2\xe7\xcf\xd6\xa6" "\xf5\xbc\x42\xf9\x48\xfa\xc1\xa7\x99\xca\x47\x3e\x96\x53\x3e\xd5\x7c\xa4" "\x67\xd2\x8d\xfa\x7e\x8d\x3b\xe4\xf2\x91\xae\x03\xdb\x2e\x00\xe0\xd0\x11" "\xf3\xff\xfa\xfb\x67\x69\xfe\xff\x7f\x33\xdb\x15\xe5\xad\x27\x66\xd6\x63" "\xbc\xdc\xbc\x35\xe7\xfa\x24\x2f\x6f\xfd\x48\xba\xbc\x22\xb3\x7d\x6f\xfa" "\x1b\x15\x53\xbd\x6e\x3e\xfb\xf8\xfb\xaf\x9b\xb3\xf7\xbe\x63\x72\xf3\x96" "\xdb\x5b\xcd\x43\xff\x5b\xc3\x5a\x5f\x61\x1e\x3a\xbd\xbc\x39\x37\x8f\x58" "\xd9\x99\xcf\x8b\xe7\xe6\x11\xf5\x3c\xab\xe1\x7d\xa5\xee\x56\xe3\xc7\x3c" "\x31\xb7\xfd\xf5\x3c\x71\x7a\x79\x7a\x6e\xfc\x7a\x9e\x3e\xbd\x3c\x3a\xb7" "\x7f\xea\xef\xbb\x4d\x6f\x1e\x20\x37\x7e\x7d\x1e\xe0\x50\xcf\x73\x67\x76" "\xbe\x6e\xa6\x3f\x87\xf2\x8a\xe5\xd1\xe9\xaf\xcf\xce\x54\x1e\x7d\x6e\x4e" "\xf9\x54\xf3\xe8\xde\x49\x37\xea\xfb\x35\x4e\x1e\x0d\x00\xf0\xca\x8a\xf9" "\x7f\xbc\x8c\x8b\xf9\xff\xc3\x99\xed\xa6\x7b\xdd\x9e\x9b\x17\x74\xe8\xba" "\x3d\xfb\xf7\x40\xea\xf1\x1f\x3f\x50\x79\xe5\x4c\xe7\x7d\x33\x9d\xb7\x4e" "\xef\xf3\xa2\xc5\x79\xfd\x4c\xcf\x4b\x1c\xea\x79\xf1\x4c\xcf\x0b\xcd\xec" "\x3c\x99\xbc\x38\x5d\x0f\xd9\x1b\x35\xf2\x62\x00\x00\x0e\x06\x31\xff\x9f" "\x9d\xae\xe7\xe7\xff\xd3\xcb\x4f\x72\xf3\xb7\x7a\x7e\x22\x3f\x6f\x1a\xff" "\x90\xce\xcf\x9f\xaf\xdf\x3a\xf4\xf3\xf3\x19\x9f\xff\xfa\xc9\xcc\xce\x7f" "\xc9\xff\xe5\xff\xc5\xe4\xff\x00\x00\xaf\x6e\x31\xff\x8f\xbf\xf6\x18\xff" "\xfe\xdf\x7f\x4f\xd7\xb3\x7f\xb7\x5e\x9e\x9e\x13\xff\x90\xce\xd3\x5f\x1d" "\xef\xa3\x8f\x1c\x24\x9f\x53\x59\x18\x9a\x8c\x9f\x96\xf3\xf4\x99\x9e\x67" "\x33\x0f\x60\x1e\xa0\x98\x79\x00\x00\x80\x57\x97\xae\xf1\x4c\x69\xf2\xef" "\xd9\x7f\x32\x5d\x66\x7f\xcf\x3e\xef\xf7\xf2\xcf\xcf\xd9\xbe\x55\x95\xf1" "\xdf\xb1\x0f\xe1\xa2\x91\xcd\xc3\xc3\x17\x5c\xb6\x69\xcd\xd0\xc8\xf0\x05" "\x1b\x2f\x5d\x33\xbc\xe5\x82\xcb\x37\xaf\x1b\x19\x19\xde\x58\xdb\x6e\xba" "\x79\x63\x6e\xde\x92\xbe\xbf\xdb\x15\x2a\x69\x7f\x34\xdf\x2e\x9b\xb7\xcd" "\x4f\xff\x1e\xc2\xfc\x9c\xbf\x87\x90\xdd\x3e\x86\x3d\x7a\xfc\xc6\xe4\xbf" "\x87\x90\xad\x76\x76\xc1\xdf\x11\xd8\x77\xfc\x5a\x6b\x6f\xde\xf1\x2b\xed" "\x67\xfb\x66\xe3\x23\xef\x78\xe7\xc5\xff\x44\xce\xf6\x51\xfd\xf8\x5f\xfc" "\xe9\x93\x2f\x58\xbb\xe5\x82\x75\x1b\xd7\x8d\xac\x1b\x5a\xbf\x6e\xeb\x70" "\xe3\x76\x63\x59\x6b\xcf\x14\xbe\x37\x33\x76\xcb\x94\xbe\x37\x33\xf3\x63" "\x92\xd2\xd4\xbf\xbf\xb3\x33\xed\x28\x4d\x6a\x47\x57\xda\x1f\x79\xdf\xcf" "\x9e\x64\xda\xb1\x20\x6d\xc9\xde\xbc\xef\x3f\xc8\x69\xf7\xaf\xff\xe7\x57" "\x3f\x77\xfc\xe8\xcb\x77\x85\x30\x78\x44\xf9\x0d\xd3\xea\xbf\x64\xc5\xe8" "\x4f\xce\x1b\xfe\xc8\xc8\xee\xdf\x6f\x1a\x6b\x7f\x69\xbf\xed\xaf\x6f\x99" "\xb6\xab\xe8\xfb\x4a\xb3\xdb\xc7\xfd\xa9\xac\xbf\x74\xcb\xc8\x49\x6b\x2f" "\xbd\x6c\x63\xf6\x1b\x25\xdb\x13\xe7\x33\x4a\xf5\xf5\x19\x9a\xcf\x48\x9f" "\xfe\xe5\x16\xe7\x27\x56\xe7\x94\x4f\x75\x7e\xa2\x3c\xe9\xc6\xc1\xa9\xe5" "\xf9\x09\x00\x00\x1a\xc4\xf7\xff\xe3\xf5\x6c\x7c\xff\xf0\x2b\xe9\x05\x54" "\x2c\x6f\x3d\x4f\x9f\xde\xfb\xc7\xb9\x79\xfa\x60\x6b\x79\x7a\xf6\x7b\xc9" "\x8a\xf2\xf4\xec\xf6\x71\x7f\x5b\xcd\xd3\xab\xd3\xcc\xd3\xb3\xf5\x17\xe5" "\xe9\xcd\xb6\x6f\x96\xa7\xe7\xe5\xdd\x79\xf1\x3f\x96\xb3\xfd\x54\xb5\x3e" "\x4e\xa6\xf7\x39\x8f\xdc\x71\x72\x61\x6b\xe3\x24\xfb\x7d\x06\x45\xe3\x24" "\xbb\xfd\x54\xc7\x49\x32\xcd\x71\x92\xad\xbf\x68\x9c\x34\xdb\xbe\xd9\x38" "\xc9\x3b\xee\x79\xf1\x3f\x9a\xb3\x7d\x9e\xd6\xc7\xc3\xf4\x3e\x97\x93\x3b" "\x1e\x6e\x6d\x6d\x3c\xbc\x39\xb3\x5e\x34\x1e\xb2\xdb\x4f\x75\x3c\x94\xa6" "\x39\x1e\xb2\xf5\x17\x8d\x87\x66\xdb\x37\x1b\x0f\x79\xc7\x37\x2f\xfe\x39" "\x39\xdb\xb7\xaa\x71\x7c\x8c\x0d\x8c\xf1\x71\x31\x7c\xc1\xe5\x97\x6e\xfe" "\xec\x84\xed\x66\xfa\xfb\xf2\xa6\xdf\xbe\x99\xfd\xfe\x8f\x76\xb5\xde\xfe" "\xf6\x5f\xb7\x93\x50\xfc\xb9\xaf\x99\x6f\xff\xcc\xfe\xfe\xd7\xcc\xb7\x7f" "\x7a\x7f\xff\x28\xb7\xfd\x8f\x4f\x6f\x26\xac\xd6\xfe\x97\x5a\x68\xff\xcc" "\x7e\xbf\x4b\xbb\x92\xbe\x03\x34\x5f\x9b\x7e\xd8\xac\xe8\xf3\x67\x45\xf3" "\xb8\xab\x72\xca\xa7\x3a\x8f\x3b\x6b\xd2\x8d\x83\x93\x79\x5c\x78\xe5\xc4" "\xfc\x3f\xbe\xdd\x13\xf3\xff\x9b\xd2\x65\xa7\xdf\x06\x3a\x84\xbe\x27\xad" "\x31\xfe\xad\x9d\xf9\xfb\xfa\xbe\xc7\xac\x69\xfc\xf7\xce\x6d\xf1\x3a\xe6" "\x80\xbd\xff\xda\xf8\x7a\x3e\xbb\xc7\xeb\x79\x4b\xbc\x9e\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\xb4\xa6\xbb" "\xb2\x68\x7c\xb9\xfb\xfa\x2d\x7b\xcf\x39\xea\x03\xbf\xfe\xe2\xf0\x8b\xd7" "\x7c\xf8\xe7\x1b\xae\x7d\xd3\x55\x3f\xf8\xcb\xc0\xc5\xef\xfb\xd5\xdd\x3d" "\xdf\x7f\x69\xd7\x9a\x63\xd7\xfe\xe1\xfd\x87\x5d\x7c\xff\x67\xce\xdc\x71" "\xdb\xb7\x1f\x7c\x61\xee\xbd\xff\x7a\xba\x30\x70\x5f\x6d\x71\x62\xba\x5a" "\x0d\x21\x79\x36\x09\xa1\xfa\x8b\x3d\x5f\xff\xd2\xae\x47\x8f\x1c\x2b\x4b" "\x42\x08\xe5\xa4\x6f\x5b\x08\x0b\x92\x85\x0f\x2e\x48\x32\x11\x06\xff\x19" "\x42\x58\x53\x6f\x67\xe3\x9d\xf7\xbc\x78\xca\xda\xb1\xe5\xb5\x37\x75\x37" "\x94\xcf\xcf\x04\xc9\xee\x57\xe8\x2d\xc7\xf6\x34\xb4\x33\x5c\x51\xb8\x47" "\x1c\x7c\xba\x8a\x36\xa8\xa6\xe3\x6c\xeb\xde\xcb\x4f\x0a\x7f\x7c\xef\xaa" "\xeb\x7e\xbb\xf8\xc7\x3f\xea\xda\xfe\xcc\xb6\x7d\x9b\x24\xd5\x09\xe3\x29" "\x84\x79\x17\x66\x2b\x98\x9d\xfe\x1f\x13\x47\xdb\xa2\xf8\xe0\x74\xb9\x32" "\x84\xd0\x33\xe1\x71\x67\x14\xb4\xeb\xb8\xa2\x86\xa7\x96\xe5\xac\x1f\x9d" "\x2e\x67\xa5\xcb\xde\x82\x38\xf1\xfe\x25\x99\xf5\x52\x66\xbb\xec\x7a\xd4" "\x95\x59\xf6\x14\xd4\x37\x5d\x79\xed\x68\x77\xbb\x22\x73\x32\xeb\xd9\x93" "\xd1\x74\xe5\xb5\x33\x96\x2f\x48\x97\x3f\x4b\x97\x27\x4e\x31\x7e\x39\xfe" "\x4f\x42\x29\x09\x95\x7a\xf3\xd7\x27\xfb\xc6\x48\x98\x70\xdc\x92\x90\x8c" "\x1f\xcb\x6a\x7d\xbd\xd4\xf0\x64\x4a\x32\x4f\xae\x24\x84\x24\xb3\x5e\xca" "\xac\x97\xbb\x32\xfb\x35\x5e\x6f\x3a\xd0\xca\x49\xd2\x58\x1e\xb7\xcb\x94" "\xc7\xd3\x71\x25\x2d\x3f\x76\xe2\xb9\xba\x89\x73\x73\xca\x5f\x9f\x2e\xab" "\xe9\x13\xf5\xa5\xb8\x1e\xb2\x37\x6a\x7a\x27\xdd\xa8\xef\xd7\xb8\xd8\xae" "\x3d\xfb\x69\xcb\x81\x50\x9a\x70\x0e\x6a\x56\x5e\x3f\xf0\xe9\xc1\xe8\x4d" "\xcb\x7a\x93\x85\x93\x1e\x33\xda\x44\xbc\x6f\xd7\xaa\x9b\x97\x96\x57\x3f" "\xb4\xbb\x2f\xa7\x1d\xc9\xdd\x49\x1a\x3f\x69\x2b\xfe\xd6\xdf\x2c\x98\xf3" "\xa9\x1f\xde\x78\xd9\xa2\xbc\xf8\x17\x96\xd2\xf8\xa5\xb6\xe2\xff\xe9\xac" "\xc7\x9e\x3b\xff\xc6\xef\x7d\x2b\x37\xfe\xad\x31\x7e\xb9\xad\xf8\x27\x3f" "\xd0\xf3\xec\x59\x0f\x5f\xbf\x24\xb7\x7f\xf6\xc4\xfe\xa9\xb4\x15\x7f\xe8" "\xe9\x47\x6e\x59\x7c\xf8\x45\xdb\x73\xdb\x7f\x7b\x8c\x5f\x6d\x2b\xfe\x8a" "\x1d\x8f\x75\xcf\xdd\xfb\xc0\xce\xdc\xf6\x0f\xc6\xfe\x99\xdd\x56\xfc\xa7" "\xde\xf9\xc1\x3f\xdf\xf5\xc4\x7d\xcf\xe4\xc6\x0f\x31\x7e\x4f\x5b\xf1\x57" "\xef\xd8\xf4\xe5\xee\xfe\xbd\x27\xe4\xc6\xdf\x19\xfb\xa7\xb7\xbd\xf1\xf3" "\xfc\xf6\xd3\x9f\xec\xef\xff\xeb\x40\x5e\xfc\xc7\x63\xfc\xb9\x6d\xc5\xbf" "\x73\xdb\x6d\xef\xb8\x63\xfe\x4d\x67\xe6\x1e\xdf\x95\xb1\x7f\xfa\xda\x8a" "\x7f\xf6\xf1\xf7\x5f\x37\x67\xef\x7d\xc7\xe4\x9d\x3b\x93\xdb\x3b\xf5\xca" "\x09\xf0\xda\x74\x58\x7a\x8d\x75\x43\xba\xde\x6e\x9e\x39\x5d\x13\xf2\x85" "\x6f\x0e\x54\x6a\xd7\x7c\x73\xd2\xff\x73\x3b\x59\x51\xc6\x58\x3d\xf3\x66" "\x30\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xaf\x4e\xbf\xbb\xfa\xd4\x4f\x9e\xf7\x9e\x8f" "\xae\xaa\x24\x21\x24\x39\xdb\x8c\x36\x11\xef\x2b\xcf\x5a\xb1\x62\xa0\x8d" "\x7a\x87\x9e\x7e\xe4\x96\xc5\x87\x5f\xb4\x7d\x62\xd9\xa2\x36\xe2\x00\x00" "\x00\x00\xc5\x62\x1e\x5e\xaa\x97\x54\xc3\xa2\x70\x79\x32\x3b\x1c\xdd\x74" "\xfb\x38\x47\x70\x74\x5c\x4b\x1a\xcb\xb3\x73\x08\x31\x4e\xe3\x1c\xc1\xce" "\x73\x42\x9b\x71\x4a\x1d\x6a\x4f\xb9\x43\x71\x2a\x1d\x8a\xd3\xd5\xa1\x38" "\xb3\x3a\x14\xa7\xbb\x43\x71\xaa\x05\x71\xaa\xa1\xb5\x38\xb3\xf7\x1b\xa7" "\xd4\x72\x7b\x7a\x3a\x14\xa7\xb7\x43\x71\xe6\x74\x28\xce\xdc\x0e\xc5\x99" "\xd7\xa1\x38\xf3\x3b\x14\xa7\x6f\xbf\x71\x5a\x1f\x87\x0b\x3a\x14\x67\x61" "\x87\xe2\x1c\xd6\xa1\x38\x87\x77\x28\xce\x11\x1d\x8a\xf3\xba\x9c\x38\xb5" "\x33\x41\xeb\x71\x8e\x9c\x52\x7b\x5e\x7e\x77\xc8\x89\x93\x9d\x53\xde\x17" "\xa7\xd4\xd2\x38\x9c\x9b\xc6\x39\x2a\x2f\xce\xf8\x8d\x72\x61\x9c\x4a\x52" "\xae\xdf\xd1\x6c\x3e\x3d\xd6\x73\xcc\x34\xeb\xe9\x6d\xb1\x9e\xec\x9c\xfd" "\x54\xeb\x99\xdd\x62\x3d\xc7\x65\x1e\x57\x9a\x62\x3d\xd5\x16\xeb\x79\x63" "\x5e\x3d\xd5\xd6\xea\x49\x5a\xac\xe7\xcd\xd3\xdc\x9f\x52\x41\x3d\x71\xdc" "\x5e\x51\x7f\x44\xb9\x21\xce\x54\x9f\x8f\x57\x66\xf7\xb3\xcd\x38\x5b\x3b" "\x14\xe7\xaa\x0e\xc5\xb9\xba\x43\x71\x3e\xdf\xa1\x38\x5f\xe8\x50\x9c\x6b" "\xa6\x19\x07\xa0\x55\x31\xff\xdf\x97\xef\xf5\x85\xee\xca\xbb\x42\x4f\x7a" "\xc6\xc9\xce\x02\xc4\x7c\x77\xf1\xf8\xcf\xc9\xaf\x77\x79\x27\xa4\x18\xef" "\x0d\x99\xf2\x59\xd9\x78\xd9\x30\xd9\x44\x3d\x13\x6f\xf1\x54\xdb\x97\x9d" "\x40\xc8\xc4\x5b\x92\x29\xef\x6a\x88\x57\xa9\xe7\x23\xfb\x89\x57\x9d\x18" "\x6f\x69\xe6\xce\x49\xfb\x9b\x6d\x5f\x76\x42\x21\xd3\xbe\x13\x33\xe5\xdd" "\x45\xf1\xb2\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x83\x7e" "\x77\xf5\xa9\x9f\x3c\xef\x3d\x1f\x5d\x15\x92\x30\xf6\xaf\xa9\xd1\x26\xe2" "\x7d\xe5\x59\x2b\x56\x0c\xb4\x51\xef\xae\x55\x37\x2f\x2d\xaf\x7e\x68\xf7" "\xc4\xb2\xee\x4a\x1b\x81\x00\x00\x00\x80\x42\x31\x0f\xef\xaa\x97\x54\x43" "\x77\x65\x79\xe8\x4e\x66\x35\x6c\x57\x4d\xe7\x01\xaa\xe9\x7a\xb9\xaf\xb6" "\xec\x9f\x17\x56\x8e\x2d\x93\x81\xd2\xf8\x7a\x4f\xb2\x60\xbf\x8f\xab\xa4" "\x8f\x5b\x36\xb2\x61\xd3\xb2\x2d\x57\x6e\x7d\xeb\xba\x0d\x43\x97\x0c\x5f" "\x32\xbc\xf1\xed\xcb\x4f\x5d\x7e\xfa\xe0\x69\xa7\x9f\xb6\x6c\xed\xba\xf5" "\xc3\x83\xb5\x9f\x21\x74\x17\xc4\x0b\x21\x8c\x4f\x3f\x6c\xb9\x72\xeb\x67" "\x87\xd6\xaf\x1f\xde\xbc\xa5\x56\x98\x6d\xff\xa2\xf4\x71\x8b\xd2\xf5\x24" "\x7d\x5c\xff\xdb\xc2\xe0\xd8\xf2\xda\xb4\xfd\x0b\x0b\xea\x2b\x4d\xaa\x6f" "\xe6\x6e\x14\x1f\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x3f\xd8\xb5\xbf\x50\x37\xcf\x3a\x0e\xe0\xcf\x9b\xe4\x24" "\xd9\xd9\xba\x46\xf6\x2f\x2b\xeb\x69\xe8\x9f\x51\x75\x68\x5b\xcf\xa4\xd3" "\xb1\xbc\x20\x38\xd8\xda\xd2\xc3\x40\x92\xe9\x71\x14\xd7\xe2\xf0\xd4\x96" "\xad\x1d\x75\xc6\xad\xe0\x36\x5b\x14\x61\xa3\x50\x2a\xbd\xa9\xd4\xe1\xe6" "\xf0\x66\x7f\xdc\x10\xf7\x87\x42\x65\x56\x0b\x9e\x5a\x64\x1b\xba\x0b\xbd" "\x50\x36\x9d\x74\xa3\x17\xd2\x12\xe9\x39\x79\x73\x92\x34\x69\x4e\x63\xb7" "\xb6\xdb\xe7\x73\xf1\xbe\xc9\xf3\xfc\x9e\xe7\xf7\x3e\xb9\x28\x7c\xdf\x53" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xc3\x35" "\x59\x1b\x1d\xaf\x94\xc7\xaa\xc3\x51\x08\x51\x8f\x9a\x7a\x17\xc9\x5c\x3a" "\x1b\xc7\xa5\x01\xfa\x7e\xed\xc5\xcd\x3f\xce\x8d\x1c\x5f\xda\x3a\x96\xcb" "\x0c\xb0\x11\x00\x00\x00\xd0\x57\x92\xc3\x87\x9a\x23\xf9\x90\xcb\xa4\x43" "\x3a\x5c\x3b\xf5\x6d\x61\x68\x99\x08\x33\xb9\x1f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xf8\x99\xac\x8d\x8e\x57\xca\x63\xd5" "\x4b\xa3\x10\xa2\x1e\x35\xf5\x2e\x92\xb9\x74\x36\x8e\x4b\xad\xc5\xd9\xd9" "\xf5\x7d\xeb\xbd\xa7\x3f\xff\xfa\xc8\xc8\x3f\x5a\xc7\x8a\x03\x9d\x00\x00" "\x00\x00\xe8\x27\xc9\xe1\xa9\xe6\x48\x3e\x14\xc3\xa2\x30\x14\x5d\xdb\x56" "\x97\xbc\x1b\x98\xd7\xb1\xbe\xb3\x2e\xd9\x67\xfe\x2c\xeb\x4a\xb3\xac\x5b" "\x34\xcb\xba\xeb\x67\x59\xf7\xc9\x3e\x75\x6b\x1a\xf7\x6d\x01\x00\x00\x00" "\x2e\x7e\x49\xfe\xcf\x34\x47\x0a\x21\x97\x99\xd3\x33\xff\xf7\xcb\xf5\x49" "\xdd\x82\x8e\xba\x74\xe3\xde\x99\xf7\x01\x00\x00\x80\x0f\x5e\x92\xff\x73" "\xcd\x91\x62\xc8\x65\x8a\xcd\xbc\x3e\xdb\xbc\xbf\xb0\xa3\x2e\x59\xdf\xef" "\xef\xf6\xc9\xfa\x25\x3d\xd6\xf7\xfb\x7b\xfe\xea\xc6\xdd\xdf\xe9\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\xe0\xe2\x31\x59\x1b\x1d\xaf\x94\xc7\xaa\xe9\x28\x84" "\xa8\x47\x4d\xbd\x8b\x64\x2e\x9d\x8d\xe3\xd2\x00\x7d\x57\xbc\x34\xfc\xaf" "\xdb\x0f\x3c\xb2\xb0\x75\x2c\x97\x19\x60\x23\x00\x00\x00\xa0\xaf\x24\x87" "\xcf\x44\xef\x7c\xc8\x65\x86\xc3\x50\xb8\x74\x2a\xf7\x8f\xdc\xba\xf7\xd9" "\xaf\x3c\xfb\xfc\x68\x08\x61\x3a\xe6\x67\xb3\x61\xdb\xba\x2d\x5b\xee\x5d" "\x31\x7d\x4d\xea\x96\x1f\x3a\x30\xf4\xa3\x83\xef\x7c\xef\xb4\xba\xe5\xd3" "\xd7\xf3\x76\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9c\x99\xac\x8d\x8e\x57\xca\x63\xd5\x4b\xa2\x10\xa2\x1e\x35\xf5\x2e" "\xc2\x50\x63\x32\x1b\xc7\xa5\x01\xfa\xbe\xf9\xc5\x2f\xff\xed\xc9\xa3\x2f" "\xbc\xdd\x3a\x56\x1c\x60\x1f\x00\x00\x00\xa0\xbf\x24\x87\xcf\x64\xff\x7c" "\x28\x86\x6c\xc8\x86\xab\xa7\xbe\x4d\x65\xfd\x16\xa9\x8e\xf5\xbd\xde\x19" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x1d" "\xf7\x7d\xe7\x81\x6f\xad\x9b\x98\x58\x7f\xaf\x0f\x3e\xfc\x3f\x1f\x2e\xbf" "\x30\x1e\xe3\xe3\xf9\x21\x1f\x42\x38\xd7\x3b\x9f\xef\x7f\x99\x00\x00\x80" "\x73\x6d\x41\x88\x42\xfd\x2c\x5d\xb3\xf6\x7c\x3f\x35\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x21\x98\xac\x8d\x8e\x57\xca\x63" "\xd5\x7c\x14\x42\xd4\xa3\xa6\xde\x45\x32\x97\xce\xc6\x71\x69\x80\xbe\xf1" "\x8b\x87\x73\x73\x8e\xbf\xf4\x4a\xeb\x58\x71\x80\x7d\x00\x00\x00\x80\xfe" "\x92\x1c\x3e\x93\xfd\xf3\xa1\x18\x86\xc2\x50\xb8\x6a\xea\x5b\xb7\x77\x02" "\x53\xf9\xbf\xf0\x21\x3e\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x70\x41\x99\xac\x8d\x8e\x57\xca\x63\xd5\x39\x51\x08\x51" "\x8f\x9a\x7a\x17\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\x3e\xb1\x7d\xcf\x17\xf6" "\xcf\xfd\xe1\x6d\xad\x63\xb9\xcc\x00\x1b\x01\x00\x00\x00\x7d\x25\x39\x3c" "\xdb\x1c\xc9\x87\x5c\xe6\x53\x21\x17\xae\x6b\x7c\x9f\x68\x5f\x10\xa5\x1b" "\xf7\xee\xef\x05\x66\xd6\x6d\x6e\x5b\x36\x3c\xeb\x75\xb5\xb6\x75\xe9\x59" "\xaf\xdb\xd1\x71\xb2\x4c\xe3\x34\xd3\xeb\xf2\xc9\x7e\x85\xe9\x7b\x73\x5d" "\xe9\xf4\x75\xa5\x96\x75\xc5\xd0\x6c\x5f\x6a\x5b\x17\x76\xb5\xad\x9a\xd3" "\xe7\x39\x03\x00\x00\x00\x9c\x47\x49\xfe\xcf\x35\x47\x0a\x21\x97\xc9\xb5" "\xe4\xdc\x9f\xb7\xd5\x17\x06\xce\xb9\xdb\x3f\x90\xe7\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\x2e\x1c\x93\xb5\xd1\xf1\x4a\x79\xac\x1a\x45\x21" "\x44\x3d\x6a\xea\x5d\x24\x73\xe9\x6c\x1c\x97\x06\xe8\xfb\xc0\xef\x3f\x71" "\xd9\xd7\x7f\xb1\x73\x6b\xeb\x58\x71\x80\x7d\x00\x00\x00\x80\xfe\x92\x1c" "\x3e\x93\xfd\xf3\xa1\x18\xe6\x87\xcb\xc3\xfc\xa9\xdc\x1f\x0a\xed\xf5\x49" "\xdd\xbf\x2b\x27\xf6\x3f\xfe\x9f\xbf\x2f\x0d\x61\xd9\xd5\x47\x46\x32\x3d" "\xf7\xff\xed\x9b\xb7\xbc\xdc\x79\x09\x21\xd5\x5e\x94\x0a\x61\x6e\xa3\x5f" "\xd4\xa3\xdf\xef\xfe\xf8\xf8\xfd\x8b\xeb\x27\x9e\x0c\x61\xd9\x55\xe9\xeb" "\xce\xae\xdf\xc9\xc6\xfb\x8a\xc6\xaa\x28\xae\x3f\x57\x59\xbf\x7a\xcb\xc1" "\x23\x9b\x67\xf3\x0b\x01\x00\x00\xc0\xc5\x2f\xc9\xff\x43\xcd\x91\x42\xc8" "\x65\xbe\xdd\x33\xff\x27\xc9\xfb\xac\xf2\xff\xdc\xfb\xb7\xff\xea\xca\xc6" "\xb5\xf1\x06\xa0\x63\x45\xaa\xd0\xe8\x97\xea\xd1\xef\x4b\x8b\x9f\xfe\xeb" "\x92\x95\xff\x7c\xe7\x54\xfe\x3f\x53\xbf\xcf\xee\xd9\xb8\xff\xca\xb6\x86" "\xd3\x23\x1d\xa2\xb8\x5e\xde\xb8\x75\xcd\x91\x1b\xf7\xa5\x92\x53\x4f\xf7" "\x4f\x77\xf4\x4f\x7e\x97\xaf\x7e\xf7\xed\xff\x6e\xd8\xf6\xd8\x89\xe9\xfe" "\xf9\x90\x6f\x8c\xcf\xcb\x74\xeb\x7f\xfa\xb5\xc3\x25\x71\x7d\x22\xb5\xbb" "\xba\xea\xe4\xee\x5a\x7b\xff\x4c\x8f\xf3\x3f\xf2\x87\x57\x8e\xfe\x66\xde" "\xce\xf7\x4f\xf5\x7f\x6f\xc1\x70\xb3\xff\xf5\x67\x38\xff\x99\xfb\x0f\xdf" "\xf1\xe8\xae\x9b\xf6\x1c\x58\xd3\xde\x3f\x84\x50\xea\xd6\xff\xdd\xf7\x6f" "\x0b\xd7\xfc\xf9\x9e\x87\x3b\xcf\x3f\xdc\xb1\x71\xeb\x2f\xdf\x7a\xed\x10" "\xc5\xf5\x43\x0b\x8f\xed\x5b\xb9\xb7\x78\x73\x7b\xff\xa8\xa3\x7f\xf2\xfb" "\xff\xf2\xe8\x13\xbb\x7e\xf6\xd8\x0f\x9e\x4f\xfa\x27\xff\x57\x64\xe9\xa2" "\xd9\xf6\x4f\x75\xf4\x7f\x6d\xc7\x15\xdb\x5f\x7d\x68\xed\xbc\xf6\xfe\xa9" "\x1e\xe7\x7f\xf9\xce\xd7\x47\x36\x95\xbe\xff\xa7\xce\xf3\xdf\x3d\xf0\xf9" "\x9f\xba\xe1\x99\xbb\xde\x58\x17\x3f\xd8\x39\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\xf0\xd1\x32\x59\x1b\x1d\xaf\x94\xc7\xaa\xa9\x28\x84" "\xa8\x47\x4d\xbd\x43\xd4\x52\x99\xce\xc6\x71\x69\x80\xbe\x6f\xdd\x7e\xf8" "\xdd\x3b\x77\xfe\xf4\x27\xad\x63\xc5\x7e\x8b\x7a\x3d\x20\x00\x00\x00\x70" "\x46\x49\x0e\x9f\x89\xd6\xf9\x50\x0c\xd9\x90\x0d\xc3\x53\xb9\xff\xb9\xca" "\xfa\xd5\x5b\x0e\x1e\xd9\x1c\x0a\xd3\xb3\x51\xe3\x9e\x99\xd8\x74\xdf\x96" "\x4f\x6f\x90\xc8\x01\x00\x00\xe0\x22\x90\xe4\xff\x4c\x73\xa4\x10\x72\x99" "\xc5\x61\xa8\x91\xff\xcb\x1b\xb7\xae\x39\x72\xe3\xbe\x54\x92\xff\x53\x49" "\xfe\xdf\x70\xcf\xc4\xfa\x65\xa1\x59\xf7\xda\x8e\x2b\xb6\xbf\xfa\xd0\xda" "\x79\xcd\xf7\x04\x21\x4c\xfd\xb7\x80\xfc\xa9\xba\xcf\xcd\xd4\xdd\x7a\xcb" "\xe1\xc2\xb1\xbf\x7c\x73\x49\xd7\xba\x15\x33\x75\x87\x16\x1e\xdb\xb7\x72" "\x6f\xf1\xe6\xa4\x2e\xb4\xd6\x2d\x0f\xcd\xf7\x13\x4f\xdd\xf0\xcc\x5d\x6f" "\xac\x8b\x1f\x6c\x3e\x5f\x6b\xdd\x67\xbe\xb1\x69\xe2\xee\xe9\xf1\x64\xdf" "\xe1\x3b\x1e\xdd\x75\xd3\x9e\x03\x6b\x9a\xe7\x68\xdc\x87\x1b\xfb\x26\x75" "\x13\xa9\xdd\xd5\x55\x27\x77\xd7\x92\xba\x74\xe3\x9e\x6f\x9c\x1b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xdd\x64\x6d\x74\xbc\x52\x1e\xab\x86" "\x74\x08\x51\x8f\x9a\x7a\x17\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\xae\x5a\xfc" "\xeb\x87\x2f\x3b\xfe\xc2\xfc\xd6\xb1\x5c\x66\x80\x8d\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x1f" "\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\x9b\xd0\x3a\xaa\x3e\x0e\xc0\xe7\xdc\x9b\xbc\xb9" "\xbd\x37\x69\x93\xf6\x05\xa3\x62\x9a\x56\x45\xa9\x0b\x8b\x82\x88\x6e\x54" "\x54\xa4\x15\x29\xb8\xaa\x14\xa9\xb6\x76\x21\x0a\x82\x88\x52\x17\xa6\xd2" "\x8a\xa5\x2a\x6e\x04\xab\x9b\x22\x2a\xa8\x51\x0a\x0a\x36\x16\x4b\xab\xa4" "\xe2\x57\x71\xe3\x42\x05\x85\xea\x42\x28\xc5\xa0\x36\x88\x0b\x95\x24\xe7" "\xdc\xde\x4c\x32\x46\xa7\x55\x50\x9f\x07\x86\x73\xcf\x99\x99\xdf\xfc\x67" "\xce\xc9\xe4\x5e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x7f\x94\x9e" "\xae\xc1\xe9\xf6\xf0\x8e\x7b\x27\x6f\x3a\xeb\xba\x0f\x1e\xbe\xe3\xc4\x43" "\x37\xbc\x75\xf7\xb6\x0b\x1e\x7c\xf9\x9b\xe1\x4d\xd7\xbc\xbf\xb7\xf9\x42" "\x18\xdf\xbc\x62\xcb\xe7\xd7\x2e\xdb\xb4\xff\xce\x35\x63\xbb\x9f\x3d\xf4" "\x63\xdf\x1b\xbf\x1c\x5d\x30\xf8\x81\x99\x66\x55\xea\x36\x42\x88\xc7\x63" "\x08\x8d\xb7\x27\x9e\x7a\x64\xfc\xc3\x33\xa6\xc6\x62\x08\xa1\x1e\xfb\x47" "\x42\x18\x88\x4b\x0f\x0d\xc4\x42\xc2\xea\x9f\x43\x08\x9b\xdb\x75\xce\xde" "\xf9\xfa\x89\x4b\xb7\x4c\xb5\xdb\x76\xf5\xcc\x1a\x5f\x52\x08\x29\xde\x57" "\x68\xd5\x73\x3d\x33\xfa\x67\xd7\xcb\xbf\x4b\x23\xad\xb3\xad\x93\xf7\x5f" "\x14\xbe\xbc\x7a\xfd\xf6\x8f\x97\xbf\xf6\x6a\xf7\xe8\xb1\x91\x93\x87\xc4" "\x46\xc7\x7a\x0a\x61\xf1\xc6\xce\xf3\xbb\x43\x08\x8b\xd2\x36\x25\xaf\xb6" "\xc1\x7c\x72\x6a\xd7\x85\x10\x9a\x1d\xe7\x5d\xbe\x40\x5d\xe7\xfe\xc1\xfa" "\x2f\x2e\xe9\x9f\x9d\xda\xff\xa5\xb6\xb5\x40\x4e\xde\xbf\xb2\xd0\xaf\x15" "\x8e\x2b\xf6\xb3\xee\x42\xdb\x5c\xe0\x7a\xa7\xaa\xac\x8e\xaa\xc7\x2d\xa4" "\xb7\xd0\x2f\xbe\x8c\x3a\x7d\x5f\x21\xbf\xac\xce\x3c\x3e\x90\xda\x37\x53" "\xbb\xea\x4f\xe6\xd7\xf3\x16\x43\x2d\x86\xae\x76\xf9\x77\xc5\x93\x6b\x24" "\x74\xcc\x5b\x0c\x71\x7a\x2e\x1b\xed\x7e\xad\x3d\xb7\x21\xdd\x7f\xa1\x1f" "\x0b\xfd\x5a\xa1\x5f\xef\x2e\xdc\xd7\xf4\x75\xd3\x42\xab\xc7\x38\x7b\x3c" "\x1f\x57\x18\xcf\xaf\xe3\xae\x34\xbe\xa2\xf3\x5d\x3d\x8f\x9b\x4b\xc6\xcf" "\x4c\x6d\x23\xfd\xa1\xfe\x94\xfb\xa1\xf8\x61\x46\x6b\xce\x87\xf6\x7d\x4d" "\xcb\x75\x4d\xfc\x4e\x2d\x7f\x87\x5a\xc7\x3b\x68\xbe\xf1\xf6\xc4\xa7\xc9" "\x68\xa5\xb1\x56\x5c\x3a\xe7\x9c\xe6\xaf\x73\xe5\x7d\xe3\xeb\x1f\x3b\xbf" "\xbe\xe1\x9d\xc3\xfd\x25\x75\xc4\xbd\x31\xe5\xc7\xd2\xfc\x79\xe2\xdb\xf9" "\x5b\x3f\x1a\xe8\xbd\xf5\x95\x9d\xf7\x0d\x96\xe5\x6f\xac\xa5\xfc\x5a\xa5" "\xfc\xaf\xd6\x1e\xf9\xee\x96\x9d\xcf\x3d\x53\x9a\xff\x64\xce\xaf\x57\xca" "\xbf\xe4\x40\xf3\xf8\xda\x77\x77\xac\x2c\x7d\x3e\x13\xf9\xf9\x74\x55\xca" "\xbf\xed\xe8\x7b\x8f\x2f\xff\xff\xed\xa3\xa5\xf5\xef\xc9\xf9\x8d\x4a\xf9" "\x57\x8d\x1d\xe9\xe9\x9b\x3c\x70\xb0\xb4\xfe\xd5\xf9\xf9\x2c\xaa\x94\xff" "\xc5\x95\xd7\x7f\xfd\xd2\xa7\xfb\x8e\x95\xe6\x87\x9c\xdf\xac\x94\xbf\x61" "\xec\x9e\x27\x7a\x86\x26\x2f\x2c\xcd\x3f\x98\x9f\x4f\xab\xda\xfa\xf9\x61" "\xf4\xb2\xcf\x86\x86\xbe\x1d\x2e\xcb\xff\x24\xe7\xf7\x55\xca\x7f\x71\x64" "\xf7\x15\xcf\x2f\xd9\xb5\xa6\x74\x7e\xd7\xe5\xe7\xd3\x5f\x29\xff\xc6\xf3" "\xf6\x6f\xef\x9d\xdc\x77\x4e\xd9\xbb\x33\xee\x39\x5d\xff\x39\x01\xfe\x9b" "\x96\xa5\xef\x58\x8f\xa6\x7e\xd5\xdf\x99\xa7\xaa\xe3\xf7\xc2\xd3\xc3\x5d" "\x33\xdf\xf9\x7a\xd3\xd6\x77\x3a\x2f\x54\x30\x75\x9d\xc5\x7f\x61\x3e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\x6f\xec\xc0\x01\x09\x00\x00\x00\x80" "\xa0\xff\xaf\xdb\x11\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f" "\x05\x00\x00\xff\xff\xef\x66\x39\x2e", 22869); syz_mount_image(/*fs=*/0x200000000880, /*dir=*/0x200000005900, /*flags=*/0, /*opts=*/0x200000000140, /*chdir=*/1, /*size=*/0x5955, /*img=*/0x20000000b2c0); syscall(__NR_keyctl, /*code=*/0xful, /*key=*/0, /*timeout=*/0x1fcul, 0, 0); syscall(__NR_keyctl, /*code=*/0x15ul, /*key=*/r[2], 0, 0, 0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }