// https://syzkaller.appspot.com/bug?id=99d3ced95a40fc72210bb5cd0d462b4383ef36b8 // 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 #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 void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 8; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 0 || call == 3 || call == 4 || call == 6) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000040, "f2fs\000", 5); memcpy((void*)0x20000080, "./file0\000", 8); memcpy((void*)0x200056c0, "nolazytime", 10); *(uint8_t*)0x200056ca = 0x2c; memcpy((void*)0x200056cb, "lazytime", 8); *(uint8_t*)0x200056d3 = 0x2c; *(uint8_t*)0x200056d4 = 0; memcpy( (void*)0x20000140, "\x78\x9c\xec\xdc\xcb\x6b\x63\x55\x18\x00\xf0\x2f\xed\x74\xde\x8e\x45" "\x5c\xb8\x9b\x0b\x83\xd0\xc2\x24\x4c\x3a\x0f\x74\x37\xea\x0c\x3e\xb0" "\x43\xf1\xb1\x70\xa5\x69\x92\x86\xcc\x24\xb9\xa5\x49\xd3\xda\x95\x0b" "\x97\xe2\xc2\xff\x44\x14\x5c\xb9\xf4\x6f\x70\xe1\xda\x9d\xb8\x50\xdc" "\x09\x4a\xee\xb9\xd5\xa9\x0f\x10\x9a\x36\x76\xfa\xfb\xc1\xcd\x77\xcf" "\xc9\xc9\x77\xbf\x13\x86\x81\xef\xde\x92\x00\x4e\xad\xc5\xec\x97\x9f" "\x2a\x71\x25\x2e\x44\xc4\x7c\x44\x5c\x8e\x28\xce\x2b\xe5\x51\xb8\x9b" "\xc2\x73\x11\x71\x35\x22\xe6\x1e\x3b\x2a\xe5\xfc\x1f\x13\x67\x23\xe2" "\x62\x44\x5c\x99\x24\x4f\x39\x2b\xe5\x5b\x9f\x5d\x1f\x5f\xbb\xfd\xe3" "\x1b\x3f\x7f\xfd\xed\xb9\x33\x97\x3e\xff\xea\xbb\xd9\xed\x1a\x98\xb5" "\xe7\x23\xa2\xbf\x99\xce\x77\xfa\x29\xe6\x9d\x14\x1f\x96\xf3\x8d\x71" "\xb7\x88\xfd\x5b\xe3\x32\xa6\x37\xfa\x8f\xca\x71\x9e\xe2\x4e\x7b\xbd" "\xc8\xb0\xd3\xd8\x5f\xd7\x28\xe2\xcd\x4e\x5a\x9f\x6f\x6e\x0f\x27\x71" "\xa3\xd7\x68\x4e\x62\xa7\xbb\x51\xcc\x6f\x0e\xd2\x05\x87\xe3\xce\x7e" "\x9e\xe2\x03\x0f\x1b\x5b\xc5\xb8\xd5\x5e\x2f\x62\x77\x98\x17\xb1\xb3" "\x97\xea\xda\xdd\x4b\xff\xb7\xed\x0d\x47\x29\x4f\xab\xcc\xf7\x61\x91" "\x3e\x46\xa3\xfd\x98\xe6\xdb\xbb\xed\xb4\x9f\xcd\x47\x45\x6c\x0e\x46" "\xe5\x7c\xca\x9b\xb7\xda\xbb\x93\x38\x2e\x63\x79\xb9\x68\xe6\xbd\x56" "\x51\xc7\xfa\x61\xbe\xe9\xff\xb7\x37\xbb\x83\xed\xdd\x6c\xdc\xde\x1a" "\x76\xf3\x41\x76\xbb\x56\x7f\xa1\x56\xbf\x53\xad\x6f\xe5\xad\xf6\xa8" "\x7d\xab\xda\xe8\xb7\xee\xdc\xca\x96\x3a\xbd\xc9\xb2\xea\xa8\xdd\xe8" "\xdf\xed\xe4\x79\xa7\xd7\xae\x35\xf3\xfe\x72\xb6\xd4\x69\x36\xab\xf5" "\x7a\xb6\x74\xaf\xbd\xde\x6d\x0c\xb2\x7a\xbd\x76\xb3\x76\xa3\x7a\x7b" "\xb9\x3c\xbb\x9e\xbd\xfa\xe0\xdd\xac\xd7\xca\x96\x26\xf1\xe5\xee\x60" "\x7b\xd4\xed\x0d\xb3\x8d\x7c\x2b\x4b\x9f\x58\xce\x56\x6a\x37\x5f\x5c" "\xce\xae\xd5\xb3\xb7\x57\xd7\xb2\xb5\xb7\xee\xdf\x5f\x5d\x7b\xe7\xfd" "\x7b\xef\x3d\x78\x69\xf5\xf5\x57\xca\x45\x7f\x2b\x2b\x5b\x5a\xb9\xb1" "\xb2\x52\xad\xdf\xa8\xae\xd4\x97\x4f\xd1\xfe\x3f\x2e\x8b\x9e\xe2\xfe" "\xe1\x50\x2a\xb3\x2e\x00\xe0\xe4\xd1\xff\x03\xb3\x70\xd2\xfb\xff\xd0" "\xff\x4f\xc5\x89\xea\x7f\x4f\x7b\xff\x7f\x04\xfb\x87\x43\xd1\xff\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x9c\x5a\xdf\x2f\x7c\xf1\x5a\x71\xb2\x98\xc6\x97\xca\xf9\xa7\xca\xa9" "\x67\xca\x71\x25\x22\xe6\x22\xe2\xb7\x7f\x30\x1f\x67\x0f\xe4\x9c\x2f" "\xf3\x2c\xfc\xcb\xfa\x85\xbf\xd4\xf0\x4d\x25\x8a\x0c\x93\x6b\x9c\x2b" "\x8f\x8b\x11\x71\xb7\x3c\x7e\x7d\xfa\xa8\xbf\x05\x00\x00\x00\x78\x72" "\x7d\xf9\xd1\xd5\x4f\x53\xb7\x9e\x5e\x16\x67\x5d\x10\xc7\x29\xdd\xb4" "\x99\xbb\xfc\xc1\x94\xf2\x55\x22\x62\x61\xf1\x87\x29\x65\x9b\x9b\xbc" "\x3c\x3b\xa5\x64\xc5\xbf\xef\x33\xb1\x3b\xa5\x6c\xc5\x0d\xac\xf3\x53" "\x4a\x96\x6e\xb9\x9d\x99\x56\xb6\xff\x64\xfe\x40\x38\xff\x58\xa8\xa4" "\x30\x77\xac\xe5\x00\x00\x00\xc7\xe2\x60\x27\x70\xbc\x5d\x08\x00\x00" "\x00\xc7\xe9\x93\x59\x17\xc0\x6c\x54\x62\xff\x51\xe6\xfe\xb3\xe0\xe2" "\x2f\xef\xff\x7c\x20\x78\xe1\xc0\x08\x00\x00\x00\x38\x81\x2a\xb3\x2e" "\x00\x00\x00\x00\x38\x72\x45\xff\xef\xf7\xff\x00\x00\x00\xe0\xc9\x96" "\x7e\xff\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9d\x9d\xfb\xc9\x49\x1d\x8a\xe2\x00\x7c" "\x5a\xe8\x7b\xbc\x3f\x46\x62\x9c\xbb\x15\x67\xb0\x0c\x97\xe0\xd0\xa1" "\x61\x01\x6e\x82\x25\xe0\x16\xdc\x00\x6b\xc0\x99\x4b\x30\x60\x68\x4b" "\xb4\x06\x13\x93\xde\xb6\x91\x7c\x5f\xd2\x5e\x6e\x43\x7e\x9c\x12\x26" "\xe7\x5e\x52\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe8\xd2\x73" "\xb1\x9a\x3f\xde\x5f\x3d\xb4\xcd\xd9\xee\xda\x49\x73\x37\x00\x00\x00" "\xc0\x31\x9b\x62\x35\x2f\x5f\x4c\xab\xf9\xbf\xfa\xfa\x59\x7d\xe9\xa2" "\x9e\x67\x11\x91\x47\xc4\xb1\xde\x7d\x14\xbf\x1a\x99\xa3\x3a\xa7\xf8" "\xe2\xfd\xc5\xa7\x1a\x9e\x22\xca\x84\xfd\x67\xfc\xae\x8f\xbf\x11\x71" "\x5d\x1f\xaf\xe7\x5d\x7f\x0b\x00\x00\x00\x70\xba\xd6\x8b\xe5\xac\xea" "\xd6\xab\xd3\x74\xe8\x82\xe8\x53\xb5\x68\x93\xff\xbf\x49\x94\x97\x45" "\x44\x31\x7d\x49\x94\x96\xef\x4f\x97\x89\xc2\xca\xdf\xf7\x38\xee\x12" "\xa5\x95\x0b\x58\x93\x44\x61\xd5\x92\xdb\x38\x55\xda\xb7\x8c\x1a\xc3" "\xe4\xc3\x90\x55\x43\xde\x6b\x39\x00\x00\x40\x2f\x9a\x9d\x40\xbf\x5d" "\x08\x00\x00\x00\x7d\xba\x1d\xba\x00\x86\x91\xc5\x61\x2b\xf3\xb0\x17" "\x5c\xfe\xf3\xfe\x7d\x43\xf0\x4f\x63\x06\x00\x00\x00\xfc\x40\xd9\xd0" "\x05\x00\x00\x00\x00\x9d\x2b\xfb\x7f\xcf\xff\x03\x00\x00\x80\xd3\x56" "\x3d\xff\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x2e\x6d\x8a\xd5\x7c\xbd\x58\xce\xda\xe6\x6c\x77\xed\xa4\xb9\x1b" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xfd\x79\x47" "\x81\x10\x08\x83\x30\xd8\xbb\xbe\x33\x99\xfb\x1f\x56\x1a\x34\x35\x35" "\xa9\x02\xe1\xe3\x6f\x0c\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\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x37" "\xbf\xfb\xcb\xff\x89\xa9\x71\x26\x99\x7b\x6d\x2c\x3d\x8f\x24\x6b\xa7" "\xc6\xd6\xa9\xb1\x77\x6e\x1c\xfd\x61\x7c\xfd\x1a\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\xf6\xe7\x25\x05\x42\x20" "\x08\xa2\x60\xce\xf8\xdf\x49\xdf\xff\xb0\x92\xa0\x67\x10\x21\x02\x1a" "\x1e\x55\xd4\xa2\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\xe0\x8b\x7e" "\xf7\xcb\xff\x89\xa9\x71\x26\x99\x3b\x6d\x2c\x1d\x8f\x24\x6b\x57\x8d" "\xad\xab\xc6\xde\x83\xc6\xd1\x83\xf1\xf6\x6f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x76\xee\xe7\x35\x8e\x2a\x0e\x00" "\xf8\x9b\x99\x9d\xad\xad\x8a\x6b\x94\x3d\x44\x44\xc1\x83\x5e\xec\x76" "\x5b\x5b\x7b\xf5\xa0\x04\x0f\xfe\x09\x42\x48\xb7\x35\xba\xf5\x47\x9b" "\x83\x2d\x45\xc8\xc5\x9b\xe4\x9c\x8b\xe8\x51\x44\x50\xe2\x2d\xff\x43" "\xce\x09\xe4\x12\x6f\x39\xec\x21\x82\x67\x65\x66\x67\x92\xc9\x0f\x70" "\x35\x74\x66\x93\x7c\x3e\xf0\xe6\x7d\x77\x18\xe6\x7d\xdf\x24\x84\x7c" "\xe7\xbd\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x34\x7a\xef\x20\x4e\xb2" "\x43\x67\x1c\xc7\xc5\xb9\xcd\xbd\x27\x0b\x59\xbf\x75\xa4\xcf\xac\xaf" "\x6c\xcf\x66\x2d\x8b\xa3\x3a\x93\x3e\x1b\x5e\xad\x7e\x88\xba\xcd\x25" "\x02\x00\x00\xc0\xc5\x91\x94\xf5\x7d\x08\x61\x27\x5d\x9b\xcb\xfa\xb8" "\x93\xd7\xff\x69\x79\x4d\x56\xf3\xff\xf0\xfc\x38\x2e\xeb\xf9\xa3\x75" "\x7f\xd9\x97\xb5\x7f\xd6\x7e\xff\x6d\xf7\xe5\xfd\x81\x3a\xe3\x71\xb2" "\x9b\xde\x5d\x1c\x0e\xae\x1d\x4f\xa5\xf5\xf4\x66\x39\xdd\x5e\xf8\xd7" "\x2b\x5a\xf9\x93\xcf\xdf\xbd\x24\xf9\x17\x24\xfe\x70\xf9\xa5\x51\x9a" "\x3f\xcf\xe8\xbb\x8d\x8d\xf7\xdb\x79\x78\xa9\x8e\x6c\x01\x80\xff\xe3" "\x6a\xd9\x17\x41\xf9\xfb\x50\xd6\xf7\x9b\x4c\x0c\x80\x0b\xa3\x55\x29" "\xbc\xcb\xfa\x3f\xe9\x34\x9b\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x1d\x46\xcb\xe1\xd9\x32\x8e\x42\x08\xb3\xad\x83" "\x38\xb3\xb5\xf7\x64\xe1\xa4\x7e\x7d\x65\x7b\xb6\x6c\xb7\x56\x57\x57" "\xaa\xf7\xcc\x6e\x91\x86\x10\xee\x2e\x0e\x07\xd7\x6a\x9c\xcb\xb4\x7b" "\xf8\xe8\xf1\x67\xf3\xc3\xe1\xe0\x41\xfd\xc1\x6b\x21\x84\xe6\x46\x2f" "\x82\x8f\x27\xb8\x26\x84\x26\x33\x14\x9c\x36\x88\x8b\xef\xf5\x69\xc9" "\xe7\x6c\x04\x0d\xff\x60\x02\x00\xe0\xdc\x49\x8b\x96\xd5\xf5\x3b\xe9" "\xda\x5c\x76\x2e\x9a\x09\xe1\xef\x1f\x0f\xd7\xff\x6f\x56\xe2\x30\x61" "\xfd\xbf\xfb\xc9\xad\xcd\xea\x58\xd5\xfa\xbf\x5f\xdb\x0c\xa7\x5f\x6f" "\xe9\xfe\x97\xbd\x87\x8f\x1e\xbf\xbd\x78\x7f\xfe\xde\xe0\xde\xe0\xf3" "\x77\xae\xf7\xdf\xed\xdf\xb8\x7d\xf3\xe6\xed\x5e\xfe\xae\xa4\xe7\x8d" "\x09\x00\x00\x00\xa7\xd3\x2e\x5a\xb5\xfe\x8f\x67\x8e\xaf\xff\x5f\xa9" "\xc4\x61\xc2\xfa\xff\xab\xef\xfb\xdf\x54\xc7\x4a\xd4\xff\x27\x3a\x58" "\xf4\x6b\x3a\x13\x00\x00\x80\x8b\xed\xc5\xd7\xff\xfa\x33\x3a\xe1\x7c" "\xd4\x6e\x87\xaf\xe7\x97\x96\x1e\xf4\xc7\xc7\xfd\xcf\xd7\xc7\xc7\x06" "\x52\xfd\xcf\x2e\x15\xad\x5a\xff\x27\x33\x4d\x67\x05\x00\x00\x00\xd4" "\x61\xb4\x1c\x1d\x5a\xff\xbf\x53\x89\xc3\x84\xeb\xff\xcf\xfd\xf4\xca" "\x2f\xd5\x7b\x26\x21\x84\xcb\xc5\xfa\xff\xd5\x85\x2f\x86\x77\xea\x9b" "\xce\x54\xab\xe3\xcf\x89\x9b\x9e\x23\x00\x00\x00\xcd\xba\x5c\xb4\xea" "\xfa\x7f\x9a\xef\xff\x8f\xf7\xb7\x3c\xc4\x21\x84\xb7\xde\x18\xc7\xc5" "\xbf\x01\x9c\xa8\xfe\x4f\x3e\xf8\xf6\xe7\xea\x58\xd5\xfd\xff\x37\xea" "\x9b\xe2\x54\x8a\xbb\xe3\xe7\x91\xf7\xdd\x10\x5a\xdd\xa6\x33\x02\x00" "\x00\xe0\x3c\x7b\xa6\x68\x59\xb1\xff\x47\xba\x36\xf7\xe9\xaf\x57\x3e" "\x6a\xdb\xff\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\xb7\x7f\x02" "\x00\x00\xff\xff\xb1\xe6\x41\x66", 21734); res = -1; res = syz_mount_image(0x20000040, 0x20000080, 0, 0x200056c0, 1, 0x54e6, 0x20000140); { int i; for (i = 0; i < 64; i++) { syz_mount_image(0x20000040, 0x20000080, 0, 0x200056c0, 1, 0x54e6, 0x20000140); } } if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x20002000, "./bus\000", 6); res = syscall(__NR_open, 0x20002000ul, 0x143042ul, 0ul); { int i; for (i = 0; i < 64; i++) { syscall(__NR_open, 0x20002000ul, 0x143042ul, 0ul); } } if (res != -1) r[1] = res; break; case 2: syscall(__NR_ftruncate, r[1], 0x10001ul); break; case 3: syscall(__NR_ftruncate, r[1], 0xfffffffffffffffcul); break; case 4: syscall(__NR_fstat, r[0], 0x20005800ul); break; case 5: syscall(__NR_getuid); break; case 6: memcpy( (void*)0x20000fc0, "\xc7\x5f\x62\x64\x4c\xed\xb2\x52\x6f\xc8\xe0\xec\xfc\xf8\xc6\x76\x1c" "\x3d\xcd\x84\x98\xa6\x15\x39\x49\xde\x70\x1a\x53\xd2\x21\x0d\x36\x16" "\x61\x05\xc2\x78\x68\x28\x05\x84\xf8\x3e\x32\x75\xbe\x61\xfc\xdb\xe3" "\x0f\x00\xd3\x0c\x09\x55\x3b\x6c\x06\x9a\xef\xda\x18\x72\x6c\xb5\x5f" "\x2e\xb6\x51\x21\x86\x72\x4a\x26\xb6\x72\x0a\xe6\x9e\x35\xc6\x1f\xd4" "\x11\x61\xe6\xb0\x6d\x77\x78\x9f\xf5\x95\xa3\xca\xc8\xaf\x21\xdb\x30" "\x2e\x90\xbe\x21\x60\x32\x04\x02\x42\x25\x29\x2a\x1b\xdd\x2b\x05\x0c" "\xe6\xc1\x80\xe1\x75\x53\x3f\x09\xa4\xb1\x34\x44\xe6\xb2\x8c\xa3\x02" "\x3b\xb2\x19\x13\x81\x8e\xe6\xfb\xa2\x5d\x3f\xd3\x0f\xa3\xa7\x3c\x95" "\x66\x16\xdd\xfb\xf1\x9b\x9f\x01\xd5\x80\x34\xbf\x4d\x25\xe7\xea\xa4" "\x71\x25\xe2\x56\x41\x9a\x1c\x2e\xc6\x4e\x06\xdb\x70\x70\x53\xd7\x64" "\x2d\x34\x43\xec\xbe\x6f\xae\x95\xe9\xf8\x87\xdc\xe6\x23\xc6\xa5\xb0" "\x46\x0d\xdc\xe5\x23\xbe\x33\xeb\x05\x3f\x72\xb6\x9d\xdb\xfc\x4f\x0d" "\x06\x90\xb0\xe2\x20\xd4\xdb\xa7\x8b\x9f\x82\x67\x66\xaa\x49\x92\x4e" "\xce\xb1\x6e\x21\xcb\x6d\x78\x6c\xfd\xe7\xfe\xa3\xdf\xa5\xb2\x08\xe9" "\xcb\xaa\xb9\x48\x7a\x76\xb1\x6e\x40\x93\x83\xa0\x7b\x72\xe5\xbe\x25" "\x3f\xfa\xe1\x5f\xc4\x94\x60\xcc\xbb\x4c\x3e\x3c\x05\x44\x15\x09\x3f" "\x52\x62\xe4\x41\x99\x08\xa8\xc6\xf4\x49\xbd\xca\x6f\x10\x20\x9a\x68" "\xa9\xad\x56\x07\x66\x4f\xc4\x4b\x9f\xb5\xd5\x76\x7e\x10\x1f\x0f\x4e" "\xd1\xc8\x5b\x96\xc8\x12\xfa\x99\x7f\xc7\xab\xa0\xe3\x27\xd3\x77\x83" "\xee\x9b\xce\xd1\x14\xd0\x6a\x47\x94\xc4\xc5\x74\xce\x25\xb0\xef\xe5" "\x12\x0f\x29\x15\x3f\x36\x61\x66\x3c\x90\xe1\x1a\xdc\x8e\x88\xb5\xfb" "\x6f\x57\xc8\x3e\x23\xf4\xe0\x2b\xc2\xc8\x03\xd7\x68\x09\x9e\x9a\x5e" "\x66\x12\x2a\x63\x6a\x78\x59\x8d\xc5\x9b\xe3\x85\xc2\x08\x51\xd2\xca" "\x3c\xd3\xbd\x1c\x07\x78\x77\x7c\xf6\x9f\xf4\xa4\xfe\xfe\x61\xbb\x39" "\x34\x24\x77\x58\xc7\xc7\x7b\x90\x79\xbe\xb7\x8c\x70\x95\x44\x00\x89" "\xc8\xa1\x95\x77\x3f\x65\x58\x4c\xa5\xe6\xc5\xf8\x34\xa7\x2a\x60\xe5" "\xbe\x05\x07\x15\xe9\x7b\xec\x41\xb6\xf5\xa5\x79\x64\x12\x99\x44\x55" "\x97\x66\x2a\x6d\xc7\x6a\x0b\x42\xdc\x41\x79\xd1\x45\xee\xe6\x15\xb6" "\xe3\xeb\x47\x4f\x6f\xc6\xd1\x4b\x0c\x58\x1f\xa9\xf5\x68\x14\xc7\xe6" "\x12\x6d\x3f\x63\x13\x4a\xdf\xbb\x8a\x39\x29\xa0\x62\x98\xfe\x7d\xf3" "\x2d\xbe\x52\x49\xdc\x5d\x26\x7d\xdb\x54\x8b\xa6\x50\xfb\x0f\xa1\x4b" "\x14\xa8\xe9\x60\x04\x6b\xa6\x40\x10\x5b\x28\x16\xb0\xbb\xc2\xbd\x62" "\x3e\xa7\xd9\x57\x06\xba\x4b\x3c\xa7\xfc\x0d\xde\x52\x37\xea\xd2\xf3" "\xdf\x97\x78\xd2\xea\xf2\x75\x4c\xdd\xb3\x2f\xdd\x7a\xef\xdf\x43\x6f" "\x44\xb6\x79\x98\x1a\xd3\xeb\x54\x29\x11\x7f\xd4\x68\x43\x89\x37\xc3" "\x70\xa1\xed\x3e\x99\xf5\xbc\x66\x3f\x5a\x3b\xe1\xb2\x9b\xaa\x49\x96" "\xfb\x4b\x58\x08\x86\x5a\x89\x34\x88\x4a\xc6\xf8\x7c\xe2\x51\x01\x1e" "\x23\x75\xdc\xc1\x7c\x55\x6a\x9e\x8d\xbe\xa4\xe7\xe7\x68\xdc\xab\xa4" "\xb3\xa1\x7e\x31\xfd\x59\x53\x71\xff\x31\x51\x42\xb4\x79\x59\x72\x59" "\x3c\x87\xfa\x73\x8f\x12\x5e\x15\xb1\xbc\xbf\xc9\xb6\x60\xe4\x11\x28" "\xb0\xac\xc3\x6c\xee\x6b\x91\x44\x3f\x9a\x9a\xe8\xbb\x00\x53\x66\x60" "\xbb\xcd\xa3\xd7\x9d\x69\x90\x74\x29\xd0\xec\xd1\xdf\xf5\x27\x0c\xd5" "\x38\xfd\x0e\xab\xc6\x1e\xc0\xd3\xf3\x42\x99\xa7\xb4\x16\x2c\xac\xc6" "\xe4\x7e\x62\xcc\xcb\x07\x3d\x1b\xe6\x83\x7d\x0f\x38\x5b\xcc\xe1\x07" "\x51\x82\xed\x1d\xcf\xa4\x85\x1e\x70\xf4\x43\xc3\x1b\x1b\x4a\x6b\x09" "\x80\x2e\x9c\x06\xb1\x1a\x25\x4f\x2b\xdd\x10\x8d\xcd\x96\xdc\xea\x3c" "\x62\xdc\x54\x3b\x41\x64\x3a\x0c\xa0\xa2\xfa\x3b\xec\x5d\xd7\xf4\xc4" "\x0a\x48\x94\xee\xa0\x76\x21\x44\x1b\x0c\xaa\x35\x1c\x40\x6c\xa4\xdd" "\x36\x1a\x4e\x64\xf7\x88\x21\xb1\xe6\xf1\x8f\x5c\xac\x04\xa6\x0c\x9e" "\x60\x57\x04\x76\xba\xe8\x96\x55\xf1\x8f\xbb\x19\xa8\x25\xa8\x27\xbe" "\xe5\xf6\x25\xba\x2b\x9e\x73\x66\xc7\x0f\xcf\xa4\x13\x63\x25\xe9\xfc" "\x58\xd1\x6d\xa9\x8a\xd8\x31\xc2\xaa\x55\x63\x7a\x34\x15\x7f\xeb\xe2" "\x9e\xa3\x12\x4c\x51\x44\x24\xf9\x44\xa8\xe4\x2f\xa2\x29\x38\x58\x67" "\x6e\xe7\xc0\x7b\x77\x51\xcc\xe8\xaf\xad\xcd\xf2\xb8\xaf\xc4\x72\x73" "\xb7\xae\x3a\xfe\xf9\xa8\xfa\x36\x98\xd2\xa9\xd4\x30\x4f\x48\x2b\x87" "\x29\xa7\xce\x8e\x38\x54\x87\x2d\x3b\x62\xab\xa5\xdb\xc5\x89\xfa\x51" "\x5e\x12\x13\x00\xfd\xd0\x85\x6e\xd2\xc7\x50\x95\x58\x13\xc9\x91\x89" "\x54\x9c\xf9\x65\xa0\xa1\x40\xf8\x7e\xc7\x6b\x4a\x37\xf2\x20\x8a\x76" "\x4d\x92\x8b\xd4\x47\xa9\xa3\x83\xdc\x45\x15\x63\xe3\x88\xd3\x48\xb3" "\x3f\x5b\xfb\x58\x6c\xbf\xab\x3b\x19\x47\x3f\xb7\x43\x5c\xd3\x25\xa9" "\xce\xcd\x13\x67\xdc\x87\x31\xf5\xb4\xb5\xf4\xcc\x8c\xbc\xb0\xc2\xab" "\x6f\xd9\x7a\x41\xed\x76\x13\x5a\xf6\x56\x3e\xf6\x4b\xd2\x9e\xf1\xd3" "\xb7\x4f\x1d\x0a\x30\xe7\xdd\x9e\x1f\x39\xe7\x4f\xd3\x53\x88\x44\xbc" "\x2e\x15\x8b\x71\x30\x19\x48\x67\x33\x02\x22\x61\x18\x08\x88\xbb\x14" "\xa3\x08\x66\x5b\xbc\x16\x31\x17\x19\xfa\xb9\x75\x6e\x1a\x43\x09\x20" "\xe8\x3f\x12\x8f\xaf\xe3\x88\xf8\xed\xef\x0c\xae\x46\x67\x77\xf2\x04" "\x1c\x0c\x73\x01\x0f\xb7\x44\xc4\x61\xd6\xb0\x1a\xb9\xbc\x4c\x86\xed" "\x68\xff\x11\x7d\x04\xb2\xee\xe1\x7e\x6d\x12\xc6\xb9\xdc\xee\xd7\xf2" "\x9d\xea\xdf\xb9\x49\x5f\x23\x76\x31\x2f\x7b\xd7\x0e\x39\xa2\x0b\x42" "\x5a\xe3\x33\x9d\x2e\xa6\x2f\x47\xd7\x8f\xf1\x3d\x36\x6f\x29\x5d\x8d" "\x47\xa2\x03\x64\x0f\x78\x7c\x62\x7a\x22\x0a\x6c\x44\xd2\x3d\x86\xc4" "\x7c\xe6\x0e\x0e\xe9\x74\x36\x39\xc8\xe5\xab\x41\xa0\x27\x1d\x91\x80" "\xab\xe8\x46\x9b\x4b\xc3\xc8\x01\x50\x23\xc8\x6e\xb9\xcd\xef\x8b\x0d" "\xde\xbf\x3b\x86\x24\x44\x88\x28\x61\x5a\x73\x10\xfe\xd8\x71\x52\x88" "\xcf\xa0\x03\x8a\x06\x98\xeb\x58\xfc\x35\xb7\x6e\xa0\x6a\x82\x47\xd7" "\xc6\x9e\x71\xac\x14\x2b\x88\x61\x9b\xfe\x59\x68\x67\xf0\x20\x40\x14" "\x14\x60\x11\x52\x02\x76\x70\xed\xf6\x07\x1b\x54\x88\x59\x60\x88\x60" "\x14\xff\x4e\xa4\x12\xd9\x48\xf2\x50\x1e\x62\x13\x2e\x49\xe1\x4a\xb8" "\xf1\x77\x23\x11\x4c\xca\x8f\x91\xb4\x4b\xe6\xae\x34\x51\xb6\x54\x10" "\xc4\x6c\x30\x71\xf5\xae\x29\x80\xc3\xff\xe4\x2a\xb3\x9b\xf6\xa5\x8b" "\xb9\x29\x26\xd6\x4f\x00\xd9\x4c\x32\x64\x65\xc2\xf6\x9c\xb6\x4a\xbb" "\x3b\x0e\x8f\x3e\x6d\xc0\x71\x56\x8f\xca\xd9\x49\x11\x23\xbb\xb3\x34" "\x68\x56\x19\x14\xa3\x09\xf2\x31\x22\x39\xcb\x74\x25\x01\x50\x3b\x26" "\x64\x8a\x43\x2d\x8a\xaf\xe7\x0b\x22\xea\x11\xf0\xfd\xd4\x2b\x52\xce" "\x7b\xbe\x9b\xc5\xaa\xd9\xbb\xd0\x7a\xd7\x3c\x1a\x38\x65\x3e\x18\xc5" "\x2b\xf0\x39\x25\x2c\xe9\xc0\xd7\x6c\x80\xb6\xaf\x23\x2d\x95\xe4\x88" "\x2c\xbb\x08\xca\x73\xde\x1d\x90\xc5\xa0\x0b\x06\xc5\x16\x3f\xe6\x10" "\x9c\xad\xa8\xb9\x63\x4d\xee\x6b\x4e\x47\xd1\x8e\xe0\x43\x39\x6a\xe3" "\xc5\xcf\xe2\x8b\x44\x2f\xf3\x6b\x2b\x89\x7b\x30\xdd\xa0\x8d\x6b\x02" "\x5f\xab\xa7\xeb\x34\xf1\x36\x41\xd8\x25\xcd\xe6\xc7\xad\x13\x6f\x4c" "\x30\xca\xd7\x9c\x5c\xaf\x6d\x1c\xa7\x44\x61\x3f\x97\x47\x39\x10\x80" "\x2c\x4d\xcb\xac\x0f\xc0\xd1\x64\x27\x25\xf8\xab\xc6\x7a\x04\x21\x3d" "\xe4\x9a\xcf\xe4\x1a\x52\x0c\xc8\x00\xc0\x98\xa5\xa9\x25\x52\xc6\x28" "\x01\x54\xf8\xcc\x6c\x7e\x24\x7f\xe5\x70\xa9\xd9\x61\xc0\xd4\xb6\x91" "\x62\x95\xfa\xff\x56\x61\x2d\x73\x1a\x88\x94\x9a\xed\x90\x4d\x0e\xc1" "\xcf\x70\xa8\x49\xb9\x34\x65\x6d\xdc\x96\x25\x8d\xf9\x80\xae\x5d\x81" "\x13\xea\x1f\xda\x8c\x43\xcc\x66\x09\xe3\x27\x10\x32\xd0\x17\xf8\x37" "\x32\x4e\x68\x85\x94\xab\xb6\xbd\x29\x2e\xbc\xac\x00\x61\x40\xc6\xe4" "\x1c\x46\xf4\x38\x4d\x8a\x59\xc6\x85\xaa\x7e\x88\xa3\x3a\x8c\xc2\x6b" "\x40\xac\xf1\x76\x2f\xac\x10\x00\x13\xab\xa6\x26\x93\x05\x3a\x86\x0f" "\xe4\xac\xd6\xb5\xbf\x63\x4e\x29\xea\xbe\xe1\x5c\x03\x77\x78\xcd\xc8" "\xa9\xb4\xe9\x27\x14\x39\x98\x06\x3f\xe4\x73\xbb\xcc\x2f\xa1\x96\xf3" "\x40\x71\x7f\x6a\xa1\x23\xf9\xd6\x4d\x11\x26\xf9\x6e\xc4\x27\xbd\xeb" "\xc3\x8b\x8f\x27\x26\x76\x13\xa8\x47\x3d\x1e\xc3\x2b\xca\x22\xf3\xb4" "\x42\xe8\x46\x13\xba\xc0\x07\x01\xa5\xcd\x95\xbe\x8a\xc1\xd4\x2b\x99" "\xa9\x8f\xf2\x7f\x7a\x25\x2f\x6d\xb0\x02\x82\x5b\x2e\x69\xb0\x77\x7f" "\xc5\xad\x2c\x52\xbe\x66\x1b\xb2\xee\xe4\xca\x26\xbb\x7e\x56\x48\xfa" "\xf4\x63\x87\x93\x92\xbb\x02\x71\x8b\x44\xb7\x79\x56\xaf\xc1\x9f\x6c" "\x01\xad\x9c\x20\x07\xe3\xc1\xc5\x95\xf0\x4b\xa6\x83\x68\x60\xd9\xea" "\x6c\x89\x7d\x59\x26\xdf\x8e\x23\x58\x56\xc3\x31\xa9\x02\xc4\x5f\xbc" "\x2a\x4e\xed\xf7\x35\x0d\xd0\xcd\xde\x9c\xcf\x6c\x60\x8b\x01\xf9\x23" "\xed\x58\xd2\x44\x47\x13\x9c\xcd\x5d\xfd\xd7\x39\xa2\x5a\x92\x01\x5f" "\xf8\x83\xd8\x16\xe2\xa7\x98\x55\xbf\x6a\x6b\x87\x24\x32\x1e\xbb\x0a" "\x10\x7a\x41\xb8\xa4\xf6\xbe\xe5\x07\x0a\x78\x75\x9e\x78\x85\x51\x12" "\xae\xab\xd8\xa9\x84\x34\x38\x8d\x18\x3b\xff\x8e\x4d\x0f\x6a\xfe\xb7" "\x19\x69\x2d\xb5\x76\x13\xd7\xc3\x9b\x0a\x50\x31\xdf\xbd\x2c\x11\xd5" "\x0f\xbe\xf9\x09\x1a\x25\x26\x45\xc5\xa0\x08\x9c\x98\x11\x07\xb6\x3a" "\x88\x1a\x0a\x78\xf1\xee\x82\xaa\x29\xfb\x98\xa7\x24\x22\x49\xb5\x3a" "\xfc\x32\xa3\xa1\xa3\x6d\x97\x1e\xd8\x9d\x4c\x4c\x5e\xf8\x08\x55\x47" "\x9a\xab\x96\xb2\x11\x38\x66\x10\x7c\x73\x8f\xed\x3f\xea\x66\xe8\x9d" "\x8d\xfd\xb8\xc0\xeb\xf7\xdb\x3f\x67\xe3\xe6\x5a\xe9\x7a\xfa\xf9\x57" "\x83\x69\x66\x5f\x00\x30\xd5\x52\x9a\x46\xe6\x0b\x88\xe9\x72\x7b\xeb" "\x5e\xe2\x3e\xf1\xf2\xca\x6d\xe1\xc8\x2e\xcb\xdb\xc2\x68\x26\x0f\xac" "\x47\xe3\xce\xd6\xdb\x63\x49\xe2\xb5\xc5\xaf\x9b\x3e\x26\x91\x4d\xe4" "\x9b\xf4\x18\xc7\xa9\x83\x13\x9e\x66\x23\x5b\x4d\x06\x2f\x10\x4c\x0d" "\xdc\xa3\xcb\x55\x7f\xf4\xc5\x55\xd0\x6b\xc6\x10\x62\x73\xda\x60\xbb" "\x6b\x97\x6b\x94\x3c\x96\x4c\x67\x15\x17\xac\x4f\x99\xae\x57\xad\x09" "\xe4\xbe\xbd\xf9\x6a\x40\xbe\x63\x48\x61\x1e\x14\x1d\x3c\x29\x76\x1c" "\xb2\x04\x4b\xd8\xd6\x7b\x4c\x41\x7a\x12\x30\x94\x88\x79\x2a\xea\x27" "\x88\x35\xfa\x26\x29\x4d\xd0\x20\xa6\xdb\xc1\x09\xd7\x33\x73\x84\xa7" "\x74\xdc\x1e\xf2\x31\x19\xce\x26\x1d\x65\x4a\xc0\x5e\xbd\xb7\xb4\xb7" "\xec\x7f\xd6\x0a\x4b\x9b\xa0\xd0\x44\x4a\x67\xd2\x44\xca\xdc\x07\x9d" "\x19\xdc\x24\x03\xed\x41\x35\x58\x15\xdd\x98\x3f\xce\xe6\x79\x8c\x4a" "\xe6\x3f\xd7\x33\xa6\xae\x9b\x83\x0b\x6a\xc1\x7d\xc3\x6a\x17\x82\x03" "\xc5\x55\xf8\x28\x4c\x22\xf5\x3b\x59\x65\x60\xb8\x8d\x0a\xea\x7e\x84" "\xf4\xab\xab\xa9\x5d\xb8\x5e\xfa\x15\xb7\xf9\x9f\xd1\xec\xc1\x1c\xa8" "\x01\xdc\x26\xa2\x7e\xcc\x54\xde\xb7\xdf\xb0\xae\x03\x9d\x64\x21\x0e" "\x91\x1c\x70\xa6\x44\x73\xec\xa1\x82\x3b\xdc\xd9\x4b\xf9\x68\xdc\x1d" "\x0e\x57\xb9\x8b\x03\x19\xc4\xdb\xa5\xf0\xec\xb6\x9f\x4e\xf8\x4e\x36" "\x22\x5a\x8b\x16\x13\xfa\x27\x75\xad\xd8\xb8\x63\xdd\x26\x6c\xa5\x08" "\xa5\xa2\xf5\xbd\x95\x3e\x42\x9e\x5f\x3a\x4e\xf5\xf6\x95\x21\x90\xc6" "\x33\x0b\x11\x7c\x57\x02\x50\xf4\xbf\x81\xe3\x45\xd5\x0f\x9f\x2d\x1f" "\x22\x87\x4a\x59\x79\x07\xbc\x08\xe5\x6b\x60\xa6\x44\xfc\x35\xeb\x3f" "\xc4\xe6\x2f\x48\x3e\x21\xb9\x14\x13\x09\x01\x8a\x15\xcb\xd8\x49\x7e" "\xff\x73\xc9\xe1\xc9\x22\x21\xd0\xaa\xdb\xeb\x1a\x01\x12\xf7\x84\x11" "\x06\x16\x58\x52\x7d\xed\x7e\x79\x23\x6b\x3a\x7d\x34\x25\x20\x6a\xba" "\xb5\x44\xaa\xfc\x8e\x01\x85\x2e\xb2\x1e\x5f\x6e\xad\xb6\x8f\xfc\xfc" "\xca\x88\x4c\x34\x07\x23\xd5\x42\x2a\xd7\x4b\xc7\xcb\xc8\xa2\xf3\xe9" "\x45\xb1\x32\xe4\x6d\x59\xc9\x5a\x8a\x33\x99\xa3\x50\x49\x27\x32\x30" "\x41\xa4\x25\xde\x3e\x1f\x23\x39\xfb\x90\xbb\xd3\x2c\x6e\x42\xc1\x06" "\x37\xfd\xe3\x11\x64\x4b\xb0\x42\x4a\xc4\x63\x17\xd2\xf7\x38\x9f\xf5" "\x98\xcb\x6f\x47\xb3\xad\xe9\x3e\xb7\x42\xc8\xcf\xaf\x90\xe5\xca\x36" "\xcd\x27\x21\xec\x43\x87\x68\xec\xef\xbe\x95\xeb\x37\x1e\xa8\xdc\x13" "\xfc\x14\xc6\x99\xa1\xdc\x1b\x10\xc4\xcb\xf1\x16\xd6\x7e\x9c\x0a\x80" "\x8a\xa6\x76\x92\x29\x50\x65\x22\xd4\xad\x45\x33\x51\x4a\xe4\xaa\x5f" "\x6e\x88\x6b\x08\x89\xa3\xe7\x66\x5f\x13\xc0\x55\xf1\xdb\xdf\x2d\x90" "\xff\x80\xe2\x5d\xa0\x7b\x99\x2b\x19\x59\x34\xa6\x79\x60\xfc\x80\x90" "\xf7\x08\x5d\xac\xc2\x3e\x0e\xd8\xdd\x31\xfd\xce\xa3\xb8\x4e\x91\x1f" "\xea\x90\x68\x12\x88\x44\xe3\x7f\x71\x0c\x7b\x0c\xee\x27\xcb\x0b\xc6" "\xa3\x0e\xc8\xe4\x0e\xee\xbd\xf8\x3b\xa4\x57\xe6\x26\x09\xe3\xa0\xf3" "\x01\x13\x12\x2f\x04\x24\x6f\x28\xff\xbb\x27\xf8\xf6\xa5\xde\x4c\x04" "\x06\xcc\x6c\x29\xbe\x43\xfd\xe1\xec\xfd\xcb\xf6\xe8\xcc\x90\xb5\xa7" "\x51\x02\xac\xc0\x14\x3b\x50\x1e\xdd\x09\xcc\x68\x52\x6c\x74\x89\x66" "\x3c\x88\xec\x94\x96\x25\x37\xf3\x7f\x53\x4d\x67\x79\xcf\x13\x7a\xc9" "\x64\x91\xf3\xad\xf6\x9d\xed\x51\xd4\xb5\x1d\xc1\x2b\x85\x44\x4e\x5b" "\x7e\x11\xc5\xcc\xba\xff\x28\xfa\x6c\x6e\x15\x62\x48\x08\x8d\x35\xf2" "\x1f\x05\x24\x00\x76\xaf\x0c\x0e\xff\x02\x78\x1a\x03\x51\xce\x42\xeb" "\x91\x39\x9c\xb4\x91\x1b\x80\x2e\x08\x94\x49\x65\xe9\x8b\xb4\xe9\xb7" "\x78\x03\x80\x36\xca\xdb\xc6\x37\xd2\x69\x4b\xe0\xd1\x76\xf5\xdb\x83" "\xc1\x97\x98\xd2\x04\x62\x59\xde\x7a\xdc\x4d\xf4\xdb\x2c\x77\xc5\x56" "\xa2\x7f\xe1\xcf\xf7\x89\x08\xf3\x2d\xbe\x2c\xca\x28\xfc\xf6\x8e\x07" "\x17\xcd\x82\x81\xbf\x83\x42\xb9\x52\x20\x30\x68\x57\xcd\x02\x81\xab" "\x5c\x53\x5e\x99\x3c\x51\x29\x9d\xc9\x7d\x7b\x42\x37\x95\xd0\xa2\xc5" "\x04\xe3\xaa\xe0\xe8\x9f\x18\x5a\xd1\x46\x0e\x1a\xdd\xfb\x72\xd9\x94" "\x38\xae\x6b\x0e\x02\x74\xfb\x82\xcd\x69\x5b\xb1\x2e\x48\xb3\xe1\x1f" "\xc1\xca\x83\x75\xbd\xc6\x52\x9a\x1f\xa7\x4a\x5f\x8b\xc9\xff\xa0\x36" "\x32\x43\xb2\x71\x6a\x52\x1a\x66\xbd\x21\x4b\xed\x2b\x02\xb6\x5a\xa4" "\x06\x56\xc0\x2b\xaa\xa2\x89\xd2\xf1\x8b\x2a\xeb\x19\x70\x16\xea\x2e" "\xae\x0d\x0a\x92\x2b\x74\xe2\x94\x1a\x12\xf4\x0c\x2d\x38\x9c\xbd\xc8" "\x87\xf6\x9d\xff\x9e\x97\xb0\x4d\xbe\x58\x9d\xcb\x67\xed\x99\xf5\x44" "\xec\x86\x62\x9d\x88\xe1\xb8\xee\x64\xcb\x39\x2f\xc8\x42\xde\x96\xcb" "\x48\xfd\x8a\xe8\x37\xf5\x7d\x5d\x20\x8d\xd9\xd0\x18\x8d\xb3\x89\xc3" "\xf3\xa5\x34\xd6\x1f\xd5\x1d\xba\xc5\x8f\xfe\x74\xe5\x8c\x9d\x02\x49" "\x0e\x66\x7c\xc6\x8b\xdd\xe3\x4b\xf6\xaa\x87\x33\xab\x9a\xbe\x98\x57" "\x10\x41\x5d\x0b\x6a\x63\x7f\x17\x81\xfa\x9b\x7b\x21\x76\x9c\xd4\x1a" "\xa2\xe4\xd0\x93\x62\xbf\x36\x86\x4d\xbd\x9d\x54\x2b\xd9\x0f\x88\x2a" "\xa2\x52\xc1\x2c\x93\x5a\xa1\xda\xea\x65\x5d\x21\x62\xf4\x6c\x3d\x42" "\xb5\x01\x0b\x3a\xc3\x88\x52\xf2\x49\x38\xeb\x66\x35\x7e\xee\xee\xc5" "\x33\xc5\x3f\x4e\x58\xd2\x3d\x61\xbb\x71\x5a\x8e\x3e\x4c\x5b\x6a\x44" "\xa1\x1f\xf3\x6e\xab\xd9\xb6\xee\xd9\x6e\x50\x8f\xa4\x83\x72\x04\x02" "\xe4\x9e\xd1\x40\xbc\x47\xa8\x4d\xcd\xb2\x13\xba\x1f\xb7\xb4\xbb\x6b" "\xc3\xa8\x31\xe3\x89\x7d\x1c\x43\x76\xfe\xd4\xda\x5e\x0c\xab\x5d\x41" "\xb2\xcc\x6f\xcb\xcb\x9e\xf8\x93\xc6\xb9\xa2\xdb\xe5\x34\x60\x62\x1c" "\xe3\x15\x2e\x9e\x5c\xa8\x71\x2c\x8b\x3f\x1c\x4a\xd5\xa9\xd9\x28\x73" "\x73\x91\x8d\x7b\x9f\xa7\x80\xd0\xbc\xe6\x1e\xbb\xaf\x3b\x01\x81\xcb" "\xb6\x45\xee\xd8\xa4\xf5\x7d\xd6\x57\xa1\xf9\x90\xcd\x7b\xff\xc9\xf9" "\x69\x5b\xae\x62\x58\xb0\xda\xaf\x94\x42\x17\x3d\x35\x95\xae\x08\x55" "\x0e\x46\xde\x76\xe6\x03\xec\x65\x29\xb0\x42\x80\x21\x1a\x39\x73\x9e" "\xfe\x44\xc3\x11\xe0\xec\x3d\x70\x26\x39\x19\x64\xb1\x6e\x79\x32\x99" "\x6e\x45\x5a\xfb\x1a\xd8\x45\x5c\x1b\x0a\x25\x51\x97\x3c\x8e\x6b\x8f" "\xf5\xfe\x93\x32\xc0\x88\x25\xaa\x9c\xc5\x48\xf7\xf9\x33\x3c\x69\x8e" "\x1a\xcb\xdf\x3d\x02\x78\x22\x7f\x8e\xdb\xf2\x90\x74\x30\xfe\x10\xfe" "\xda\xae\x61\xc1\x2e\x0c\x75\xa5\x2c\xb9\xa7\x49\xb3\x9b\x90\x20\xcf" "\x5d\x36\x30\x14\xce\x0d\xee\x3b\x7e\xfd\x22\xa3\xdf\x39\xff\x25\xb9" "\xa1\xf9\xfd\x12\xb7\xa3\xb2\x0f\xd8\xb1\x4d\xde\x50\xd5\xe4\x2d\x6e" "\xa6\xfb\xfe\x6e\x4b\xf9\xcd\x92\x1a\x50\x34\xa7\x31\x23\x64\x42\xfb" "\x8c\xed\x92\xfe\xff\xe8\x11\xd0\x4a\xc3\x40\x1a\xd2\xed\x3a\x35\x7b" "\xee\x06\x62\x84\x04\xb9\xe5\x73\x10\x78\x80\x80\x37\xb2\x6a\x45\x99" "\x93\xdc\x69\x38\x49\x47\xe1\x30\x29\x96\x5c\x67\xe0\xc8\xde\x40\x4b" "\xbc\xfb\x6f\x00\xe4\x6b\xc2\x4e\x28\xfd\x18\xb1\x83\x84\x15\xe7\x2b" "\xe7\x6f\x13\x5b\xe4\xfa\x58\xaf\x19\x6f\xc7\x3e\x7c\x7a\xbe\x76\x3e" "\x92\x08\xdf\x0d\x7f\xee\x54\x09\xa0\x57\x42\x30\xc3\x11\x2d\x71\x33" "\x4c\x83\xc2\x6c\x83\xa4\x9e\x06\xb2\x4a\x9d\xbc\x44\x8b\x56\xda\xb3" "\xf8\x97\x19\xcf\x02\x10\xee\x05\xd6\x3f\x9b\x71\x2f\x2f\x25\xcc\x9f" "\x12\xe1\xd9\xde\x23\xd4\xf9\x6a\xa8\xc2\xf6\xe1\xec\xa7\x0b\x79\xd0" "\x30\x1f\x92\x18\x54\xb8\xa4\xad\x4a\xb4\xff\x69\x3d\x1e\x9f\x2c\xf4" "\x70\xad\xed\xf8\xfd\xfa\xb7\xed\xed\x7b\x5c\x13\x40\xf7\xbe\x24\xa0" "\x84\x97\x29\xff\xcb\xdc\x49\x3a\x0c\x42\x65\xb6\x84\x19\x64\xd4\x30" "\xd4\xf8\x68\x26\x51\x2d\x81\x5b\x31\xc9\xbc\xf0\x57\x1a\x18\x56\xab" "\xad\x40\x81\x27\xbe\x56\x40\x99\xd6\x3c\x96\x79\xb4\x20\x96\x0a\x8f" "\x1d\x20\x10\x7e\x0c\x53\x1e\xd3\x86\x74\x86\x67\x81\x35\xa6\x78\x90" "\x2d\xdd\x81\x4c\x2b\xe9\x4e\xf8\x6b\x29\xd9\x5f\x49\x84\xe5\x90\xd6" "\x56\x2d\xc8\x7d\x63\x5d\x0a\x74\xc4\xb6\x01\x82\xd0\xd4\xf9\x74\xf9" "\x03\x41\xf8\xab\xbc\xef\x20\x1b\xf2\xff\x66\x45\xb3\xfd\xf1\xb9\x9d" "\x6b\xd1\x3d\x25\xaa\xa3\xd5\x1f\x7d\x84\x00\xa0\x09\xff\xbb\x4d\xeb" "\x24\x72\xe9\x49\x6f\x34\xfa\x66\xd2\x9b\x01\x1b\x96\x22\x55\x56\xa3" "\x72\x8f\xbc\xe1\x0d\xf8\xb5\x78\x67\xcd\x2b\x33\x01\x25\xac\xa1\x00" "\xbb\xae\x4b\x55\x0b\x54\xc9\xb3\x15\x4c\xb4\x84\xe2\x8f\x81\xf9\x3d" "\xd2\x45\x17\x89\x26\x25\x80\x83\x3b\x12\xad\xba\x9f\x5a\xba\xf4\x36" "\x5b\x69\xc4\xa4\x0e\x1f\x5b\xc3\xaf\xaf\x68\x0e\xe5\xc0\xbd\xa0\x6b" "\x46\x93\xb1\x95\xc4\x42\x8f\xa9\xa5\xa9\x43\xc1\x97\x31\x95\xe4\x1d" "\xc6\xae\xf6\xea\xba\x4d\x48\x72\x28\x4a\x7d\xf9\xd2\x99\xcc\x01\x85" "\xa4\x4b\x5d\x81\x3b\x15\x38\xec\x83\x9b\x83\xb1\x22\x86\xd5\x35\x0a" "\xa4\x70\xfc\x52\xb0\x0e\x5d\x6a\x55\x45\xb5\x03\xb5\xc8\xdd\x76\xb5" "\x1c\x11\x68\x8e\x5f\x6a\x92\x33\xc9\xab\xfc\x55\x5f\x9d\x74\x13\x71" "\x84\xf3\x9d\x9c\x31\xe4\xa7\xd7\xd6\x65\xa7\x25\x6e\xb2\xb4\xc9\xcb" "\x17\x42\xca\xad\x44\x54\x4a\x18\x07\xc2\xde\x14\x81\x4d\x14\xe4\x7b" "\x09\x4f\x5c\x10\x27\x1e\x79\xc2\x29\x6a\x3a\xd8\x3a\xf7\xe6\xa7\xbf" "\xe2\xcc\xd2\xf4\x36\x0b\xa6\xbd\x10\x55\xd7\xd1\xe0\x06\x04\x0d\x43" "\x06\xf2\x7d\x76\xa9\xde\x93\xff\x54\xf1\x24\x20\xe6\xad\xfa\x03\x70" "\x40\x1e\xe0\x15\xd6\xf7\x81\x26\xf5\x62\xb2\x6e\x47\x05\xfe\x29\x99" "\xe5\xf1\x04\x04\x99\xa4\xdb\x2c\x8a\x37\xdd\xfd\xa7\x83\xb4\x54\x55" "\x8c\x84\x60\x06\xa4\x4d\x13\x87\x65\xa1\x03\xa6\x22\x07\x87\x30\xa5" "\xba\xa1\x22\x5c\xce\x8b\xd5\x01\x65\x80\x91\x4e\x18\xbf\xf8\xba\x42" "\x84\xb3\x75\x40\x20\x82\x8d\x60\x4b\x19\x52\xf8\x76\x9a\xc9\xba\xd8" "\xa1\x1d\xb8\xed\xa1\x27\xd0\xde\x47\xc4\x96\x93\xf6\x54\xd4\x18\x85" "\x65\x9e\x43\xca\x05\x8c\x80\x0c\x23\x64\x20\x81\x53\xa0\x11\xa3\x64" "\x0c\x1b\xb7\x96\x41\xfc\x7d\x0b\x84\x56\xbc\xb1\x45\x56\x5b\x38\x85" "\x29\x43\x51\x0f\xcb\xd8\xd2\x7d\x78\xd9\x75\x36\xaa\xb9\x9f\xa5\x37" "\x1b\x92\x76\xd3\x92\x4c\x80\x8c\x9a\x7a\x11\x54\x16\x96\xa2\xbb\x9a" "\x89\x16\x7c\x11\x51\x56\x4c\x7e\xda\xd5\x24\xcc\x85\x7e\x30\x8c\x68" "\x29\x29\xa0\xe7\x51\x31\x4e\xe5\xf5\x75\x91\x9b\x96\x1b\x9f\xac\xc6" "\xc5\xce\x30\xb8\x29\xa0\x68\x8b\x10\xc5\xe7\x7f\x99\x18\x76\x14\xb0" "\x58\x52\x8a\x68\x52\x8c\xd4\xfd\xdc\x8e\x3f\x6a\xac\x32\x60\x0c\xf8" "\xed\x64\x27\x04\xbe\xf2\xfb\xfd\xd7\x28\xab\x82\x7f\x21\x88\x2b\xcc" "\x99\x46\x8b\x54\xb2\x40\x58\x47\x20\xeb\xfb\xb4\x3d\x06\xbe\x79\x10" "\xc4\x5f\xf2\x66\x8a\x5c\x5e\x03\x5b\x9c\xdb\x43\x9c\x25\x86\x4a\x55" "\x82\x33\xea\x70\x2e\x73\x04\x25\xb1\x6f\xc8\xb3\x54\xd4\x4c\x31\xb7" "\xb2\x97\xf9\x25\xbd\xa6\xd0\xe3\x5c\x5e\x16\xfc\xaa\x63\xff\x32\xed" "\x95\xdb\xbd\x14\x5b\x35\xd1\x89\xfe\x57\x39\x2e\xba\xe9\xfc\x1d\x64" "\xe6\x5a\xd3\xf3\xc5\x20\x23\x96\x60\x07\x67\x3e\x1c\xe8\x84\x12\x2a" "\x0d\x9c\x84\x8b\x88\xa3\x42\x67\x00\x9d\x1a\x3a\x06\x86\x11\xb5\x25" "\x7e\x1b\x16\xaa\x98\x30\xbf\x82\x31\xd0\x06\x21\x3d\x02\xeb\x67\xae" "\xb8\xd6\xce\xcd\xe2\xf5\x81\x60\x9a\x06\x4f\xf9\x83\x8b\x6d\xe5\x5e" "\xab\xa9\xc6\x8d\x21\x79\x92\x71\xd7\x33\xce\xac\x91\x14\x7e\x43\xb4" "\x57\x76\x56\x25\x82\xfa\x5a\x65\x4d\x57\x1b\x7d\x9b\xaa\x47\x38\x7f" "\xdc\x19\xbf\x22\xba\x94\x18\xe4\xb0\x70\xb9\x42\x92\x34\x75\x1a\x46" "\xb5\x72\x9b\xc9\x32\xce\x2b\x20\x7e\xc2\x76\x16\x40\xe2\x79\x21\xe7" "\xdb\xfe\xbb\xb3\x53\xac\x52\x8a\x11\xe5\xfa\xf1\x23\x09\x15\xc8\xc4" "\xbe\xb6\xbd\xdf\xae\x08\x8f\x89\xc6\xb9\x04\xf4\x87\xbe\x9a\xef\x6c" "\x63\x7f\x97\xf1\xaf\xba\x47\x5b\x9b\x4c\x3c\x1d\x07\x72\xbe\x25\x5d" "\xb0\x41\x1e\x61\xb9\x59\x66\xc6\xfa\xd4\xb4\xc6\xcb\x7f\xd1\x6b\xbe" "\x65\x0f\x78\xf9\x28\x68\x71\xe0\x50\x6f\x81\x57\x4d\xec\x82\x97\x71" "\x73\xfb\xf5\x13\xda\x68\x4b\x3e\x1d\x97\x17\x87\x96\x21\xa7\x40\x68" "\xc3\x59\x55\x09\x7a\x94\x77\xb0\xea\x60\x6c\x5a\x02\x9c\xe1\x75\xdc" "\xcc\x28\xda\x11\x06\x80\x55\xb8\x36\xf9\x5b\xaa\x6f\xd8\xc9\x12\xf4" "\x5c\x67\x81\xc9\x55\x78\x8f\x6b\x9b\x5e\x30\x00\x23\x0e\xec\x88\xac" "\xce\xe9\xc8\x0e\xc2\x65\xa1\xea\xeb\xb5\xf1\x70\xc6\x8a\xe6\x18\x5a" "\x73\x91\xa3\x7c\x4c\x9b\xd7\xe1\x89\xb8\x00\xac\xdb\xde\x24\x47\x35" "\x3a\x8e\xd7\x34\x4d\x74\x43\x99\x1f\x93\xc0\x91\x7e\x37\x00\xae\x05" "\xe1\x38\x09\x12\xa6\x74\x71\x08\x0c\xa1\xed\xa6\x4e\xaf\xcc\x6b\xe5" "\xdb\x27\x55\x9e\xea\x18\x8e\x51\xba\x22\x6f\xa0\xe3\x39\xed\x12\x3d" "\x0b\x5d\x25\xe2\x87\xdb\x16\x6c\x84\xc2\x14\x1d\x4f\xad\xec\x0c\x5b" "\x43\x33\x7e\x20\x20\xee\x80\x71\x77\xda\xfa\xfc\x3f\x83\x34\x89\xec" "\xbf\xad\x7b\x34\x8c\xc9\xe3\xfc\x44\xb1\x8a\x32\x0d\xb5\x7f\xe8\x5b" "\x11\x3e\x42\x57\x59\xc0\x5c\xa5\x1f\x69\x74\x9e\x7d\x9d\x3b\xab\x40" "\xc2\xb0\xfe\x72\xc6\xd4\x87\xcd\xda\xcb\xd8\xa4\x47\x30\x13\xa6\x76" "\x8f\xfe\x27\x14\xd6\x4a\xf5\xfc\xe2\x99\x80\x7a\x8c\x9a\xb0\x89\x94" "\x5e\xcd\x9a\x88\xbe\x0f\xe7\x0b\xf9\xc6\x84\x31\xaf\xa0\x76\xea\xea" "\xfe\x47\xf9\xd1\xa2\x19\xd2\xf8\x70\x7d\xa3\x0f\x74\xfb\x48\xac\xff" "\x5b\xbf\x56\x2d\x31\x26\x17\xf7\xd2\x72\x8c\x38\xf4\x48\x28\x36\x28" "\x1c\x24\x70\xfb\xfd\x01\x35\x92\xbe\xf4\x72\x6c\x6e\xce\xca\x30\x9c" "\x51\xba\x6b\xdc\x65\x31\xbc\x2c\x90\x22\xa9\x86\x82\x56\xf8\x5c\xb7" "\x20\xd2\x0e\x79\x7e\x8a\x19\xf6\xbf\x37\xe7\xa9\x22\x5e\x83\x0c\xd5" "\x00\x43\x75\xff\xdb\x63\x98\x81\x45\x88\xeb\xee\x41\xb7\x9b\x39\xa3" "\x6a\x0c\x17\xd6\x8c\x86\xa3\xfd\x82\x1c\xb1\x24\x78\xd9\x0a\xf4\x73" "\x26\x04\xce\x6a\x19\x0e\xb2\x8e\xf0\x91\xb4\x18\xb4\xea\x33\x58\xf3" "\x89\x1e\x8f\x55\x3b\x05\x53\x94\xd7\xcb\xd7\x95\x1f\xfe\x50\x98\xab" "\x6d\xcb\xdf\x56\xb3\x8d\xfc\x53\x6e\x6f\x29\xc2\xd5\x26\x7c\xb9\xee" "\x50\xc4\x94\x19\x26\x6f\xe8\x04\xfc\xe5\xbf\x59\xa7\xe9\x4a\xc1\xab" "\x65\x52\x1f\x52\x67\x5a\x76\x75\x11\xc2\xf5\x3f\x89\x83\x0c\xa5\x6a" "\x55\x6c\xa4\x90\xaf\x74\x3d\xf8\x50\x67\xa1\xf4\x7b\x97\x5c\x5d\x66" "\xd5\xda\x94\xae\xe3\x7f\x17\x19\x02\x4f\xe5\x1e\x5a\xb9\xcc\xdd\xd9" "\x45\xbb\x1f\xa5\xd6\x4d\x61\x35\xde\x5b\xba\x68\x56\x8a\x56\x63\xdd" "\x41\xb1\x58\xab\x6d\xb9\x01\x0a\x14\x0e\x8e\x49\xef\x65\x5d\x55\x99" "\xf2\x8d\xd1\xbf\x8b\xa6\x0e\x5a\xb6\x0b\x6d\x0f\x73\xf4\x93\x3a\x5c" "\xba\xa3\x1a\xf2\x79\x6d\x44\x1e\x69\x91\x97\xea\xe9\x36\x67\x89\xef" "\x82\x82\xea\x6a\xcf\xb2\xc8\x01\x12\x90\x60\x31\xd1\x7d\x46\xc3\x59" "\x05\xc3\x9b\xbb\x4c\xe6\x88\x09\x18\x12\xba\x1b\xf9\x7e\x4c\x0c\x37" "\x1f\x6c\x10\x2c\x11\x95\x12\xaf\x17\x66\x78\x50\x6c\x7b\xb3\x8d\x87" "\x6a\x78\xf4\x60\x60\x47\xbd\x9a\x1e\x27\xfe\xc8\xba\x6a\x91\xad\x3f" "\x24\xbf\xc4\x4e\xcf\xe7\x30\x12\xd5\x4c\x2e\xa6\x81\xdf\x5a\xd3\x4a" "\xeb\xb5\x70\x6a\xc9\x4a\x0f\xd5\x9c\xdd\x1a\x60\xe7\x9e\xb3\x41\x1a" "\x58\x2b\x08\x7a\x0b\x2c\x75\x19\x1f\xbe\xe4\x32\x09\xb1\xa1\xcd\xe5" "\x47\x45\xad\x69\x0f\xb3\x39\xd8\x31\x93\xb7\x5f\xfd\x64\xfd\xb0\x06" "\x63\x94\x5d\xb3\xac\xe6\x01\x66\x3b\xfd\x93\xc4\x3b\xdf\xf2\x5c\x68" "\x1f\xd7\x5a\x2c\xf3\x55\x01\xc4\x24\xdd\x2e\xda\x1a\xb1\xd8\xaa\x8f" "\x83\xe3\xbd\x5e\xb2\x1f\x15\x20\x31\x3d\x7a\xdf\x00\xd9\xbc\x3f\xe5" "\x41\xeb\x46\x18\x70\xf7\x9c\x66\xc7\xee\x5b\x41\x62\x8d\x37\xec\xfd" "\xc7\xc5\x2c\x97\x80\xd1\x49\xa0\xb9\x13\xe4\xa7\x27\x04\x05\x8b\xf0" "\xa7\x24\xae\x9c\x5c\xf8\xeb\x0e\xc0\x94\xf7\xe9\x5a\x2e\xa8\xb5\xaf" "\x59\x4f\x33\xf1\x28\xff\x45\x8b\xf7\xf2\xb7\xad\xd2\x23\xf2\x05\x00" "\x30\x41\x71\xf5\xbd\x51\x12\x8b\x4e\x7d\x37\x0e\x7a\xe8\x5d\x7b\x60" "\x3a\x77\x7f\xcc\x04\x50\x2d\x55\x9b\xc2\x1a\xf5\x90\x9f\x17\xce\x82" "\x69\xec\xce\x94\x81\xd0\x18\x38\xa9\x8e\xfd\xa4\x19\x41\x77\x1d\xae" "\x50\xf2\x64\x81\xa9\xb5\xa4\x87\xab\x60\x12\x77\xab\x2b\xd2\xe0\xbe" "\xad\x81\x6f\xc6\xd2\xed\x80\xb1\xe3\x46\x5d\x26\xe5\xdf\xda\x8c\xab" "\x41\x59\x51\x82\x42\x42\x53\x9e\xe0\xa0\x7c\xcb\xf8\x3b\x4b\x36\x39" "\x7b\xa8\xe2\x00\x8c\x72\xd0\x91\x2c\x95\x3a\xd1\x81\xb9\xad\x2d\xbf" "\xa5\x71\x21\xc7\xb1\xf2\xd5\x98\x77\xa2\xca\xba\x33\x4d\x26\xa0\xa8" "\x48\xdf\xc6\xf2\xf2\xfb\xa2\x7b\x8f\xcd\xcc\x5b\xc9\x09\x7b\xd3\x3d" "\x8d\x06\x91\xe0\xd0\x5e\x0b\x79\x40\x46\xf1\x07\xea\x3f\xae\x5d\x76" "\x76\xd1\x65\x4b\xbd\xa8\x6d\xb6\xaf\x57\x36\x21\x64\x38\x40\x2e\xe5" "\x94\xd6\x77\x94\x2a\x8a\xb4\x34\x1e\x82\xd6\x26\x4c\xcb\xb8\x13\xf2" "\x72\x3e\x3e\xb5\x88\x9a\xba\x72\x8c\x43\xa7\x4a\x91\x26\x22\x51\x13" "\x6d\xaf\xc9\x29\x7c\x40\x2b\xf0\x89\x03\xd4\x8f\x0d\x7a\x24\x58\xf2" "\x4b\x1d\x99\xbf\x5f\x51\x37\x74\x92\xcc\x39\x62\x3f\xc6\xd2\x38\x65" "\x24\x96\x47\x83\x59\xca\xf3\xc1\x23\x54\x50\x1d\x82\xac\xb8\xa0\xe9" "\x80\x48\x5a\x73\x45\xa3\x70\x6c\x44\x1a\x5a\x11\x53\x36\x08\x03\x51" "\xad\x9c\xad\x5e\x28\xbf\xb8\x83\xe0\xf2\x25\xf7\x36\x41\xf7\xc2\x3c" "\x3b\x6a\xf7\xe3\xa3\x10\x19\x07\x9d\x07\xe4\x96\x97\xa7\x12\x37\xa8" "\x55\x5e\x4c\x1b\x8c\x16\xc5\x18\x7b\x3e\x9a\x6e\x31\x4e\x46\xc4\x59" "\x2c\xf1\x9f\xd9\x57\x6a\xd8\x6a\xe8\x4b\xd0\x4c\xa8\x68\xca\x45\x5c" "\x5d\x09\x5a\x64\x13\xa3\x73\x25\x1c\x27\x64\xd6\xd0\xbb\xd7\x06\x82" "\x20\x03\xb1\xfa\x13\x47\x8d\xca\x10\x78\xa1\x71\xf0\xed\xca\xd9\x3e" "\x54\xb8\x21\x39\x2e\x2a\x42\x42\x14\x2b\x30\x52\x24\xab\x42\x87\x01" "\xef\x06\x7a\xe5\x1a\xf0\xc4\x5c\xe6\x21\x7b\x0b\x80\x89\xce\xc9\xa3" "\x24\xbe\x18\x67\x2c\xff\x04\x8c\x59\x9b\x1a\x3c\xf3\xa0\xaf\x18\x26" "\xc1\x85\xa7\x01\x28\xd7\x09\x54\x54\x63\x99\x51\x7a\x8f\x41\xba\x3a" "\x12\x09\xf0\x96\x52\x0e\xbc\xbe\xe5\xbf\x4f\xbc\x6d\x91\x79\x21\x23" "\xa6\xac\x17\x70\x48\x40\xf9\xb8\xd7\x8a\xf4\xae\xad\x26\x84\xd6\xfd" "\xfa\x6f\x16\x05\x26\x10\x04\x66\xd0\x7c\x60\x3c\xaf\xe4\xd4\x50\x4c" "\x48\x4c\xe2\xbe\x9d\x8d\x2c\x52\x25\x6b\x77\xc9\xe5\x23\x83\x31\xeb" "\x84\x39\xb7\x79\xc1\xd4\xa9\xf4\x9a\xdf\x93\x35\x5f\x6e\xf3\xd1\x11" "\xe0\x1d\xae\x22\x61\xa1\xe4\xd2\xfa\x7c\x07\x58\xd8\x19\x62\x9f\x83" "\x23\xf7\x3c\x67\x71\x0d\x66\xe0\x88\xe6\x7d\x16\x9e\x5b\xf0\x94\x1f" "\x35\x27\x79\xb8\x77\x9a\xfa\x73\x36\x46\xbd\x93\xf0\xe6\xda\x04\x60" "\xa8\x9a\xea\x44\x0d\x43\xc4\x97\x3c\x6e\x43\x9b\x9f\x72\xbf\x3c\x82" "\xab\x3e\x7c\xed\x57\x8f\x78\x52\x52\x45\xc6\x30\x87\x20\xe7\x97\x49" "\xac\x8a\x5f\xf6\x26\x2d\x98\x03\xc4\x33\xf6\xe6\x3f\xbc\x8a\x6b\x87" "\x53\x38\x3b\x5b\x88\x10\xeb\xa7\x0b\x88\x96\x50\xc2\xe3\x51\x4c\x83" "\xf3\xf9\x40\xcc\x99\x41\xa1\xee\x6e\xe6\x0b\xee\xff\xa5\x1b\x08\x59" "\xee\x70\xb8\x5e\x2c\x77\x17\xa9\x3b\xc1\xae\x26\x4d\xda\xdb\x51\x0c" "\xe5\x78\x5d\xf9\x07\xa9\xca\xfc\xc8\xa4\xd1\x54\xb7\x9b\x82\xb0\xa5" "\x99\x91\x17\xd3\x96\x62\xa8\x8a\x0e\x02\x90\x59\xf6\xec\xb1\x09\x6c" "\x2d\xe7\xa2\x68\x39\x1d\xc9\xef\x0b\x0c\x60\xf8\x05\x4c\x58\x6c\x13" "\x1f\x48\x28\xa6\x3e\x15\x9b\xc3\xc2\x52\x5e\x31\x3b\xb3\xb7\x64\xa6" "\x5b\x05\xe9\x57\x4c\x18\x17\xef\xa6\x7e\xda\xd7\xb2\x80\x49\x20\x0d" "\xf4\xb5\x03\x91\x16\xd3\xaf\x90\x8b\x65\x99\x5c\x5d\xbc\x9b\x18\x5c" "\x75\x39\x6e\xd5\xfc\x98\xfa\xf6\xc0\x52\xf3\x86\xa7\x9e\xad\xa8\x59" "\xac\x9b\x90\x3b\x65\x08\xeb\x76\xf9\x1c\xcd\x1a\xc6\x88\xe3\x8c\x1b" "\xc3\x4e\xe8\xc6\x6b\x45\x9d\x74\x5a\xac\x3e\x70\x61\xbc\xf5\xb0\xf3" "\x71\x6d\x9b\x0b\x84\xb1\xfd\x3a\x39\x09\x7f\x22\xb7\x87\x2e\x5e\x5d" "\x2a\x9c\x5c\x0e\x98\x5d\x61\x47\x43\xf4\x0e\x2d\x1c\xe7\xcd\x33\x81" "\x25\x1b\xaa\xc1\x08\xb1\xa0\xcc\x88\x5a\x48\x18\xde\x23\xcd\x46\xbf" "\x08\x65\x0d\x3f\xe9\x4b\x25\xcf\x45\xbb\xf6\x33\x22\xaa\xb4\x6d\x0f" "\x98\x6c\x40\xd9\x63\x6d\xa7\x82\x4e\x1e\xbf\x3f\xa6\x21\x2f\x6d\xd8" "\x99\xb9\x12\xbc\x0a\x34\xaf\xd3\x3d\xb4\xab\x65\x1b\xf1\x45\xf5\x60" "\xc4\xc6\xda\xa0\xa9\xfd\xc4\xbf\x11\x06\x06\x0b\x83\x57\x35\x3f\x64" "\xb0\x59\x9d\x79\x20\x6b\x7f\x9b\xb8\xa0\xab\x54\x74\xbb\x4d\x7d\xc3" "\xec\x27\x5b\x27\x4c\x38\xd4\x99\x77\xd9\xdb\xcf\xae\xaf\x0e\xea\x37" "\x96\x70\x2a\xb6\x93\x69\x6f\xed\x9b\x4d\x93\x61\xe8\x0b\xc7\x3e\x86" "\x04\xe3\xa5\x0e\xc8\xb9\x20\x1c\x4c\x90\x1c\x01\x56\xf9\xcc\x1f\x91" "\xa5\x60\x92\x43\xf2\x66\x54\x0a\x90\x55\x97\x01\x98\x38\x28\x4b\x49" "\xe4\xfd\x0a\x58\xf5\xaf\x24\x29\x20\xcc\x1f\xd4\x6e\x67\xad\x32\x6b" "\x6b\x31\xf7\x54\x95\x4b\x54\x67\x88\x39\x74\x17\x2c\x54\xb5\x1d\xf0" "\x9a\xa5\x53\x67\xc6\x5a\xb7\x99\x9c\x7e\xf2\xcb\x14\x35\x9e\xe8\xb2" "\x2c\xc8\xb4\xb8\x43\xcb\x82\x4c\x59\x2f\xfc\x8b\xb8\xae\x9e\xb3\x4e" "\x81\x9d\xbf\xc0\x77\xfc\x7b\xe2\x5d\xbd\x3b\x6a\xa6\xf1\x3e\xa7\x20" "\x31\xd3\x90\xf6\xed\x2c\x92\xc0\xb5\x36\xc5\x20\x0e\x39\x96\xef\x94" "\x22\x0a\xee\xa5\x3e\x0f\x0a\x79\xe6\xeb\xf9\xcc\x3b\xd6\x60\x34\xb8" "\xcd\x6f\x46\x96\x25\x66\x61\xc4\x2a\x36\x50\x16\x68\x4a\x23\x6c\xe5" "\xa9\x92\xdf\x76\x20\x21\x00\x97\x69\x28\x22\x1f\xe7\x41\x0c\x74\x7a" "\x1c\x5e\x50\x4e\x2a\x4e\xcf\x4f\x46\xfc\xf1\x2e\x10\x59\x6e\x33\x4c" "\xf0\x3d\x19\x2d\xe6\x6f\x2e\x4c\xdf\xf9\x9d\x50\xb7\x0d\xb6\x2b\x65" "\x92\x48\x5d\x61\xad\x17\x52\xbf\x57\x42\x0b\x33\xa8\xac\xf6\xa8\x06" "\xd3\xd8\xce\x67\xaf\xe2\x89\x96\x7c\xc9\x25\x5e\xc3\xa7\xf0\xda\x84" "\x78\x38\x5e\x98\x9c\x9f\x58\x6f\x93\xb7\x56\xed\x50\x58\xc4\x25\x6b" "\xfd\x1b\x8d\xe1\xd0\x76\xe0\x6e\xf6\x27\xe1\x28\xe7\xce\x56\xc5\x26" "\x3b\x70\x5c\x5b\xe7\xc4\xbb\x0c\xa6\x13\x06\x3c\x9a\x2a\x4f\xfc\xe2" "\xac\x8d\x87\x19\x5a\x85\x08\x1b\x15\xd2\xd5\x8c\x01\x56\x0a\x15\x6c" "\x88\x34\x20\x02\x60\xf5\x43\x5a\xb4\xe1\xa5\x88\x36\x75\x7c\x5c\x5b" "\x05\x35\x68\x15\xba\x25\x8b\xf3\x4d\x54\xe2\x98\x27\x1a\x1e\xf5\x35" "\xcb\x43\xb8\x5a\x36\x1e\xa2\x34\xcd\xa2\x4f\x0a\x7f\x6e\xb1\x30\xc9" "\x22\x30\x2e\x4a\x26\x11\x58\xd9\x9f\xf8\xd5\x97\xe0\xdf\x5f\x13\xa3" "\xb8\x2b\xca\x50\x49\xe1\xb2\x3a\x5f\x62\xde\x1f\xcc\xa9\xca\xd2\x55" "\x9d\x0e\x80\xe8\xc1\x0c\x2a\xd0\x01\xc9\x77\x15\x90\x89\xbe\x27\x9f" "\xfe\x6a\xe4\xa0\x42\x64\xd6\xc3\x80\x20\xe6\x44\x87\xd5\xe5\x2f\xf1" "\x97\xa6\xcc\x19\x80\x9f\x43\xb8\x1e\x97\x87\x80\x4a\x84\x9d\x1a\x0c" "\xd8\x7d\xa6\x94\x43\x39\x7b\xec\x37\x14\x2f\x72\x54\x2c\x04\x30\x3b" "\xfe\x91\x09\xa2\x87\x2e\x87\x0c\x6f\xad\x3f\x5c\x58\x1d\x1b\xf6\x15" "\xb1\xb7\x18\xa2\x1d\xa3\x4a\x75\x69\x0c\xb0\x1a\xcb\x14\xec\xd0\x0c" "\x73\x7a\x5a\x1c\x85\x6f\x21\x2f\xb7\xab\x36\xfe\xf8\x7c\xb9\xac\xe5" "\xb8\x28\x0c\x9b\x4d\x48\x04\x73\x60\xd8\xac\xb6\xb1\x17\x33\x64\xce" "\x68\xc1\xdb\x9e\xe7\xd6\x81\x63\xc5\x2b\x67\x45\xd9\x40\x6c\xd0\xe6" "\x92\xbb\x0b\x15\xfb\x93\x19\x2f\xc7\xf3\x90\xc9\x29\xc1\x86\x77\x48" "\x1a\x80\x26\xff\xf3\x36\x55\xb6\xcb\x24\xbd\x0d\x22\x71\x80\xc0\xa9" "\xd6\xf8\x22\xbc\x50\xf4\x57\x2b\x65\x7b\x1f\x2b\x8d\x1a\x1a\x8b\x24" "\x15\x26\x52\xb5\xa6\xd6\x26\xe2\xec\x1a\x73\x74\x3e\x87\xad\x61\xe8" "\x9c\x20\x4e\x48\xb0\xce\x1f\x3b\x6c\xf6\xee\x99\xee\x7d\x78\x0a\x25" "\x79\x47\x5a\x4f\x17\x46\xe5\xc7\x41\x4c\x2a\x40\x02\x11\xd7\xb3\xa8" "\xef\x0d\x93\x52\x89\xbe\xf9\xdf\x8e\x14\x80\xcf\xb9\x72\xfd\x31\x98" "\xaf\x54\xa8\x1d\x66\xb3\xd7\x3f\x05\xa0\xb2\x2a\x41\x59\x3e\x76\x6b" "\x6b\x80\xb7\x3d\xd0\x3f\xef\x8f\x71\x1e\xd3\x35\xc5\x25\x95\xa6\xa6" "\xed\x12\x89\x2a\xd7\xbb\x0a\xea\xa9\x5c\x3f\xa7\xb2\x1e\x15\x93\x08" "\x39\x6b\x3e\x5c\xca\x09\x59\x8a\x26\xcd\x04\xc4\x95\x5e\x1a\xa9\x6e" "\x4b\x08\x0a\xef\x8e\x81\xfb\xc3\xe3\xd0\xe2\xf8\x2a\xc8\x63\xb2\x1b" "\x7b\x13\x7b\x43\xd9\x6d\xba\xb3\xbf\x8d\x78\x96\xc4\x5e\xf4\x63\xf0" "\x2d\x73\x12\xc4\x45\xa8\x8e\x09\x70\xc3\x20\xb1\x1a\x57\xcc\x08\xd6" "\x34\x88\x77\x52\x98\x3e\x76\x14\xcd\xcf\x0c\xf9\xa7\xee\x30\x60\x4a" "\x3e\x96\x0d\xbb\x97\x84\x26\x39\x71\x7b\x56\xcc\xd7\x21\x9e\xcd\x7d" "\xfe\xe5\x7a\x63\x57\x07\xc6\xc1\xdb\xbe\x9c\x96\x9d\x01\x8f\xed\x27" "\x2a\xa4\x16\xa2\xc8\x18\x95\x18\x5e\xbb\xfe\x41\x86\x5a\xcf\x18\x5d" "\x48\x2e\x68\xb5\x73\xa6\xe1\xa8\x84\x2a\xa0\x8b\x28\xa8\xa7\xfb\x5b" "\x9b\xf5\x94\x48\xdd\x87\xff\x0e\xb0\x43\xdf\x9a\xaf\xae\xe3\x08\x49" "\xac\x57\x2c\xf5\x5c\xb6\x0b\xb9\x65\xbc\xf2\xd0\x45\x7c\x05\x92\x64" "\xaa\x82\x62\x70\x21\xed\xd2\xe6\x1e\x4b\x62\x96\xc9\x37\x32\xd9\x14" "\x9e\x33\x67\x47\x33\x2f\x47\x30\x54\x0b\x70\xdc\xd5\xef\xda\x13\xec" "\xbd\x3b\x47\xf6\x72\x49\x4c\xfe\x59\x24\x96\xe7\xf6\x85\x11\x98\xad" "\x89\x0e\xb5\x85\xe0\x20\x49\x6f\xfd\x22\x4e\x9d\x57\xf6\x53\xdf\xcc" "\xb8\x46\xeb\x29\x22\xac\x52\xea\xca\x08\x6f\xe3\x5f\xdd\xe8\x66\xdc" "\xe9\xeb\xa6\x9d\xbe\xa9\x28\x26\x33\xf0\x9f\x59\x61\xa4\xdf\x03\x6a" "\x7a\x76\xd9\x0c\xb9\x06\x97\x8c\x4d\xa1\xf8\x82\xf6\x94\xac\x04\xf5" "\x80\x52\xd6\xfb\x63\xc0\xb2\x41\x88\xa5\xbd\x69\x2d\x6b\x2a\x0e\xe3" "\x8f\x71\x2c\x30\x5c\xcc\x28\xd8\x8e\x0d\xde\x2d\x8a\x98\xfd\x60\x4b" "\x0f\xb0\x74\xae\x67\xc8\xb1\xcb\x40\xd1\xff\x48\xf7\x38\xf8\xd3\xe8" "\x79\xc5\xa3\x7d\x68\xd7\xe1\x7f\x57\x8d\x71\x6b\x7e\x8f\x3a\x40\xeb" "\x21\x48\x5a\xe4\x6f\x08\x22\x91\xd6\xc8\x8e\xa9\x09\x18\x5c\xac\x72" "\x96\x4c\xd3\xce\x4e\xfe\x17\x8e\x95\x18\x67\xe4\xfa\xae\x67\x6b\x66" "\xa5\x4c\xa2\xc9\x8e\x1f\x5d\x93\xbf\xb7\x8e\x6e\xf3\xea\x84\x46\xe2" "\x32\x1d\x59\x59\x73\x44\xcd\xd8\x4f\x1c\x13\xc6\x2d\x6b\xb9\xf9\x04" "\xdc\xc5\x86\xf4\xe8\xec\x80\x34\x7b\xeb\x33\x3a\xeb\xc5\xa2\x04\x85" "\x9b\x00\x39\x2e\x94\xde\xfa\xf5\x57\x9e\x0b\x0b\x6c\xc1\x59\xee\x29" "\x08\xf6\x5f\xcd\xc2\x53\x5a\xd4\x4a\x6e\x96\x95\xf1\xfb\x41\x90\xb9" "\xc2\xe4\x1d\x34\x10\xe6\xbd\x8b\x86\x06\x86\x7e\x83\x17\xd4\x5a\x49" "\x7b\xa9\x49\x21\x7b\xce\xb9\x38\xec\x76\x2d\x74\x16\x9e\x50\xa3\xf7" "\x12\x9d\x0d\x2c\x75\x4d\xec\x55\xfb\xa1\xbc\x18\xd2\x6d\x71\x3a\xf0" "\x9a\xe3\xcb\x35\xb2\x3f\x79\xe2\x98\x31\x22\x37\x09\xb6\x4d\xfd\x69" "\x1e\x52\xb5\xde\xac\x6b\x30\xd9\xe5\x8b\x18\x63\xee\x77\x4c\xe9\xd5" "\x34\x6f\xe2\x47\x1a\x37\xf5\x77\x66\x1e\x4b\x64\x57\x40\xf5\x55\xe5" "\x9e\x9a\x5c\xd5\x8d\x9b\x73\xda\xf6\xa3\xa0\xe6\x66\xf5\xd7\x59\x2b" "\x54\x69\x3a\x9b\x7c\x6b\x8c\x47\x29\x5b\x7b\x6d\x93\x00\x42\xe8\x61" "\x6a\x75\x88\x86\x4e\x4b\xcf\x0b\x48\xbb\x40\x8d\xe7\x91\x0a\x7d\x1a" "\x59\xdb\xfc\x1a\x71\xe8\x9e\xe7\xef\xca\x2b\x7e\xd6\x7d\x2a\x20\xf1" "\x1b\x25\x55\x43\x92\x6e\xb0\x32\xe5\x61\x20\x3e\x19\x83\x26\xb9\x04" "\xa4\x1c\x61\x6f\x98\x9a\x18\x04\x81\xef\x18\xd9\xac\x8a\xf8\x3f\xdd" "\x67\x59\x57\xcb\xd5\xca\x11\xa5\xfa\xed\xea\x91\xc4\x12\xe5\x1d\x50" "\x0b\xa3\x86\x62\xb2\x85\x83\x1e\x36\x0b\xd8\x5a\x64\x8f\xdc\x44\xcc" "\x9e\x30\x18\x97\xe9\x93\x20\x80\x4f\x27\xb7\x68\x53\x9b\x2a\x0e\x61" "\xd0\xe9\x9e\xe3\xf7\x63\xdf\x83\x7d\xf2\x6a\xf2\x30\xe7\x90\x89\x6d" "\x41\xc2\xf3\xce\x78\xf0\x80\x6d\x39\x6a\x0f\xcf\x2a\xda\x44\xc9\xb6" "\x00\x86\x62\xae\xdd\x6d\x9f\xfe\xb4\xf1\x08\x92\x1e\x99\x01\xc0\xc4" "\xe4\xe5\x83\x2c\x78\xd8\xe4\xb5\x8c\x2e\x7b\xd0\xb7\x05\xd4\xb9\x6e" "\x1f\xe1\x13\x1f\x40\x22\x1b\x4e\xd1\x73\x44\x0e\xf5\x44\xfe\x43\x6f" "\xb2\x6b\x51\x0e\x03\x43\x53\x27\x5f\xf7\x24\xc5\xed\xfc\x2c\xd1\xc9" "\xf5\x7e\xde\xdf\x6a\x69\xd4\x4c\x6e\xba\xfe\x18\x1c\x9d\x2c\x1f\x77" "\x91\xf1\x84\x26\xde\xfd\x7e\xd3\xb8\xdf\x0a\x7d\xd0\x52\x9b\x74\x18" "\xd5\x7d\x8f\x6e\x8b\x1b\xc5\xee\xec\x09\x5e\xe6\xe8\x0a\xd9\x4f\xa1" "\x67\x01\x01\xd6\x27\x46\xcd\xc6\xa0\xf4\xbf\x35\x0d\x3a\x67\x06\xe0" "\xda\x0b\x1d\x85\xbf\x2e\x51\xcc\x53\x1a\xd9\x0e\x0e\x48\xa9\x5b\x7c" "\xbd\x43\xfe\xe3\x51\x70\x9b\x3a\xca\xe2\xc2\x6c\x4e\xca\xf7", 8192); syz_fuse_handle_req(-1, 0x20000fc0, 0x2000, 0); break; case 7: syscall(__NR_ftruncate, r[1], 0ul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); use_temporary_dir(); loop(); return 0; }