// https://syzkaller.appspot.com/bug?id=79b5b44ad588549cda60aff3e9e182b8c129a3a7 // 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; } //% 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200000001000, "bcachefs\000", 9); memcpy((void*)0x200000000000, "./file0\000", 8); *(uint8_t*)0x200000000040 = 0; memcpy( (void*)0x2000000010c0, "\x78\x9c\xec\xdd\x0d\x98\x1c\x55\x81\x2f\xfc\x53\xdd\x3d\x93\xf9\x48\x27" "\x93\x18\x42\x00\x8d\x63\xa2\x20\xf2\x95\x20\x20\x92\xe0\x4e\x20\x7c\xef" "\x42\x36\xa2\xcb\x8d\xe4\x86\x98\x49\xe4\x23\x12\x4c\xc2\x22\xb0\xba\x03" "\xae\x2b\xc2\x8d\xf0\xa2\xcb\xb3\x2b\x77\x2f\x77\x09\xcf\x72\xd9\xfb\xf2" "\x02\xcb\xae\x7a\xcd\x03\xca\x0a\x08\xba\x2e\x20\x2e\xba\x5e\x41\xb8\x2b" "\xba\x77\x23\x1f\x2e\x22\xa0\x81\x79\x9f\x99\xe9\x9a\x74\xd7\x74\x4d\xf7" "\xf4\x54\x05\x90\xdf\x4f\x49\x4d\x55\x9f\xfa\x9f\xd3\xd5\x35\x5d\x75\xce" "\x74\x55\x07\x00\x00\x00\xde\x10\xee\xfd\xf4\xa6\x5f\xad\xfb\xa7\xab\x6e" "\xfa\x97\xb3\xcf\x78\x60\xe0\xc8\x17\x9e\x09\xdd\xc5\xe1\xe5\x1d\x95\xc7" "\x3b\xe2\x1f\x0e\x7f\xd5\x9a\xc8\x2e\x54\x2e\x95\x4b\xa1\xce\x7e\xd1\xb9" "\xf8\xe2\x9f\xcc\x7d\xef\x09\xf3\x07\x9e\x78\xe8\x73\xdd\x3b\x7e\xfa\xe9" "\xaf\x5e\xfa\xf5\x43\xfb\xfe\xe4\xe4\xa3\x6e\x39\xef\x99\x23\xbf\x72\xe8" "\x39\x7f\xd8\x28\x37\xde\x8d\x76\xdf\x39\x1f\x7d\x37\x0a\x61\xc3\x33\xb3" "\xae\xbd\x75\xcb\x07\xe6\x0c\x2d\x8b\x42\x08\xc5\xa8\x30\x10\xc2\x8c\x4b" "\x0a\x77\xcd\x88\x12\x11\xbd\xbf\x0e\x21\xf4\x57\xca\x95\x4b\x73\x87\xff" "\x7d\xfc\xae\x91\x07\x2f\xfd\xea\xa7\xce\x1c\x9a\x0e\x5c\x31\xa5\x66\xa5" "\xe9\x89\x10\xfb\xfb\x1b\xdb\xac\x10\x42\x77\x08\xe1\xaa\xca\xfc\xa5\xb7" "\x7d\x73\xf1\xff\x9c\x73\xd2\xfe\xb7\xbc\xf4\xe5\xd3\xbe\xb4\xe5\xa6\x2b" "\x43\x21\x2e\xd9\x1b\xa6\x54\xed\x57\xa1\x6f\xda\x19\x59\xb6\x63\xf7\xaa" "\x9f\x77\xfc\x71\x08\x43\x7b\xe1\x9c\xca\x7e\x18\x4d\xa2\x5d\xcb\x42\x08" "\x5d\x55\xf3\x8d\x76\xe3\x66\x77\xf3\x03\x2a\xd3\x42\x62\xfe\xb0\x44\xb9" "\xdd\x12\xf3\x85\xc4\xfc\x9e\x95\xe9\x92\xca\x74\x56\x65\x3a\xa7\x32\x9d" "\x5a\x99\x26\x7f\xf9\xe3\x9c\xb7\x25\xa6\xc9\xdf\xef\xac\x9c\xf3\x72\x73" "\xe5\xe2\x76\x16\x33\xaa\x77\xf7\xc4\x7c\x5b\x46\xb9\xb1\xe4\x76\x4d\x9a" "\x5b\x99\x1e\x10\xd5\x6f\x4f\xa3\xbc\xa8\xf2\x1a\x0e\xfd\x57\x6e\xb5\x91" "\x4d\x18\xda\xde\x9d\x21\x84\x4b\x2a\xf3\xf1\xdb\xf6\xd0\xfe\x30\x6d\xe8" "\xb1\x52\x6f\x62\x8d\xa9\xe1\x77\xc3\xef\x85\x93\xc3\xd2\x70\x4c\x38\x36" "\x1c\x17\x8e\x0f\x27\x86\x13\xc2\x49\x61\x59\xe8\x1a\x53\xb6\x9c\x52\x76" "\x46\xb4\x2c\x4c\x1d\x53\x3a\x0a\x3d\x51\xb1\xd2\xa6\x62\x14\x0a\x51\x28" "\x8d\x6e\x96\xa5\x51\x08\xed\x55\x65\xa7\x8f\xae\x53\xa8\x79\x6d\x87\xf6" "\xef\x29\x75\x9e\x67\xbc\x3c\x0e\x1c\xa8\xfc\xd0\x5d\x59\xd6\x1d\xcd\x1c" "\xb3\xce\x60\x1d\xf1\x63\x5f\xd8\xf0\x62\xdf\x95\xb7\x75\x7d\x73\x4e\xbd" "\x8d\x3a\x94\x79\x72\x54\xc9\x8f\x5a\xca\x3f\xae\xf3\xca\xa7\x7a\x2f\x7f" "\xcf\xca\x9e\xb4\xfc\xb9\x71\x7e\xa1\xa5\xfc\xce\xbb\x7e\xb0\xe4\x33\x17" "\x85\x3b\x52\xf3\x8f\x8f\xf3\x8b\x2d\xe5\x3f\xb1\xf7\x9d\xd3\xdf\xbf\xe7" "\xe0\xb7\x53\xf3\x4f\x8d\xf3\x4b\x51\xb9\x85\xfc\x03\xbf\xf8\xf2\x3e\x27" "\x7f\x77\xdf\x23\x52\xf3\xfb\xe3\xfc\x8e\x96\xda\x7f\xd7\xad\xdb\x97\x6c" "\x3b\x7c\xdb\x5e\xa9\xf9\x8b\xe3\xfc\xce\x96\xf2\x2f\xbf\xe9\xd4\x53\x9e" "\xfa\xde\x35\x0b\x53\xf3\x0f\x8b\xf3\xbb\x5a\xca\x7f\x64\xf6\xdf\xff\xe6" "\xf6\x8f\x3e\xfe\xad\x8e\xb4\xfc\x33\xe3\xfc\xee\x96\xf2\xef\x38\x66\xe6" "\xb2\xcb\x1e\xfa\xc5\xb6\xd4\xfd\x7f\xff\x38\x7f\x6a\x4b\xf9\xab\x9e\xdd" "\x72\xf7\xf2\xb6\x23\x8f\x4d\xdd\x3e\xb3\xe3\xfc\x72\x4b\xf9\x8f\x5d\xff" "\xe2\xf6\xad\xe7\x74\x5e\x9c\x9a\xbf\x3e\xce\x9f\xd6\x52\xfe\x5f\x1f\x78" "\xe3\x03\x6f\x9f\x73\xf3\xd6\xd4\xed\x33\x2f\xce\x9f\xde\x52\xfe\xd6\xcb" "\xef\x39\xfa\x13\xcf\x7d\xed\xe1\xd4\xf6\xcf\x19\xce\x8f\xba\x43\x4f\x4b" "\xf9\x2b\x17\x7e\xe3\x86\xd3\xdf\xb5\xfd\x82\xd4\xfd\x67\x45\xdc\xfe\x59" "\x2d\xe5\xdf\x33\x63\xc7\x1e\xcb\x5f\xe9\xdf\x37\xb5\xfd\x1b\x1b\x1d\x61" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xe0\x8d\xab\x5c\x2a\x97\x86\xa6\xf7\x7e\x7a\xd3\xaf\xd6" "\xfd\xd3\x55\x37\xfd\xcb\xd9\x67\x3c\x30\x70\xe4\x0b\xcf\x74\x2e\xbe\xf8" "\x27\x73\xdf\x7b\xc2\xfc\x81\x27\x1e\xfa\x5c\xf7\x8e\x9f\x7e\xfa\xab\x97" "\x7e\xfd\xd0\xbe\x3f\x39\xf9\xa8\x5b\xce\x7b\xe6\xc8\xaf\x1c\x7a\xce\x1f" "\x36\xca\xed\xe8\x18\x99\xee\xbe\x63\x70\x64\x3e\x84\xe8\xbb\x51\x08\x1b" "\x9e\x99\x75\xed\xad\x5b\x3e\x30\x67\x68\x59\x14\x42\x28\x46\x85\x81\x10" "\x66\x5c\x52\xb8\x6b\x46\x94\x88\xe8\xfd\x75\x08\xa1\xbf\x52\xae\x5c\x9a" "\x3b\xfc\xef\xe3\x77\x8d\x3c\x78\xe9\x57\x3f\x75\xe6\xd0\x74\xe0\x8a\x29" "\x35\x2b\x4d\x4f\x84\x24\x9f\x57\xe8\x2e\xc6\xed\xa9\x69\x67\x38\x7c\x82" "\x1b\x8e\xd7\x85\x59\x21\x84\xee\x10\xc2\x55\x95\xf9\x4b\x6f\xfb\xe6\xe2" "\xff\x39\xe7\xa4\xfd\x6f\x79\xe9\xcb\xa7\x7d\x69\xcb\x4d\x57\x86\x42\x5c" "\xb2\x37\x4c\xa9\xda\xaf\x42\xdf\xb4\x33\xb2\x6c\xc7\xee\x55\x3f\xef\xf8" "\xe3\x10\x86\xf6\xc2\x39\x95\xfd\x30\x9a\x44\xbb\x96\x85\x10\xba\xaa\xe6" "\x1b\xed\xc6\xcd\xee\xe6\x07\x54\xa6\x85\xc4\xfc\x61\x89\x72\xbb\x25\xe6" "\x0b\x89\xf9\x3d\x2b\xd3\x25\x95\xe9\xac\xca\x74\x4e\x65\x3a\xb5\x32\x4d" "\xfe\xf2\xc7\x39\x6f\x4b\x4c\x93\xbf\xdf\x59\x39\xe7\xe5\xe6\xca\xc5\xed" "\x2c\x66\x54\xef\xee\x89\xf9\xb6\x8c\x72\x63\xc9\xed\x9a\x34\xb7\x32\x3d" "\x20\xaa\xdf\x9e\x46\x79\x51\xe5\x35\x1c\xfa\xaf\xdc\x6a\x23\x9b\x30\xb4" "\xbd\x3b\x43\x08\x97\x54\xe6\xe3\xb7\xed\xa1\xfd\x61\xda\xd0\x63\xa5\xde" "\xc4\x1a\x53\xc3\xef\x86\xdf\x0b\x27\x87\xa5\xe1\x98\x70\x6c\x38\x2e\x1c" "\x1f\x4e\x0c\x27\x84\x93\xc2\xb2\xd0\x35\xa6\x6c\x39\xa5\xec\x8c\x68\x59" "\x98\x3a\xa6\x74\x14\x7a\xa2\x62\xa5\x4d\xc5\x28\x14\xa2\x50\x1a\xdd\x2c" "\x4b\xa3\x10\xda\xab\xca\x4e\x1f\x5d\xa7\x50\xf3\xda\x0e\xed\xdf\x53\xea" "\x3c\xcf\x78\x79\x1c\x38\x50\xf9\xa1\xbb\xb2\xac\x3b\x9a\x39\x66\x9d\xc1" "\x3a\xe2\xc7\xbe\xb0\xe1\xc5\xbe\x2b\x6f\xeb\xfa\xe6\x9c\x7a\x1b\x75\x28" "\xf3\xe4\xa8\x92\x1f\xb5\x94\x7f\x5c\xe7\x95\x4f\xf5\x5e\xfe\x9e\x95\x3d" "\x69\xf9\x73\xe3\xfc\x42\x4b\xf9\x9d\x77\xfd\x60\xc9\x67\x2e\x0a\x77\xa4" "\xe6\x1f\x1f\xe7\x17\x5b\xca\x7f\x62\xef\x3b\xa7\xbf\x7f\xcf\xc1\x6f\xa7" "\xe6\x9f\x1a\xe7\x97\xa2\x56\xf2\x0f\xfc\xe2\xcb\xfb\x9c\xfc\xdd\x7d\x8f" "\x48\xcd\xef\x8f\xf3\x3b\x5a\x6a\xff\x5d\xb7\x6e\x5f\xb2\xed\xf0\x6d\x7b" "\xa5\xe6\x2f\x8e\xf3\x3b\x5b\xca\xbf\xfc\xa6\x53\x4f\x79\xea\x7b\xd7\x2c" "\x4c\xcd\x3f\x2c\xce\xef\x6a\x29\xff\x91\xd9\x7f\xff\x9b\xdb\x3f\xfa\xf8" "\xb7\x3a\xd2\xf2\xcf\x8c\xf3\xbb\x77\x24\x56\x6d\x2a\xff\x8e\x63\x66\x2e" "\xbb\xec\xa1\x5f\x6c\x4b\xdd\xff\xf7\x8f\xf3\xa7\xb6\xd4\xfe\x55\xcf\x6e" "\xb9\x7b\x79\xdb\x91\xc7\xa6\x6e\x9f\xd9\x71\x7e\xb9\xa5\xfc\xc7\xae\x7f" "\x71\xfb\xd6\x73\x3a\x2f\x4e\xcd\x5f\x1f\xe7\x4f\x6b\x29\xff\xaf\x0f\xbc" "\xf1\x81\xb7\xcf\xb9\x79\x6b\xea\xf6\x99\x17\xe7\x4f\x6f\x29\x7f\xeb\xe5" "\xf7\x1c\xfd\x89\xe7\xbe\xf6\x70\x6a\xfb\xe7\x0c\xe7\x47\xdd\xa1\xa7\xa5" "\xfc\x95\x0b\xbf\x71\xc3\xe9\xef\xda\x7e\x41\xea\xfe\xb3\x22\x6e\xff\xac" "\x96\xf2\xef\x99\xb1\x63\x8f\xe5\xaf\xf4\xef\x9b\xda\xfe\x8d\x8d\x8e\xb0" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xda" "\xb5\x68\xfd\x1e\xc7\xfd\x78\xea\x5e\x53\x3a\x2b\xf3\xe5\xd2\xc8\xf4\xae" "\xc2\xc8\xb4\xad\xb2\x7c\x68\xf1\x50\x99\x55\xab\x3e\xbc\xe6\xcc\x83\x57" "\xad\xd9\xb8\x76\xf5\xe6\xb5\x75\xf2\xda\x42\x14\xba\x86\xa6\xd1\xd8\xc7" "\x06\x07\x07\x07\xdb\x7b\x6a\x16\xbd\x32\x38\x22\xcc\x8c\xde\xd2\x4c\xf9" "\x10\xb7\xb3\xeb\x1f\xd6\xaf\x19\x38\xfb\xde\x6b\x42\x58\xb0\xdb\xc3\x73" "\x3b\x52\x9f\xdf\x2d\x77\x2c\x3d\x6a\x41\x9d\x7f\x13\xa2\xbe\xc1\x6d\x87" "\xec\x77\xde\x75\x4b\xaf\x5e\x38\xb2\x60\x46\xe5\x79\xcc\x48\x69\x57\x48" "\xb4\x2b\x6e\xc1\x01\xa7\xec\xe8\xf9\xb3\xfb\xcf\x7d\x24\x84\x05\xb3\x1f" "\x9e\x5b\x4a\x6d\xd7\x41\x7f\xb1\xf5\x88\xda\x16\x8d\x2c\x19\xd9\xd2\x55" "\x0a\x3b\xdb\x13\x26\xd0\x9e\xce\x9c\xdb\xd3\x16\x0a\xe3\xbe\xce\xa3\x5b" "\xb3\xd2\xae\x29\x95\x15\xa7\x44\x5d\x4d\x95\x8f\x5f\xf7\x8e\x75\x67\xad" "\x5f\x7b\x70\x08\xed\x61\xd6\xc8\xf2\x68\xde\xf0\x3e\xd9\x99\xfa\x4c\x46" "\xc4\xcd\x8a\xf7\xdb\x0f\x6f\xde\xb8\x76\xed\xaa\xf3\xcf\xeb\x5f\xbd\x79" "\xed\xaa\x73\x37\xf4\xaf\xdd\xb4\xea\x82\x8d\x67\x6d\xde\xbc\xf6\xdc\xf8" "\xf9\x94\x52\x9f\xcf\x90\x9b\x13\xf3\xe5\xca\x76\x29\x47\x7b\x35\x2c\xdf" "\x5e\xd5\xde\xf9\xc3\xff\x16\x43\x6f\xa2\x9d\x21\xa5\xde\x58\x5b\xe8\x9e" "\x50\xfb\x86\xca\x0f\x4f\xa3\x3d\x6a\x96\x17\xc6\x29\xdf\x55\xa7\xfc\x6e" "\x95\xfa\xbe\x1e\x35\x97\x3f\x33\xa5\x7c\x77\xe8\x19\x7e\x8a\xdd\xd1\xcc" "\x31\x6d\x1f\xac\x23\x7e\x6c\xe5\xc2\x6f\xdc\x70\xfa\xbb\xb6\x5f\x90\xf6" "\x1b\x1e\xad\x18\xa9\xa8\x33\x94\x47\xa6\xd1\x9b\xeb\x17\x1c\xf8\x60\xcd" "\x6c\x4f\x54\x1c\x9e\xf6\xa6\xd4\x5f\xbd\xbf\x6d\x4c\xec\x6f\x85\x62\x34" "\xe6\x55\x88\x5f\xcf\xea\xf5\x2e\x4c\xac\x97\x7c\x2f\xab\x5e\xaf\xa3\xb2" "\x5e\x47\x34\x2f\x0c\x24\xd6\x2b\x86\xe2\xd8\xe7\x9d\x58\x3f\xd4\xc9\xf9" "\xec\x98\x9c\xb1\x92\xdb\x3b\x96\x78\xbf\x5f\x7f\xd6\xb9\xe7\xd4\x59\x7b" "\xe2\xef\x93\x79\xbf\x2f\xbd\xd6\xde\x27\x67\x56\xb6\xcf\x6b\xed\xf8\x36" "\xb3\xb2\x9d\x76\x7d\xbb\x0a\x89\x76\x9d\x78\xdb\x96\xbf\xdc\xfe\xe7\xcb" "\x8f\x19\x59\xd0\xe8\xb8\x32\x5a\xba\xc9\xe3\x4a\xb2\x7c\xcd\x71\xe5\xdd" "\xd9\x9d\xd7\x4c\x49\x6c\xaf\x46\xdb\x37\x59\x3e\xde\xbe\xa7\x7e\xfc\xf3" "\x3f\xee\xff\xdb\x79\xfb\x65\xf7\xba\x3f\xf8\xfc\xba\x7b\xae\x5e\x76\xf7" "\x8c\x91\x05\x33\x42\xf4\xa6\xf0\x1a\xfa\xfd\x78\xad\xfd\xbe\x36\xda\xff" "\x46\xb7\x66\xbc\x1f\x55\x56\xec\x48\xd9\xff\x92\xe5\xa7\x54\xef\x7f\x07" "\xae\xd9\xb0\xbe\x7f\x64\xbe\xfa\xb8\xd1\x1b\xb5\x70\x7e\x33\xb4\xf7\x0e" "\x9d\xd1\xac\x5d\x75\xd6\xd0\xe9\x4d\xb2\x7c\xa3\xf7\xa1\x52\x4f\xed\x2f" "\x66\xbc\xe7\x5d\xbf\xb0\x6d\xc7\x97\x7f\xfa\x91\x4f\x0e\xed\x8f\xcf\xbd" "\xb5\x6b\x74\xf9\x3e\x89\x8c\x26\xf7\xc7\xce\xbe\xc1\x3f\x5d\x35\xb8\xef" "\x4b\x3f\x3a\xea\x63\x3b\xdb\x15\xc6\x6f\x57\x6d\xc0\x2e\x6a\x57\xdd\xed" "\xda\xbf\xf6\xe3\xab\xfa\xd7\xae\x5b\x7d\xfe\xfa\xcd\xf1\x8a\x43\xe7\xa2" "\xe3\xed\x2f\x71\xbb\xda\x46\xdf\xaf\x2a\xd3\x68\x46\x4d\xd9\x8e\x3a\xe5" "\xe3\xb2\xab\xd7\xaf\x5f\xbb\x71\xd3\xce\xed\x35\xde\xeb\xd8\x96\xd2\x2f" "\xf9\x4a\xef\x0d\x1b\xf6\xfd\xe0\xc3\x3f\xcf\xee\x7d\x65\x8f\x2d\x3f\xbc" "\x6f\xfd\x7d\xfd\x07\xef\x6c\x57\x98\x40\xbb\x3a\x53\xda\x15\xb7\x2c\xf9" "\xdb\xd4\x6a\xbb\xb2\x7e\x1d\xe3\xdf\xdf\xf8\x2c\x76\x66\x83\xd7\x31\x2e" "\xbf\xe9\xc2\x8b\xce\x19\x79\x1d\xf3\xfb\x21\x34\xb1\x7f\xbc\x5a\xc7\x9d" "\xac\x8e\x87\x71\xcb\xfa\x33\x6a\x57\x77\xe5\xbd\x74\xa2\xfd\x92\x2f\x6c" "\x78\xb1\xef\xca\xdb\xba\xbe\x99\xda\x2f\x39\x39\xaa\xe4\x47\x2d\xe5\x7f" "\x6a\xe5\x75\x8f\xde\xd7\x7f\x45\x21\x35\xff\xa8\x38\xbf\xd0\x52\x7e\xe7" "\x5d\x3f\x58\xf2\x99\x8b\xc2\x1d\xa9\xf9\xc7\xc7\xf9\xc5\x96\xf2\x9f\xd8" "\xfb\xce\xe9\xef\xdf\x73\xf0\xdb\xa9\xf9\xa7\xc6\xf9\xa5\xa8\x95\xfc\x3f" "\x5f\xb7\xec\xe9\x9f\xfd\xc5\x39\xbf\xa8\xd3\xa5\x1a\xc9\x7f\x73\x9c\xdf" "\xd1\x52\xfb\xef\xba\x75\xfb\x92\x6d\x87\x6f\xdb\x2b\xb5\xfd\x8b\xe3\xfc" "\xce\x96\xf2\x2f\xbf\xe9\xd4\x53\x9e\xfa\xde\x35\x0b\x53\xf3\x0f\x8b\xf3" "\xbb\x5b\xca\xbf\xe3\x98\x99\xcb\x2e\x7b\xe8\x17\xdb\x52\xf3\xf7\x8f\xf3" "\xa7\xb6\x94\xbf\xea\xd9\x2d\x77\x2f\x6f\x3b\xf2\xd8\xd4\xfc\xd9\x71\x7e" "\xb9\xa5\xfc\x63\x57\x4d\x5b\x7c\xd2\xd5\x2b\x0f\x4c\x7d\x7d\xf7\x8e\xf3" "\xa7\xb5\x94\xff\xd7\x07\xde\xf8\xc0\xdb\xe7\xdc\xbc\x35\xb5\xfd\xf3\xe2" "\xfc\xe9\x2d\xe5\x6f\xbd\xfc\x9e\xa3\x3f\xf1\xdc\xd7\x1e\x4e\xcd\x9f\x33" "\x9c\x1f\x75\x87\x59\x2d\xe5\xff\xfe\x8d\xaf\x84\xf2\xbd\xdf\x39\x3f\x75" "\xfb\x54\x06\x62\x86\xfe\x9d\x1a\x42\xb8\xf4\xab\x9f\x3a\x73\x64\xbe\x30" "\x3a\xa6\x1b\x2a\xa7\xbd\x53\xea\xac\x1f\x2f\x6f\x76\x7c\x0a\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\x5d\x23\xbe\xfe\x3f\xbe\xde\x22\xbe\xfe\xff" "\xfe\xca\x87\x44\xe3\xcf\xe1\x37\x7b\x1d\x05\xc0\xeb\x55\xed\xfd\x22\xce" "\xdd\xd0\xbf\xb6\xf2\x6e\x77\xc1\x86\x8d\xd5\x57\xc0\x4f\xf6\x73\xfb\x73" "\x52\xea\x8f\x3f\xb7\xdf\x7c\x3b\x26\x77\x7d\x45\x6a\x3b\xf6\x9e\x68\x3b" "\x26\x77\x9d\x4a\xea\x75\x0c\xfb\x27\xda\x31\x74\xfc\x19\x69\xcc\x39\x6b" "\x2f\x5c\xb5\x66\xf5\x9a\x33\xd7\xae\x3a\x7b\xc3\xf9\x1b\xcf\x5d\xbd\x7e" "\xd5\xba\xf5\xe7\x97\x2b\xf7\xf1\x28\x5f\x52\xff\xbe\x1c\x97\x27\xe6\xe3" "\x8b\x5e\xd3\xee\xcb\xd1\xe8\xb2\x87\x46\xf7\x01\x49\xd6\x17\xeb\x4d\x64" "\x37\x5b\x5f\xf3\xaf\xc7\xe4\xae\x8b\x49\x7d\x3d\xe6\x4d\x74\xbf\x98\xdc" "\xf5\x69\xa9\xed\x38\x7e\xa2\xed\x98\xdc\x75\x78\xa9\xed\x38\x6a\xa2\xed" "\x98\xdc\xf5\x44\xa9\xed\xa8\x5c\x4f\xd4\x7c\x3b\x26\x77\x5d\x5c\x6a\x3b" "\x16\x4f\x74\x7b\x4c\xee\xfa\xb9\xd4\x76\x1c\x36\xd1\x76\x4c\xee\x3a\xc7" "\xd4\x76\x9c\x3a\xd1\x76\x4c\xee\x7a\xd4\xd4\x76\x9c\x5c\xaf\x1d\xad\xdf" "\x0f\xe9\xff\x4d\xcc\x37\x7a\x1f\x4c\x96\x8f\xfb\x1b\x69\xef\xbb\x03\x0d" "\xef\x87\x34\x7e\xfb\xfe\xbf\x09\xb6\x2f\x59\x7e\xb2\xed\x6b\x74\x1c\xba" "\x2a\x31\xdf\xde\xa8\xbe\xf1\xab\x6b\xf8\xfc\x92\xf5\xc5\xcf\xef\x6d\xc3" "\x75\xec\xbc\xdb\x44\xb3\xf5\x35\xba\x1f\x55\xf2\xf5\x4e\xbb\x5f\x54\x34" "\x4e\xf9\xe1\xfc\x4b\x9a\xbf\x7f\x55\x98\xe0\xfd\xb1\xea\xe5\xa7\xdd\xbf" "\x2a\xad\xfd\x33\x52\xcb\x4f\x1d\x77\xfb\x24\x5f\x8f\xb6\xe1\xab\x34\xc7" "\xe6\xa7\x95\x7f\x47\x98\x36\x9c\xff\x8e\x4b\xe6\xd6\xaf\xe0\x35\x2b\x7a" "\x55\x2e\x25\x1d\xda\x5e\xc3\xd3\xe8\xf5\xb9\xbd\x76\xf5\x36\xeb\x0e\xa5" "\xe1\x2a\xeb\x1d\x87\x86\xdc\x9f\xd2\xa0\xd3\x2e\xb8\xe9\xbf\xcf\x38\xf3" "\xb2\x8f\xf7\x54\xda\xbc\x3c\xf1\x78\x74\x5a\xd4\x30\x7f\xbc\xe3\xdc\xe2" "\x8b\x1f\xfb\xd9\xf6\xad\x4b\x4f\x89\xf3\x93\xed\x88\x4e\x1f\x59\xd0\x56" "\xb9\x1f\x5c\xda\xef\x5f\x08\xc7\xd7\xcc\x55\xdf\x7f\xe7\xbf\x46\xb5\xf7" "\x1f\xa9\x77\xbf\xb7\xc7\x2b\xed\xaa\x5e\x6f\x6b\x62\xbd\xf6\x3a\xb7\x25" "\x8a\xd7\x6b\x78\xbf\xba\x50\x7b\xbf\xba\x52\xd5\xfd\xea\x42\x9d\xe7\x5d" "\xdd\x8e\xbf\x6b\xa2\xfd\xf5\xee\x57\xb7\xad\x89\xf6\xc7\xeb\x35\x6e\xff" "\x1f\xa4\xb6\xbf\xde\xeb\x5b\xdd\x8e\x7f\x6c\xb1\xfd\x0f\x4f\xa0\xfd\xd5" "\xf7\xc9\xfb\x61\x62\xbd\x62\x9d\xbb\x2f\xa5\xed\x46\xd5\x39\xff\x3a\x26" "\x67\xec\x1d\xf7\xe2\xe7\xfb\x78\x62\xbf\xae\xce\xf9\x79\x13\x39\xcd\xdc" "\xff\xef\xf9\x31\x39\x63\x25\x7f\xbf\xea\xe5\xbc\x92\x51\x7b\xa6\x14\x5a" "\x6f\xcf\xae\xea\xe7\xa5\x8e\x87\x24\xfb\x79\x19\xdd\x4f\xa8\x18\xdf\x97" "\xae\x32\xdf\x1e\xb5\xd7\x94\x4d\xde\x4f\x28\x2e\x1f\x7d\xb8\x72\x3f\x9d" "\x06\xf7\xfb\x29\xa6\xdc\x0f\x6a\xf3\xb4\x3f\x9a\x7d\xe7\x89\x67\xbc\x90" "\xd1\xfd\x7e\x3a\xfb\x06\xef\xbc\xf9\xc1\xa7\xaf\x38\x73\xd1\x9a\x30\xda" "\xae\x30\x81\x76\x75\xa5\xb4\x2b\x6e\xd9\x9e\xa5\x6c\xda\xd5\xa8\xdf\x70" "\x5b\x62\xbe\xd1\x79\x75\xb2\x7c\x6d\xbf\xa1\x34\xda\xfe\xe6\xfb\x35\xe3" "\x9f\x57\x27\xeb\x6b\x74\x9f\xd7\x7a\xe5\xeb\x9d\xf7\xa6\x9f\xc7\xd6\xcf" "\x9f\x96\x52\xbe\xf1\x7d\x58\x4f\x4b\x2c\x18\xd9\xbe\x69\xfb\x79\xf5\xfb" "\xfb\xb3\x89\xf7\x8f\x42\x69\xec\x71\x21\x5e\xbf\x7a\xbd\x17\x12\xeb\xb5" "\xd5\x79\x83\xe9\x18\x9d\x56\xbd\xef\x25\xd6\xeb\x48\xee\xb4\x55\xaf\x6b" "\x47\x62\xda\x56\x59\x33\xed\x7c\xbe\xea\x75\xe9\x1d\x7a\xe6\xd5\xf5\x96" "\x8b\xc9\xf7\xc9\xb1\x07\xb2\x64\xbd\x73\xea\xb4\x7f\xf6\x98\x9c\xb1\x1a" "\xbe\xdf\x4e\xf2\x7d\x2e\x6e\x57\x7b\x83\xf7\xb9\x39\x29\xe5\x2f\x69\xf2" "\x7d\xee\xd5\xba\x5f\xe9\x44\xef\xa3\xda\x95\xd2\xae\xf8\x79\xbf\x73\x7e" "\x36\xed\x1a\x1d\x7f\xd8\x45\xef\x5b\x93\x7d\x9f\x9c\xe8\xf8\x4a\xc3\xf7" "\x99\xff\x3e\xf6\x7d\xa6\x37\xde\xcf\xbe\x53\xae\xb3\x5f\xee\x7c\xbf\xd8" "\x52\x6c\xfc\x3e\x33\xba\x7e\xd5\x7a\x5f\x28\x36\x7e\x9f\xa9\xf7\x7b\x7a" "\x6d\x62\xbd\x8e\x3a\x37\x8a\x8e\x12\xeb\xc7\xd3\x9d\xef\x33\x75\xb7\xc2" "\xb8\xef\x33\x7f\xd3\xc4\xfb\x4c\xb2\xdd\xff\x56\x79\xbf\xc8\x6a\x1c\xf1" "\xd6\xc4\x7c\xa3\xfd\x28\x59\x3e\xef\x71\xc4\xbf\x9d\x60\xfb\x92\xe5\xf3" "\x1e\x47\xfc\x5c\x62\xbe\xad\x51\x7d\xe3\x57\xd7\xf0\xf9\x25\xeb\x9b\xec" "\x38\x62\xa3\xe7\x97\xf5\xb8\xf1\x44\xc7\xa9\x63\xa9\xcf\x6f\x92\xe7\x73" "\xc9\xfd\xb9\xd1\x38\x69\xbd\xf2\xf5\xee\xdb\x3f\xde\xf9\x5f\x98\xe0\xf9" "\x65\xbd\xf3\xc5\xb4\xf3\xbf\xb4\xf6\x97\x5b\x1c\x27\x1d\xbb\x7f\x8f\x3f" "\x4e\x5a\xaf\xfc\xc4\xc6\xa9\xc7\xcf\x4f\x96\x7f\xbd\x8f\xc3\xee\xea\x71" "\xc5\xd7\xf7\x38\xec\xf8\x63\xd7\x79\x6c\xcb\x56\xc7\x61\xdf\x7d\xd9\x8d" "\xef\xfc\x1f\xd7\x0d\x5c\x91\x3a\x0e\x7b\xc6\xce\x71\xd8\x56\xc6\x4b\x0e" "\xfc\xe2\xcb\xfb\x9c\xfc\xdd\x7d\x8f\x48\xbd\xbf\x65\x7f\xb3\xe3\xb0\xb5" "\xe3\x9c\xd5\xe7\x53\xef\x28\xb5\x36\x0e\xbb\x7f\xa9\xf9\x71\xd8\xc6\xed" "\x3b\x2e\xb5\x7d\xef\x6d\xb1\x7d\x7d\x13\x68\x5f\xe3\x71\xd6\xda\xf3\xdc" "\x89\x8c\x13\xff\x7e\x13\xed\xaf\x37\xce\x7a\x5a\x13\xed\x6f\x7e\x9c\xf8" "\x3f\xd5\xb6\xbf\xd0\xfc\x38\xf1\x59\x2d\xb6\xff\xbc\x09\xb4\xbf\xfa\x7c" "\xf9\x82\x52\x36\xe3\xc4\x03\x63\x72\x5a\x1b\x27\xfe\x6c\x46\xed\xb9\x3a" "\xa3\xf6\x5c\xdb\x44\x4e\x33\xe3\xc4\x37\x8c\xc9\x19\xab\x99\x71\xeb\x9b" "\x33\x6a\xcf\x97\x26\xd1\x9e\xfc\xef\xaf\x9c\xef\xf7\x2a\x45\x19\xdd\x3f" "\xb8\xd1\x79\x32\x00\x00\x00\x00\xf9\x88\xaf\xff\xef\xae\xcc\x97\x4b\x23" "\x63\x61\x47\x27\xc6\x44\x6b\x3e\x0f\xd4\xbf\x61\x55\xff\x59\x9b\xd6\xac" "\xde\xd8\xbf\x69\xd5\xba\xd5\x9b\x36\x57\x7d\x08\xb3\xd1\xe7\x4e\xb2\xfe" "\xfb\x6a\xab\x7f\xcf\x4d\xbb\xfe\xb2\xf9\xbf\xe7\x36\x7f\x1d\x4b\x98\xe0" "\x75\x32\xf9\x7e\xcf\xfb\xd4\xba\xed\x4f\x6f\xcf\xd4\x09\xb5\xbf\x7a\xdc" "\xb4\xad\x72\x3d\x5b\xac\xde\xb8\x69\x33\xe3\xd3\xd3\xc6\xe4\x8c\x1d\xe7" "\x6e\xf8\x39\xb6\x49\x7e\x4e\xe5\xef\x12\xf3\x8d\xf6\xbb\x64\xf9\xb8\xfd" "\xad\x7f\x4e\x65\xfc\xfd\x22\x59\x5f\xa3\xcf\x11\xd4\x2b\x5f\xef\xef\xfc" "\xe9\x7f\xb7\xaf\x9f\xdf\x9d\x52\x7e\x28\xbd\x95\x71\xea\x47\x66\xff\xfd" "\x6f\x6e\xff\xe8\xe3\xdf\x4a\x1d\xa7\x3e\x73\xa4\xa2\xc6\x7f\x67\x5a\x51" "\x33\xd7\x35\xc1\xef\xff\xaf\xde\xff\x26\xf2\xfd\xff\xd5\xeb\xb5\x8f\xfd" "\x8a\xe8\xd4\xef\xff\xaf\xdd\xdf\x5b\xff\xfe\xff\x46\xbf\x7f\x79\xff\xde" "\x7c\x29\x31\xdf\xe8\xf7\x26\x59\x7e\xb2\xbf\x37\x8d\x3e\x5f\xf4\xf9\xc4" "\x7c\xde\x9f\x9f\x4a\xd6\x17\x3f\xbf\xbc\xae\xc3\x4c\x6e\xcf\x46\xef\x0b" "\xf5\xca\xd7\x7b\x5f\x48\xfb\x3d\x4f\xcb\xef\x6c\xf1\xf3\x3f\x63\x5f\x9f" "\xf1\x3f\x9f\x93\x2c\xff\xfa\xfe\x7c\xce\xae\xff\xbc\xc9\x6f\xc1\xe7\x73" "\x52\x37\x4b\x3e\x9f\xcf\x69\xed\xfe\x2b\x8f\x5d\xff\xe2\xf6\xad\xe7\x74" "\x5e\x9c\x7a\x5c\x5b\xdf\xe4\xe7\x67\x06\x4e\xa8\x99\xad\x3e\xfe\xfc\x73" "\x13\xc7\xad\x7a\x9f\x4f\xf9\x51\xf2\xb8\x55\x1e\x5b\x6d\xf3\x9f\x4f\xf9" "\x50\xcd\x5c\x79\x02\xc7\xdd\xa7\x5a\x3c\xee\xfe\xb2\x89\xf6\xd7\x3b\xee" "\xfe\xa6\x89\xf3\xcc\x66\xce\x57\x4b\x51\xe3\xe3\x77\xfc\x7c\xc7\xfb\x3c" "\x45\xb9\x89\x9c\x66\xce\x03\x66\x8f\xc9\x19\x2b\xef\xf3\x80\xff\x95\x98" "\x6f\x74\x9c\x4c\x96\xcf\xfb\x3c\xe0\xb3\x89\xf9\xbc\xcf\x03\x92\xf5\xe5" "\x7d\x1e\x90\xdc\x9e\x8d\xfa\x8d\xf5\xca\xd7\x3b\x0f\x48\x3f\xae\xd7\xcf" "\x6f\x6f\xf1\x3c\x60\xec\xeb\x33\xfe\x79\x40\xb2\xfc\x6f\xc1\x79\xc0\x2e" "\x3d\xae\xbd\x6e\xcf\x03\xa2\x57\xeb\x3c\xa0\xb5\xfb\xc1\xdd\x33\x63\xc7" "\x1e\xcb\x5f\xe9\xdf\x37\xf5\x3c\x60\x63\xb3\xe7\x01\x4b\x6b\x66\xab\x8f" "\x87\x8f\x44\xad\x9d\x07\x3c\x9a\x58\xaf\x7d\xd6\xd8\x6a\x9b\x3e\x0f\x18" "\x38\xbd\x66\x76\xd6\x04\xce\x03\x9e\x6e\xa2\xfd\xf5\xce\x03\x9e\x6f\xa2" "\xfd\xf5\xce\x03\x76\x8c\x39\x5e\xb6\x76\x1e\xd0\x56\xc8\xe6\x3c\x60\x5a" "\x13\x39\xcd\x9c\x07\xec\x3e\x26\x67\xac\xbc\xcf\x03\xae\x4c\xcc\x37\x3a" "\x4e\x26\xcb\xe7\x7d\x1e\xf0\x57\x89\xf9\x8e\x06\xf5\x35\x7a\x33\x69\xf4" "\xfc\x92\xf5\x35\x3a\x0f\x68\x54\x5f\xda\x71\x3a\x5e\x6d\xec\x7d\x87\xc6" "\x1f\x9f\xae\x77\x9f\xa2\xf1\x5e\xdf\xe4\xf3\x69\x74\x9c\x4e\x96\x7f\xdd" "\x1e\xa7\x5f\xa5\xe3\xce\x6f\xdd\x71\x3a\xaa\xfb\x63\x66\x5a\xbd\x3f\xc8" "\x71\x9d\x57\x3e\xd5\x7b\xf9\x7b\x56\xa6\x1e\xa7\xe7\x36\x7b\x9c\x5e\x56" "\x33\x5b\x7d\xbc\xfa\x7e\xa1\xb5\xe3\xf4\x63\x89\xf5\xda\xeb\xd4\xdd\xfc" "\x71\xba\xf6\x7a\x97\x68\x02\xc7\xe9\x67\x9a\x68\x7f\xbd\xe3\xf4\xaf\x9a" "\x68\x7f\xbd\xe3\xf4\xcb\x63\x8e\x67\xad\x1d\xa7\xdb\x8b\xd9\x1c\xa7\xa7" "\x37\x91\xd3\xcc\x71\x7a\xce\x98\x9c\xb1\xd2\x8e\xd3\x79\xdf\x3f\x32\xef" "\xfb\xb9\xe6\x7d\x1f\xce\xbc\xaf\x77\xcb\xfb\xbe\xaa\x79\xdf\x2f\x35\xef" "\xfb\x38\xe7\x7f\x3d\x4c\xbe\xf7\x3d\xce\xfb\xfe\xbd\xae\xe7\x01\x00\x00" "\x20\x0f\xf1\xe7\xff\xa7\x56\xe6\xe3\xcf\xff\x7f\x23\x51\x2e\xef\xfb\x2f" "\xc7\xe3\xab\xa9\xfd\xe3\xb9\x71\xff\xdb\xf8\x56\xdd\x7c\xe3\x5b\x4d\x8e" "\x6f\xe5\xfb\x39\xf4\xd7\xff\xf8\x59\xbe\x9f\x67\x34\x3e\x97\x92\xbf\x22" "\x6e\x7f\xbe\x9f\x23\x31\xfe\x07\x00\xf0\xc6\x16\xf7\xff\xe3\x4b\x64\xe2" "\xef\xff\x7f\x29\x9e\xaf\x4c\xf3\xfe\x5e\xec\xf8\xfc\x35\xf5\xfc\xbb\x72" "\xfe\x9a\xf7\xf7\x62\xc7\xfd\x98\xd4\x76\xac\x9f\x68\x3b\x4a\x51\xd7\xd0" "\xf4\x92\x26\xef\xdf\x7c\xc8\xfb\xf7\x1f\xf8\xcb\xc1\xc1\x89\xdc\xbf\x39" "\x4c\xe2\xfe\xd0\x73\x1a\xe4\xef\xaa\xef\xad\x4d\xfd\xde\xad\xba\xdf\x5b" "\x9b\xdf\xf7\x5e\xa7\xb6\x63\xc2\xdf\x7b\x3d\xb9\x7e\x7a\xea\xfe\x37\x7b" "\xa2\xed\x98\xdc\x78\x44\xea\xf6\x18\x1d\x8f\xc8\x7b\xbc\xcf\x78\x5c\xdd" "\x7c\xe3\x71\x4d\x8e\xc7\xbd\xbe\xc7\x83\x8c\xd7\x00\x00\x59\x8b\xfb\xff" "\xd3\x2a\xf3\x93\xff\xfb\xff\xe4\xce\x77\x53\xcf\xb7\xfa\xb3\xf9\xfb\x7f" "\xa3\x7e\xa6\xfe\x4c\x4a\xfe\xa9\xfa\x1b\xad\xfd\xfd\x3f\x1a\x68\x26\xbf" "\xf9\xfe\x76\xbe\xe3\x0a\x79\x8f\x9b\xe5\x3d\x3e\xf3\x7a\xef\xef\xe5\x3d" "\x7e\x1a\xf7\x27\x3f\xb4\x4a\x7f\x12\x00\xe0\x8d\x28\xee\xff\x4f\xaf\xcc" "\xc7\x7f\xff\xff\x5a\x65\x7e\x7a\xa2\xbc\xfe\x77\x4a\xfe\xeb\xe4\xef\x89" "\x8d\xc7\x57\xf4\xef\xeb\xe6\x67\xf4\xf9\x7e\xfd\xfb\xfa\xf9\xfa\xf7\xd9" "\xf6\xef\xfd\xbd\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xde\xb8\x76\x2c\x7a\x72\xe5\xba\xb5\x2b\x6e\x2f\x15\x43\x88\x52" "\xca\x0c\xd6\x11\x3f\x56\x6c\xef\xeb\xeb\x6d\xa1\xde\xdf\xbf\xf1\x95\x50" "\xbe\xf7\x3b\xe7\x57\x2f\x2b\x97\x5a\x08\x02\x00\x00\x00\x1a\x8a\xfb\xe1" "\x85\xd1\x25\x1d\xa1\x5c\x7a\x7b\xe8\x88\xe6\x85\x6b\xdb\x43\xa8\xee\x92" "\x17\xeb\xac\xdf\x9f\x32\x68\xd0\x1e\xcd\x0b\x37\x15\x43\x28\x54\x2f\xab" "\xd3\xbf\x8f\xc7\x0e\x86\xea\xbb\x7a\x4c\x7d\x63\xc3\xaf\xad\x4c\x8f\x7f" "\xd3\xc8\x74\x4e\xd5\xfa\xb7\x26\xea\x2b\xd6\x69\x71\x94\xa8\xb7\xba\xbd" "\xd7\x27\xd6\x2f\x14\xa3\x31\x0d\x68\x65\xac\x03\x00\x00\x00\x5e\x6d\x71" "\xff\xbf\x73\x74\x49\x4f\x28\x97\x06\x86\xfb\xc3\xbd\x51\x08\x9d\x0d\xd6" "\xef\x88\xa7\xd1\xbc\xf0\xd9\x50\x5b\xbe\xde\x78\xc1\x3e\xe3\x8c\x17\xdc" "\x5f\xd8\x99\x37\xbc\xac\x4e\xb9\xde\xaa\xf2\xcf\x86\x44\xf9\x3a\xd9\xd5" "\xe5\xff\x20\x4a\x94\x2f\x8c\x5f\xfe\x6d\xa5\x44\xf9\x3a\x4f\xa8\xba\xfc" "\x23\x51\x08\x6d\xd5\xe5\xeb\x8c\x77\x9c\x51\x55\xfe\xb3\xc9\xf6\x77\x8c" "\x9f\x3f\x2f\x59\xbe\xce\x8b\x53\x5d\x7e\x8f\xb6\xda\x6d\xd8\xde\x3d\x7e" "\xf9\xa3\x8b\x89\xf6\x4f\x1d\xbf\xfc\x9d\xa5\x44\xf9\xf2\xf8\xe5\x97\x26" "\xcb\x4f\x1b\xbf\xfc\x21\x21\x84\x29\xd5\xe5\xa7\x8f\x5f\xfe\xc2\xc4\xfe" "\xd7\xde\x33\x7e\xf9\x5f\x16\x12\xed\x99\x95\x5e\x7e\x68\xff\xbe\xb8\x54" "\xbb\x3d\xeb\x8d\x4f\xdd\x15\x97\xaf\x0c\x4c\x55\x8f\x4f\xcd\x6b\x4f\xae" "\x3f\x76\x07\x1c\x7d\x7d\x13\xd1\x43\xeb\x0f\x8c\xf9\xfd\x1a\xbb\x43\x8e" "\x3e\xe5\x44\xf4\xd0\xf3\xdd\x98\x58\xbf\xde\xf8\x56\x9d\x26\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x4d\x8a\xbf\xff\x7f\x6a\xb4\x6b\xbf\xff\x7f\xd5\xb3\x5b\xee\x5e" "\xde\x76\xe4\xb1\xd5\xcb\x7c\xff\x3f\x00\x00\x00\xe4\x23\xee\x87\xef\xfc" "\x6a\xb8\x8e\x50\x2e\x4d\x0f\xc5\xb0\xc7\xf0\xdc\x67\x13\xe5\xe3\xe5\x9f" "\x4b\x59\x7e\x55\xca\xf2\xcf\xa7\x2c\xff\xab\x0c\x9e\x03\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xfc\xb6\x8b\xaf\xff\x9f\xbe\x8b\xaf\xff\xdf" "\x7a\xf9\x3d\x47\x7f\xe2\xb9\xaf\x3d\x5c\xbd\xcc\xf5\xff\x00\x00\x00\x90" "\x8f\xb8\x1f\x3e\x65\x74\x49\x47\x28\x97\x4a\xa1\x14\xde\x5a\xb7\x7c\x54" "\x19\x0f\xd8\x85\x4d\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x37" "\xbc\xf8\xfa\xff\x52\x14\x42\x61\x9c\x72\xcb\x53\x96\x47\xed\xa1\xa3\x95" "\x7a\x1f\x9a\x7e\xfd\x01\x3f\x39\x60\xcb\x2d\xd5\xcb\xca\xa5\xed\x85\xce" "\xb0\xd7\x48\x6e\x65\xd9\xfc\xca\x5c\x7c\x8f\x81\x28\x31\x4d\x53\xc9\x89" "\x32\xca\x29\x64\x94\x53\xcc\x28\xa7\x94\x51\x4e\x5b\x46\x39\xed\x19\xe5" "\x4c\xc9\x28\xa7\x23\xa3\x9c\xce\x8c\x72\xba\x32\xca\xe9\xce\x28\x67\x6a" "\x46\x39\xe5\x8c\x72\xa6\x65\x94\x33\x3d\xa3\x9c\x9e\x8c\x72\x66\x64\x94" "\x33\x33\xa3\x9c\x37\x65\x94\x33\x2b\xa3\x9c\xdd\x32\xca\x99\x9d\x51\xce" "\xee\x19\xe5\xcc\xc9\x28\x67\x8f\x8c\x72\xf6\xcc\x28\x67\xaf\x8c\x72\xde" "\x9c\x51\xce\x5b\x32\xca\x99\x9b\x51\xce\x5b\x33\xca\xe9\xcd\x28\xe7\x6d" "\x19\xe5\xcc\xcb\x28\x67\x7e\x46\x39\x6f\xcf\x28\xe7\x1d\x85\x6c\x72\xf6" "\xce\x28\x67\x9f\x8c\x72\xde\x99\x51\xce\xbe\x19\xe5\xbc\x2b\xa3\x9c\xfd" "\x32\xca\xd9\x3f\xa3\x9c\x03\x32\xca\x39\x30\xa3\x9c\x83\x32\xca\x59\x90" "\x51\xce\xc2\x8c\x72\x0e\xce\x28\xe7\xdd\x19\xe5\x1c\x92\x51\xce\xa1\x19" "\xe5\x1c\x96\x51\xce\x7b\x32\xca\x39\x3c\xa3\x9c\xf7\x66\x94\x73\x44\x46" "\x39\x8b\x32\xca\x59\x9c\x51\xce\x91\x19\xe5\xbc\x2f\xa3\x9c\xdf\xc9\x28" "\xa7\x2f\xa3\x9c\x25\x19\xe5\x1c\x95\x51\xce\xd1\x19\xe5\x2c\xcd\x28\xe7" "\x98\x8c\x72\x8e\xcd\x28\xe7\xb8\x8c\x72\x8e\xcf\x28\xe7\x84\x8c\x72\x4e" "\xcc\x28\xe7\xa4\x62\x36\x39\xbf\x9b\x51\xce\xef\x65\x94\x73\x72\x46\x39" "\xa7\x64\x94\xb3\x2c\xa3\x9c\xdf\xcf\x28\x67\xf9\x64\x73\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\xec\xc4\xdf\xff\x1f\x8d\xf3\xfd\xff\x83\x75\xc4\x8f\x15" "\xdb\xfb\xfa\x7a\x5b\xa8\xf7\xb8\xce\x2b\x9f\xea\xbd\xfc\x3d\x2b\xab\x97" "\x95\x4b\x17\x87\xe9\xe1\x2d\xc3\xf5\x85\x9e\xda\xf2\x53\x2a\xd3\x03\x4e" "\xd9\xd1\xf3\x67\xf7\x9f\xfb\x48\x08\x0b\x66\x3f\x3c\xb7\x94\x9a\x7f\xd0" "\x5f\x6c\x3d\x62\x41\x9d\x7f\xc7\xa8\x3c\xe9\x9e\x4a\xbd\x51\x4a\xbd\x9f" "\x5c\x71\xf6\x9b\x96\x44\x85\x83\x42\x58\xb0\x5b\xf1\xcd\x93\xae\x37\xea" "\x1b\x3c\x72\xfe\xaf\x8f\xfe\x62\xa1\xb8\x67\x6d\xfd\x85\x44\xfd\x1d\x95" "\xe9\xf9\xdb\x7f\xe7\xb0\xf7\xdd\xb3\xe7\xf7\x87\xea\x1f\xef\x79\xdf\x72" "\xc7\xd2\xa3\x16\xd4\xf9\x77\x6c\xfd\x97\x2e\x99\xbf\xba\xff\xf1\x47\x7b" "\x6b\xeb\x2f\xa6\xd4\xbf\x79\xda\x1f\xcd\xbe\xf3\xc4\x33\x5e\x18\xa9\xbf" "\x63\xb2\xf5\x77\xf6\x0d\xde\x79\xf3\x83\x4f\x5f\x71\xe6\xa2\x35\x23\x0b" "\xa6\x56\xea\x2f\xa5\xd4\x7f\xfd\xc2\xb6\x1d\x5f\xfe\xe9\x47\x3e\x39\x10" "\x16\x94\x9e\x7b\x6b\xd7\x84\xeb\x8f\x9f\x5f\x5b\x4a\xfe\x57\x7a\x6f\xd8" "\xb0\xef\x07\x1f\xfe\x79\x46\xcf\x2f\xea\x1b\xdc\x63\xcb\x0f\xef\x5b\x7f" "\x5f\xff\xc1\x23\x0b\xe2\xfa\xdb\x13\xf5\x77\x56\xa6\x5d\xff\xb0\x7e\xcd" "\xc0\xd9\xf7\x5e\x93\x5d\xfd\xdb\x0e\xd9\xef\xbc\xeb\x96\x5e\xbd\xb0\xb6" "\xfe\x29\x29\xf5\x9f\xfa\xf1\xcf\xff\xb8\xff\x6f\xe7\xed\x97\x5d\xfd\x0f" "\x3e\xbf\xee\x9e\xab\x97\xdd\x3d\x23\x35\x0a\x00\x00\xd8\xc5\xe2\x7e\xf8" "\xce\x1e\x55\x47\x28\x97\x56\xa5\xf6\xc3\xe3\xfe\xc2\xc4\xfa\xe1\xd5\x3d" "\x85\xb8\x3f\x9c\x58\x27\xd1\x0f\x4f\xf6\x43\xe3\xf6\x25\xfb\xa1\x71\x4f" "\x65\xcf\x44\x5c\xab\xfd\xd0\x9e\x94\x7e\x68\xfc\xbc\xe3\x7e\xe8\x50\xfd" "\x43\xfd\xd0\xb8\xfe\x7d\x42\xab\xf5\xff\xe9\xaa\xc1\x7d\x5f\xfa\xd1\x51" "\x1f\xab\xad\x3f\xd9\x4f\x8d\xeb\x4f\xf6\x53\x3b\x12\xdb\x67\x82\xf5\x37" "\xdd\x4f\x8d\xf3\x93\xfd\xd4\x39\x95\xe5\xef\x9c\xdf\x6c\xfd\x85\x44\xfd" "\x27\xde\xb6\xe5\x2f\xb7\xff\xf9\xf2\x63\x6a\xeb\x6f\xb6\x9f\x1a\x3f\xff" "\xfe\x96\x9f\xbf\x7e\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xfa" "\x10\x5f\xff\x5f\x8a\x42\x28\x86\x10\xa2\x10\xc2\xf2\x44\x99\x3c\xae\xff" "\xbf\x76\xcd\xf3\x5f\xde\xe7\xf9\x77\x5f\x50\xbd\xac\x5c\xfa\xaf\xc5\xee" "\xb0\xd7\xf0\xcf\xef\x4f\x94\x2f\x56\xa6\x23\x1f\x33\x8f\x42\x5c\x67\x94" "\x98\xa6\x89\x73\x4f\xcd\x29\xf7\x03\x39\xe5\x7e\x30\xa7\xdc\x3f\xc8\x29" "\xf7\xb4\x9c\x72\xff\x53\x4e\xb9\x2b\x72\xca\xfd\x50\x4e\xb9\xa7\xe7\x94" "\xbb\x32\xa7\xdc\xff\x9c\x53\xee\xaa\x9c\x72\xcf\xc8\x29\x77\x75\x4e\xb9" "\x1f\xce\x29\x77\x4d\x4e\xb9\xc9\xeb\x74\xb2\xca\x5d\x9b\x53\xee\xba\x9c" "\x72\x3f\x92\x53\xee\x99\x39\xe5\x9e\x95\x53\xee\xd9\x39\xe5\x9e\x93\x53" "\xee\xfa\x9c\x72\x3f\x9a\x53\xee\xb9\x39\xe5\x6e\xc8\x29\xf7\xbc\x9c\x72" "\x3f\x96\x53\xee\xc6\x9c\x72\x37\x25\x96\x97\x32\xca\xdd\x9c\x53\xee\xf9" "\x39\xe5\xfe\x61\x4e\xb9\x17\xe4\x94\xfb\xf1\x9c\x72\x2f\xcc\x29\xf7\xa2" "\x9c\x72\x2f\xce\x29\xf7\x8f\x72\xca\xfd\x44\x4e\xb9\x9f\xcc\x29\xf7\x8f" "\x73\xca\x1d\x68\x90\xdb\xd1\x62\xee\xe5\x89\xe5\x85\x9a\xdc\x62\xcb\xed" "\xfd\x2f\x89\xe5\x6d\x0d\x72\x93\xcf\x2f\x2d\x77\x4b\x4e\xb9\x9f\xcb\x29" "\xf7\xeb\x89\x0d\x96\xd5\xfe\x70\x57\x4e\xb9\xff\x90\x53\xee\x37\x72\xca" "\xbd\x3b\xa7\xdc\x7b\x72\xca\xbd\x37\xa7\xdc\x6f\xe6\x94\x7b\x5f\x4e\xb9" "\xf7\x4f\x30\xb7\xd9\xdf\xb7\x6f\xe5\x94\xfb\xed\x9c\x72\xff\x31\xa7\xdc" "\xef\xe4\x94\xfb\x4f\x39\xe5\x3e\xd0\x62\xee\x25\x0d\x72\x1f\xcc\xa9\xbd" "\x0f\xe5\x94\xfb\xdd\x9c\x72\x1f\xce\x29\xf7\x7b\x39\xe5\xfe\x73\x4e\xb9" "\x8f\xe4\x94\xfb\xfd\x9c\x72\x7f\x90\x53\xee\xbf\xe4\x94\xfb\xc3\x44\x6e" "\x5b\x46\xb9\xff\x3b\xa7\xdc\x1f\xe5\x94\xfb\x68\x4e\xb9\x8f\xe5\x94\xfb" "\xe3\x9c\x72\x1f\xcf\x29\xf7\x89\x8c\x73\xe1\xb5\x24\xfe\x3b\x7c\xe7\xe8" "\x92\x9e\x50\x2e\x2d\x2c\xc4\xfb\x7f\xf2\xbc\xa7\xbd\x32\x1d\xd9\xff\x0b" "\x2d\xff\x5e\x5d\x9a\x53\xee\xa7\x72\xca\xfd\x93\x9c\x72\x3f\x9d\x53\xee" "\x9f\xe6\x94\xfb\x99\x9c\x72\x2f\xcb\x29\xf7\xb3\x89\xe5\x59\x8d\xb7\x5c" "\x91\x53\xee\x55\x89\xe5\xed\x19\xe5\xfe\x3f\x39\xb5\xf7\xf3\x39\xe5\x5e" "\x93\x58\x9e\xd5\x76\xb8\x36\xb1\xbc\xa3\x41\x6e\xa3\x81\x86\x38\xf7\xbf" "\xe5\x94\xfb\x57\x39\xe5\xde\x90\x53\xee\x8d\x39\xe5\xfe\x4d\x4e\xb9\x37" "\x27\x96\x77\x66\x94\xfb\x7f\x72\x3a\x1f\xfd\xd7\x9c\x72\x7f\x32\xc9\xdc" "\x67\x53\x72\x9f\xcc\xa9\xbd\x3f\xcd\x29\xf7\x67\x39\xe5\xfe\x5b\x4e\xb9" "\xff\x37\xa7\xdc\x7f\xcf\x29\x77\x7b\x4e\xb9\x3f\x4f\xe4\xb6\x67\x94\xfb" "\x54\x4e\xb9\x4f\xe7\x94\xfb\x4c\x4e\xb9\xcf\xe6\x94\xfb\x8b\x9c\x72\xff" "\x23\xa7\xdc\xe7\x72\xca\xfd\x65\x4e\xb9\xcf\xe7\x94\xfb\xab\x9c\x72\x5f" "\xc8\x29\xf7\xc5\x9c\x72\x5f\xca\x29\xf7\xd7\x39\xe5\xfe\x26\xa7\xdc\x1d" "\x39\xe5\xbe\x9c\x53\xee\x2b\x39\xe5\x0e\x66\x9c\x0b\x00\x00\x00\x59\x88" "\xaf\xff\x9f\x16\xa5\xff\x69\x23\x8f\xeb\xff\xff\xfa\xc0\x1b\x1f\x78\xfb" "\x9c\x9b\xb7\x56\x2f\x2b\xa7\x7f\x8d\x20\x00\x00\x00\x30\x09\x71\x3f\xbc" "\x7d\x74\x49\x47\x28\x97\xe6\x87\xf9\x61\xee\xab\xda\xae\xc6\xa2\x86\xd7" "\x00\x03\x00\x00\x00\x23\xe2\xfe\x7f\xf7\xe8\x92\x9e\xd7\x47\xff\x3f\x8a" "\xc2\xc8\xff\x12\xc3\x00\x51\xdd\x1f\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x57\xf1\xf7" "\xff\x97\x77\xf1\xf7\xff\x1f\xbb\x6a\xda\xe2\x93\xae\x5e\x79\x60\xf5\x32" "\xdf\xff\x0f\x00\x00\x00\xf9\x88\xfb\xe1\x85\xd1\x25\x1d\xa1\x5c\x9a\x12" "\xa6\x84\x37\x57\xe6\x8f\xa9\x29\x5f\x8a\x8a\xc3\xd3\xde\x06\xe3\x02\x00" "\x00\x00\xc0\x6b\x47\xdc\xff\xef\x1c\x5d\xd2\x13\xca\xa5\x4d\x3b\xfb\xff" "\x03\x4b\x6b\xca\xcf\x6a\xd0\xff\x2f\x8e\x96\xac\x1d\x37\xd8\x99\x57\xbb" "\x7c\x6a\x83\xbc\x9d\xe3\x10\xc7\xd6\xac\x37\xbd\xd9\xf5\x06\x6a\xd7\xab" "\x1e\xbf\x18\xb2\x3c\xb1\x3d\x76\xd6\x77\x5c\xed\x7a\x85\x66\xdb\x79\x7c" "\x6a\x7d\xe3\xb7\xb3\x76\xbd\x69\x4d\xaf\x77\x42\xcd\x7a\xe5\xa6\xb7\xe7" "\x49\x35\xeb\x75\x37\x5d\xdf\xef\xd5\xac\xd7\xd9\x74\x7d\xa7\xd4\xac\xd7" "\xd1\x74\x7d\xcb\x6a\xd6\x8b\x9a\xae\xaf\xf6\x95\x2d\x34\x5d\xdf\xfb\x43" "\x6d\x85\xcd\xd6\xf7\x81\x9a\xd5\x8a\x4d\xd7\xf7\xc1\x9a\xf5\x7a\x8c\xaf" "\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\x40\xcb\x76\x2c\x7a\x72\xe5\xba\xb5\x2b\x6e\xef\x8e\x42\x88\x52" "\xca\x0c\xd6\x11\x3f\x56\x6c\xef\xeb\xeb\x6d\xa1\xde\x3b\x8e\x99\xb9\xec" "\xb2\x87\x7e\xb1\xad\x7a\x59\xb9\xd4\x42\x10\x00\x00\x00\xd0\x50\xdc\x0f" "\xef\x1c\x5d\xd2\x11\xca\xa5\xc5\xa1\x2d\xda\xa3\xa6\x5c\x3c\x36\x70\x45" "\x62\xfd\xb4\x72\x57\x35\x59\xee\xf3\x0d\xca\x15\x2a\xd3\x6b\x1a\x94\x8b" "\x87\x0e\xae\x6d\x32\xef\xbf\x35\x59\xee\xaf\x9a\x2c\x77\x43\x93\xe5\x6e" "\x6c\xb2\xdc\xdf\x34\x59\xee\xe6\x06\xe5\x66\x56\x36\xf4\xd7\xd3\x06\x77" "\x00\x00\x00\x78\x43\x88\xfb\xff\xdd\xa3\x4b\x7a\x42\xb9\xf4\xb6\x50\xac" "\xcc\x35\xea\xc7\x37\xdb\x0f\x8d\xbb\x9f\xb7\x36\x59\xee\xef\x9a\x2c\xf7" "\xa5\x26\xdb\xf7\xbf\x1a\x94\x6b\xd7\x4f\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5e\xe7\x76\x2c\x7a\x72\xe5\xba\xb5" "\x2b\x6e\xef\x8c\x42\x88\x52\xca\x0c\xd6\x11\x3f\x56\x6c\xef\xeb\xeb\x6d" "\xa1\xde\xcb\x6f\x3a\xf5\x94\xa7\xbe\x77\xcd\xc2\xea\x65\xe5\x52\x0b\x41" "\x00\x00\x00\x40\x43\x71\x3f\x7c\xca\xe8\x92\x8e\x50\x2e\x75\x85\xae\x30" "\x7b\x78\xae\xba\xaf\x3f\xa4\x90\x58\x3f\x0a\xe9\xe3\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x90\x95\x1d\x8b\x9e\x5c\xb9\x6e\xed\x8a\xdb\x3b\xa2\x10\xa2" "\x94\x32\x83\x75\xc4\x8f\x15\xdb\xfb\xfa\x7a\x5b\xa8\xf7\xae\x5b\xb7\x2f" "\xd9\x76\xf8\xb6\xbd\xaa\x97\x95\x4b\x2d\x04\x01\x00\x00\x00\x0d\xc5\xfd" "\xf0\x29\xa3\x4b\x3a\x42\xb9\xd4\x11\x3a\xc2\x6e\xc3\x73\x23\x63\x02\x53" "\x6a\xd6\x19\xee\xff\xf7\xec\xe2\x86\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x86" "\xb6\x63\xd1\x93\x2b\xd7\xad\x5d\x71\x7b\x14\x85\x10\xa5\x94\x19\xac\x23" "\x7e\xac\xd8\xde\xd7\xd7\xdb\x42\xbd\x9f\x5a\x79\xdd\xa3\xf7\xf5\x5f\x51" "\xa8\x5e\x56\x2e\xb5\x10\x04\x00\x00\x00\x34\x14\xf7\xc3\x3b\x47\x97\x74" "\x84\x72\xe9\xe2\x30\x3d\xbc\x65\xb8\xdf\x1f\x7a\x6a\xcb\x4f\xa9\x4c\x0f" "\x38\x65\x47\xcf\x9f\xdd\x7f\xee\x23\x21\x2c\x98\xfd\xf0\xdc\xf4\x8e\xfb" "\x41\x7f\xb1\xf5\x88\x05\x75\xfe\x1d\xa3\x32\x12\xd0\x53\xa9\x37\x4a\xa9" "\xf7\x93\x2b\xce\x7e\xd3\x92\xa8\x70\x50\x08\x0b\x76\x2b\xbe\x79\xd2\xf5" "\x46\x7d\x83\x47\xce\xff\xf5\xd1\x5f\x2c\x14\xf7\xac\xad\xbf\x90\xa8\xbf" "\xa3\x32\x3d\x7f\xfb\xef\x1c\xf6\xbe\x7b\xf6\xfc\xfe\x50\xfd\xe3\x3d\xef" "\x5b\xee\x58\x7a\xd4\x82\x3a\xff\x8e\xad\xff\xd2\x25\xf3\x57\xf7\x3f\xfe" "\x68\x6f\x6d\xfd\xc5\x94\xfa\x37\x4f\xfb\xa3\xd9\x77\x9e\x78\xc6\x0b\x23" "\xf5\x77\x4c\xb6\xfe\xce\xbe\xc1\x3b\x6f\x7e\xf0\xe9\x2b\xce\x5c\xb4\x66" "\x64\xc1\xd4\x4a\xfd\xa5\x94\xfa\xaf\x5f\xd8\xb6\xe3\xcb\x3f\xfd\xc8\x27" "\x07\xc2\x82\xd2\x73\x6f\xed\x9a\x70\xfd\xf1\xf3\x6b\x4b\xc9\xff\x4a\xef" "\x0d\x1b\xf6\xfd\xe0\xc3\x3f\xcf\xe8\xf9\x45\x7d\x83\x7b\x6c\xf9\xe1\x7d" "\xeb\xef\xeb\x3f\x78\x64\x41\x5c\x7f\x7b\xa2\xfe\x78\xff\xef\xfa\x87\xf5" "\x6b\x06\xce\xbe\xf7\x9a\xec\xea\xdf\x76\xc8\x7e\xe7\x5d\xb7\xf4\xea\x85" "\xb5\xf5\x4f\x49\xa9\xff\xd4\x68\xe0\xc7\xfd\x7f\x3b\x6f\xbf\xec\xea\x7f" "\xf0\xf9\x75\xf7\x5c\xbd\xec\xee\x19\xa9\x51\x00\x00\xc0\x1b\x44\xdc\xff" "\xdf\xd9\xd3\xe8\x19\xee\xfc\xbd\xda\xfd\x60\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x88\x1d\x8b" "\x9e\x5c\xb9\x6e\xed\x8a\xdb\x0b\x51\x08\x51\x08\xed\xf5\xca\x0c\xd6\x11" "\x3f\x56\x6c\xef\xeb\xeb\x6d\xa1\xde\xce\xbb\x7e\xb0\xe4\x33\x17\x85\x3b" "\xaa\x97\x95\x4b\xad\x3c\x03\x00\x00\x00\xa0\x91\xb8\x1f\xde\x39\xba\xa4" "\x23\x94\x4b\xef\x0a\xed\xa1\x6b\xb8\xdf\xff\xe0\xf3\xeb\xee\xb9\x7a\xd9" "\xdd\x33\x42\xcf\xc8\xa3\x53\x2a\xd3\x8e\x75\x67\xad\x5f\x7b\xe0\x9a\x0d" "\xeb\xfb\x47\xe6\xe3\xf2\x47\xce\xff\xf5\xd1\x5f\x2c\x14\xf7\x8c\xcb\x47" "\x95\x69\x69\xfd\x86\x4d\x9b\xf7\x5b\xb7\xe1\xfc\x73\x47\x56\x68\xab\x94" "\xbf\x74\xc9\xfc\xd5\xfd\x8f\x3f\xda\x1b\x97\x2f\xc4\xe5\x87\xf2\x17\xec" "\x2c\xb7\xed\x90\xfd\xce\xbb\x6e\xe9\xd5\x0b\xe3\x72\xed\xd5\xed\x38\x78" "\x67\xb9\x3d\xb6\xfc\xf0\xbe\xf5\xf7\xf5\x1f\x1c\x97\x6b\xab\x2e\xb7\x70" "\x67\xb9\x13\x6f\xdb\xf2\x97\xdb\xff\x7c\xf9\x31\x75\xf3\xde\xbd\xb3\xdc" "\x9d\x37\x3f\xf8\xf4\x15\x67\x2e\x5a\x13\xb7\xab\x58\x5d\xae\xaa\x7d\x7f" "\xba\x6a\x70\xdf\x97\x7e\x74\xd4\xc7\x46\xdb\x5f\x99\x76\x55\xea\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\x60\x72\x76\x2c\x7a\x72\xe5\xba\xb5\x2b\x6e\x0f\x51" "\x18\xfa\x7f\x5d\x83\x75\xc4\x8f\x15\xdb\xfb\xfa\x7a\x5b\xa8\xf7\x0b\x1b" "\x5e\xec\xbb\xf2\xb6\xae\x6f\x56\x2f\x2b\x97\x5a\x08\x02\x00\x00\x00\x1a" "\x8a\xfb\xe1\x9d\xa3\x4b\x3a\x42\xb9\x34\x3f\x74\x45\x33\x6a\xca\x75\x54" "\xc6\x01\x3a\x2a\xf3\xa5\x9e\x91\xe9\x41\x9b\x3f\x7a\xde\x41\x9b\x2e\xbc" "\xe8\x80\xb3\x3e\xba\xfa\x23\x6b\x3f\xb2\xf6\xdc\x77\x1f\x7c\xe8\xc1\x87" "\xbe\xe7\xd0\xf7\x1e\x7a\xc8\x41\xeb\xce\x5a\xbf\x76\xc1\xc8\xbf\x61\x4a" "\x83\xbc\xb6\x4a\xde\xa6\x0b\x2f\x3a\x67\xf5\xfa\xf5\x6b\x37\x6e\x1a\x99" "\x9f\xd9\x60\xbd\x29\x63\xd6\xcb\xef\x87\x8c\x36\x39\x00\x00\x00\xec\x72" "\x71\xff\xbf\x6b\x74\x49\x4f\x28\x97\xa6\x86\xf6\xa8\xbd\xa6\x5c\xb2\xdf" "\x5d\xac\xf4\xbb\xa3\x0f\x8f\x7c\x6a\x20\x59\x7e\x4e\xa5\xfc\x9c\xca\x7c" "\x7b\xa5\xfc\x25\x1f\x4e\xfb\x94\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\xb4\x6e\xc7\xa2\x27\x57" "\xae\x5b\xbb\xe2\xf6\x62\x14\x42\x94\x52\x66\xb0\x8e\xf8\xb1\x62\x7b\x5f" "\x5f\x6f\x0b\xf5\x3e\xb1\xf7\x9d\xd3\xdf\xbf\xe7\xe0\xb7\xab\x97\x95\x4b" "\x2d\x04\x01\x00\x00\x00\x0d\xc5\xfd\xf0\x8e\xd1\x25\x1d\xa1\x5c\xea\x0a" "\x6d\xa1\x7b\xb8\xdf\x7f\xc5\x8e\x8f\x45\xff\x71\xd0\x87\xe6\xb7\xf5\x54" "\x1e\x6e\x6f\x0f\x1f\x5f\xbd\x79\xf3\xc6\x85\x23\xff\xc6\xe5\x8e\x2b\x2c" "\x3e\xe8\x89\x2f\xfe\x97\xbd\xc7\x94\x3b\x78\xe4\xdf\x57\xe5\xc9\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\xf0\x5b\x63\xc7\xa2\x27\x57\xae\x5b\xbb\xe2\xf6\x50" "\x0c\x21\x4a\x29\x33\x58\x47\xfc\x58\xb1\xbd\xaf\xaf\xb7\x85\x7a\x57\x2e" "\xfc\xc6\x0d\xa7\xbf\x6b\xfb\x05\xd5\xcb\xca\xa5\x16\x82\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xb7\x40\x7c\xfd\x7f\x29" "\x0a\xa1\x14\x46\xee\x01\x70\x7f\xe2\x46\x00\x79\x5c\xff\xbf\xf8\xe2\xc7" "\x7e\xb6\x7d\xeb\xd2\x53\xaa\x97\x95\x4b\xcb\x0b\xdd\x61\xaf\xe1\x9f\xbf" "\x95\x68\x43\x7c\x6b\x80\xf9\xc3\xff\x46\x21\xae\x33\x2e\x36\xd0\xa0\xbe" "\x38\xf7\xdb\x39\xe5\xfe\x63\x4e\xb9\xdf\xc9\x29\xf7\x9f\x72\xca\x7d\x20" "\xa7\xdc\x07\x73\xca\x7d\x28\xa7\xdc\xef\xe6\x94\xfb\x70\x4e\xb9\xdf\xcb" "\x29\xf7\x9f\x73\xca\x7d\x24\xa7\xdc\xef\xe7\x94\xfb\x83\x9c\x72\xff\x25" "\xa7\xdc\x1f\x26\x72\xdb\x32\xca\xfd\xdf\x39\xe5\xfe\x28\xa7\xdc\x47\x73" "\xca\x7d\x2c\xa7\xdc\x1f\xe7\x94\xfb\x78\x4e\xb9\x4f\xe4\x94\xfb\x7f\x72" "\xca\xfd\xd7\x9c\x72\x7f\x92\x53\xee\x93\x39\xe5\xfe\x34\xa7\xdc\x9f\xe5" "\x94\xfb\x6f\x39\xe5\xfe\xdf\x9c\x72\xff\x3d\xa7\xdc\xed\x39\xe5\xfe\x3c" "\x91\xdb\x9e\x51\xee\x53\x39\xe5\x3e\x9d\x53\xee\x33\x39\xe5\x3e\x9b\x53" "\xee\x2f\x72\xca\xfd\x8f\x9c\x72\x9f\xcb\x29\xf7\x97\x39\xe5\x3e\x9f\x53" "\xee\xaf\x72\xca\x7d\x21\xa7\xdc\x17\x73\xca\x7d\x29\xa7\xdc\x5f\xe7\x94" "\xfb\x9b\x9c\x72\x77\xe4\x94\xfb\x72\x4e\xb9\xaf\xe4\x94\x3b\x98\x71\x2e" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x40\xac\xfa\xfb\xff\xdb\x2a\xdf\x8b\xb6" "\xbc\x4e\xb9\xfb\xa3\xfa\xeb\x47\xed\xa1\xa7\xa3\x6a\xbe\xde\xba\xf5\xbc" "\xfb\xb2\x1b\xdf\xf9\x3f\xae\x1b\xb8\xa2\x7a\x59\xb9\xb4\xbd\xd0\x39\xfc" "\x3d\x6e\x51\x28\x56\x96\xa5\x7d\x6f\x5b\x4a\x73\x46\x8d\xe4\x14\x32\xca" "\x29\x66\x94\x53\xca\x28\xa7\x2d\xa3\x9c\xf6\x8c\x72\xa6\x64\x94\xd3\x91" "\x51\x4e\x67\x46\x39\x5d\x19\xe5\x74\x67\x94\x33\x35\xa3\x9c\x72\x46\x39" "\xd3\x32\xca\x99\x9e\x51\x4e\x4f\x46\x39\x33\x32\xca\x99\x99\x51\xce\x9b" "\x32\xca\x99\x95\x51\xce\x6e\x19\xe5\xcc\xce\x28\x67\xf7\x8c\x72\xe6\x64" "\x94\xb3\x47\x46\x39\x7b\x66\x94\xb3\x57\x46\x39\x6f\xce\x28\xe7\x2d\x19" "\xe5\xcc\xcd\x28\xe7\xad\x19\xe5\xf4\x66\x94\xf3\xb6\x50\xca\x24\x67\x5e" "\x46\x39\xf3\x33\xca\x79\x7b\x46\x39\xef\xc8\x28\x67\xef\x8c\x72\xf6\xc9" "\x28\xe7\x9d\x19\xe5\xec\x9b\x51\xce\xbb\x32\xca\xd9\x2f\xa3\x9c\xfd\x33" "\xca\x39\x20\xa3\x9c\x03\xc7\xe4\x74\xb4\x94\x73\x50\xe2\x7b\xaa\x0b\x13" "\xfe\x9e\xea\x91\x9c\x05\x19\xe5\x2c\xcc\x28\xe7\xe0\x8c\x72\xde\x9d\x51" "\xce\x21\x19\xe5\x1c\x9a\x51\xce\x61\x19\xe5\xbc\x67\xb8\xef\xbe\x33\xa7" "\xd8\x62\xce\xe1\xa3\xf3\xbd\x89\x7d\x77\x62\xfb\xf3\x7b\x33\x6a\xcf\x11" "\x61\x4a\x55\x4e\xd4\x72\xce\xa2\x8c\xda\xb3\x38\xa3\x9c\xf7\x25\x5e\xf7" "\x56\x73\x7e\x67\xd2\xed\x09\x3d\x43\xff\x2c\xc9\xe8\x79\x2d\xcd\xe8\x79" "\x9d\x30\xfa\x3e\x9a\x96\xd3\x68\x47\x1c\xc9\xf9\xdd\x8c\x72\x4e\xc9\x28" "\x67\x79\x46\x39\x1f\xc8\x28\xe7\xb4\x8c\x72\x56\x84\xae\x06\x39\x03\x4d" "\xe5\x7c\x28\x74\x66\xd2\x9e\xd3\x33\x6a\xcf\xb9\x51\x36\xe7\x09\x1b\x32" "\xca\x39\x2f\xa3\x9c\x8f\x65\x94\xb3\x31\xa3\x9c\x4d\x19\xe5\x6c\xce\x28" "\xe7\xfc\x8c\x72\xfe\x30\xa3\x9c\x0b\x1a\xe6\x34\x7c\x9f\x07\x00\xa8\x88" "\xff\x0e\xdf\x3d\xba\xa4\x27\x94\x4b\xe7\x8f\x8e\x2b\xc4\xcb\xdf\x36\x7c" "\xae\xd1\x39\x5a\x6a\xa2\xfd\xe6\xae\x4c\x72\x8e\x1c\x6d\xcf\xe4\xce\xeb" "\xdf\x97\x51\x7b\x96\x64\xb4\x7d\x4e\x69\x98\xd3\x6c\x3f\x2c\x96\x36\x7e" "\x53\xbd\x7d\x2e\x49\xcd\xf9\xcf\x19\xf5\x9f\x56\x25\x72\x4a\x2d\xe6\x9c" "\x91\x51\x7b\x3e\x9c\xd1\xfe\xd3\x9f\x51\xce\x47\x26\x9d\x03\x00\x00\x00" "\x00\x00\x00\xbc\x71\x6d\xba\xf0\xa2\x73\x56\xaf\x5f\xbf\x76\xa3\x1f\xfc" "\xe0\x07\x3f\xfc\xff\xec\xdd\xbf\x8f\x14\x65\x18\x07\xf0\x77\x76\xe7\x96" "\x3d\x60\xe1\x24\xc4\x1c\x68\xf4\x62\x03\x24\x62\xaf\x52\x5c\x00\x15\x05" "\x81\x40\xfc\x85\x68\x28\xd4\x46\x31\x36\x56\x24\xe6\xac\x8d\xff\x00\x91" "\xc4\x40\x6c\x6c\x28\x88\xb1\x33\xb1\xa0\xc0\x4e\x63\x28\x89\x85\x46\x13" "\x4a\x1b\x13\x91\x31\xb3\x3b\x73\xbb\xef\xcc\x2c\x33\x21\x2a\x09\x7e\x3e" "\x05\xb3\x37\xfb\x7c\xdf\x67\x66\x6e\xb8\xe4\xd9\x62\x67\xfd\xc5\xbd\xfe" "\xcb\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\xcf" "\xff\xdf\x9e\xcc\xff\x8a\xf9\xac\x41\xf9\x5e\x7f\xb0\xba\xba\x72\x17\x7d" "\x9f\x38\xff\xd7\xae\xa3\x3f\xec\x79\x6a\x76\xdf\x28\x7d\x28\x2c\x86\x6d" "\xe3\xd7\x27\xaa\x81\x7d\x27\x1f\x5f\xbb\x90\x65\xdf\x6f\xbd\xb8\xf7\xe7" "\xbd\x9f\x5e\x5e\x9a\xb3\x6e\xb2\x73\x72\x16\xe5\x3a\xd7\xe6\x9c\x54\xf9" "\xdc\x83\xa5\xe2\xbb\xd6\xab\xfd\x92\x33\xd3\x75\x1a\xcf\x7f\xff\x27\x1f" "\x7e\x74\x21\xcb\xf6\x9d\xbb\xf1\xeb\xcd\x4b\x07\x8f\x95\xeb\x54\xfb\x25" "\xa7\x7d\x81\x3b\x00\x00\x00\xf7\x5e\x39\x87\x8f\xd6\xf7\x0c\xc3\x28\x5d" "\xec\x3c\x3f\x2f\xb7\xcc\xcf\x00\x00\x00\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\x3f" "\x28\x9f\xff\xbf\xf1\x3f\x7e\xfe\xff\xf5\x07\xbf\xfa\xf3\xca\xd9\x9f\xbe" "\x9b\xdd\x37\x4a\xef\x62\x21\x00\x00\x00\x00\x00\x00\x00\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\x07\x94\xcf\xff\x1f\x25\x21\xf4\xe6\xd4\xfc\x1b\xcf\xff\xbf" "\x71\xf1\x8f\x9b\x97\xde\x5d\x3c\x37\xbb\x6f\x94\x7e\x10\x36\x84\x87\x27" "\x3f\xac\x1d\x8c\xea\xb7\x27\xfd\xf1\x76\x65\xce\xf1\x4c\x73\xcf\x44\xb9" "\xcd\x5d\x73\xe1\xd9\x28\xb7\xb5\x73\xbf\x38\x97\xce\xe4\x72\x27\x2a\xe7" "\x3d\xed\xf7\x5c\x9c\xeb\x75\x3d\xce\x43\x73\xfb\xdd\xf9\x38\xe3\xdc\x96" "\xce\xb9\xe7\xa3\xdc\xa8\xf3\xf5\x3c\x1c\xe5\x36\x75\xee\xf7\x62\x94\x5b" "\xec\xdc\xef\x58\x94\x1b\x76\xee\x77\x3c\xca\x25\x9d\xfb\xc5\xbf\xd9\x5e" "\xe7\x7e\x27\x43\xdc\xb0\x6b\xbf\x97\xa2\x58\xbf\x73\xbf\x97\xa3\xdc\x52" "\x4b\x2e\x00\x00\x00\xf7\xad\x72\x0e\xdf\xb4\xbe\x67\x18\x46\xe9\xd1\xd0" "\x2f\x7f\xac\xcc\xe1\xeb\xfb\x2b\xf3\xeb\x74\xde\x88\xf7\xb7\xcd\x53\xd3" "\xf5\x0e\x35\xf7\xa9\xcc\x9f\xd3\xfd\xc7\x9b\xfb\x87\x57\xa2\xfd\x9d\xe7" "\xe3\xf0\xea\xdc\x5c\xee\x5a\x12\xe6\x9c\x6f\x9c\x0b\x21\x1d\xff\x3b\x2c" "\xfa\x0d\xcb\xe3\x5e\xaa\xe4\x3e\xaf\xe7\xf2\x5e\xcb\x45\x6e\xb9\xd8\x3b" "\xa8\xe6\xc2\x6b\x71\xaa\xf3\xe7\x06\xa7\xa2\xdc\xc6\xce\xd7\xe5\xf5\x28" "\xd7\x79\xfe\x5f\x3b\x1d\xe5\xda\x3e\xbf\x09\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x2d\x6e\x3d\xfd\xcb\x1b\xef\xbc\x7d\xea\x4a\xda\x0f\xa1\x37\xa7\x26\x6b" "\x50\xbe\x97\x0e\x56\x57\x57\x42\xd8\xdd\xb5\xdf\xf5\x24\x84\x85\x10\xc2" "\xd5\x07\x6e\xed\x38\x71\xfb\xad\x3d\xb3\xef\x8d\xd2\xf7\xc2\x42\x78\x2c" "\x7f\xf9\x42\x96\x65\xfd\xa6\xfc\xb0\xd8\x6e\x98\xd4\x5d\xb9\x9d\x65\xfd" "\xa6\xc2\x5d\x49\x73\xff\x62\xfd\xdf\x43\x08\xfd\x41\xc3\xfb\x2b\x71\xdd" "\xce\x2c\xcb\x7a\x83\x86\xb5\x2a\x75\x1f\x8f\xeb\xea\x17\xf0\x72\xa5\xee" "\x70\x2f\xef\xdb\x70\xc0\x95\xba\xb1\x41\x5a\xaf\x3b\x13\xd7\xe5\xe7\xdf" "\x1b\x0c\x5b\xd7\x3b\x32\xae\x5b\x6c\xad\x3b\xd0\x0f\x21\x19\x6c\x6a\xad" "\x3b\x9b\x5f\x92\xc1\xe6\xd6\xba\xdf\xf2\x4b\x32\x18\xb5\xd6\xbd\x3f\xae" "\xdb\xd2\x5a\xf7\xe6\xed\x2c\x4b\x06\x5b\x5b\xeb\x2e\xe5\xf7\xc5\x60\xa9" "\xb5\xee\x91\xf1\x79\x6c\x9f\x5f\x57\xdc\x67\x5f\xf4\x42\x48\xfa\xa1\x7e" "\x23\x7c\x5b\x6c\x87\xcb\x93\xed\x72\x9c\x3b\x92\x8e\x73\xf5\x1b\x63\xfd" "\x57\x56\x59\xb2\xc8\x7d\x39\xb9\xaf\xeb\x37\xca\xfa\x29\x55\x96\x2c\xce" "\xe7\xb3\x3c\xd7\xeb\x27\xf5\x03\x9d\xf7\x9f\x1b\x00\x00\xf8\xdf\x28\xe7" "\xf0\xe9\xc8\x37\x0c\xa3\xf4\x40\x39\x87\xec\x4f\x42\x68\x1a\x57\xc3\xa3" "\x77\x9e\xaf\xcf\xf7\x42\x58\x68\x9a\x5f\xd7\xe2\xba\x7c\x4e\x5b\x18\x6c" "\xac\xd7\x55\xe6\xaf\x27\x27\xc7\x51\x3f\x92\x6d\xc5\x76\xb5\x32\xdf\x14" "\xb9\x1f\x93\x10\x16\xfa\xa1\x7e\x20\x49\xa5\x4f\x25\xb7\x6b\xd2\xaf\x3e" "\x30\x2f\xd4\x0f\x75\x36\xb7\x3b\xef\x37\xec\xd7\x07\xcf\xb2\xdf\xb0\xb2" "\x2d\x72\x57\xc7\xb9\x86\x81\xb5\xcc\x2d\x57\xb6\xc5\xf5\xdb\x91\x1f\x67" "\xd3\xbc\x57\x5e\x8f\xa2\xee\xeb\x7c\xfd\x5e\x5a\xaf\xab\xcc\xc3\xdf\xe4" "\x75\x0b\xb3\x1f\xf0\x54\xea\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9b\xbd\xba\x0b\x91\xaa\x0c\xe3\x00\xfe\x9c\xd9\x35\x77" "\x76\x76\x5c\x57\x36\x9d\x0c\x96\xed\x83\xc2\x50\xc1\x0b\xcd\x42\x41\xcb" "\xcf\xac\x6d\x31\x83\x88\x24\x2f\x24\x24\x0b\xa3\xa0\x20\x89\x56\x4b\x0a" "\xc3\xf4\x22\xba\xa8\xbb\x8c\x42\x22\x54\xa2\x0f\x14\xab\xa5\x4c\x28\x48" "\xb4\x88\xba\x09\x85\xe8\x46\xc4\x22\x28\x2b\xcd\x18\x3d\x47\xd6\xe3\x1e" "\x56\x4e\x0b\x41\xfd\x7e\xa0\xcf\xbc\xe7\xbc\xe7\xbf\xcf\xbc\xf3\xcc\x2e" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x7b" "\xea\xad\xf5\xd6\x66\xfd\x6c\xd3\x63\xbf\x3e\xf0\xe5\xb6\x1d\xdf\x3d\xb8" "\xea\xe0\xc0\xdc\xdf\x4e\x54\xe7\xac\xff\xa1\xe7\xa6\xa5\xd7\x0c\x1c\x3d" "\xf4\x62\xed\xd4\x8f\x9b\xf6\x6c\xfc\x78\xe6\xbc\x67\xfb\x6e\xd9\xf9\xc8" "\x89\xb9\x1f\xcc\x5c\xfb\xf8\x88\xc1\xb3\xcf\x95\x49\xe9\xb2\x2d\x22\x39" "\x9c\x44\xac\x3b\xd1\xfd\xea\xae\x2d\x77\x37\x9a\xd7\x92\x88\x68\x49\x2a" "\x03\x11\x5d\x1b\x2a\x83\x5d\x49\x2e\xa1\xf7\x8f\x88\x58\x9d\xee\xab\xb7" "\xf6\x9c\xfd\xff\xc8\xe0\xb9\x9b\x1b\xf7\x3c\xb3\xa6\x59\x07\x5e\x18\x7b" "\xc1\x43\x9d\xb9\x90\xfc\xfb\x8a\x5a\x4b\xd6\xcf\xb9\xda\x76\x61\xbf\xfc" "\xb7\x74\x47\x44\x2d\x22\xb6\xa5\xeb\x8d\xbb\x0f\xcc\x79\xab\xb1\x6c\xea" "\xce\xdf\xdf\xbf\xe7\xbd\x2d\x3b\xb6\x46\x25\xdb\xd9\x1b\x63\x87\xcc\x55" "\xcc\x1b\xb7\x6a\x34\xfb\x98\x34\xe4\xf5\xa9\xa7\x23\x9a\x53\xd8\x48\xe7" "\x30\xf9\x07\x7d\xf5\x47\x44\xfb\x90\xf5\x48\x63\x7c\xa9\x63\x3e\x2d\xad" "\x95\xdc\x7a\x56\x6e\xdf\xe5\xb9\x75\x25\xb7\x9e\x9c\xd6\xf9\x69\xed\x4e" "\x6b\x23\xad\x1d\x69\xcd\x7f\xf9\xb3\x9c\xab\x72\x35\xff\xfd\x1e\x2d\x6b" "\x4f\x5f\xda\xbe\xac\xcf\x96\x51\xfa\xb9\x93\x72\xeb\x31\xa3\x94\x9b\xc9" "\x9f\x6b\x5e\x4f\x5a\xa7\x25\xc3\xf7\x33\x52\x5e\x92\x7e\x86\xcd\x7f\xf5" "\xb2\x4d\x5e\x82\xe6\x79\x57\x23\x62\x43\xba\xce\x7e\x6d\x37\xe7\x61\x5c" "\xf3\x5e\x6b\x6f\xee\x89\x8e\xb8\x3d\xee\x88\xbe\x58\x10\x0b\x63\x51\x2c" "\x8e\x25\x71\x5b\x2c\x8d\x65\xd1\x1f\xed\x17\xed\xad\x17\xec\xed\x4a\xfa" "\xa3\xe3\xa2\xdd\x49\x8c\x4f\x5a\xd2\x9e\x5a\x92\xa8\x24\xd1\x7a\xfe\x58" "\x16\x24\x11\x97\x0d\xd9\xdb\x79\xfe\x99\xca\x05\x9f\x6d\x73\xbe\xc7\x0e" "\xf3\x3e\xb3\xeb\x59\xe0\x40\xfa\xa2\x96\x5e\xab\x25\x13\x2e\x7a\xe6\xcc" "\x30\xb2\x7b\x2f\xad\x3b\x39\x6f\xeb\xee\xf6\x03\x8d\xe1\x0e\xb5\x99\xd9" "\x97\xa4\xf9\x49\xa9\xfc\xc5\xd5\xad\xc7\x7b\x37\xdf\xb8\x72\x7c\x51\x7e" "\x4f\x96\x5f\x29\x95\x5f\x1d\xfc\x76\xfe\x73\x4f\xc6\xbe\xc2\xfc\x25\x59" "\x7e\x4b\xa9\xfc\xa3\xd7\x7d\xd8\x79\xd7\xe4\x33\x5f\x14\xe6\xaf\xc8\xf2" "\x5b\x93\x32\xf9\xd3\x5f\x39\x7d\x7d\xdf\xe1\x29\x37\x17\xe6\xaf\xce\xf2" "\xdb\x4a\xf5\x3f\xb8\xeb\xd8\xfc\xbd\xb3\xf7\x5e\x59\x98\x3f\x27\xcb\xaf" "\x96\xca\xdf\xbc\x63\xc5\x9d\xc7\xbf\x7e\x79\x46\x61\xfe\xac\x2c\xbf\xbd" "\x54\xfe\x37\x13\xdf\xfd\xf3\x9d\x87\x8f\x7c\xde\x56\x94\xbf\x26\xcb\xaf" "\x95\xca\xdf\xb7\x70\x42\xff\xf3\x87\x7e\xde\x5b\x38\xff\x53\xb3\xfc\x8e" "\x52\xf9\xf7\xff\xb4\xe5\xd3\xe5\x63\xe6\x2e\x2a\x3c\x9f\x89\x59\x7e\xbd" "\x54\xfe\xf7\xaf\x9d\x3c\xb6\x7d\x6d\x75\x7d\x61\xfe\x43\x59\xfe\xb8\x52" "\xf9\x6f\x4c\x7f\xf3\xe0\xb5\x8d\xb7\xb7\x17\x9e\xcf\xd5\x59\x7e\x67\xa9" "\xfc\xed\x9b\xf7\xdf\xfa\xd4\x2f\x1f\x7d\x55\xd8\x7f\xe3\x6c\x7e\x52\x8b" "\xf1\xa5\xf2\x57\xce\xf8\xe4\xf5\xfb\x6e\x38\xf6\x44\xe1\xfc\xdc\x9b\xf5" "\xdf\x5d\x2a\x7f\x7f\xd7\xa9\x2b\x96\xff\xb5\x7a\x4a\x61\xff\x8f\x8e\xf4" "\x17\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xfe\x3f\xfe\x0e\x00\x00\xff\xff\x37\xa6\x8c" "\x62", 18738); syz_mount_image(/*fs=*/0x200000001000, /*dir=*/0x200000000000, /*flags=*/0, /*opts=*/0x200000000040, /*chdir=*/1, /*size=*/0x4932, /*img=*/0x2000000010c0); } 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; }