// https://syzkaller.appspot.com/bug?id=bc5db15be2ab04e98ebf08c4ba4a3a95ba1769c8 // 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 #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; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 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, umount_flags) == 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, umount_flags)) 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, umount_flags)) 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 NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 1; 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); 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6d 61 63 72 6f 6d 61 6e 69 61 6e} (length // 0xb) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x4 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x6 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard: buffer: {64 69 73 63 61 72 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x21 (1 bytes) // size: len = 0x6182 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6182) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x2000000000c0, "./file0\000", 8); memcpy((void*)0x200000007300, "quota", 5); *(uint8_t*)0x200000007305 = 0x2c; memcpy((void*)0x200000007306, "iocharset", 9); *(uint8_t*)0x20000000730f = 0x3d; memcpy((void*)0x200000007310, "macromanian", 11); *(uint8_t*)0x20000000731b = 0x2c; memcpy((void*)0x20000000731c, "gid", 3); *(uint8_t*)0x20000000731f = 0x3d; sprintf((char*)0x200000007320, "0x%016llx", (long long)0); *(uint8_t*)0x200000007332 = 0x2c; memcpy((void*)0x200000007333, "nodiscard", 9); *(uint8_t*)0x20000000733c = 0x2c; memcpy((void*)0x20000000733d, "discard", 7); *(uint8_t*)0x200000007344 = 0x3d; sprintf((char*)0x200000007345, "0x%016llx", (long long)4); *(uint8_t*)0x200000007357 = 0x2c; memcpy((void*)0x200000007358, "discard", 7); *(uint8_t*)0x20000000735f = 0x3d; sprintf((char*)0x200000007360, "0x%016llx", (long long)6); *(uint8_t*)0x200000007372 = 0x2c; memcpy((void*)0x200000007373, "quota", 5); *(uint8_t*)0x200000007378 = 0x2c; memcpy((void*)0x200000007379, "uid", 3); *(uint8_t*)0x20000000737c = 0x3d; sprintf((char*)0x20000000737d, "0x%016llx", (long long)0xee01); *(uint8_t*)0x20000000738f = 0x2c; memcpy((void*)0x200000007390, "discard", 7); *(uint8_t*)0x200000007397 = 0x2c; *(uint8_t*)0x200000007398 = 0; memcpy( (void*)0x200000001140, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd2" "\xa8\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xe9\x01" "\x0e\x5c\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11" "\x57\xbe\x70\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72" "\xe3\x0f\x20\x52\x82\x04\xea\xa9\x53\x8d\xfd\x3c\xce\x78\xb2\x9b\xb5" "\xeb\x78\x67\xed\xf9\x7c\x24\x67\xe6\xb7\xcf\xcc\xee\x33\xfe\xee\x78" "\x77\x33\x33\xfb\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\x10\x3f\xfe\xd1\x4f\xcf\x17\x11\x71\xed\x37\xe9\x86\x93\x11" "\x5f\x88\x7e\x44\x2f\x62\xa9\xaa\x57\x22\x62\x69\xe5\x64\x5e\x7e\x10" "\x11\x2f\xc6\x66\x73\xbc\x10\x11\xc3\x85\x88\x6a\xfd\xcd\x7f\x9e\x8b" "\x78\x23\x22\x3e\x3e\x11\xf1\xf0\xd1\xbd\xd5\xea\xe6\x0b\xbb\xec\xc7" "\x0f\xff\xfa\xaf\x3f\xfd\xec\xd8\x4f\xfe\xf9\x97\xe1\xd9\xff\xff\xed" "\x4e\xff\xcd\x49\xcb\xdd\xbd\xfb\xfb\xff\xfd\xfd\xfe\xfe\xb6\x19\x00" "\x00\x00\xba\xa6\x2c\xcb\xb2\x48\x1f\xf3\x4f\xa5\xcf\xf7\xbd\xb6\x3b" "\x05\x00\xcc\x44\x7e\xfd\x2f\x93\x7c\xbb\x7a\xee\xea\xf5\x39\xeb\x8f" "\x5a\xad\x56\xab\x0f\x61\x5d\x57\x8e\x77\xbf\x5e\x44\xc4\x7a\x7d\x9d" "\xea\x3d\x83\xc3\xf1\x00\x70\xc8\xac\xc7\x27\x6d\x77\x81\x16\xc9\xbf" "\xd3\x06\x11\x71\xac\xed\x4e\x00\x73\xad\x68\xbb\x03\x1c\x88\x87\x8f" "\xee\xad\x16\x29\xdf\xa2\xfe\x7a\xb0\xb2\xd5\x9e\xcf\x05\xd9\x91\xff" "\x7a\xb1\x7d\x7d\xc7\xa4\xe9\x34\xcd\x73\x4c\x66\xf5\xfc\xda\x88\x7e" "\x3c\x3f\xa1\x3f\x4b\x33\xea\xc3\x3c\xc9\xf9\xf7\x9a\xf9\x5f\xdb\x6a" "\x1f\xa5\xe5\x0e\x3a\xff\x59\x99\x94\xff\x68\xeb\xd2\xa7\xce\xc9\xf9" "\xf7\x9b\xf9\x37\x1c\x9d\xfc\x7b\x63\xf3\xef\xaa\x9c\xff\x60\x4f\xf9" "\xf7\xe5\x0f\x00\x00\x00\x00\x00\x73\x2c\xff\xff\xff\xc9\x96\x8f\xff" "\x2e\xec\x7f\x53\x76\xe5\x69\xc7\x7f\x57\x66\xd4\x07\x00\x00\x00\x00" "\x00\x00\x00\x78\xd6\xf6\x3b\xfe\xdf\x36\xe3\xff\x01\x00\x00\xc0\xdc" "\xaa\x3e\xab\x57\xfe\x70\xe2\xf1\x6d\x93\xbe\x8b\xad\xba\xfd\x6a\x11" "\x71\xbc\xb1\x3c\xd0\x31\xe9\x62\x99\xe5\xb6\xfb\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x5d\x32\xd8\x3a\x87\xf7\x6a\x11\x31\x8c\x88" "\xe3\xcb\xcb\x65\x59\x56\x3f\x75\xcd\x7a\xaf\xf6\xbb\xfe\x61\xd7\xf5" "\xed\x87\x2e\x6b\xfb\x8f\x3c\x00\x00\x6c\xf9\xf8\x44\xe3\x5a\xfe\x22" "\x62\x31\x22\xae\xa6\xef\xfa\x1b\x2e\x2f\x2f\x97\xe5\xe2\xd2\x72\xb9" "\x5c\x2e\x2d\xe4\xf7\xb3\xa3\x85\xc5\x72\xa9\xf6\xb9\x36\x4f\xab\xdb" "\x16\x46\xbb\x78\x43\x3c\x18\x95\xd5\x9d\x2d\xd6\xd6\xab\x9b\xf6\x79" "\x79\x5a\x7b\xf3\xfe\xaa\xc7\x1a\x95\xfd\x5d\x74\x6c\x36\x5a\x0c\x1c" "\x00\x22\x62\xeb\xd5\xe8\xa1\x57\xa4\x23\xa6\x2c\x9f\x8b\xb6\xdf\xe5" "\x70\x38\xd8\xff\x8f\x1e\xfb\x3f\xbb\xd1\xf6\xf3\x14\x00\x00\x00\x38" "\x78\x65\x59\x96\x45\xfa\x3a\xef\x53\xe9\x98\x7f\xaf\xed\x4e\x01\x00" "\x33\x91\x5f\xff\x9b\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbd\xba\xae" "\x1c\xef\x7e\xbd\x88\x88\xf5\xfa\x3a\xd5\x7b\x06\xc3\xf1\x03\xc0\x21" "\xb3\x1e\x9f\xb4\xdd\x05\x5a\x24\xff\x4e\x1b\x44\xc4\x8b\x6d\x77\x02" "\x98\x6b\x45\xdb\x1d\xe0\x40\x3c\x7c\x74\x6f\xb5\x48\xf9\x16\xf5\xd7" "\x83\x34\xbe\x7b\x3e\x17\x64\x47\xfe\xeb\xc5\xe6\x7a\x79\xfd\x71\xd3" "\x69\x9a\xe7\x98\xcc\xea\xf9\xb5\x11\xfd\x78\x7e\x42\x7f\x5e\x98\x51" "\x1f\xe6\x49\xce\xbf\xd7\xcc\xff\xda\x56\xfb\x28\x2d\x77\xd0\xf9\xcf" "\xca\xa4\xfc\xab\xed\x3c\xd9\x42\x7f\xda\x96\xf3\xef\x37\xf3\x6f\x38" "\x3a\xf9\xf7\xc6\xe6\xdf\x55\x39\xff\xc1\x9e\xf2\xef\xcb\x1f\x00\x00" "\x00\x00\x00\xe6\x58\xfe\xff\xff\x93\x73\x75\xfc\x77\xf4\x79\x37\x67" "\xaa\xa7\x1d\xff\x5d\x39\xb0\x47\x05\x00\x00\x00\x00\x00\x00\x80\x83" "\xf5\xf0\xd1\xbd\xd5\x7c\xdd\x6b\x3e\xfe\xff\xa5\x31\xcb\xb9\xfe\xf3" "\x68\xca\xf9\x17\xf2\xef\xa4\x9c\x7f\xaf\x91\xff\xd7\x1b\xcb\xf5\x6b" "\xf3\x0f\xde\x7e\x9c\xff\x7f\x1f\xdd\x5b\xfd\xf3\x9d\xff\x7c\x31\x4f" "\x77\x9b\xff\x42\x9e\x29\xd2\x33\xab\x48\xcf\x88\x22\x3d\x52\x31\x48" "\xd3\xfd\x6c\xdd\x93\x36\x86\xfd\x51\xf5\x48\xc3\xa2\xd7\x1f\xa4\x73" "\x7e\xca\xe1\xbb\x71\x23\x6e\xc6\x5a\x9c\xdb\xb1\x6c\x2f\xfd\x3e\x36" "\xdb\x8f\x3f\x79\x5f\x55\x4f\x87\x9b\xed\x65\x7f\x6b\xfd\x0b\x3b\xda" "\x07\xdb\xed\xf9\xfe\x2f\xee\x68\x1f\xa6\x33\x9d\xca\xa5\xdc\x7e\x26" "\x56\xe3\x97\x71\x33\xde\xd9\x6c\xaf\xda\x16\x76\x6c\x7f\xfe\xa5\x3c" "\xb6\x38\xe5\xf7\x53\x4e\x69\xcf\xf9\xf7\xed\xff\x9d\x94\xf3\x1f\xd4" "\x7e\xaa\xfc\x97\x53\x7b\xd1\x98\x56\x1e\x7c\xd4\x7b\x62\xbf\xaf\x4f" "\xc7\x3d\xce\x95\x1b\x5f\xfe\xdd\xb9\x83\xdf\x9c\xa9\x36\xa2\xbf\xbd" "\x6d\x75\xd5\xf6\xbd\xdc\x42\x7f\x36\x7f\x27\xc7\x46\xf1\xeb\xdb\x6b" "\xb7\xce\xdc\xbd\x7e\xe7\xce\xad\xf3\x91\x26\x3b\x6e\xbd\x10\x69\xf2" "\x8c\xe5\xfc\x87\xe9\x67\xfb\xef\xff\x2b\x5b\xed\xf9\xef\x7e\x7d\x7f" "\x7d\xf0\xd1\x68\xcf\xf9\xcf\x8b\x8d\x18\x4c\xcc\xff\x95\xda\x7c\xb5" "\xbd\xaf\xce\xb8\x6f\x6d\xc8\xf9\x8f\xd2\x4f\xce\xff\x9d\xd4\x3e\x7e" "\xff\x3f\xcc\xf9\x4f\xde\xff\x5f\x6b\xa1\x3f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\x34\x65\x59\x6e\x5e\x22\x7a\x25\x22\x2e" "\xa5\xeb\x7f\xda\xba\x36\x13\x00\x98\xad\x2b\xe9\xdb\x25\xca\x24\xdf" "\x3e\xab\xba\x3f\xe3\xc7\x53\xab\x0f\x79\x5d\xcc\x59\x7f\x66\x5a\x7f" "\x5a\xce\x57\x7f\xd4\xea\xc3\x58\xd7\x95\xe3\xbd\x55\x2f\x22\xe2\x1f" "\xf5\x75\x2e\x45\xc4\x6f\xc7\xdd\x19\x00\x30\xcf\x3e\x8d\x88\x7f\xb7" "\xdd\x09\x5a\x23\xff\x0e\xcb\xdf\xf7\x57\x4d\x4f\xb7\xdd\x19\x60\xa6" "\x6e\x7f\xf0\xe1\xcf\xaf\xdf\xbc\xb9\x76\xeb\x76\xdb\x3d\x01\x00\x00" "\x00\x00\x00\x00\x00\x3e\xaf\x3c\xfe\xe7\x4a\x6d\xfc\xe7\xd3\x65\x59" "\xde\x6f\x2c\xb7\x63\xfc\xd7\xb7\x63\x65\xbf\xe3\x7f\x6e\x0f\x64\xbd" "\x3d\xc0\xe8\x84\x81\xaa\xfb\x7b\xdf\xa6\xa7\xd9\xe8\x8d\xfa\xbd\xda" "\x70\xe3\x2f\xc5\xa4\xf1\xbf\x87\xdb\x73\x8f\xdb\xcf\x3f\xd1\xb5\x27" "\x06\xe4\x6e\x18\x4e\x69\x1f\x4d\x69\x5f\x98\xd2\xbe\x38\xa5\x7d\xec" "\x85\x1e\x35\x39\xff\x97\x6a\xe3\x9d\x9f\x8e\x88\x53\x8d\xe1\xd7\xbb" "\x30\xfe\x6b\x73\xcc\xfb\x2e\xc8\xf9\xbf\x5c\x7b\x3e\x57\xf9\x7f\xad" "\xb1\x5c\x3d\xff\xf2\x8f\x87\x39\xff\xde\x8e\xfc\xcf\xde\x79\xff\x57" "\x67\x6f\x7f\xf0\xe1\xeb\x37\xde\xbf\xfe\xde\xda\x7b\x6b\xbf\xb8\x78" "\xfe\xfc\xb9\x8b\x97\x2e\x5d\xbe\x7c\xf9\xec\xbb\x37\x6e\xae\x9d\xdb" "\xfa\xb7\xc5\x1e\x1f\xac\x9c\x7f\x1e\xfb\xda\x79\xa0\xdd\x92\xf3\xcf" "\x99\xcb\xbf\x5b\x72\xfe\x5f\x49\xb5\xfc\xbb\x25\xe7\xff\xd5\x54\xcb" "\xbf\x5b\x72\xfe\xf9\xfd\x9e\xfc\xbb\x25\xe7\x9f\x3f\xfb\xc8\xbf\x5b" "\x72\xfe\xaf\xa6\x5a\xfe\xdd\x92\xf3\xff\x46\xaa\xe5\xdf\x2d\x39\xff" "\xd7\x52\x2d\xff\x6e\xc9\xf9\x7f\x33\xd5\x7b\xcc\x7f\xda\x7f\x3f\x33" "\xe7\x72\xfe\xaf\xa7\xda\xfe\xdf\x2d\x39\xff\x33\xa9\x96\x7f\xb7\xe4" "\xfc\xcf\xa6\x7a\x97\xf9\x2f\x1d\x74\xbf\x98\x8d\x9c\x7f\x3e\xc2\x65" "\xff\xef\x96\x9c\x7f\x3e\xb3\x41\xfe\xdd\x92\xf3\xbf\x90\x6a\xf9\x77" "\x4b\xce\xff\x62\xaa\xe5\xdf\x2d\x39\xff\x37\x52\x2d\xff\x6e\xc9\xf9" "\x7f\x2b\xd5\xf2\xef\x96\x9c\xff\xa5\x54\xcb\xbf\x5b\x72\xfe\xdf\x4e" "\xb5\xfc\xbb\x25\xe7\x7f\x39\xd5\xf2\xef\x96\x9c\xff\x77\x52\x2d\xff" "\x6e\xc9\xf9\x7f\x37\xd5\xf2\xef\x96\x9c\xff\x9b\xa9\x96\x7f\xb7\xe4" "\xfc\xbf\x97\xea\x3d\xe5\xff\x8c\xaf\xcd\x63\xf6\x72\xfe\xdf\x4f\xb5" "\xfd\xbf\x5b\x72\xfe\x3f\x48\xb5\xfc\xbb\x25\xe7\xff\x56\xaa\xe5\xdf" "\x2d\x8f\xbf\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xdb\x7f\x99\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x80\xa6\x59\x9c\x4e\xdc\xf6\x36\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x19\x3b\x70\x20\x00\x00" "\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7" "\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xc2\xde\xbd\xc5\xc8\x75\xd7\x77\x00\x3f\xb3\x37\xaf\x9d\x9b\x81\x90" "\x3a\xa9\x81\x8d\x63\x82\x71\x36\xd9\xf5\x25\xbe\xd0\xba\x98\x70\x6d" "\xb8\x95\x40\x28\xf4\x82\xed\x7a\xd7\x66\xc1\x37\xbc\x76\x09\x34\x92" "\x8d\x02\x25\x12\x46\x45\x15\x6d\xc3\x43\x5b\x40\xa8\xcd\x4b\x85\x55" "\x21\x95\x56\x80\xf2\x80\x5a\x55\xaa\x04\xed\x03\x7d\x41\x54\xa8\x3c" "\x44\x55\x40\x01\xa9\x52\x5b\x41\xb6\x9a\x73\xfe\xff\xff\xce\xcc\xce" "\xce\xec\x7a\xc7\xeb\x99\x73\x3e\x1f\x29\xf9\xc5\x33\x67\xe6\x9c\x39" "\xf3\x9f\xd9\xfd\xae\xf3\xdd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\xdd\xfd\xfa\xd9\x4f\xd7\xb2" "\x2c\xab\xff\x93\xff\x6b\x73\x96\xdd\x5c\xff\xef\x8d\x13\x9b\xf3\xcb" "\x5e\x73\xa3\x8f\x10\x00\x00\x00\x58\xab\x5f\xe4\xff\x7e\xfe\xb6\x74" "\xc1\xe1\x15\xdc\xa8\x61\x9b\x7f\x7a\xf9\x77\xbe\xb6\xb0\xb0\xb0\x90" "\xbd\x6f\xf8\x4f\x46\x3f\xbf\xb0\x90\xae\x98\xc8\xb2\xd1\x0d\x59\x96" "\x5f\x17\x5d\xfd\xe1\xfb\x6b\x8d\xdb\x04\x4f\x64\xe3\xb5\xa1\x86\x3f" "\x0f\x75\xd9\xfd\x70\x97\xeb\x47\xba\x5c\x3f\xda\xe5\xfa\xb1\x2e\xd7" "\x6f\xe8\x72\xfd\x78\x97\xeb\x97\x9c\x80\x25\x36\x16\x3f\x8f\xc9\xef" "\x6c\x7b\xfe\x9f\x9b\x8b\x53\x9a\xdd\x9e\x8d\xe6\xd7\x6d\x6f\x73\xab" "\x27\x6a\x1b\x86\x86\xe2\xcf\x72\x72\xb5\xfc\x36\x0b\xa3\x27\xb2\xb9" "\xec\x54\x36\x9b\x4d\x37\x6d\x5f\x6c\x5b\xcb\xb7\xff\xc6\xdd\xf5\x7d" "\xbd\x25\x8b\xfb\x1a\x6a\xd8\xd7\xd6\xfa\x0a\xf9\xe9\xe3\xc7\xe3\x31" "\xd4\xc2\x39\xde\xde\xb4\xaf\xc5\xfb\x8c\x7e\xfc\xba\x6c\xe2\x67\x3f" "\x7d\xfc\xf8\x5f\x5d\x78\xee\xce\x76\xb3\xeb\x69\x68\xba\xbf\xe2\x38" "\x77\x6c\xab\x1f\xe7\x27\xc3\x25\xc5\xb1\xd6\xb2\x0d\xe9\x9c\xc4\xe3" "\x1c\x6a\x38\xce\xad\x6d\x9e\x93\xe1\xa6\xe3\xac\xe5\xb7\xab\xff\x77" "\xeb\x71\x3e\xbf\xc2\xe3\x1c\x5e\x3c\xcc\x75\xd5\xfa\x9c\x8f\x67\x43" "\xf9\x7f\x7f\x37\x3f\x4f\x23\x8d\x3f\xd6\x4b\xe7\x69\x6b\xb8\xec\x7f" "\xee\xc9\xb2\xec\xf2\xe2\x61\xb7\x6e\xb3\x64\x5f\xd9\x50\xb6\xa9\xe9" "\x92\xa1\xc5\xe7\x67\xbc\x58\x91\xf5\xfb\xa8\x2f\xa5\x17\x67\x23\xab" "\x5a\xa7\x77\xaf\x60\x9d\xd6\xe7\xcc\xf6\xe6\x75\xda\xfa\x9a\x88\xcf" "\xff\xdd\xe1\x76\x23\xcb\x1c\x43\xe3\xd3\xf4\xe3\x4f\x8c\x35\x3c\xef" "\x3f\x5f\xb8\x96\x75\x1a\xd5\x1f\xf5\x72\xaf\x95\xd6\x35\xd8\xeb\xd7" "\x4a\xbf\xac\xc1\xb8\x2e\xbe\x9b\x3f\xe8\x27\xdb\xae\xc1\xed\xe1\xf1" "\x3f\x7e\xef\xf2\x6b\xb0\xed\xda\x69\xb3\x06\xd3\xe3\x6e\x58\x83\xdb" "\xba\xad\xc1\xa1\xb1\xe1\xfc\x98\xd3\x93\x50\xcb\x6f\xb3\xb8\x06\x77" "\x35\x6d\x3f\x9c\xef\xa9\x96\xcf\x67\xef\xed\xbc\x06\xa7\x2e\x9c\x3e" "\x37\x35\xff\xb1\x8f\xdf\x3f\x77\xfa\xd8\xc9\xd9\x93\xb3\x67\xf6\xec" "\xda\x35\xbd\x67\xdf\xbe\x03\x07\x0e\x4c\x9d\x98\x3b\x35\x3b\x5d\xfc" "\xfb\x1a\xcf\x76\xff\xdb\x94\x0d\xa5\xd7\xc0\xb6\x70\xee\xe2\x6b\xe0" "\x55\x2d\xdb\x36\x2e\xd5\x85\x2f\x8d\x2d\x79\xff\xbd\xd6\xd7\xe1\x78" "\x87\xd7\xe1\xe6\x96\x6d\x7b\xfd\x3a\x1c\x69\x7d\x70\xb5\xf5\x79\x41" "\x2e\x5d\xd3\xc5\x6b\xe3\x3d\xf5\x93\x3e\x7e\x65\x28\x5b\xe6\x35\x96" "\x3f\x3f\x3b\xd7\xfe\x3a\x4c\x8f\xbb\xe1\x75\x38\xd2\xf0\x3a\x6c\xfb" "\x35\xa5\xcd\xeb\x70\x64\x05\xaf\xc3\xfa\x36\xe7\x76\xae\xec\x7b\x96" "\x91\x86\x7f\xda\x1d\xc3\xf2\x5f\x0b\xd6\xb6\x06\x37\x37\xac\xc1\xd6" "\xef\x47\x5a\xd7\x60\xaf\xbf\x1f\xe9\x97\x35\x38\x1e\xd6\xc5\xf7\x77" "\x2e\xff\xb5\x60\x6b\x38\xde\x27\x27\x57\xfb\xfd\xc8\xf0\x92\x35\x98" "\x1e\x6e\x78\xef\xa9\x5f\x92\xbe\xdf\x1f\x3f\x90\x8f\x76\xeb\xf2\xae" "\xfa\x15\x37\x8d\x65\x17\xe7\x67\xcf\x3f\xf0\xd8\xb1\x0b\x17\xce\xef" "\xca\xc2\x58\x17\x2f\x69\x58\x2b\xad\xeb\x75\x53\xc3\x63\xca\x96\xac" "\xd7\xa1\x55\xaf\xd7\xc3\x73\x2f\x7f\xf2\xae\x36\x97\x6f\x0e\xe7\x6a" "\xfc\xfe\xfa\xbf\xc6\x97\x7d\xae\xea\xdb\xec\x7d\xa0\xf3\x73\x95\x7f" "\x75\x6b\x7f\x3e\x9b\x2e\xdd\x9d\x85\xd1\x63\xeb\x7d\x3e\xdb\x7d\x35" "\xaf\x9f\xcf\xb1\x2c\xfb\xc2\xb7\x3f\xf1\xc8\x37\x1f\xff\xc2\xeb\x97" "\x3d\x9f\xf5\xbc\xf9\xc9\xa9\xb5\x7f\x2f\x9e\x72\x69\xc3\xfb\xef\xe8" "\x32\xef\xbf\x31\xf7\xbf\x50\xec\x2f\xdd\xd5\x13\xc3\xa3\x23\xc5\xeb" "\x77\x38\x9d\x9d\xd1\xa6\xf7\xe3\xe6\xa7\x6a\x24\x7f\xef\xaa\xe5\xfb" "\x7e\x7e\x6a\x65\xef\xc7\xa3\xe1\x9f\xf5\x7e\x3f\xbe\xbd\xc3\xfb\xf1" "\x96\x96\x6d\x7b\xfd\x7e\x3c\xda\xfa\xe0\xe2\xfb\x71\xad\xdb\x4f\x3b" "\xd6\xa6\xf5\xf9\x1c\x0f\xeb\xe4\xd4\x74\xe7\xf7\xe3\xfa\x36\x5b\x76" "\xaf\x76\x4d\x8e\x74\x7c\x3f\xbe\x27\xcc\x5a\x38\xff\xaf\x0e\x49\x21" "\xe5\xa2\x86\xb5\xb3\xdc\xba\x4d\xfb\x1a\x19\x19\x0d\x8f\x6b\x24\xee" "\xa1\x79\x9d\xee\x69\xda\x7e\x34\x64\xb3\xfa\xbe\x9e\xde\x7d\x6d\xeb" "\x74\xc7\x3d\xc5\x7d\x0d\xa7\x47\xb7\x68\xbd\xd6\xe9\x44\xcb\xb6\xbd" "\x5e\xa7\xe9\x67\x5f\xcb\xad\xd3\x5a\xb7\x9f\xbe\x5d\x9b\xd6\xe7\x73" "\x3c\xac\x8b\xdb\xf7\x74\x5e\xa7\xf5\x6d\x9e\xd9\xbb\xf6\xf7\xce\x8d" "\xf1\x3f\x1b\xde\x3b\xc7\xba\xad\xc1\xd1\xe1\xb1\xfa\x31\x8f\xa6\x45" "\x98\xbf\xdf\x67\x0b\x1b\xe3\x1a\x7c\x20\x3b\x9e\x9d\xcd\x4e\x65\x33" "\xf9\xb5\x63\xf9\x7a\xaa\xe5\xfb\x9a\x7c\x70\x65\x6b\x70\x2c\xfc\xb3" "\xde\xef\x95\x5b\x3a\xac\xc1\x1d\x2d\xdb\xf6\x7a\x0d\xa6\xaf\x63\xcb" "\xad\xbd\xda\xc8\xd2\x07\xdf\x03\xad\xcf\xe7\x78\x58\x17\x4f\x3d\xd8" "\x79\x0d\xd6\xb7\x79\xc3\xfe\xde\x7e\xef\xba\x23\x5c\x92\xb6\x69\xf8" "\xde\xb5\xf5\xe7\x6b\xcb\xfd\xcc\xeb\xae\x96\xd3\x74\xbd\xd6\xca\x48" "\x38\xce\x6f\xef\xef\xfc\xb3\xd9\xfa\x36\xa7\x0e\xac\x36\x67\x76\x3e" "\x4f\xf7\x85\x4b\x6e\x6a\x73\x9e\x5a\x5f\xbf\xcb\xbd\xa6\x66\xb2\xf5" "\x39\x4f\x5b\xc2\x71\x3e\x77\x60\xf9\xf3\x54\x3f\x9e\xfa\x36\x9f\x3f" "\xb8\xc2\xf5\x74\x38\xcb\xb2\x4b\x1f\x79\x28\xff\x79\x6f\xf8\xfb\x95" "\xbf\xbd\xf8\xbd\xaf\x35\xfd\xbd\x4b\xbb\xbf\xd3\xb9\xf4\x91\x87\x7e" "\x72\xcb\x89\x7f\x5c\xcd\xf1\x03\x30\xf8\x5e\x28\xc6\xa6\xe2\x6b\x5d" "\xc3\xdf\x4c\xad\xe4\xef\xff\x01\x00\x00\x80\x81\x10\x73\xff\x50\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\x7f\xfc\xbf\xc2\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x91\x30\x93\x8a\xe4\xff\x2d\x6f\x78\x6e\xee" "\x85\x4b\x59\x6a\xe6\x2f\x04\xf1\xfa\x74\x1a\x1e\x2e\xb6\x8b\x1d\xd7" "\xe9\xf0\xe7\x89\x85\x45\xf5\xcb\x1f\xfa\xca\xec\x7f\xff\xc3\xa5\x95" "\xed\x7b\x28\xcb\xb2\x9f\x3f\xfc\x07\x6d\xb7\xdf\xf2\x70\x3c\xae\xc2" "\x44\x38\xce\xab\x6f\x6c\xbe\x7c\x89\xaf\xdd\xbf\xa2\x7d\x1f\x7d\xf4" "\x52\xda\x6f\x63\x7f\xfd\x8b\xe1\xfe\xe3\xe3\x59\xe9\x32\x68\x57\xc1" "\x9d\xce\xb2\xec\x1b\xb7\x7d\x36\xdf\xcf\xc4\xfb\xaf\xe4\xf3\x99\x87" "\x8f\xe6\xf3\x91\xcb\x4f\x3e\x51\xdf\xe6\xf9\x83\xc5\x9f\xe3\xed\x9f" "\x7d\x49\xb1\xfd\x9f\x87\xf2\xef\xe1\x13\xc7\x9a\x6e\xff\x6c\x38\x0f" "\x3f\x0a\x73\xfa\xad\xed\xcf\x47\xbc\xdd\x57\xaf\xbc\x7a\xeb\xfe\xf7" "\x2e\xee\x2f\xde\xae\xb6\xed\xd6\xfc\x61\x3f\xf5\x81\xe2\x7e\xe3\xef" "\xc9\xf9\xdc\x13\xc5\xf6\xf1\x3c\x2f\x77\xfc\xdf\xfc\xcc\xd3\x5f\xad" "\x6f\xff\xd8\x2b\xdb\x1f\xff\xa5\xa1\xf6\xc7\xff\x74\xb8\xdf\xaf\x84" "\xf9\xbf\x2f\x2b\xb6\x6f\x7c\x0e\xea\x7f\x8e\xb7\xfb\x54\x38\xfe\xb8" "\xbf\x78\xbb\x07\xbe\xfc\xad\xb6\xc7\x7f\xf5\xd3\xc5\xf6\xe7\xde\x54" "\x6c\x77\x34\xcc\xb8\xff\x1d\xe1\xcf\xdb\xdf\xf4\xdc\x5c\xe3\xf9\x7a" "\xac\x76\xac\xe9\x71\x65\x6f\x2e\xb6\x8b\xfb\x9f\xfe\xde\x1f\xe5\xd7" "\xc7\xfb\x8b\xf7\xdf\x7a\xfc\xe3\x47\xae\x34\x9d\x8f\xd6\xf5\xf1\xcc" "\xbf\x15\xf7\x33\xd5\xb2\x7d\xbc\x3c\xee\x27\xfa\xfb\x96\xfd\xd7\xef" "\xa7\x71\x7d\xc6\xfd\x3f\xfd\x87\x47\x9b\xce\x73\xb7\xfd\x5f\x7d\xe4" "\xd9\x97\xd5\xef\xb7\x75\xff\xf7\xb5\x6c\x77\xee\x23\x3b\xf3\xfd\x2f" "\xde\x5f\xf3\x6f\x6c\xfa\x8b\x4f\x7d\xb6\xed\xfe\xe2\xf1\x1c\xfe\x9b" "\x73\x4d\x8f\xe7\xf0\xbb\xc2\xeb\x38\xec\xff\xa9\x0f\x84\xf5\x18\xae" "\xff\xbf\xab\xc5\xfd\xb5\xfe\x76\x85\xa3\xef\x6a\x7e\xff\x89\xdb\x7f" "\x71\xf3\xa5\xa6\xc7\x13\xbd\xe5\x67\xc5\xfe\xaf\xbe\xf6\x64\x3e\x37" "\x8c\x6f\xdc\x74\xd3\xcd\xb7\xdc\x7a\xf9\x15\xf5\x73\x97\x65\xdf\xdd" "\x50\xdc\x5f\xb7\xfd\x9f\xfc\xcb\xb3\x4d\xc7\xff\xa5\x3b\x8a\xf3\x11" "\xaf\x8f\x1d\xfd\xd6\xfd\x2f\x27\xee\xff\xfc\x47\x27\xcf\x9c\x9d\xbf" "\x38\x37\x93\xce\xea\xe3\xb7\xe5\xbf\x3b\xe7\x6d\xc5\xf1\xc4\xe3\xbd" "\x2d\xbc\xb7\xb6\xfe\xf9\xc8\xd9\x0b\x1f\x9c\x3d\x3f\x31\x3d\x31\x9d" "\x65\x13\xe5\xfd\x15\x7a\xd7\xec\xcb\x61\xfe\xa4\x18\x97\x3b\x6f\xbd" "\xb0\xe4\x1d\x74\xe7\xa3\xe1\xf9\xbc\xeb\xcf\xbe\xb1\xe9\xde\x7f\xfd" "\x4c\xbc\xfc\xdf\xdf\x53\x5c\x7e\xe5\xad\xc5\xd7\xad\x57\x85\xed\x3e" "\x17\x2e\xdf\x1c\x9e\xbf\xd5\xed\x7f\xa9\xa7\xee\xbe\x23\x7f\x7d\xd7" "\x9e\x09\x47\xb8\xb0\xf4\xf7\x05\xaf\xc5\xd6\xed\xff\x75\x60\x45\x1b" "\x86\xc7\xdf\xfa\x7d\x41\x5c\xef\xe7\x5e\xfa\xc1\xfc\x3c\xd4\xaf\xcb" "\xbf\x6e\xc4\xd7\xf5\x1a\x8f\xff\x07\x33\xc5\xfd\x7c\x3d\x9c\xd7\x85" "\xf0\x9b\x99\xb7\xdd\xb1\xb8\xbf\xc6\xed\xe3\xef\x46\xb8\xf2\xee\xe2" "\xf5\xbe\xe6\xf3\x17\xde\xe6\xe2\xf3\xfa\xd7\xe1\xf9\x7e\xfb\x8f\x8a" "\xfb\x8f\xc7\x15\x1f\xef\x0f\xc2\xf7\x31\xdf\xda\xd2\xfc\x7e\x17\xd7" "\xc7\xd7\x2f\x0d\xb5\xde\x7f\xfe\x5b\x3c\x2e\x87\xf7\x93\xec\x72\x71" "\x7d\xdc\x2a\x9e\xef\x2b\xcf\xdf\xd1\xf6\xf0\xe2\xef\x21\xc9\x2e\xdf" "\x99\xff\xf9\x8f\xd3\xfd\xdc\xb9\xaa\x87\xb9\x9c\xf9\x8f\xcd\x4f\x9d" "\x9a\x3b\x73\xf1\xb1\xa9\x0b\xb3\xf3\x17\xa6\xe6\x3f\xf6\xf1\x23\xa7" "\xcf\x5e\x3c\x73\xe1\x48\xfe\xbb\x3c\x8f\x7c\xa8\xdb\xed\x17\xdf\x9f" "\x36\xe5\xef\x4f\x33\xb3\xfb\xf6\x66\xf9\xbb\xd5\xd9\x62\x5c\x67\x37" "\xfa\xf8\xcf\x3d\x7a\x7c\x66\xff\xf4\xbd\x33\xb3\x27\x8e\x5d\x3c\x71" "\xe1\xd1\x73\xb3\xe7\x4f\x1e\x9f\x9f\x3f\x3e\x3b\x33\x7f\xef\xb1\x13" "\x27\x66\x3f\xda\xed\xf6\x73\x33\x87\x76\xed\x3e\xb8\x67\xff\xee\xc9" "\x93\x73\x33\x87\x0e\x1c\x3c\xb8\xe7\xe0\xe4\xdc\x99\xb3\xf5\xc3\x28" "\x0e\xaa\x8b\x7d\xd3\x1f\x9e\x3c\x73\xfe\x48\x7e\x93\xf9\x43\x7b\x0f" "\xee\x7a\xf0\xc1\xbd\xd3\x93\xa7\xcf\xce\xcc\x1e\xda\x3f\x3d\x3d\x79" "\xb1\xdb\xed\xf3\xaf\x4d\x93\xf5\x5b\xff\xfe\xe4\xf9\xd9\x53\xc7\x2e" "\xcc\x9d\x9e\x9d\x9c\x9f\xfb\xf8\xec\xa1\x5d\x07\xf7\xed\xdb\xdd\xf5" "\xb7\x01\x9e\x3e\x77\x62\x7e\x62\xea\xfc\xc5\x33\x53\x17\xe7\x67\xcf" "\x4f\x15\x8f\x65\xe2\x42\x7e\x71\xfd\x6b\x5f\xb7\xdb\x53\x4e\xf3\xff" "\x51\x7c\x3f\xdb\xaa\x56\xfc\x22\xbe\xec\x9d\xf7\xed\x4b\xbf\x9f\xb5" "\xee\x2b\x9f\x58\xf6\xae\x8a\x4d\x5a\x7e\x81\xe8\x73\xe1\x77\xd1\xfc" "\xf3\x8b\xce\x1d\x58\xc9\x9f\x63\xee\x1f\x0d\x33\xa9\x48\xfe\x07\x00" "\x00\x80\x2a\x88\xb9\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9" "\x7f\x43\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x78\x98\x49\x45" "\xf2\x7f\xe9\xfa\xff\x5b\x2e\xad\x68\xff\xfa\xff\xfa\xff\x8d\xe7\x4b" "\xff\xbf\x62\xfd\xff\x77\xf7\x5b\xff\xbf\x78\xbf\xd0\xff\xef\x8d\xb5" "\xf6\xef\xf5\xff\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xa0" "\xdf\xfa\xff\x31\xf7\x6f\xcc\xb2\x4a\xe6\x7f\x00\x00\x00\xa8\x82\x98" "\xfb\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x14\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x73\x98\x49\x45\xf2\xbf\xfe\xff" "\xf5\xee\xff\x0f\xeb\xff\xeb\xff\xeb\xff\xc7\x75\xa9\xff\xaf\xff\xbf" "\x0e\xf4\xff\x3b\xd3\xff\xef\x42\xff\x7f\x2a\xab\x56\xff\xff\x72\x2f" "\x8f\x5f\xff\x5f\xff\x9f\xa5\xfa\xad\xff\x1f\x73\xff\x2d\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x1a\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xe6\x30\x93\x8a\xe4\x7f\xfd\xff\xbe\xf9\xfc\xff\xbf\xcb\xf4\xff\x73" "\xfa\xff\x8b\xb7\xd3\xff\x2f\xe8\xff\xeb\xff\xaf\x86\xfe\x7f\x67\xfa" "\xff\x5d\xe8\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31" "\xf7\xbf\x28\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x17\x87" "\x99\xc8\xff\x00\x00\x00\xd0\x7f\x46\xae\xed\x66\x31\xf7\xbf\x24\xcc" "\x64\x49\xfe\xbf\xc6\x1d\x00\x00\x00\x00\x37\x5c\xcc\xfd\xb7\x67\x2d" "\x45\xf0\x8a\xfc\xfd\xbf\xfe\x7f\xdf\xf4\xff\x73\xfa\xff\xfa\xff\xfa" "\xff\x83\xd8\xff\x1f\xce\xf4\xff\xfb\x87\xfe\x7f\x67\xfa\xff\x5d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\xcf\x73\x7f\x36\x9e" "\xbd\x34\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x3b\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x29\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\x7f\x4b\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x7f\xfb\xfd\xfb\xfc\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xbf\x33" "\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xbb\xc2\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x7f\x39\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\x7f\x6b\x98\x49\x45\xf2\xbf\xfe\x7f\x9f\xf7\xff\x63\x73\x54" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x45\xf4\xff\x3b\xd3\xff\xef" "\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x2f" "\x0b\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xe5\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\xaf\x08\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x9f\x08\x33\xa9\x48\xfe\xd7\xff\xef\x51\xff\x7f\xfb\x2d" "\x4b\x2e\xf3\xf9\xff\xfa\xff\x69\x7d\x84\xa9\xff\xaf\xff\xaf\xff\x7f" "\xfd\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d" "\xd5\x6f\xfd\xff\x98\xfb\xef\x0e\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a" "\x88\xb9\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x3d\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xdb\xc3\x4c\x2a\x92\xff\xf5" "\xff\xfb\xfc\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x45" "\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e" "\xeb\xff\xc7\xdc\xff\xca\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98" "\xfb\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x55\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x8e\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\xd7\xff\x1f\x4c\xfa\xff\x9d" "\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f" "\xe6\xfe\x57\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x33" "\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xbe\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\xc9\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xf6\xfb\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff\x77" "\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\xfb" "\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x20\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\x7f\x2a\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\x7f\x3a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f" "\x55\xfd\xff\x57\x2c\xde\xaf\xfe\x7f\x41\xff\xbf\xbf\xe8\xff\x77\xa6" "\xff\xdf\x85\xfe\xbf\xfe\xff\x0d\xef\xff\x8f\xea\xff\x53\x2a\xfd\xd6" "\xff\x8f\xb9\x7f\x57\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x84\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\xef\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xf7\xf9\xff\xed\xf7\xaf\xff\x3f\x98\xf4\xff\x3b\xeb" "\x7d\xff\x3f\x3e\x44\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xcf\x52" "\xfd\xd6\xff\x8f\xb9\xff\xc1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xef\x0f\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x10\x66\x52\x91\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7e\xff\xfa\xff\x83\x49\xff\xbf" "\x33\x9f\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd" "\xff\x98\xfb\x0f\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff" "\x9a\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5f\x09\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xff\xd5\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\xd7\xff\x1f\x4c\x03\xdb\xff\x2f" "\xbe\x0c\xeb\xff\xeb\xff\xeb\xff\x0f\xf0\xf1\xeb\xff\xeb\xff\xb3\x54" "\xbf\xf5\xff\x63\xee\x3f\x14\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10" "\x73\xff\xaf\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x36\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x70\x98\x49\x45\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xfb\xfd\xeb\xff\x0f\xa6\x81\xed" "\xff\x07\x15\xeb\xff\x8f\xb5\x5e\xa0\xff\xaf\xff\x3f\xc8\xc7\xaf\xff" "\xaf\xff\xcf\x52\xfd\xd6\xff\x8f\xb9\xff\x75\x61\x26\x15\xc9\xff\x00" "\x00\x00\x50\x05\x31\xf7\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x69\xc4" "\xdc\xff\xfa\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x37\x84\x99" "\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xdf\xbf\xfe" "\xff\x60\xd2\xff\xef\xac\xcf\xfa\xff\x4b\x5c\xe7\xfe\xff\x50\xd7\x03" "\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x1b" "\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x53\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\x9b\xc3\x4c\xe4\x7f\x00\x00\x00\x28" "\x8d\x98\xfb\xdf\x12\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xdf\x7e\xff\xfa\xff\x83\x49\xff\xbf\xb3\x8a\xf7\xff\xbb\xd3" "\xff\x2f\x59\xff\x7f\xe2\x16\xfd\x7f\xfd\x7f\xae\x97\x76\x09\x68\xa9" "\x6b\xeb\xff\xdf\xfc\xf3\x65\x77\xb8\xc6\xfe\x7f\xcc\xfd\xbf\x1e\x66" "\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xc3\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x7f\x5b\x98\x49\x45\xf2\xff\x9a\xfa\xff\x63\xfa\xff\x91\xfe\x7f" "\xf3\xf1\xeb\xff\xb7\x5f\x1f\xfa\xff\xfa\xff\xfa\xff\xd7\x9f\xfe\x7f" "\x67\x03\xd6\xff\xff\xc5\xad\xe1\x72\xfd\xff\x82\xfe\x7f\x7f\x1f\x7f" "\x5f\xf6\xff\x7f\xb8\x5c\xff\x7f\x61\x43\xeb\xed\xf5\xff\xb9\x1e\xae" "\xad\xff\xdf\x56\x4f\xfa\xff\x31\xf7\xbf\x3d\xcc\xa4\x22\xf9\x1f\x00" "\x00\x00\xaa\x20\xe6\xfe\x77\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x37\xc2\x4c" "\x2a\x92\xff\x7d\xfe\x7f\xfd\x38\x16\xdb\xcb\xfa\xff\xfa\xff\xf9\x05" "\xfa\xff\xfa\xff\xfa\xff\x03\xab\x67\xfd\xff\x85\x17\x9a\xbe\x20\xea" "\xff\x17\x7c\xfe\xbf\xfe\x7f\x27\xfa\xff\x7d\xd8\xff\xf7\xf9\xff\xdc" "\x60\xfd\xd6\xff\x8f\xb9\xff\x5d\x61\x26\x15\xc9\xff\x00\x00\x00\x50" "\x05\x31\xf7\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xee" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf7\x84\x99\x54\x24\xff" "\xeb\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\xd7\xff\x1f\x4c" "\x3e\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xfb\xad\xff\xff\x9f\xfa" "\xff\x0c\xb6\x7e\xeb\xff\xc7\xdc\xff\x68\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\xff\xcd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf7\x85\x99\x54" "\x24\xff\xeb\xff\x0f\x4a\xff\x7f\x42\xff\x5f\xff\x5f\xff\xbf\xe5\xf1" "\xe8\xff\xeb\xff\xb7\xa3\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfd" "\xd6\xff\xf7\xf9\xff\x0c\xb8\x7e\xeb\xff\xc7\xdc\xff\xfe\x30\x93\x95" "\xe7\xff\xf1\x15\x6f\x09\x00\x00\x00\xdc\x10\x31\xf7\xff\x56\x98\x49" "\x45\xfe\xfe\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xdf\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\xff\x9d\x30\x93\x8a\xe4\x7f\xfd\xff\x41\xe9" "\xff\xfb\xfc\xff\x4c\xff\x5f\xff\xbf\xe5\xf1\xe8\xff\xeb\xff\xb7\xb3" "\x7e\xfd\xff\xf8\xce\xa3\xff\xaf\xff\x7f\x1d\xfa\xff\x1b\xdb\x1f\x9e" "\xfe\x7f\x7f\x1f\xbf\xfe\xbf\xfe\x3f\x4b\xf5\x5b\xff\x3f\xe6\xfe\xdf" "\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x03\x61\x26\xf2" "\x3f\x00\x00\x00\x0c\x84\x76\xff\x4f\x76\xab\x98\xfb\x8f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0d\x33\xa9\x48\xfe\xd7\xff\xd7" "\xff\xd7\xff\xef\xd3\xfe\xff\x9f\x6e\xfb\x97\xef\x7f\xe7\x1d\x47\x77" "\xe9\xff\xeb\xff\xeb\xff\xaf\xca\xba\x7e\xfe\x7f\xfd\xc5\xef\xf3\xff" "\xf5\xff\x7d\xfe\x7f\xa2\xff\xaf\xff\xaf\xff\x4f\xab\x7e\xeb\xff\xc7" "\xdc\x7f\x2c\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xdf\x0b" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x1e\x66\x22\xff\x03\x00" "\x00\x40\x69\xc4\xdc\x3f\x13\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff" "\xdf\x27\xfd\xff\x5a\x2d\xcb\x4a\xf2\xf9\xff\xf1\x7c\xe8\xff\x37\xeb" "\x59\xff\x3f\xbe\xe9\xea\xff\xb7\xb5\xae\xfd\xff\xf7\x2e\xf6\xc4\xf5" "\xff\x57\xdb\xff\x1f\x6b\x7b\xa9\xfe\xbf\xfe\xff\x20\x1f\xbf\xfe\xbf" "\xfe\x3f\x4b\xf5\x5b\xff\x3f\xe6\xfe\xd9\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x90\xfb\x87\x4e\x14\x73\xf1\x0a\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\x93\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0c" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xef\x93\xfe\x7f\xeb\xe7\xff" "\x0f\x70\xff\xdf\xe7\xff\xb7\xe7\xf3\xff\xd7\x87\xfe\x7f\x67\xfd\xd3" "\xff\x6f\x4f\xff\x5f\xff\x7f\x90\x8f\x5f\xff\x5f\xff\x9f\xa5\xfa\xad" "\xff\x1f\x73\xff\x5c\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x70\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\xa9\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9" "\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6" "\xfe\xd3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x9f\x09\x33" "\x91\xff\xf9\x7f\xf6\xee\xac\xd9\xd2\xba\xba\xe3\xf8\xee\xa4\x21\xdd" "\xc5\x0b\xc8\x45\x2a\x55\xdc\xe7\x15\xa4\xb8\x48\xaa\x72\x97\xbc\x80" "\x5c\xe4\x26\x17\x49\x55\x2a\x17\x21\x09\x19\x9c\x69\x14\x27\x54\x9c" "\x67\x14\xe7\x19\x07\x50\xc4\x09\xe7\x09\x9c\x50\x9c\xc5\x79\x56\x1c" "\x70\xc6\xa1\x2d\x3d\x6b\xad\xee\x73\x7a\x9f\x67\x9f\x6e\xf6\xe9\x7e" "\x9e\xff\xfa\x7c\x6e\x96\x76\xd3\xee\x23\xb6\x0d\x3f\xe0\x5b\x7f\x00" "\x00\x00\x86\x91\xbb\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xff\xcf\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x87\xed\xff\xff\x46\xff\xbf" "\xdf\xe7\xeb\xff\xf5\xff\x23\xd3\xff\x4f\xd3\xff\x6f\xa0\xff\xd7\xff" "\xeb\xff\xf5\xff\x6c\xd5\xdc\xfa\xff\xdc\xfd\xff\x15\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\xff\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x2b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x7f\xe2\x96" "\x26\xfb\x7f\x4f\xff\x7f\x64\xd5\xb3\xff\xcf\x8c\x57\xff\x3f\x52\xff" "\xef\xfd\xff\x7d\x3f\x5f\xff\xaf\xff\x1f\xd9\xf9\xed\xff\xaf\xfa\xc3" "\xaf\x7c\xfa\x7f\xfd\xbf\xfe\x3f\xe8\xff\xf5\xff\xfa\x7f\xf6\x9a\x5b" "\xff\x9f\xbb\xff\x7f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\x7f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xff\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\xbf\xb8\xa5\xc9\xfe\xf7\xfe\xbf\xf7\xff" "\xf5\xff\xfa\x7f\xfd\xff\xfa\xcf\xd7\xff\x2f\x93\xf7\xff\xa7\x75\xea" "\xff\xaf\xb8\xf3\x92\xff\xb8\xe7\xe6\xbf\xb8\xe5\x6c\x3e\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xd9\xae\xb9\xf5\xff\xb9\xfb\xef\x1f\xb7\xec\x1e" "\x7e\x7f\xb7\xf7\xcf\x47\x01\x00\x00\x80\xe5\xc8\xdd\xff\x80\xb8\xa5" "\xc9\xdf\xff\x07\x00\x00\x80\x0e\x72\xf7\x3f\x30\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x1f\x14\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x5f\xff\xf9\xfa\xff\x65\xd2\xff\x4f\xeb\xd4\xff\x9f\xcb" "\xe7\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xdb\x35\xb7\xfe\x3f\x77\xff\x83" "\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x90\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xbf\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x4f\xc4\x2d\x4d\xf6\xbf\xfe\xff\xf0\xfb\xff\xdf\xea\xff\xf5\xff" "\x71\xf5\xff\xfa\x7f\xfd\xff\xe1\xd3\xff\x4f\xd3\xff\x6f\xa0\xff\xd7" "\xff\xeb\xff\xf5\xff\x6c\xd5\xdc\xfa\xff\xdc\xfd\x57\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xa1\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xb0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x3a\x6e" "\x69\xb2\xff\xf5\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x3f\x5f\xff" "\xbf\x4c\xfa\xff\x69\xe7\xbf\xff\x5f\xf7\x47\xc8\xfd\xe9\xff\x17\xdf" "\xff\x5f\xa4\xff\xd7\xff\xeb\xff\x39\xdd\x59\xf6\xff\xf7\x4e\xfc\xb2" "\xbd\x95\xfe\x3f\x77\xff\xc3\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\x88\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x64\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2a\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xf3\xf5\xff\xcb\xa4\xff\x9f\x36\x9b" "\xf7\xff\x8f\x1c\x5d\xfb\xcd\xfa\xff\xc5\xf7\xff\xde\xff\xd7\xff\xeb" "\xff\xd9\x65\x6e\xef\xff\xe7\xee\x7f\x74\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xaf\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xc7" "\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x63\xe3\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x3f\x7f\xaa\xff\xbf\xe5\xb4" "\xaf\x4f\xff\x3f\x2f\x1b\xfb\xfb\x0d\xbf\xb0\xeb\xff\xc3\x61\xf7\xff" "\xfb\xd0\xff\xeb\xff\x97\xfc\xf5\xeb\xff\xf5\xff\x9c\x69\x6e\xfd\x7f" "\xee\xfe\xc7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xda\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x7c\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x3f\x21\x6e\x69\xb2\xff\xd7\xf7\xff\xa7\xbe\x5f\xff" "\x7f\x30\xfa\xff\xdd\x5f\xbf\xfe\x7f\xfd\xcf\x8f\x6d\xf5\xff\xf9\x9f" "\xa8\xff\x9f\xec\xff\xff\xd6\xfb\xff\x3d\x79\xff\x7f\x9a\xfe\x7f\x03" "\xfd\xbf\xfe\x5f\xff\xbf\x5f\xff\x7f\x7c\xd3\x8f\xd7\xff\xb3\xce\xdc" "\xfa\xff\xdc\xfd\x4f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x93\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xc9\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\x94\xb8\xa5\xc9\xfe\xf7\xfe\xbf\xfe\x5f" "\xff\xbf\xbc\xfe\xdf\xfb\xff\x3b\x2e\xe4\xfb\xff\xab\xf3\xde\xff\x1f" "\xd5\xff\x1f\x90\xfe\x7f\x9a\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xef\xfd" "\x7f\xb6\x6a\x6e\xfd\x7f\xee\xfe\xa7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x69\x71\x8b\xfd\x0f\x00\x00\x00\xcb\x70\xfa\x3f\x3b" "\xb0\xf7\x1f\x28\x0d\xb9\xfb\x9f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xcf\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xef\xdd" "\xff\x1f\x5b\x48\xff\xef\xfd\xff\x83\xd2\xff\x4f\xd3\xff\x6f\x70\x61" "\xfb\xff\x23\x83\xf6\xff\x47\x07\xeb\xff\xaf\xdf\xef\xc7\xcf\xa1\xff" "\xbf\x52\xff\xcf\xcc\xec\xea\xff\x6f\x3d\xf5\xed\x17\xaa\xff\xcf\xdd" "\xff\xcc\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2b\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1d\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\xd7\xc5\x2d\x4d\xf6\xff\xa1\xf7\xff\xc7\xf7\xff\x6c\xfd" "\xff\x7d\xea\xff\x2f\xd6\xff\xeb\xff\xf5\xff\x9d\xde\xff\xd7\xff\x1f" "\x94\xfe\x7f\x9a\xfe\x7f\x03\xef\xff\x7b\xff\xdf\xfb\xff\xfa\x7f\xb6" "\x6a\x57\xff\x7f\x9a\x0b\xd5\xff\xe7\xee\x7f\x4e\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf3\xe2\x96\x26" "\xfb\x7f\x4b\xfd\xff\x75\xd7\x5c\xfd\xd7\xde\xff\xdf\xc3\xfb\xff\xfa" "\xff\xbd\x3f\x3f\xf4\xff\xfa\x7f\xfd\xff\xe1\xd3\xff\x4f\xd3\xff\x6f" "\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd5\xdc\xfa\xff\xdc\xfd\xcf\x8f" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x0b\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xa2\xb8\xa5\xc9\xfe\x3f\xf4\xf7\xff\x27\x74\xe8\xff\xf3\xdb\xf5" "\xff\xfa\xff\x95\xfe\x5f\xff\xaf\xff\x3f\x2f\xda\xf6\xff\x47\xd6\xfd" "\x91\xe8\x4c\xfb\xf4\xff\xb7\xff\xdb\x89\x7f\xd8\xfd\x2d\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\x0b\x66\xd1\xff\x9f\x3c\xf5\x67\x97\xb9" "\xfb\x5f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x97\xc4\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4b\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x65\x71\xcb\x20\xfb\xff\xd8\x86\xef\xd7\xff\x7b\xff" "\x5f\xff\xaf\xff\xd7\xff\xaf\xff\x7c\xfd\xff\x32\xb5\xed\xff\x0f\xc8" "\xfb\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x5b\x35\x8b\xfe\xff\xb4" "\x7f\x9f\xbb\xff\xe5\x71\xcb\x20\xfb\x1f\x00\x00\x00\x58\xd5\xee\x7f" "\x45\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x32\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\x5f\x15\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x5f\xff\xf9\xfa\xff\x65\xd2\xff\x4f\xd3\xff\x6f\xa0" "\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd5\xdc\xfa\xff\xdc\xfd\x37\xc4\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xd5\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x6d\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xe7" "\xeb\xff\x97\x49\xff\x3f\x4d\xff\xbf\x5a\xad\x6e\x9c\xf8\x02\xd6\xf5" "\xff\x27\xff\x4c\xff\xaf\xff\xd7\xff\xeb\xff\x39\x47\x73\xeb\xff\x73" "\xf7\xbf\x2e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x37\xc6\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4d\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xfa\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\xfa\xcf\xd7\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x03\xef\xff\xeb" "\xff\xf5\xff\xfa\x7f\xb6\x6a\x6e\xfd\x7f\xee\xfe\x37\xc4\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x63\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x12\xb7" "\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xf9\xfa\xff" "\x65\x3a\xbc\xfe\x7f\xa5\xff\xd7\xff\xeb\xff\x37\xd0\xff\xeb\xff\xf5" "\xff\xec\x35\xb7\xfe\x3f\x77\xff\x9b\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4b" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x35\x6e\x69\xb2\xff\xf5" "\xff\xd5\xdc\xfd\xe5\x4a\xff\xaf\xff\xd7\xff\xef\xfa\xed\xf4\xff\xfa" "\xff\x25\xf2\xfe\xff\x34\xfd\xff\x06\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x56\xcd\xad\xff\xcf\xdd\xff\xb6\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xdf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8f\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc4\x2d\x4d\xf6\xbf\xfe\xdf" "\xfb\xff\xbb\xfb\xff\xd5\x4a\xff\xaf\xff\xd7\xff\xef\x38\x0f\xfd\xff" "\xb1\x95\xfe\x7f\xeb\xf4\xff\xd3\xf4\xff\x1b\xe8\xff\x0f\xd2\xcf\x9f" "\x3c\x79\x72\xfd\x9f\x6c\xcd\xb6\xff\xff\x93\xd5\x40\xfd\xff\xf1\x7d" "\x7f\xbc\xfe\x9f\x39\x9a\x5b\xff\x9f\xbb\xff\x9d\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\x7f\x57\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x13\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\xfa\xff\xf5\x9f\xef\xfd\xff" "\x65\xd2\xff\x4f\xd3\xff\x6f\xa0\xff\xf7\xfe\xff\xec\xfb\xff\xfd\xe9" "\xff\x99\xa3\xb9\xf5\xff\xb9\xfb\xdf\x1b\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xfb" "\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x03\x3b\xf7\xd4\x5f\x00" "\x68\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x6f\xff\x7f\x62\xa5\xff" "\x5f\xe9\xff\x17\x4b\xff\x3f\x4d\xff\xbf\x81\xfe\x5f\xff\xaf\xff\xd7" "\xff\xb3\x55\x73\xeb\xff\x63\xf7\xaf\x3e\x18\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\xdb\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x50\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\xff\x65\xf6\xff\xc7\xbc\xff\xaf\xff\xd7\xff\xaf" "\x35\x97\xfe\xff\xb2\xcb\xfe\xfe\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xbb\x9b\x5b\xff\x9f\xbb\xff\xc3\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\xff\x48\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\x7f\x34\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x16\xb7\x34\xd9" "\xff\x67\xf6\xff\x17\xad\x76\x0a\xd5\x1d\xeb\xfa\xff\x68\xd4\xf4\xff" "\xa7\xd1\xff\xef\xfe\xfa\xf5\xff\xeb\x7f\x7e\x2c\xe5\xfd\x7f\xfd\xff" "\x0e\xfd\xff\x32\xcd\xa5\xff\xf7\xfe\xff\xb9\x7d\xfd\xfa\x7f\xfd\xff" "\x92\xbf\xfe\xb3\xea\xff\x2f\x3d\xf3\xc7\x1f\x66\xff\xff\xbb\x03\xfc" "\x7f\x41\xff\xcf\x61\x98\x5b\xff\x9f\xbb\xff\x8e\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x7f\x3c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x3f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x77\xc6\x2d\x4d" "\xf6\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\x76\xfa\xff\x13\xf5\x3f\xa3" "\xfe\x7f\x3d\xfd\xff\xf9\xa1\xff\x9f\xa6\xff\xdf\x40\xff\xaf\xff\xf7" "\xfe\xff\xe5\xff\xf2\xa7\xfa\x7f\xb6\x67\x6e\xfd\x7f\xee\xfe\x4f\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x53\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xff\x4c\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xf7\xff\xd7" "\x7f\xbe\xfe\x7f\x99\xf4\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f" "\xef\xff\xb3\x55\x73\xeb\xff\x73\xf7\x7f\x36\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xcf\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x17\xe2\x96\x26\xfb" "\x7f\xfb\xfd\xff\xa5\xfa\xff\xa0\xff\x9f\x4b\xff\xff\xcf\xfa\xff\x3d" "\x9f\xaf\xff\xd7\xff\x8f\x6c\x26\xfd\x7f\xfe\xb4\xba\x20\xfd\xff\x45" "\x13\xdf\xa7\xff\xdf\x40\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xaa\xb9\xf5" "\xff\xb9\xfb\xef\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x17" "\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x4b\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xe5\xb8\xa5\xc9\xfe\xf7\xfe\x7f\xaf\xfe\xff" "\xc8\xaa\x63\xff\xef\xfd\x7f\xfd\xbf\xfe\xbf\x93\x99\xf4\xff\xde\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\x33\xec\xff\x73\xf7\x7f\x25" "\x6e\x69\xb2\xff\x01\x00\x00\x60\xa9\xfe\xf1\xaf\xfe\xfd\xae\x83\xfe" "\xb6\xb9\xfb\xbf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x8b" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xaf\xc7\x2d\x4d\xf6\xbf\xfe" "\xbf\x57\xff\xdf\xf3\xfd\x7f\xfd\xbf\xfe\x5f\xff\xdf\x89\xfe\x7f\x9a" "\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xab\xe6\xd6\xff\xe7\xee" "\xff\x46\xdc\x72\xda\xf0\x3b\x7a\xd6\xff\x2d\x01\x00\x00\x80\x39\xc9" "\xdd\xff\xcd\xb8\xa5\xc9\xdf\xff\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2b" "\x6e\x39\x63\xff\x9f\x3c\xe0\x3f\xd5\x0e\x00\x00\x00\xcc\x4d\xee\xfe" "\x6f\xc7\x2d\x4d\xfe\xfe\xbf\xfe\x7f\xe6\xfd\xff\x6a\xfc\xfe\xff\xee" "\x95\xfe\x5f\xff\xbf\x43\xff\xaf\xff\xdf\x06\xfd\xff\xb4\xfb\xd8\xff" "\x9f\x3c\xa2\xff\xd7\xff\x4f\xd0\xff\xeb\xff\xf5\xff\xec\x35\xb7\xfe" "\x3f\x77\xff\x77\xe2\x96\x26\xfb\x1f\x00\x00\x00\x06\xb5\xeb\xaf\x28" "\xe4\xee\xff\x6e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2f\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x1f\xb7\x34\xd9\xff\xfa\xff" "\x99\xf7\xff\xe7\xf4\xfe\xff\xf1\xfa\x57\x4b\xe8\xff\xbd\xff\x7f\x88" "\xfd\xff\xb5\xc7\xd6\x7e\xbe\xfe\x5f\xff\x3f\x32\xfd\xff\x34\xef\xff" "\x6f\xa0\xff\x5f\x70\xff\x9f\xbf\x2a\xeb\xff\xf5\xff\xcc\xc9\xdc\xfa" "\xff\xdc\xfd\x77\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x07" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc3\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xff\x51\xdc\xd2\x64\xff\xeb\xff\x2f\x58\xff\xff" "\xc7\xdf\xe1\x87\xd3\xff\x2f\xeb\xfd\x7f\xfd\xbf\xf7\xff\xcf\xbd\xff" "\xff\xf3\x4b\x4e\xdc\xf6\x4f\xff\x7a\xd3\x0d\xfa\x7f\x4e\x39\x9f\xfd" "\x7f\xfe\x5c\xd0\xff\xeb\xff\xf5\xff\x3b\xbc\xff\xaf\xff\xd7\xff\xb3" "\xd7\xdc\xfa\xff\xdc\xfd\x3f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x3d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x93\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x69\xdc\xd2\x64\xff\xeb\xff\x47" "\x7c\xff\x7f\x99\xfd\x7f\xfe\xbe\xbe\x00\xfd\xff\x89\xe5\xf5\xff\xd9" "\x14\x77\xef\xff\xbd\xff\xaf\xff\x3f\x93\xf7\xff\xa7\xe9\xff\x37\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\xb6\x6a\x6e\xfd\x7f\xee\xfe\x9f\xc5\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xe7\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\x8b\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x65\xdc\xd2\x64\xff\xaf\xef\xff\x2f\xae\xef\xd7\xff\x1f\x8c\xfe\x7f" "\xf7\xd7\xef\xfd\xff\xf5\x3f\x3f\xbc\xff\xaf\xff\xd7\xff\x1f\x3e\xfd" "\xff\x34\xfd\xff\x06\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x56\xcd\xad\xff" "\xcf\xdd\xff\xab\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x1b" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x8e\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\xdf\xc4\x2d\x4d\xf6\xbf\xf7\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfd\xe7\xeb\xff\x97\x49\xff\x3f\x4d\xff\xbf\x81\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x55\x73\xeb\xff\x73\xf7\xff\x3e\x00\x00" "\xff\xff\x3f\xdd\x74\xd8", 24962); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x2000000000c0, /*flags=MS_NOSUID*/ 2, /*opts=*/0x200000007300, /*chdir=*/0x21, /*size=*/0x6182, /*img=*/0x200000001140); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }