// https://syzkaller.appspot.com/bug?id=225019e8992ce7a71b36d76899fa98dd848a6f73 // 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 < 2; 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[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 // 6f 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 // 64 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 // 68 61 72 73 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 // ad d4 ce ec 7c b8 70 2b 1b b9 ec 93 0d ab fc 16 59 07 d7 47 8e // 07 06 b0 04 08 dc 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 // 84 4e f8 e6 97 2c db 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f // 94 1f 15 4a e2 05 d3 4a 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 // fc e1 2a e6 4a 5a 52 1a a8 30 80 b7 67 2c 4e 15 66 a6 1a 0a de // 4b 6c 9d 78 15 10 53 d9 fb 31 c0 97 10 07 f2 69 f8 73 e1 4e 5f // e3 c4 6c 0a c2 b2 2d 40 39 1a e3 1d 20 25 dc d9 47 ad f7 67 39 // ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d 78 16 e0 b9 39 81 de 11 47 // 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 65 b9 8a de 05 3b 2f 9b // 79 18} (length 0x122) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6297 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6297) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000003c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61" "\x74\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x6d\x61\x63\x63\x79\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce" "\xec\x7c\xb8\x70\x2b\x1b\xb9\xec\x93\x0d\xab\xfc\x16\x59\x07\xd7\x47" "\x8e\x07\x06\xb0\x04\x08\xdc\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28" "\x9d\xcb\x18\x25\x04\x84\x4e\xf8\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9" "\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f\x94\x1f\x15\x4a\xe2\x05\xd3\x4a" "\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02\x51\xd6\x64\xfc\xe1\x2a\xe6" "\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e\x15\x66\xa6\x1a\x0a\xde" "\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xc0\x97\x10\x07\xf2\x69\xf8" "\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xc2\xb2\x2d\x40\x39\x1a\xe3\x1d\x20" "\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30\x04\x0b\x37" "\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2\xf4\x6d" "\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9\x8a\xde\x05\x3b\x2f\x9b\x79" "\x18", 290); memcpy( (void*)0x200000000600, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7" "\xca\x22\x0a\x16\x42\x93\xc4\x40\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0" "\x82\x0d\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0" "\x44\x23\x21\x16\x3c\x04\x08\x89\x25\x20\x96\xac\x78\x80\x2c\xd8\xb2" "\xe3\x01\xb0\x64\x23\x01\x59\xa5\x50\xcd\x9c\x33\xae\x69\xba\xdd\xbe" "\x64\xba\x7a\xe6\xfc\x7e\xd2\xa4\xea\xab\x53\x35\x7d\x2a\xff\xae\xe9" "\x6e\x57\x55\x9f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe2\x7b\xdf\xfd\xc1\x99\x2a\x22\x2e\xfd\x3c\x2d\x38\x16\xf1" "\x99\xe8\x47\xf4\x22\x56\x9a\x7a\x2d\x22\x56\xd6\x8e\xe5\xf5\x07\x11" "\xf1\x5c\x6c\x37\xc7\xb3\x11\x31\x5c\x8a\xa8\x72\xe3\xd3\x11\xaf\x45" "\xc4\x47\x47\x23\xee\xde\xbb\xb5\xde\x2c\x3a\xfb\x90\xfd\xf8\xce\x9f" "\xfe\xfe\xbb\x1f\x1e\xf9\xfe\xdf\xfe\x30\x3c\xf5\x9f\x3f\xdf\xe8\xbf" "\x3e\x6d\xbd\x9b\x37\x7f\xfd\xef\xbf\xdc\x7e\xfc\xfd\x05\x00\x00\x80" "\x12\xd5\x75\x5d\x57\xe9\x63\xfe\xf1\xf4\xf9\xbe\xd7\x75\xa7\x00\x80" "\xb9\xc8\xaf\xff\x75\x92\x97\xab\x17\xae\xde\x5c\xb0\xfe\xa8\xd5\x6a" "\xb5\xfa\x00\xd6\x6d\xf5\x64\xb7\xdb\x45\x44\x6c\xb6\xb7\x69\xde\x33" "\x38\x1d\x0f\x00\x07\xcc\x66\x7c\xdc\x75\x17\xe8\x90\xfc\x8b\x36\x88" "\x88\x23\x5d\x77\x02\x58\x68\x55\xd7\x1d\x60\x5f\xdc\xbd\x77\x6b\xbd" "\x4a\xf9\x56\xed\xd7\x83\xb5\x9d\xf6\x7c\x2d\xc8\x9e\xfc\x37\xab\xdd" "\xfb\x3b\xa6\x4d\x67\x19\xbf\xc6\x64\x5e\xcf\xaf\xad\xe8\xc7\x33\x53" "\xfa\xb3\x32\xa7\x3e\x2c\x92\x9c\x7f\x6f\x3c\xff\x4b\x3b\xed\xa3\xb4" "\xde\x7e\xe7\x3f\x2f\xd3\xf2\x1f\xed\xdc\xfa\x54\x9c\x9c\x7f\x7f\x3c" "\xff\x31\x87\x27\xff\xde\xc4\xfc\x4b\x95\xf3\x1f\x3c\x52\xfe\x7d\xf9" "\x03\x00\x00\x00\x00\xc0\x02\xcb\xff\xfe\x7f\xac\xe3\xf3\xbf\x4b\x4f" "\xbe\x2b\x0f\xe5\x41\xe7\x7f\xd7\xe6\xd4\x07\x00\x00\x00\x00\x00\x00" "\x00\xf8\xb4\x3d\xe9\xf8\x7f\xbb\x2a\xe3\xff\x01\x00\x00\xc0\xa2\x6a" "\x3e\xab\x37\x7e\x73\xf4\xfe\xb2\x69\xdf\xc5\xd6\x2c\xbf\x58\x45\x3c" "\x35\xb6\x3e\x50\x98\x74\xb3\xcc\x6a\xd7\xfd\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x92\x0c\x76\xae\xe1\xbd\x58\x45\x0c\x23\xe2\xa9" "\xd5\xd5\xba\xae\x9b\x9f\xb6\xf1\xfa\x51\x3d\xe9\xf6\x07\x5d\xe9\xfb" "\x0f\x25\xeb\xfa\x8f\x3c\x00\x00\xec\xf8\xe8\xe8\xd8\xbd\xfc\x55\xc4" "\x72\x44\x5c\x4c\xdf\xf5\x37\x5c\x5d\x5d\xad\xeb\xe5\x95\xd5\x7a\xb5" "\x5e\x59\xca\xef\x67\x47\x4b\xcb\xf5\x4a\xeb\x73\x6d\x9e\x36\xcb\x96" "\x46\xb3\xdf\x0f\xaf\xc4\xa8\x6e\x7e\xd9\x72\x6b\xbb\xb6\x59\x9f\x97" "\x67\xb5\x8f\xff\xbe\xe6\xb1\x46\x75\x7f\x76\xc7\xe6\xa4\xc3\xc0\x01" "\x20\x22\x76\x5e\x8d\xee\x7a\x45\x3a\x64\xea\xfa\xe9\xe8\xfa\x5d\x0e" "\x07\x83\xe3\xff\xf0\x71\xfc\xf3\x30\xba\x7e\x9e\x02\x00\x00\x00\xfb" "\xaf\xae\xeb\xba\x4a\x5f\xe7\x7d\x3c\x9d\xf3\xef\x75\xdd\x29\x00\x60" "\x2e\xf2\xeb\xff\xf8\x79\x01\xb5\x5a\xad\x56\xab\xd5\x87\xaf\x6e\xab" "\x27\xbb\xdd\x2e\x22\x62\xb3\xbd\x4d\xf3\x9e\xc1\x70\xfc\x00\x70\xc0" "\x6c\xc6\xc7\x13\x97\xff\xd2\x00\xbf\x45\x98\x96\x3f\x45\x18\x44\xc4" "\x73\x5d\x77\x02\x58\x68\x55\xd7\x1d\x60\x5f\xdc\xbd\x77\x6b\xbd\x4a" "\xf9\x56\xed\xd7\x83\x34\xbe\x7b\xbe\x16\x64\x4f\xfe\x9b\xd5\xf6\x76" "\x79\xfb\x49\xd3\x59\xc6\xaf\x31\x99\xd7\xf3\x6b\x2b\xfa\xf1\xcc\x94" "\xfe\x3c\x3b\xa7\x3e\x2c\x92\x9c\x7f\x6f\x3c\xff\x4b\x3b\xed\xa3\xb4" "\xde\x7e\xe7\x3f\x2f\xd3\xf2\x6f\xf6\xf3\x58\x07\xfd\xe9\x5a\xce\xbf" "\x3f\x9e\xff\x98\xc3\x93\x7f\x6f\x62\xfe\xa5\xca\xf9\x0f\x1e\x29\xff" "\xbe\xfc\x01\x00\x00\x00\x00\x60\x81\xe5\x7f\xff\x3f\xb6\x50\xe7\x7f" "\x47\x8f\xbb\x3b\x33\x3d\xe8\xfc\xef\xda\xbe\x3d\x2a\x00\x00\x00\x00" "\x00\x00\x00\xec\xaf\xbb\xf7\x6e\xad\xe7\xfb\x5e\xf3\xf9\xff\xcf\x4d" "\x58\xcf\xfd\x9f\x87\x53\xce\xbf\x92\x7f\x91\x72\xfe\xe9\xfe\xff\xdd" "\x0b\x6f\x5e\x1a\x5b\xaf\xdf\x9a\xbf\xf3\xd6\xfd\xfc\xff\x75\xef\xd6" "\xfa\xef\x6f\xfc\xf3\xb3\x79\xfa\xb0\xf9\x2f\xe5\x99\x2a\x3d\xb3\xaa" "\xf4\x8c\xa8\xd2\x23\x55\x83\x34\x7d\xcc\x1d\x9b\x62\x6b\xd8\x1f\x35" "\x8f\x34\xac\x7a\xfd\x41\xba\xe6\xa7\x1e\xbe\x13\x57\xe2\x6a\x6c\xc4" "\xe9\x3d\xeb\xf6\xd2\xf1\x70\xbf\xfd\xcc\x9e\xf6\xa6\xa7\xc3\xed\xf6" "\xba\xbf\xd3\x7e\x76\x4f\xfb\x60\xb7\x3d\x6f\x7f\x6e\x4f\xfb\x30\x5d" "\xe9\x54\xaf\xe4\xf6\x93\xb1\x1e\x3f\x89\xab\xf1\xf6\x76\x7b\xd3\xb6" "\x34\x63\xff\x97\x67\xb4\xd7\x33\xda\x73\xfe\x7d\xc7\x7f\x91\x72\xfe" "\x83\xd6\x4f\x93\xff\x6a\x6a\xaf\xc6\xa6\x8d\x3b\x1f\xf6\xfe\xef\xb8" "\x6f\x4f\x27\x3d\xce\x9b\x57\x3e\xff\xab\xd3\xfb\xbf\x3b\x33\x6d\x45" "\x7f\x77\xdf\xda\x9a\xfd\x7b\xa1\x83\xfe\x6c\xff\x3f\x39\x32\x8a\x9f" "\x5d\xdf\xb8\x76\xf2\xe6\xe5\x1b\x37\xae\x9d\x89\x34\xd9\xb3\xf4\x6c" "\xa4\xc9\xa7\x2c\xe7\x3f\x4c\x3f\x39\xff\x97\x5e\xdc\x69\xcf\x7f\xf7" "\xdb\xc7\xeb\x9d\x0f\x47\x8f\x9c\xff\xa2\xd8\x8a\xc1\xd4\xfc\x5f\x6c" "\xcd\x37\xfb\xfb\xf2\x9c\xfb\xd6\x85\x9c\xff\x28\xfd\xe4\xfc\xdf\x4e" "\xed\x93\x8f\xff\x83\x9c\xff\xf4\xe3\xff\x95\x0e\xfa\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x52\xd7\xf5\xf6\x2d\xa2\x6f" "\x46\xc4\xf9\x74\xff\x4f\x57\xf7\x66\x02\x00\xf3\x95\x5f\xff\xeb\x24" "\x2f\x9f\x57\xdd\x7f\xdc\xed\xff\xb8\x77\x3f\xba\xea\xbf\x5a\x3d\xe7" "\xba\x5a\xb0\xfe\xcc\xb5\xfe\xa4\x5e\xac\xfe\xa8\x17\xb2\xfe\xef\x82" "\xf5\x67\xe1\xea\xb6\x7a\xb2\x37\xda\x45\x44\xfc\xb5\xbd\x4d\xf3\x9e" "\xe1\x17\x93\x7e\x19\x00\xb0\xc8\x3e\x89\x88\x7f\x74\xdd\x09\x3a\x23" "\xff\x82\xe5\xef\xfb\x6b\xa6\x27\xba\xee\x0c\x30\x57\xd7\xdf\xff\xe0" "\x47\x97\xaf\x5e\xdd\xb8\x76\xbd\xeb\x9e\x00\x00\x00\x00\x00\x00\x00" "\x00\x8f\x2b\x8f\xff\xb9\xd6\x1a\xff\xf9\x44\x5d\xd7\xb7\xc7\xd6\xdb" "\x33\xfe\xeb\x5b\xb1\xf6\xa4\xe3\x7f\x0e\xf2\xcc\xee\x00\xa3\x53\x06" "\xaa\xee\x3f\xfa\x3e\x3d\xc8\x56\x6f\xd4\xef\xb5\x86\x1b\x7f\x3e\xa6" "\x8d\xff\x3d\xdc\x9d\x7b\xd0\xf8\xdf\x83\x19\x8f\x37\x9c\xd1\x3e\x9a" "\xd1\xbe\x34\xa3\x7d\x79\x46\xfb\xc4\x1b\x3d\x5a\x72\xfe\xcf\xb7\xc6" "\x3b\x3f\x11\x11\xc7\xc7\x86\x5f\x2f\x61\xfc\xd7\xf1\x31\xef\x4b\x90" "\xf3\x7f\xa1\xf5\x7c\x6e\xf2\xff\xd2\xd8\x7a\xed\xfc\xeb\xdf\x1e\xe4" "\xfc\x7b\x7b\xf2\x3f\x75\xe3\xbd\x9f\x9e\xba\xfe\xfe\x07\xaf\x5e\x79" "\xef\xf2\xbb\x1b\xef\x6e\xfc\xf8\xdc\x99\x33\xa7\xcf\x9d\x3f\x7f\xe1" "\xc2\x85\x53\xef\x5c\xb9\xba\x71\x7a\xe7\xbf\x1d\xf6\x78\x7f\xe5\xfc" "\xf3\xd8\xd7\xae\x03\x2d\x4b\xce\x3f\x67\x2e\xff\xb2\xe4\xfc\xbf\x90" "\x6a\xf9\x97\x25\xe7\xff\xc5\x54\xcb\xbf\x2c\x39\xff\xfc\x7e\x4f\xfe" "\x65\xc9\xf9\xe7\xcf\x3e\xf2\x2f\x4b\xce\xff\xe5\x54\xcb\xbf\x2c\x39" "\xff\x2f\xa7\x5a\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\x95" "\x54\xcb\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\x4f\xa6\x5a\xfe" "\x65\xc9\xf9\x9f\x4a\xf5\x43\xe6\xbf\xb2\xdf\xfd\x62\x3e\x72\xfe\xf9" "\x0c\x97\xe3\xbf\x2c\x39\xff\x7c\x65\x83\xfc\xcb\x92\xf3\x3f\x9b\x6a" "\xf9\x97\x25\xe7\x7f\x2e\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c" "\x39\xff\xaf\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xff" "\x5a\xaa\xe5\x5f\x96\x9c\xff\x85\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a" "\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\xf5\x54\xcb\xbf\x2c" "\x39\xff\x6f\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2b\xd5\xf2\x2f\x4b\xce\xff" "\xdb\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\xb9\xff\xfd\xff\x66" "\xcc\x98\x31\x93\x67\xba\xfe\xcb\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x8c\x9b\xc7\xe5\xc4\x5d\xef\x23\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xfc\x8f\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f" "\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\x2a\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xef\xee\x62\xe4" "\x3a\xeb\xfb\x81\x9f\xd9\xf7\x38\x90\x18\x08\xf9\x3b\xf9\x9b\xb0\x71" "\x4c\x08\xce\x26\xbb\x7e\x89\x5f\x68\x5d\x4c\x78\x6d\x78\x2b\x09\xa1" "\xd0\x17\x6c\xd7\xbb\x36\x0b\x7e\xc3\x6b\x97\x40\xa3\xda\x51\xa0\x44" "\xc2\xa8\xa8\xa2\x6d\xb8\x68\x0b\x08\xb5\xb9\xa9\xb0\x5a\x2e\x68\x05" "\x28\x17\xa8\x55\xd5\x4a\xd0\x5e\xd0\x1b\x44\x85\xca\x45\x54\x05\x14" "\x90\x50\x69\x05\x6c\x35\xe7\x3c\xcf\xb3\x33\xb3\xb3\x33\xbb\xde\xf1" "\x66\xe6\x9c\xcf\x47\x4a\x7e\xd9\x99\x33\x73\xce\x9c\x79\x66\x76\xbf" "\x76\xbe\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd0\xe8\xf6\xd7\xcd\x7d\xa2\x96\x65\x59\xad\x56\x2b" "\x2e\xd8\x9c\x65\x2f\xa8\xcf\xeb\x26\x37\xe7\x97\xbc\xfa\xf9\x3d\x3e" "\x00\x00\x00\x60\xfd\x7e\x9e\xff\xfb\xb9\x1b\xd3\x05\x87\x56\x71\xa3" "\x86\x6d\xfe\xf1\xb6\x6f\x7e\x79\x71\x71\x71\x31\x7b\xcf\xf0\x1f\x8f" "\x7e\x66\x71\x31\x5d\x31\x99\x65\xa3\xe3\x59\x96\x5f\x17\x5d\xf9\xde" "\x7b\x6b\x8d\xdb\x04\x8f\x67\x13\xb5\xa1\x86\xaf\x87\xba\xec\x7e\xb8" "\xcb\xf5\x23\x5d\xae\x1f\xed\x72\xfd\x58\x97\xeb\xc7\xbb\x5c\x3f\xd1" "\xe5\xfa\x65\x27\x60\x99\xeb\xb2\x5a\xba\xb3\xed\xf9\x7f\x6e\x2e\x4e" "\x69\x76\x53\x36\x9a\x5f\xb7\xbd\xcd\xad\x1e\xaf\x8d\x0f\xd5\xcf\x5d" "\xba\x6d\x56\xcb\x6f\xb3\x38\x7a\x3c\x9b\xcf\x4e\x66\x73\xd9\x4c\xd3" "\xf6\xc5\xb6\xb5\x7c\xfb\xaf\xde\x5e\xdf\xd7\x9b\xb3\xb8\xaf\xa1\x86" "\x7d\x6d\xad\xaf\x90\x1f\x3d\x7a\x2c\x1e\x43\x2d\x9c\xe3\xed\x4d\xfb" "\x5a\xba\xcf\xe8\x07\xaf\xcd\x26\x7f\xfc\xa3\x47\x8f\xfd\xe5\xf9\x67" "\x6f\x69\x37\xbb\x9e\x86\xa6\xfb\x2b\x8e\xf3\xae\x6d\xf5\xe3\xfc\x58" "\xb8\xa4\x38\xd6\x5a\x36\x9e\xce\x49\x3c\xce\xa1\x86\xe3\xdc\xda\xe6" "\x39\x19\x6e\x3a\xce\x5a\x7e\xbb\xfa\x7f\xb7\x1e\xe7\x73\xab\x3c\xce" "\xe1\xa5\xc3\xdc\x50\xad\xcf\xf9\x44\x36\x94\xff\xf7\xb7\xf2\xf3\x34" "\x52\xcb\xda\x9c\xa7\xad\xe1\xb2\x9f\xde\x91\x65\xd9\xa5\xa5\xc3\x6e" "\xdd\x66\xd9\xbe\xb2\xa1\x6c\x53\xd3\x25\x43\x4b\xcf\xcf\x44\xb1\x22" "\xeb\xf7\x51\x5f\x4a\x2f\xce\x46\xd6\xb4\x4e\x6f\x5f\xc5\x3a\xad\xcf" "\xd9\xed\xcd\xeb\xb4\xf5\x35\x11\x9f\xff\xdb\xc3\xed\x46\x56\x38\x86" "\xc6\xa7\xe9\x07\x8f\x8d\x35\x3c\xef\x3f\x5b\xbc\x9a\x75\x1a\xd5\x1f" "\xf5\x4a\xaf\x95\xd6\x35\xd8\xeb\xd7\x4a\xbf\xac\xc1\xb8\x2e\xbe\x95" "\x3f\xe8\x27\xda\xae\xc1\xed\xe1\xf1\x3f\x7a\xe7\xca\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\xb4\x06\x77\x36\x6d\x3f\x9c\xef\xa9\x96\xcf" "\x67\xee\xec\xbc\x06\xa7\xcf\x9f\x3a\x3b\xbd\xf0\x91\x8f\xde\x33\x7f" "\xea\xe8\x89\xb9\x13\x73\xa7\x77\xef\xdc\x39\xb3\x7b\xef\xde\xfd\xfb" "\xf7\x4f\x1f\x9f\x3f\x39\x37\x53\xfc\xfb\x2a\xcf\x76\xff\xdb\x94\x0d" "\xa5\xd7\xc0\xb6\x70\xee\xe2\x6b\xe0\x95\x2d\xdb\x36\x2e\xd5\xc5\xcf" "\x8f\x2d\x7b\xff\xbd\xda\xd7\xe1\x44\x87\xd7\xe1\xe6\x96\x6d\x7b\xfd" "\x3a\x1c\x69\x7d\x70\xb5\x8d\x79\x41\x2e\x5f\xd3\xc5\x6b\xe3\x5d\xf5" "\x93\x3e\x71\x79\x28\x5b\xe1\x35\x96\x3f\x3f\x3b\xd6\xff\x3a\x4c\x8f" "\xbb\xe1\x75\x38\xd2\xf0\x3a\x6c\xfb\x3d\xa5\xcd\xeb\x70\x64\x15\xaf" "\xc3\xfa\x36\x67\x77\xac\xee\x67\x96\x91\x86\x7f\xda\x1d\xc3\xca\xdf" "\x0b\xd6\xb7\x06\x37\x37\xac\xc1\xd6\x9f\x47\x5a\xd7\x60\xaf\x7f\x1e" "\xe9\x97\x35\x38\x11\xd6\xc5\x77\x76\xac\xfc\xbd\x60\x6b\x38\xde\x27" "\xa6\xd6\xfa\xf3\xc8\xf0\xb2\x35\x98\x1e\x6e\x78\xef\xa9\x5f\x92\x7e" "\xde\x9f\xd8\x9f\x8f\x76\xeb\xf2\xd6\xfa\x15\xd7\x8f\x65\x17\x16\xe6" "\xce\xdd\xfb\xc8\xd1\xf3\xe7\xcf\xed\xcc\xc2\xd8\x10\x2f\x69\x58\x2b" "\xad\xeb\x75\x53\xc3\x63\xca\x96\xad\xd7\xa1\x35\xaf\xd7\x43\xf3\xb7" "\x3d\x71\x6b\x9b\xcb\x37\x87\x73\x35\x71\x4f\xfd\x5f\x13\x2b\x3e\x57" "\xf5\x6d\xf6\xdc\xdb\xf9\xb9\xca\xbf\xbb\xb5\x3f\x9f\x4d\x97\xee\xca" "\xc2\xe8\xb1\x8d\x3e\x9f\xed\xbe\x9b\xd7\xcf\xe7\x58\x96\x7d\xf6\x1b" "\x8f\x3d\xf8\xb5\x47\x3f\xfb\xba\x15\xcf\x67\x3d\x6f\x7e\x6c\x7a\xfd" "\x3f\x8b\xa7\x5c\xda\xf0\xfe\x3b\xba\xc2\xfb\x6f\xcc\xfd\xbf\x28\xf6" "\x97\xee\xea\xf1\xe1\xd1\x91\xe2\xf5\x3b\x9c\xce\xce\x68\xd3\xfb\x71" "\xf3\x53\x35\x92\xbf\x77\xd5\xf2\x7d\x3f\x37\xbd\xba\xf7\xe3\xd1\xf0" "\xcf\x46\xbf\x1f\xdf\xd4\xe1\xfd\x78\x4b\xcb\xb6\xbd\x7e\x3f\x1e\x6d" "\x7d\x70\xf1\xfd\xb8\xd6\xed\x4f\x3b\xd6\xa7\xf5\xf9\x9c\x08\xeb\xe4" "\xe4\x4c\xe7\xf7\xe3\xfa\x36\x5b\x76\xad\x75\x4d\x8e\x74\x7c\x3f\xbe" "\x23\xcc\x5a\x38\xff\xaf\x0a\x49\x21\xe5\xa2\x86\xb5\xb3\xd2\xba\x4d" "\xfb\x1a\x19\x19\x0d\x8f\x6b\x24\xee\xa1\x79\x9d\xee\x6e\xda\x7e\x34" "\x64\xb3\xfa\xbe\x9e\xda\x75\x75\xeb\xf4\xae\x3b\x8a\xfb\x1a\x4e\x8f" "\x6e\xc9\x46\xad\xd3\xc9\x96\x6d\x7b\xbd\x4e\xd3\x9f\x7d\xad\xb4\x4e" "\x6b\xdd\xfe\xf4\xed\xea\xb4\x3e\x9f\x13\x61\x5d\xdc\xb4\xbb\xf3\x3a" "\xad\x6f\xf3\xf4\x9e\xf5\xbf\x77\x5e\x17\xff\xb3\xe1\xbd\x73\xac\xdb" "\x1a\x1c\x1d\x1e\xab\x1f\xf3\x68\x5a\x84\xf9\xfb\x7d\xb6\x78\x5d\x5c" "\x83\xf7\x66\xc7\xb2\x33\xd9\xc9\x6c\x36\xbf\x76\x2c\x5f\x4f\xb5\x7c" "\x5f\x53\xf7\xad\x6e\x0d\x8e\x85\x7f\x36\xfa\xbd\x72\x4b\x87\x35\x78" "\x57\xcb\xb6\xbd\x5e\x83\xe9\xfb\xd8\x4a\x6b\xaf\x36\xb2\xfc\xc1\xf7" "\x40\xeb\xf3\x39\x11\xd6\xc5\x93\xf7\x75\x5e\x83\xf5\x6d\x5e\xbf\xaf" "\xb7\x3f\xbb\xde\x15\x2e\x49\xdb\x34\xfc\xec\xda\xfa\xe7\x6b\x2b\xfd" "\x99\xd7\xad\x2d\xa7\xe9\x5a\xad\x95\x91\x70\x9c\xdf\xd8\xd7\xf9\xcf" "\x66\xeb\xdb\x9c\xdc\xbf\xd6\x9c\xd9\xf9\x3c\xdd\x1d\x2e\xb9\xbe\xcd" "\x79\x6a\x7d\xfd\xae\xf4\x9a\x9a\xcd\x36\xe6\x3c\x6d\x09\xc7\xf9\xec" "\xfe\x95\xcf\x53\xfd\x78\xea\xdb\x7c\xe6\xc0\x2a\xd7\xd3\xa1\x2c\xcb" "\x2e\x7e\xe8\xfe\xfc\xcf\x7b\xc3\xdf\xaf\xfc\xcd\x85\x6f\x7f\xb9\xe9" "\xef\x5d\xda\xfd\x9d\xce\xc5\x0f\xdd\xff\xc3\x17\x1e\xff\x87\xb5\x1c" "\x3f\x00\x83\xef\x17\xc5\xd8\x54\x7c\xaf\x6b\xf8\x9b\xa9\xd5\xfc\xfd" "\x3f\x00\x00\x00\x30\x10\x62\xee\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x8f\xff\x57\x78\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f" "\x12\x66\x52\x91\xfc\xbf\xe5\xf5\xcf\xce\xff\xe2\x62\x96\x9a\xf9\x8b" "\x41\xbc\x3e\x9d\x86\x07\x8a\xed\x62\xc7\x75\x26\x7c\x3d\xb9\xb8\xa4" "\x7e\xf9\xfd\x5f\x9c\xfb\xc9\xdf\x5f\x5c\xdd\xbe\x87\xb2\x2c\xfb\xd9" "\x03\xbf\xd7\x76\xfb\x2d\x0f\xc4\xe3\x2a\x4c\x86\xe3\xbc\xf2\x86\xe6" "\xcb\x97\xf9\xf2\x3d\xab\xda\xf7\x91\x87\x2f\xa6\xfd\x36\xf6\xd7\x3f" "\x17\xee\x3f\x3e\x9e\xd5\x2e\x83\x76\x15\xdc\x99\x2c\xcb\xbe\x7a\xe3" "\xa7\xf2\xfd\x4c\xbe\xf7\x72\x3e\x9f\x7e\xe0\x48\x3e\x1f\xbc\xf4\xc4" "\xe3\xf5\x6d\x9e\x3b\x50\x7c\x1d\x6f\xff\xcc\x4b\x8a\xed\xff\x2c\x94" "\x7f\x0f\x1d\x3f\xda\x74\xfb\x67\xc2\x79\xf8\x7e\x98\x33\x6f\x69\x7f" "\x3e\xe2\xed\xbe\x74\xf9\x55\x5b\xf7\xbd\x7b\x69\x7f\xf1\x76\xb5\x6d" "\x37\xe4\x0f\xfb\xc9\xf7\x15\xf7\x1b\x7f\x4f\xce\xa7\x1f\x2f\xb6\x8f" "\xe7\x79\xa5\xe3\xff\xda\x27\x9f\xfa\x52\x7d\xfb\x47\x5e\xd1\xfe\xf8" "\x2f\x0e\xa5\xe3\xc8\x2b\xe5\xf1\xf6\x4f\x85\xfb\xfd\x62\x98\xff\xf3" "\xb2\x62\xfb\xc6\xe7\xa0\xfe\x75\x3c\xfe\x8f\x87\xe3\x8f\xfb\x8b\xb7" "\xbb\xf7\x0b\x5f\x6f\x7b\xfc\x57\x3e\x51\x6c\x7f\xf6\x8d\xc5\x76\x47" "\xc2\x8c\xfb\xbf\x2b\x7c\xbd\xfd\x8d\xcf\xce\x37\x9e\xaf\x47\x6a\x47" "\x9b\x1e\x57\xf6\xa6\x62\xbb\xb8\xff\x99\x6f\xff\x61\x7e\x7d\xbc\xbf" "\x78\xff\xad\xc7\x3f\x71\xf8\x72\xd3\xf9\x68\x5d\x1f\x4f\xff\x5b\x71" "\x3f\xd3\x2d\xdb\xc7\xcb\xe3\x7e\xa2\xbf\x6b\xd9\x7f\xfd\x7e\x1a\xd7" "\x67\xdc\xff\x53\x7f\x70\xa4\xe9\x79\xea\xb6\xff\x2b\x0f\x3e\xf3\xb2" "\xfa\xfd\xb6\xee\xff\xee\x96\xed\xce\x7e\x68\x47\xbe\xff\xa5\xfb\x6b" "\xfe\x8d\x4d\x7f\xfe\xf1\x4f\xb5\xdd\x5f\x3c\x9e\x43\x7f\x7d\xb6\xe9" "\xf1\x1c\x7a\x67\x78\x1d\x87\xfd\x3f\xf9\xbe\xb0\x1e\xc3\xf5\xff\x7b" "\xa5\xb8\xbf\xd6\xdf\xae\x70\xe4\x9d\xcd\xef\x3f\x71\xfb\xcf\x6d\xbe" "\xd8\xf4\x78\xa2\x37\xff\xb8\xd8\xff\x95\xd7\x9c\xc8\xe7\xf8\xc4\x75" "\x9b\xae\x7f\xc1\x0b\x6f\xb8\xf4\xf2\xfa\xb9\xcb\xb2\x6f\x8d\x17\xf7" "\xd7\x6d\xff\x27\xfe\xe2\x4c\xd3\xf1\x7f\xfe\xe6\xe2\x7c\xc4\xeb\x63" "\x47\xbf\x75\xff\x2b\x89\xfb\x3f\xf7\xe1\xa9\xd3\x67\x16\x2e\xcc\xcf" "\xa6\xb3\xfa\xe8\x8d\xf9\xef\xce\x79\x6b\x71\x3c\xf1\x78\x6f\x0c\xef" "\xad\xad\x5f\x1f\x3e\x73\xfe\xfd\x73\xe7\x26\x67\x26\x67\xb2\x6c\xb2" "\xbc\xbf\x42\xef\xaa\x7d\x21\xcc\x1f\x16\xe3\x52\xe7\xad\x17\x97\xbd" "\x83\xee\x78\x38\x3c\x9f\xb7\xfe\xe9\x57\x37\xdd\xf9\xaf\x9f\x8c\x97" "\xff\xfb\xbb\x8a\xcb\x2f\xbf\xa5\xf8\xbe\xf5\xca\xb0\xdd\xa7\xc3\xe5" "\x9b\xc3\xf3\xb7\xb6\xfd\x2f\xf7\xe4\xed\x37\xe7\xaf\xef\xda\xd3\xe1" "\x08\x17\x97\xff\xbe\xe0\xf5\xd8\xba\xfd\xbf\xf6\xaf\x6a\xc3\xf0\xf8" "\x5b\x7f\x2e\x88\xeb\xfd\xec\x4b\xdf\x9f\x9f\x87\xfa\x75\xf9\xf7\x8d" "\xf8\xba\x5e\xe7\xf1\x7f\x77\xb6\xb8\x9f\xaf\x84\xf3\xba\x18\x7e\x33" "\xf3\xb6\x9b\x97\xf6\xd7\xb8\x7d\xfc\xdd\x08\x97\x1f\x2a\x5e\xef\xeb" "\x3e\x7f\xe1\x6d\x2e\x3e\xaf\x7f\x15\x9e\xef\xb7\x7d\xbf\xb8\xff\x78" "\x5c\xf1\xf1\x7e\x37\xfc\x1c\xf3\xf5\x2d\xcd\xef\x77\x71\x7d\x7c\xe5" "\xe2\x50\xeb\xfd\xe7\xbf\xc5\xe3\x52\x78\x3f\xc9\x2e\x15\xd7\xc7\xad" "\xe2\xf9\xbe\xfc\xdc\xcd\x6d\x0f\x2f\xfe\x1e\x92\xec\xd2\x2d\xf9\xd7" "\x7f\x94\xee\xe7\x96\x35\x3d\xcc\x95\x2c\x7c\x64\x61\xfa\xe4\xfc\xe9" "\x0b\x8f\x4c\x9f\x9f\x5b\x38\x3f\xbd\xf0\x91\x8f\x1e\x3e\x75\xe6\xc2" "\xe9\xf3\x87\xf3\xdf\xe5\x79\xf8\x03\xdd\x6e\xbf\xf4\xfe\xb4\x29\x7f" "\x7f\x9a\x9d\xdb\xbb\x27\xcb\xdf\xad\xce\x8c\xcf\x6c\xc0\x1b\xd6\x35" "\x3c\xfe\x6c\x35\xc7\x7f\xf6\xe1\x63\xb3\xfb\x66\xee\x9c\x9d\x3b\x7e" "\xf4\xc2\xf1\xf3\x0f\x9f\x9d\x3b\x77\xe2\xd8\xc2\xc2\xb1\xb9\xd9\x85" "\x3b\x8f\x1e\x3f\x3e\xf7\xe1\x6e\xb7\x9f\x9f\x3d\xb8\x73\xd7\x81\xdd" "\xfb\x76\x4d\x9d\x98\x9f\x3d\xb8\xff\xc0\x81\xdd\x07\xa6\xe6\x4f\x9f" "\xa9\x1f\x46\x71\x50\x5d\xec\x9d\xf9\xe0\xd4\xe9\x73\x87\xf3\x9b\x2c" "\x1c\xdc\x73\x60\xe7\x7d\xf7\xed\x99\x99\x3a\x75\x66\x76\xee\xe0\xbe" "\x99\x99\xa9\x0b\xdd\x6e\x9f\x7f\x6f\x9a\xaa\xdf\xfa\x77\xa7\xce\xcd" "\x9d\x3c\x7a\x7e\xfe\xd4\xdc\xd4\xc2\xfc\x47\xe7\x0e\xee\x3c\xb0\x77" "\xef\xae\x86\xdf\x06\xf8\x93\xb6\xb7\x3f\x75\xf6\xf8\xc2\xe4\xf4\xb9" "\x0b\xa7\xa7\x2f\x2c\xcc\x9d\x9b\x2e\x1e\xcb\xe4\xf9\xfc\xe2\xfa\xf7" "\xbe\x6e\xfb\xa7\x9c\x16\xfe\xa3\xf8\x79\xb6\x55\xad\xf8\x45\x7c\xd9" "\x3b\xee\xde\x9b\x7e\x3f\x6b\xdd\x17\x1f\x5b\xf1\xae\x8a\x4d\x5a\x7e" "\x81\xe8\xb3\xe1\x77\xd1\xfc\xd3\x8b\xce\xee\x5f\xcd\xd7\x31\xf7\x8f" "\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x3f\x16\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x3f\x1e\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\x3f\x11\x66\x52\x91\xfc\x5f\xba\xfe\xff\x96\x8b\xab\xda\xbf" "\xfe\xff\x86\xf5\xff\x9b\x6e\xaf\xff\xaf\xff\xdf\x17\xfd\xff\x87\xfa" "\xad\xff\x5f\xbc\x5f\xe8\xff\xf7\xc6\x7a\xfb\xf7\xfa\xff\x81\xfe\xbf" "\xfe\xff\xf3\xd0\x9f\x1f\xf4\xe3\xaf\x4e\xff\xbf\x3d\xfd\x7f\xda\xe9" "\xb7\xfe\x7f\xcc\xfd\xd7\x65\x59\x25\xf3\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf\x0f\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x41\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xfb\xfd\xeb\xff\x0f\x26\xfd\xff\xce" "\xf4\xff\xbb\xd0\xff\x9f\xce\xaa\xd5\xff\xbf\xd4\xcb\xe3\xd7\xff\xd7" "\xff\x67\xb9\x7e\xeb\xff\xc7\xdc\xff\xc2\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\xbf\x31\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x73\x98\x49\x45" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xfb\xfd\xeb\xff\x0f" "\x26\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xf7\xf9\xff\xfa\xff\xfa\xff\xf4" "\x54\xbf\xf5\xff\x63\xee\x7f\x51\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\x2f\x0e\x33\x91\xff\x01\x00\x00\xa0\xff\x8c\x5c\xdd\xcd" "\x62\xee\x7f\x49\x98\xc9\xb2\xfc\x7f\x95\x3b\x00\x00\x00\x00\x9e\x77" "\x31\xf7\xdf\x94\xb5\x14\xc1\x2b\xf2\xf7\xff\xfa\xff\xfa\xff\xfd\xdf" "\xff\x1f\x4f\xd7\xe9\xff\xeb\xff\x67\x7d\xd9\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\x91\xbd\x34\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\x9b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\xff\x5f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x96\x30\x93\x8a" "\xe4\x7f\xfd\x7f\xfd\xff\xfe\xef\xff\xfb\xfc\x7f\xfd\xff\x7e\xef\xff" "\xfb\xfc\xff\x7e\xa2\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xbf\x25\xcc\xa4\x22\xf9\x1f\x00" "\x00\x00\xaa\x20\xe6\xfe\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\xff\x7f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xd6\x30\x93" "\x8a\xe4\x7f\xfd\xff\x3e\xef\xff\xc7\xe6\xa8\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xff\xaa\xe8\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x5f\x16\x66\x52\x91\xfc\x0f" "\x00\x00\x00\x55\x10\x73\xff\x6d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x2f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0c\x33" "\xa9\x48\xfe\xd7\xff\xef\xf3\xfe\x7f\xd1\x83\x1f\xf3\xf9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xab\xa3\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa" "\xff\x3d\xe9\xff\x2f\x5e\xac\x6e\xff\x7f\x3c\xd3\xff\xa7\x51\xbf\xf5" "\xff\x63\xee\xbf\x3d\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe" "\x6d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x77\x84\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x6f\x0f\x33\xa9\x48\xfe\xd7\xff\x1f\x88" "\xfe\x7f\xa6\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x3a\xfa\xff\x9d" "\xe9\xff\x77\xa1\xff\xaf\xff\xef\xf3\xff\x7d\xfe\x3f\x3d\xd5\x6f\xfd" "\xff\x98\xfb\x5f\x11\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff" "\x9d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xaf\x0c\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xbf\x2b\xcc\xa4\x22\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\xfd\xfe\xf5\xff\x07\x93\xfe\x7f\x67\xfa" "\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9" "\xff\x55\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xef\x08\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\x7f\x2a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x7f\xe9\x39\xd4\xff\x1f\x7c\xfa\xff\x9d\xe9\xff\x77\xa1" "\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x7b\xc2" "\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x37\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\x7f\x3a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\x7f\x26\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x4d" "\xfd\xff\x97\x2f\xdd\x6f\x99\xfa\xff\xed\xf6\xaf\xff\x3f\x98\xf4\xff" "\x3b\xd3\xff\xef\x42\xff\x5f\xff\xff\x79\xef\xff\x8f\xea\xff\x53\x2a" "\xfd\xd6\xff\x8f\xb9\x7f\x67\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x77\x87\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xef\x09\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\x72\xfd\xd6\xff\x8f\xb9\xff\xbe\x30\x93\x8a\xe4\x7f\x00\x00\x00" "\xa8\x82\x98\xfb\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xef" "\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x1f\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\xeb\xf4" "\xd0\xef\x37\x7e\x75\x75\xfd\xff\xb1\x76\x77\xdc\x93\xfe\x7f\xcc\xfd" "\x07\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x75\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x2f\xe5\xf3\x9f\x97\xae\x90\xff" "\x01\x00\x00\xa0\x34\x8a\xdc\x3f\x91\xfd\x72\x98\x49\x45\xf2\xbf\xfe" "\x7f\x53\xf7\xbc\xfe\x70\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x73\xfa\xff" "\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9" "\xa9\x15\xfb\xff\x21\x7a\xb7\xef\xff\xb7\xd5\x93\xfe\x7f\xcc\xfd\x07" "\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x95\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xd7\x84\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x1f\x0a\x33\xa9\x48\xfe\xd7\xff\xf7\xf9\xff\xfa\xff\xfa" "\xff\xfa\xff\xed\xf7\xbf\xd1\xfd\xff\xf8\x49\xb7\xfa\xff\xeb\xa3\xff" "\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd4\xd5\x7d" "\xfe\x7f\x5b\x3d\xe9\xff\xc7\xdc\xff\xda\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\xef\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\x7f\x5d\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xeb\xc3\x4c\x2a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xdb\xef\xdf\xe7\xff" "\x0f\x26\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7" "\xa7\xfa\xad\xff\x1f\x73\xff\x1b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0" "\x0a\x62\xee\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x9b" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x1c\x66\x52\x91\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7e\xff\xfa\xff\x83\x49" "\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e" "\xeb\xff\xc7\xdc\xff\xab\x61\x26\x15\xc9\xff\x00\x00\x00\x30\x90\x26" "\xd6\xb6\x79\xcc\xfd\x0f\xb4\xde\x58\xfe\x07\x00\x00\x80\xd2\x88\xb9" "\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x6f\x0d\x33\xa9" "\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x6f\xbf\x7f\xfd\xff" "\xc1\xa4\xff\xdf\xd9\x80\xf5\xff\x7f\x7e\x43\xb8\x5c\xff\xbf\xa0\xff" "\xdf\xdf\xc7\xbf\xd6\xfe\xff\x48\xcb\xd7\xd7\xa4\xff\xff\xbd\x95\xfa" "\xff\x8b\xe3\xad\xb7\xd7\xff\xe7\x5a\xe8\xb7\xfe\x7f\xcc\xfd\x6f\x0b" "\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xed\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xff\xb5\x30\x93\x8a\xe4\x7f\xfd\xff\xfa\x71\x2c\xb5\x97\xf5" "\xff\xcb\xda\xff\x1f\xd2\xff\xef\xbf\xfe\xff\xdf\x7e\x27\xcb\xf4\xff" "\xf5\xff\x7b\x4e\xff\xbf\xb3\x01\xeb\xff\xfb\xfc\xff\x16\xfa\xff\xfd" "\x7d\xfc\x3e\xff\x5f\xff\x9f\xe5\xfa\xad\xff\x1f\x73\xff\x3b\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x30\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x77\x85\x99\x54\x24\xff\xeb\xff\xfb\xfc\xff\x6a\xf4\xff\x7d\xfe" "\x7f\xd6\x7f\xfd\x7f\x9f\xff\xdf\x70\x56\xf5\xff\x7b\x47\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\x70\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xf5\x30\x13" "\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf7\x84\x99\x54\x24\xff\xeb\xff" "\x0f\x4a\xff\x7f\x72\x40\xfb\xff\x8f\xe9\xff\x5f\xc3\xfe\xff\x6d\x37" "\x14\xdb\xe9\xff\xeb\xff\xb3\x44\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5" "\xff\xfb\xad\xff\xef\xf3\xff\x19\x70\xfd\xd6\xff\x8f\xb9\xff\xbd\x61" "\x26\xab\xcf\xff\x13\xab\xde\x12\x00\x00\x00\x78\x5e\xc4\xdc\xff\x1b" "\x61\x26\x15\xf9\xfb\x7f\x00\x00\x00\xa8\x82\x98\xfb\x7f\x33\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xb7\xc2\x4c\x2a\x92\xff\xf5\xff" "\x07\xa5\xff\xef\xf3\xff\x33\xfd\x7f\x9f\xff\xdf\xf2\x78\xf4\xff\xf5" "\xff\xdb\xd9\xb8\xfe\x7f\x7c\xe7\xd1\xff\xd7\xff\xd7\xff\x8f\xf4\xff" "\xf5\xff\xf5\xff\x69\xd5\x6f\xfd\xff\x98\xfb\x7f\x3b\xcc\xa4\x22\xf9" "\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xf7\x85\x99\xc8\xff\x00\x00\x00\x30" "\x10\xda\xfd\x3f\xd9\xad\x62\xee\x3f\x1c\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\x7f\x24\xcc\xa4\x22\xf9\x5f\xff\x7f\x15\xfd\xff\xf1\xee" "\xf7\xa7\xff\xdf\x7c\xfc\xfa\xff\xed\xd7\xc7\x9a\xfa\xff\x7f\xb2\xed" "\x5f\xbe\xf3\xcd\xb7\x1f\xd9\xa9\xff\xaf\xff\xaf\xff\xbf\x26\x1b\xfa" "\xf9\xff\xf5\x17\xbf\xcf\xff\xd7\xff\xd7\xff\x4f\xf4\xff\xf5\xff\xf5" "\xff\x69\xd5\x6f\xfd\xff\x98\xfb\x8f\x86\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\xff\x3b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x67\xc3\x4c\x2a\x92" "\xff\xf5\xff\x7d\xfe\xbf\xfe\x7f\x9f\xf6\xff\x07\xf8\xf3\xff\xe3\xf9" "\xd0\xff\x6f\xd6\xb3\xfe\x7f\x7c\xd3\xd5\xff\x6f\xab\xe8\xdf\xa7\x55" "\x74\x6d\xfb\xff\xef\x5e\xea\x89\xeb\xff\xaf\xb5\xff\x3f\xd6\xf6\x52" "\xfd\x7f\xfd\xff\x41\x3e\x7e\xfd\x7f\xfd\x7f\x96\xeb\xb7\xfe\x7f\xcc" "\xfd\x73\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x21\xf7\x0f\x1d\x2f" "\xe6\xd2\x15\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x27\xc2\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\xdf\x1f\x66\x52\x91\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xef\xf3\xff\xdb\xef\xbf\x53\xff\xbf\x36\xe2\xf3\xff" "\xfb\x55\xea\xdf\xff\x34\x7f\xa1\xe8\xff\xb7\xe8\x9f\xfe\x7f\x7b\xfa" "\xff\xfa\xff\x83\x7c\xfc\xfa\xff\xfa\xff\x2c\xd7\x6f\xfd\xff\x98\xfb" "\xe7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x40\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x07\xc3\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\x4f\x86\x99\x54\x24\xff\xeb\xff\x0f\x5e\xff\x3f\x6e" "\xab\xff\xaf\xff\xaf\xff\x5f\xd1\xcf\xff\xd7\xff\xef\x68\xbd\xfd\x7b" "\xfd\xff\x40\xff\xbf\xda\xfd\xff\xff\xd6\xff\xd7\xff\xff\x3f\xf6\xee" "\x24\xc8\xd6\xba\xbc\xe3\xf8\xe9\xe4\x92\xdb\xb7\xc8\x22\x8b\x54\x65" "\x91\x4d\xaa\xb2\xcc\x32\x4b\x16\xc9\x3a\x59\x66\x91\x45\x36\xd9\xa4" "\x2a\x95\xaa\x90\x81\x24\x64\xe6\x92\x38\x0f\x28\x2a\xce\x8a\xe0\x3c" "\xe0\x00\x82\x88\x0a\xce\x03\x38\xa1\x38\x83\x8a\xf3\x3c\xe0\x00\xa2" "\xd4\xb5\xe8\x7e\x9e\xa7\xa7\xb7\xcf\xe9\xe1\x74\x9f\xf7\xfd\xff\x3f" "\x9f\x05\x0f\x36\xb7\x39\x07\xea\x56\xc3\x8f\xbe\x5f\x5f\xfd\x3f\xcb" "\x31\xb6\xfe\x3f\x77\xff\xdf\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x4b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f\xe3\x96\x4e\xf6\xbf\xfe\xff" "\x38\xfd\xff\x56\xa5\xec\xf9\xff\x3b\xdf\xff\x28\xfa\xff\x3f\xd1\xff" "\xef\xf7\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\xf3\xe9\xff\x17\xd0\xff\x7b" "\xfe\xbf\xfe\x5f\xff\xcf\x52\x8d\xad\xff\xcf\xdd\xff\x4f\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9f\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xb2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x97" "\xb8\xa5\x93\xfd\xbf\xab\xff\x5f\x9b\xf5\xd9\xff\x67\xc6\x3b\x89\xe7" "\xff\xeb\xff\x3d\xff\x5f\xff\xbf\x49\xff\xaf\xff\x1f\x72\xba\xfd\xff" "\x95\x8f\x7e\xe5\xd3\xff\xeb\xff\xf5\xff\x41\xff\x7f\xa0\xfe\xff\xec" "\x7e\x9f\xaf\xff\xa7\x45\x63\xeb\xff\x73\xf7\xff\x6b\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xff\xb7\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xbf\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x3d\x6e" "\xe9\x64\xff\x2f\xef\xf9\xff\xe7\x36\x3e\x3e\xd1\xfe\xbf\xe8\xff\xf5" "\xff\x1b\x1f\xd0\xff\xeb\xff\xf5\xff\x93\xe5\xf9\xff\xf3\xf5\xd4\xff" "\x5f\x76\xcf\xc5\x97\x3e\x70\xcb\xef\xdf\x7a\x98\xd7\xd7\xff\xeb\xff" "\x3d\xff\x5f\xff\xcf\x72\x8d\xad\xff\xcf\xdd\xff\x1f\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x3f\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xbf\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbf\xe3" "\x96\x4e\xf6\xff\xf2\xfa\xff\x49\x3f\xff\xbf\xe8\xff\xf5\xff\x1b\x1f" "\xd0\xff\xeb\xff\xf5\xff\x93\xa5\xff\x9f\xaf\xa7\xfe\xff\x28\xaf\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x2c\xd7\xd8\xfa\xff\xdc\xfd\xff\x13\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xff\x37\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xaf\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xf3\x71\x4b\x27\xfb\x5f\xff\x7f\xf2\xfd\xff\x23\xfa\x7f\xfd\x7f\x5c" "\xfd\xbf\xfe\x5f\xff\x7f\xf2\xf4\xff\xf3\xe9\xff\x17\xd0\xff\xeb\xff" "\xf5\xff\xfa\x7f\x96\x6a\x6c\xfd\x7f\xee\xfe\x2b\xe3\x96\x4e\xf6\x3f" "\x00\x00\x00\xf4\x20\x77\xff\xff\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xff\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x63\xe2\x96" "\x4e\xf6\xbf\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff" "\xa7\x49\xff\x3f\x9f\xfe\x7f\x01\xfd\xff\x71\xfb\xf9\x8b\xf4\xff\xfa" "\x7f\xfd\x3f\xdb\x1d\xb2\xff\x7f\x78\xce\x97\xed\xa5\xf4\xff\xb9\xfb" "\x1f\x1b\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x17\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x8f\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x27\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\x7f\xa0\xfe" "\x7f\xe3\xf5\xf4\xff\xbb\xfa\xff\xbd\x3f\xf5\x36\xe8\xff\x87\xe9\xff" "\x4f\x87\xfe\x7f\xbe\xd1\xf4\xff\x6b\x67\x06\x3f\xac\xff\x9f\x7c\xff" "\x3f\xb2\xe7\xff\xe7\x57\x6c\xfd\xbf\xfe\x9f\x55\x19\xdb\xf3\xff\x73" "\xf7\x3f\x31\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x29\x6e" "\x99\xb3\xff\x0f\xfd\x1f\xf3\x01\x00\x00\x80\x95\xca\xdd\xff\xe4\xb8" "\xc5\xf7\xff\x01\x00\x00\x60\xf2\xb2\x3a\xcb\xdd\xff\x94\xb8\xa5\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\x3d\xff\xdf\xf3\xff\x87\x5f\x7f\x5e\xff" "\x7f\xeb\xb6\xf7\xa7\xff\x1f\x17\xfd\xff\x7c\xa3\xe9\xff\xf7\xa1\xff" "\xd7\xff\x4f\xf9\xfd\xeb\xff\xf5\xff\xec\x35\xb6\xfe\x3f\x77\xff\x53" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x55\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xb4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x7a\xdc\xd2\xc9\xfe\x1f\xee\xff\xb7\xfe\xb8\xfe\xff\x60\xf4" "\xff\x3b\xdf\xbf\xfe\x7f\xf8\xe7\xc7\xb2\xfa\xff\xfc\x33\xea\xff\xe7" "\xf6\xff\x7f\xea\xf9\xff\x7d\xd2\xff\xcf\x77\xfa\xfd\xff\x59\xfd\xff" "\xce\x3f\xff\x11\xfb\xff\xcd\xaf\x38\xfa\xff\x71\xbf\xff\xc6\xfb\xff" "\x73\x8b\x3e\x5f\xff\xcf\x90\xb1\xf5\xff\xb9\xfb\xaf\x8e\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xcf\x88\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x67\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\xda\x1f\xff\xee\x56" "\x0b\x96\xbb\xff\x59\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\xfa\xff\xe9" "\xf5\xff\x9e\xff\xbf\x69\x95\xcf\xff\x9f\x9d\x7a\xff\x7f\x46\xff\x7f" "\x40\xfa\xff\xf9\x3c\xff\x7f\x81\xd1\xf6\xff\x9b\xf4\xff\xe3\x7e\xff" "\x8d\xf7\xff\x9e\xff\xcf\x91\x8c\xad\xff\xcf\xdd\x7f\x4d\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\x5c\xf3\xd0\x6c\x63\xf7\x3f\x7b\x36\xb3\xff" "\x01\x00\x00\x60\x8a\xb6\xff\xda\x81\xdd\xbf\xa0\x34\xe4\xee\x7f\x4e" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x37\x6e\xe9\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xc7\xd5\xff\x7b\xfe\xff" "\x41\x4d\xba\xff\x3f\xb3\xf5\xbb\xfa\x7f\xfd\xff\x90\x89\xf6\xff\x67" "\x1a\xeb\xff\xaf\xdd\xef\xf3\xc7\xd0\xff\x5f\xa1\xff\x67\x64\x76\xf4" "\xff\xb7\x6f\x7d\x7c\x55\xfd\x7f\xee\xfe\xe7\xc5\x2d\x9d\xec\x7f\x00" "\x00\x00\xe8\x41\xee\xfe\xe7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x0b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x85\x71\x4b\x27" "\xfb\xff\xc4\xfb\xff\x73\xfb\xbf\xb6\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xcb\x36\xe9\xfe\xdf\xf3\xff\xf5\xff\x6d\xf6\xff\x9e\xff" "\xef\xf9\xff\xfa\xff\x8e\x6d\xf5\xff\x3b\xbf\x1e\xae\xaa\xff\xcf\xdd" "\xff\xa2\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe2\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x36\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x5f\x12\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x87\x5f\x5f\xff\x3f\x4d\xfa\xff\xf9\xf4\xff\x0b\xe8\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x4b\xb5\xe3\xf9\xff\xdb\xac\xaa\xff\xcf\xdd\x7f" "\x5d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x3e\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x2f\x8b\x5b\x3a\xd9\xff\xfa\xff\x93\xed\xff\xf3\xe3\xfa\x7f" "\xfd\xff\x4c\xff\xaf\xff\xd7\xff\x9f\x8a\x6e\xfb\xff\xb5\xa1\x7f\x12" "\xed\xb5\x4f\xff\x7f\xd7\xdf\x9e\xff\xf3\x9d\x1f\xd1\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x4b\x30\x8a\xfe\xff\xc2\xd6\xbf\x5d\xe6\xee\x7f" "\x79\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x45\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xbf\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x5f\x15\xb7\x1c\x72\xff\xff\xce\x52\xdf\xd5\xe9\xd1\xff\x7b" "\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x34\x75\xdb\xff\x1f" "\x90\xe7\xff\x2f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x2c\xd5\x89\xf4\xff" "\x0f\x6e\x7d\x71\x3f\xec\xf3\xff\x73\xf7\xbf\x3a\x6e\xf1\xfd\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x6b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x75\x71\x4b\x27" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xaf\x7f\xd4\xfe\x7f" "\x7d\x36\x4c\xff\x7f\x3a\xf4\xff\xf3\xe9\xff\x17\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\x96\xea\x44\xfa\xff\x6d\x0e\xdb\xff\xe7\xee\xbf\x21\x6e" "\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xdf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\x6f\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e" "\x7d\xcf\xff\x9f\x26\xfd\xff\x7c\xfa\xff\xd9\x6c\x76\xe3\x9c\x37\x30" "\xd4\xff\x5f\x38\xab\xff\xd7\xff\xeb\xff\xf5\xff\x1c\xd1\xd8\xfa\xff" "\xdc\xfd\x6f\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x4d\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xe6\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xe1\xd7\xd7\xff\x4f\x93\xfe\x7f\x3e\xfd\xff\x02\x9e\xff" "\x7f\xdc\x7e\xfe\x82\xfe\x5f\xff\xaf\xff\x67\xbb\xb1\xf5\xff\xb9\xfb" "\x6f\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xb7\xc4\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xd6\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x27" "\xd2\xff\x9f\xd7\xff\xef\xa6\xff\x3f\x1d\x27\xd7\xff\xcf\xf4\xff\xfa" "\x7f\xfd\xff\x02\x9e\xff\xaf\xff\xd7\xff\xb3\xdb\x69\xf5\xff\x0f\xc7" "\xd7\xfb\x45\xfd\x7f\xee\xfe\xb7\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\xdb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6d\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf6\xb8\xa5\x93\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x9e\xff\x3f\xfc\xfa\xfa\xff\x69\xf2\xfc\xff" "\xf9\xf4\xff\x0b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x4b\x75\x5a\xfd\xff" "\x7e\xbd\xff\xee\xff\x9d\xbb\xff\x1d\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x23" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x19\xb7\x74\xb2\xff\xf5" "\xff\xfa\xff\x9d\xfd\xff\x6c\xa6\xff\xd7\xff\xeb\xff\x37\x9d\x42\xff" "\xbf\x3e\xd3\xff\x2f\x9d\xfe\x7f\x3e\xfd\xff\x02\xfa\xff\x36\xfb\xff" "\xdf\x98\x35\xd4\xff\x9f\xdb\xf7\xf3\xf5\xff\x8c\xd1\xd8\xfa\xff\xdc" "\xfd\xef\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8e\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xf7\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x7b\xe3\x96\x96\xf6\xff\x23\xfb\xa7\x6f\xd3\xef\xff" "\xcf\xee\xfa\x44\xfd\xff\x6c\x36\xbb\xf7\x72\xcf\xff\xd7\xff\xcf\x79" "\x7d\xfd\xff\x68\xfa\xff\xfa\xbb\xaa\xff\x5f\x1e\xfd\xff\x7c\xfa\xff" "\x05\xf4\xff\x6d\xf6\xff\x9e\xff\xaf\xff\x67\x65\xc6\xd6\xff\xe7\xee" "\x7f\x5f\xdc\xd2\xd2\xfe\x07\x00\x00\x80\xce\xe5\xee\x7f\x7f\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x3f\x18\xb7\x74\xb2\xff\x77\xf4\xff\x0f\x6e\x85\x67\xf9" "\xc7\xc7\xdf\xff\xef\xfe\x44\xfd\xff\xec\x58\xcf\xff\xd7\xff\x6f\x7c" "\x40\xff\xaf\xff\xd7\xff\x4f\xd6\x71\xfb\xfb\xeb\xd6\xe3\x9f\x69\xfa" "\x7f\xfd\xbf\xfe\x7f\xb0\x9f\x5f\xdb\xe7\xdf\x7b\x66\xd1\xcf\x3f\xfa" "\xd7\xa7\xff\xd7\xff\xeb\xff\x49\x63\xeb\xff\x73\xf7\x7f\x28\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf\x19\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x87" "\xe3\x96\x4e\xf6\xff\xf4\x9f\xff\xbf\xfb\x13\xf5\xff\x33\xfd\x7f\x17" "\xfd\xff\xba\xfe\x5f\xff\xaf\xff\x1f\x34\x96\xe7\xff\x5f\x72\xc9\x9f" "\xdd\xad\xff\xd7\xff\xb7\xd8\xff\xcf\xe3\xf9\xff\xfa\x7f\xfd\x3f\xbb" "\x8d\xad\xff\xcf\xdd\xff\x91\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x58\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x3c\x6e\xe9\x64\xff\xef\xed\xff" "\x2f\x9a\x6d\x16\xaa\x9b\x86\xfa\xff\x68\xd4\xf4\xff\xdb\xe8\xff\x77" "\xbe\x7f\xfd\xff\xf0\xcf\x0f\xcf\xff\xd7\xff\xeb\xff\x4f\xde\x58\xfa" "\x7f\xcf\xff\x3f\xda\xfb\xd7\xff\x2f\xb1\xff\x3f\xc2\x4f\x9d\x55\xf7" "\xf3\xc7\xb5\xea\xf7\x7f\xa8\xfe\xff\x0f\xf6\x7e\xbe\xfe\x9f\x16\x8d" "\xad\xff\xcf\xdd\x7f\x77\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\xff\x44\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x32\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xef\x89\x5b\x3a\xd9\xff\x9e\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xc3\xaf\xaf\xff\x9f\x26\xfd\xff\x7c\xfa\xff" "\x05\x5a\xea\xff\x8f\x60\x29\xfd\x7c\x7e\x55\xd5\xff\x4f\xf7\xf9\xff" "\xbf\xa9\xff\x67\x79\xc6\xd6\xff\xe7\xee\xff\x54\xdc\xb2\x31\xfc\xfe" "\xf0\xb7\x8f\xf8\x97\x09\x00\x00\x00\x8c\x48\xee\xfe\x4f\xc7\x2d\x9d" "\x7c\xff\x1f\x00\x00\x00\x7a\x90\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xd9\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xe1\xd7\xd7\xff\x4f\x93\xfe\x7f\x3e\xfd\xff\x02\xfd\xf4" "\xff\xeb\x43\x1f\x5c\x75\x3f\x7f\x5c\xab\x7e\xff\xcd\xf4\xff\x9e\xff" "\xcf\x12\x8d\xad\xff\xcf\xdd\xff\xb9\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x13\x76\xd1\xe2\x1f\xf2\xd0\xc6\x6f\x73\xf7\x7f\x3e\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\xbf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xf7\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf\xfd\xfe\xff\xaf\xf5\xff" "\xbb\x5e\x5f\xff\xaf\xff\x6f\x99\xfe\x7f\xfe\x2f\x82\xd4\xff\x2f\xd0" "\x4f\xff\x3f\x68\xd5\xfd\xfc\xd4\xdf\x7f\xf5\xff\x17\xce\xea\xff\xf5" "\xff\x84\xb1\xf5\xff\xb9\xfb\xef\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x2f\xc5" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x97\xe3\x96\x4e\xf6\xbf\xfe" "\xbf\xaf\xfe\x7f\x6d\xd6\x63\xff\xef\xf9\xff\xad\xf4\xff\xeb\xbb\xfe" "\x7a\xf4\xff\xfa\xff\x21\xd3\xe9\xff\xaf\x3f\x33\xf4\x51\xcf\xff\xd7" "\xff\xeb\xff\xa7\xfb\xfe\x3d\xff\x5f\xff\xcf\x5e\x63\xeb\xff\x73\xf7" "\xdf\xbf\x76\xa6\xcb\xfd\x0f\x00\x00\x00\x53\xf5\x97\x7f\xf4\x77\xf7" "\x1d\xf4\xc7\xde\xbf\xf1\xdb\xf5\xd9\x57\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb5" "\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xef\xf3\xf9\xff\xfa\xff\x56\xfa" "\x7f\xcf\xff\xd7\xff\x1f\xc4\x74\xfa\xff\x61\xfa\x7f\xfd\xbf\xfe\x7f" "\xba\xef\x5f\xff\xaf\xff\x67\xaf\xb1\xf5\xff\xb9\xfb\xbf\x1e\xb7\x6c" "\x1b\x7e\x83\xff\x07\x3d\x00\x00\x00\xc0\xea\xfc\xd6\xe1\x7e\x78\xee" "\xfe\x6f\xc4\x2d\x9d\x7c\xff\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9b\x71" "\xcb\x9e\xfd\x7f\xe1\x80\xbf\xaa\x1d\x00\x00\x00\x18\x9b\xdc\xfd\xdf" "\x8a\x5b\x3a\xf9\xfe\xbf\xfe\x7f\xe4\xfd\xff\xec\x84\xfa\xff\xf8\x71" "\xfa\xff\x4d\xfa\x7f\xfd\xff\xd0\xeb\xeb\xff\xa7\x49\xff\x3f\xdf\x31" "\xfb\xff\x0b\x6b\xfa\x7f\xfd\xff\x1c\xfa\x7f\xfd\xbf\xfe\x9f\xdd\xc6" "\xd6\xff\xe7\xee\xbf\xed\xe6\x59\x97\xfb\x1f\x00\x00\x00\x1a\xb5\xe3" "\xbf\x28\x7c\x7b\xe3\xb7\xeb\xb3\xef\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x77\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x7b\x71" "\x4b\x27\xfb\x5f\xff\x3f\xf2\xfe\xff\x48\xcf\xff\x3f\x57\xbf\xe7\xf9" "\xff\x9d\xf7\xff\x57\xad\x0f\xbe\xbe\xfe\x5f\xff\xdf\x32\xfd\xff\x7c" "\x9e\xff\xbf\x80\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x54\x87\xe8\xff\x37" "\x06\xe9\x49\xf7\xff\xb9\xfb\xbf\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x7f\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x8c" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x1f\xc5\x2d\x9d\xec\x7f\xfd" "\xff\x0a\xfa\xff\xab\xcf\xce\x66\x27\xda\xff\x1f\xe0\xf9\xff\xfa\xff" "\x3e\xfa\xff\x7d\x5e\xbf\x9d\xfe\xff\xf7\x2e\x3e\x7f\xe7\x5f\xfd\xcd" "\x4d\x37\xe8\xff\xd9\x72\x9a\xfd\x7f\xfe\x5c\xd0\xff\xeb\xff\xf5\xff" "\x9b\xf4\xff\xfa\x7f\xfd\x3f\xbb\x8d\xed\xf9\xff\xb9\xfb\x7f\x1c\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x88\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x9f\xc4\x2d\x8f\xee\xff\x3b\x56\xf5\xae\x00\x00" "\x00\x80\x65\xca\xdd\xff\xd3\xb8\xa5\x93\xef\xff\xeb\xff\x5b\x7c\xfe" "\xff\x34\xfb\xff\xfc\x7b\xbd\x82\xfe\xff\xfc\xf4\xfa\xff\x6c\x8a\x7b" "\xef\xff\x3d\xff\x5f\xff\xbf\x97\xe7\xff\xcf\xa7\xff\x5f\x40\xff\xaf" "\xff\xd7\xff\xeb\xff\x59\xaa\xb1\xf5\xff\xb9\xfb\x7f\x16\xb7\x74\xb2" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1e\xb7\xe4\xfe\x5f\x3b\xf4\x7f" "\xba\x07\x00\x00\x00\x46\x26\x77\xff\x83\x71\x8b\xef\xff\x03\x00\x00" "\x40\x33\x72\xf7\x3f\x14\xb7\x74\xb2\xff\xf5\xff\xfa\xff\xb1\xf4\xff" "\xc9\xf3\xff\xb7\x3e\xcf\xf3\xff\x37\xe9\xff\xf5\xff\x87\xa1\xff\x9f" "\x4f\xff\xbf\x80\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x54\x63\xeb\xff\x73" "\xf7\xff\x22\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x1c\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8c\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x5f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9a\xc6\xd8\xff\xff\xc5\x21\x1a\x74\xfd" "\xbf\xfe\x5f\xff\x3f\xdd\xf7\xaf\xff\xd7\xff\xb3\xd7\xd8\xfa\xff\xdc" "\xfd\xbf\x0e\x00\x00\xff\xff\x70\x20\x6c\x8c", 25239); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_NOSUID*/ 2, /*opts=*/0x2000000003c0, /*chdir=*/1, /*size=*/0x6297, /*img=*/0x200000000600); break; case 1: // truncate arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // len: intptr = 0x3000000 (8 bytes) // ] memcpy((void*)0x200000000900, "./file1\000", 8); syscall(__NR_truncate, /*file=*/0x200000000900ul, /*len=*/0x3000000ul); 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); use_temporary_dir(); loop(); return 0; }