// https://syzkaller.appspot.com/bug?id=847ac996dd4b680ad90466f08d636e83f3938985 // 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 #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 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 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_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"); } 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; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; 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 void setup_802154() { int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) exit(1); int sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic < 0) exit(1); int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); 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)); int err = netlink_send(&nlmsg, sock_generic); if (err < 0) exit(1); 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)); int err = netlink_send(&nlmsg, sock_route); if (err < 0) exit(1); } } close(sock_route); close(sock_generic); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { memcpy((void*)0x20000000, "bcachefs\000", 9); memcpy((void*)0x20000100, "./file2\000", 8); sprintf((char*)0x20005f80, "%020llu", (long long)-1); memcpy( (void*)0x20005f94, "\x7a\xb4\x0d\x92\x08\x12\xb3\x17\x12\xae\xbf\x5d\x8d\xb3\x63\x27\xff\x98" "\xbe\xcd\xa5\xe0\x79\x62\xfa\xff\x82\x15\xa3\x0e\xc6\x29\x16\xb4\x07\x4a" "\x1c\x15\xb5\x38\x09\x72\x2b\x4d\xcb\x2f\x0c\x72\x42\x59\x11\x2b\xb7\x0e" "\x9b\xad\x00\x5a\xb1\x74\x2f\x04\x2a\xe1\x3d\x0a\xe2\x9e\x68\xcd\xbd\x79" "\x82\x67\x26\x40\xd6\xd7\xdc\x1d\x62\x03\xb0\xf5\xb5\x27\x43\x63\x13\x6c" "\x76\x76\xa3\x1b\x14\x80\x82\x29\xff\x6d\x8f\x5c\x39\x9c\x91\x4a\xd0\x0c" "\x14\x39\xe8\xfc\xfa\xd2\x42\x46\x03\x7d\x39\xf9\xed\x8b", 122); *(uint64_t*)0x2000600e = -1; memcpy( (void*)0x2000bc00, "\x78\x9c\xec\xdd\x0f\x8c\x5d\x75\xbd\x20\xf0\x73\xee\x9d\x69\xef\x74\xda" "\x32\x45\x81\x5a\xfe\x74\x80\xd2\x2d\xac\xc0\x94\xe2\x02\x0d\x86\x81\x8d" "\x80\xab\x45\x04\x2d\x2a\x48\x5b\xe9\xb4\x0c\xf6\x0f\x74\x5a\x0b\x55\xec" "\x40\x22\x1a\x64\xdd\x26\x6b\x94\x35\xd1\x10\xa2\x09\x1b\x42\x74\x97\xac" "\xeb\x9f\x35\xc5\x2c\x62\x56\xd6\xd8\x8d\xcb\x2b\xbe\xf7\x7c\x18\xd0\x3c" "\x79\x2f\x58\x83\xa0\x7d\x94\xd8\x97\x99\x7b\xce\x9d\xb9\x67\xce\xef\x9e" "\x3b\xf7\xde\x29\x2d\x7c\x3e\x49\xe7\xce\x39\xf3\xbb\xdf\xdf\xf7\xfb\xbb" "\xbf\x39\x73\xce\xef\xde\xde\x1b\x01\x00\x00\xf0\x96\xf0\xd4\xe7\x46\xfe" "\x7c\xcd\xa2\xf7\xfc\xec\xde\xa1\x57\x77\x5f\xfd\x83\xcd\xf7\x44\xbd\xe5" "\xf1\xfd\x95\xb4\x41\x5f\x72\x7b\xe7\x1b\x95\x21\x47\xd2\xec\xae\x85\xe3" "\xb7\xd9\x79\xb1\x67\x70\xd6\x53\x97\x3d\xf0\xfe\x67\xbf\xfe\xf1\x6f\x3d" "\xff\xc2\x82\x65\xcb\xbf\x79\xdb\x95\x87\xee\x98\xbb\xea\xfe\xfb\x07\x7f" "\x79\xd1\xa1\x9f\xff\xf5\xee\xa2\xb8\xe9\x7c\x3a\x7b\x62\x3b\x7e\x29\x8e" "\xa2\x53\x7f\xb1\xec\x2b\xf7\xfd\xe4\xe9\x93\xc6\xf6\xc5\x51\x14\x95\xe3" "\xbe\xd1\x28\x5a\x10\x97\x7e\xbc\x20\xce\x84\x18\x78\x2d\x8a\xa2\xf5\xb5" "\x3c\xeb\x7f\xf8\xf8\xab\x2b\x36\x8c\xdd\x8e\x7e\x71\x76\xdd\xfe\xe3\x32" "\x41\xcc\xf7\xb7\xb6\x4a\x32\xcf\x3e\xff\xa3\xad\xa7\xfc\xfe\xbc\x2b\x9f" "\xdd\xfb\xab\x2b\x5e\x1d\xa8\xbc\xb6\x6d\x74\xa2\x49\x5c\x99\x34\x9f\xa2" "\x68\xfe\xda\xc9\xf7\xef\x8e\xa2\xa8\x27\xf9\x37\x26\x9d\x6d\x0b\xd3\x3b" "\x27\xb7\xd7\x46\x51\x34\x67\xd2\xfd\x2e\x2e\xc8\xeb\x8c\x26\xf3\x3f\x37" "\xb0\xbd\x28\xb9\x9d\x95\xdc\xf6\x16\xc4\x49\x7f\x7e\x7a\x66\xbb\xbb\xc9" "\x3c\xba\x32\xb7\x95\x26\xef\xd7\xaa\xd2\x0c\xc7\x4f\xa5\x8f\xdf\xdc\x19" "\xee\x3f\x7b\x70\xcb\xf6\xb3\x20\xb9\xfd\x6e\x72\x7b\xf6\x34\xe3\x97\xd3" "\x7f\x71\x54\x8a\xa3\xae\x5a\x77\x9b\xe2\x89\x39\x12\x4d\x7a\xdc\xe2\x28" "\x1e\x7f\xec\x27\xb6\x4b\x75\x73\x21\xce\xcc\x8d\x38\x8a\xe2\xcc\x76\x29" "\xb3\x5d\xee\xce\xd4\x35\xde\x6f\x32\xd1\xca\x71\x5c\xbf\x3f\x6d\x97\xd9" "\xdf\x9f\xec\xef\x4a\xf6\x9f\x5e\x30\xd7\xae\x0f\xec\x7f\x47\x5a\x6f\xf2" "\x8b\x7a\x30\x53\x7f\x36\x68\xef\x94\x6f\x6a\x75\x8d\x4b\xf3\xfa\x4d\x83" "\x5c\x8e\x84\xd2\xa4\x63\x50\xde\xfe\x34\xdf\x4a\xf2\x60\xf4\x26\xfb\x7a" "\xe3\xe3\xa7\xdc\xe7\x70\x8e\xf4\x57\x7c\xf5\x0b\x5f\xfa\xf6\xf3\xbb\xbe" "\xb1\xa4\x2f\x90\x47\xfc\x9d\x38\x89\x1f\x4f\x37\xfe\xb8\x67\x36\x5f\xb2" "\x7f\xe9\xae\x5f\x1f\x58\x18\x8a\xbf\xb6\x94\xc4\x2f\xb5\x14\x7f\xe4\xbc" "\x97\x1f\x7b\xf1\xba\x9f\x9e\x14\x8c\xbf\x27\x8d\x5f\x6e\x29\xfe\x73\x17" "\x2e\xfd\xea\x0f\x77\xef\x3c\x18\x1c\x9f\x3f\xa6\xe3\xd3\xd5\x52\xfc\xf2" "\xca\x73\x0e\x2d\xbf\x77\x60\x75\x30\xff\x87\xd2\xf8\x95\x96\xe2\x3f\x7c" "\xc5\xa3\x5f\x9b\xff\xae\x27\x1f\x0b\xe6\x3f\x90\x8e\x4f\x4f\x6b\xe3\x33" "\xbc\xe3\xf5\x1b\x1f\x39\xe1\x40\x30\x7e\x94\xc6\x9f\xd3\x52\xfc\xcb\x5f" "\x39\xf1\xac\x95\x5b\x1f\xdd\x18\x8c\xff\x44\x3a\x3e\xbd\x2d\xc5\x7f\x7a" "\x64\x78\xd5\x7d\xb7\x2e\xde\xd9\x1f\x8a\xbf\x2f\x8d\x3f\xaf\xa5\xf8\x67" "\xfc\xf6\xa6\x1b\xf7\xee\x1f\x7a\x2e\x98\xff\x60\x3a\x3e\x7d\x2d\xc5\x7f" "\xf7\x92\xcb\xaf\x5d\x75\x60\xcb\x03\xa1\x63\x67\x3c\x7a\xa4\xfe\xc2\x02" "\xbc\x39\xbd\x2d\x39\xc7\xfa\x42\xb2\xdd\xea\x75\x66\xbb\x26\x5d\x2f\x3c" "\xd8\x17\x57\xcf\xf9\xe6\x26\xff\xe6\x95\x3b\xd9\x53\xbd\xb1\x7e\xe6\xcf" "\x5c\x78\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xde\xa2\x1e\xee\x5b\x3f\xf4\xd7\xef\x9f\xf6\x7a\x57\xb2\x3d" "\x3b\xf9\xe6\xb4\x72\xf5\x36\xdd\x3f\x2b\x8a\xe2\x9e\x28\x8a\x46\xb6\xaf" "\xdb\xb6\x7d\x78\xcb\xc6\xfe\xdb\xb6\xee\xd8\xb6\x65\xdd\xa6\xfe\x75\xdb" "\xfb\x87\xb6\x6c\xdf\x76\x57\xff\x85\xef\xec\xdf\x36\x74\xfb\xa6\x75\x77" "\x8d\xfd\x74\xe0\xdc\x15\xd5\xfb\x1d\x1f\xc5\xd5\xdb\xf8\xd4\x29\x7d\x1f" "\x3e\x7c\xf8\x70\xa9\xaf\x7e\x5f\xda\xdf\x27\x2f\xfa\xcf\x8f\xf7\x9f\xb6" "\xff\x6f\xa3\x68\xe0\x84\x5f\x9e\xd6\x15\xcc\xff\x03\x77\x2f\xfa\xf7\x0b" "\x72\xbe\x66\xc4\x83\x87\x37\xfd\xa7\xb3\x6e\x7e\x71\xee\xff\xd9\x51\xdd" "\xd1\x97\xe4\xd5\x17\xc8\x2b\x0a\xe4\x75\xe9\x23\x2f\xad\xfc\xfd\x0f\x7a" "\xfe\x63\x14\x0d\x9c\xd8\x28\xaf\x7f\x5c\x76\xd5\x4f\xea\x12\x1a\xdf\x31" "\x11\x27\x51\x9a\x1d\x95\xc6\xbf\x99\x1d\xcf\xc9\xcd\xa3\x96\x75\x92\x4f" "\x3a\x5e\x5d\x1b\x86\x37\x0d\x0d\x14\x8f\x6f\x39\x50\xc7\xef\x0e\xfe\xf7" "\x0f\xef\x1c\xb9\x65\xb4\x3a\xbe\x95\x60\x1d\x4d\x8e\x6f\xcf\xe0\xe1\xbf" "\x6c\xf9\xde\x13\xb7\x5c\xba\xeb\xda\xea\x8e\xa3\xf5\x71\x2f\x1a\xef\xb4" "\x8a\x34\xbf\x74\xfc\x2a\xc9\x78\xcf\x4f\xea\x9a\x1f\xa8\xab\x2b\x50\xd7" "\x7d\x67\x9d\xfe\x0f\x7f\xf3\x5f\x36\xbf\x34\x1a\x0d\x74\xfd\x69\xf1\xd4" "\xbe\x8b\xea\xea\x4e\x26\x40\x77\xfc\x8e\xa6\xfa\x4d\x7b\x98\x13\xd7\x8f" "\x49\x25\x69\x9f\x3e\xe2\xe9\xfd\xce\xdf\xbe\xf9\xf6\xf3\x47\xee\xda\x75" "\xee\xf0\xe6\x75\x1b\xc7\x7e\xf7\x57\xac\x58\x71\xf1\x85\x2b\x2e\xb8\xe8" "\x82\x7f\x77\xfe\x78\xe9\xd5\xaf\x1d\xab\x3f\xed\xff\xdf\x34\x59\xff\x91" "\x99\x4f\x5b\x2f\x1a\x1c\x4e\xbf\x36\x37\x9f\x8a\xf2\x2a\x1a\x8f\xb1\xbc" "\x8a\xc7\x63\x72\x46\xa1\xdf\xbf\xb7\x7f\xe8\xaa\xbf\xbb\xe7\x7f\xec\xb9" "\xae\xba\xa3\x68\x9e\xa7\xad\x6b\xc7\x93\xe4\x76\xce\xd8\xc3\xbc\x3c\x9a" "\x34\xdf\xa6\x8e\x55\x5e\x5d\x45\xe3\xd0\x1d\x18\x87\x8d\xd7\xf7\xfe\xd7" "\x57\xfa\xb7\xfe\x4b\xd1\x71\x68\xf2\x23\x33\xf9\x6b\x46\x3c\x78\xf8\x4f" "\xc3\xff\xf7\xb2\xb9\x7b\xcf\xbc\xb9\xba\xe3\x88\x1c\xe7\x27\x27\xd4\xe2" "\x71\xbe\x96\x75\x92\x4f\xf7\xe4\xe3\xce\xf2\xa3\x77\x7c\x67\x47\xe5\xa4" "\xae\xde\xdc\xbc\xce\xbc\xf7\xe5\x8f\xfc\xff\xef\xc7\xfd\xb5\xfc\x66\xcd" "\x8a\xee\x5c\xb7\x7d\xfb\xb6\xe5\xd5\xaf\x47\xa8\xae\xb7\x5f\xff\x99\xce" "\xd6\x75\xf1\xd2\x7f\xbe\x63\xd7\xda\x7b\x16\x4c\xa9\xeb\x82\xea\xd7\xb9" "\x49\xa6\x73\xe3\x93\x73\xf3\xca\xee\x4d\xeb\x5a\x3c\x3a\xf6\xb5\x1c\x25" "\xc3\x92\xde\x44\x95\x52\x7e\x7d\xdd\x51\x35\xbf\xec\xdf\x85\xf4\x7e\xd9" "\x51\xed\x4d\x7e\xd6\x1b\x1f\x9f\x5b\x57\x56\xfa\xb3\xd5\x2f\x7c\xe9\xdb" "\xcf\xef\xfa\xc6\x92\xd0\x48\xc7\xdf\xa9\xf6\xd8\x13\xcd\xab\xde\xc6\xa7" "\x04\x5a\x6e\xca\xdc\xb1\x5c\x4b\x38\xaf\xff\xa2\xf9\x11\x45\xd1\xda\xc9" "\xfb\xd2\x71\x7c\xe2\x7b\x5f\xee\xdf\xfb\xb3\x05\x9b\x0b\xe7\x47\x75\x66" "\x4c\xf9\x9a\x2d\x6f\xf0\xf0\x67\x2f\x99\xfb\xbb\x91\x1b\xf6\xad\xaa\xee" "\x38\x32\xc7\x95\x49\x09\xb5\x78\x5c\xa9\x65\x3d\x91\xcf\xf8\x78\x8d\x1f" "\x57\x2e\x38\x7a\xea\x68\xe1\x71\x1e\xbb\x1c\xe9\xc0\xe3\x5c\xf7\x8b\x15" "\x0f\x1e\xde\x7b\xca\x3b\x37\xae\xf8\x5f\xdb\x93\x5f\xfb\xa2\xf1\xad\xb5" "\xce\x1b\xdf\x15\x51\x54\x74\x1c\x58\x9c\xd9\xee\xaa\xdb\xdf\xb9\xe3\x40" "\xb6\x9f\x89\xf6\xf9\xf1\xfa\x33\xdb\xbd\x51\xb9\xa5\xe3\xc6\x73\x17\x2e" "\xfd\xea\x0f\x77\xef\x3c\x18\x3c\x6e\xfc\xb1\xd9\xe3\xc6\x67\xea\xb6\xca" "\x6d\x1e\x37\xe2\xc0\x71\x63\xff\x67\xff\xdb\x5f\x3e\xbd\xff\x99\xf7\x76" "\xee\xb8\xf1\xde\xa5\xe5\x8f\xfd\xfd\xe2\x15\xc9\x80\x1e\x2d\xbf\x6f\x95" "\x64\x5e\x57\x02\xf3\xba\x96\x75\x92\x4f\x3c\x79\x5e\x9f\x77\xcb\xd6\x4d" "\xeb\xab\xfb\x8f\xde\xf3\xdf\xe4\xb6\xe0\xfa\x27\xfd\xfb\x3d\x72\xd7\xae" "\x4f\xae\xdb\xb4\x69\x68\xdb\x48\x73\x75\x35\x7b\x5e\x92\xf6\x93\x1d\xe5" "\x56\xcf\x4b\xd2\xdf\xbe\xe3\x0b\xea\x4a\x1f\xaf\x89\xba\x66\xee\x9b\x66" "\xc6\xab\xd9\xdf\xb7\x34\xff\xf5\xd9\xf1\x6a\xf1\xf7\x0d\xf2\xf4\x46\x71" "\x4b\x7f\xcf\x9e\xd9\x7c\xc9\xfe\xa5\xbb\x7e\x7d\xa0\x2f\x10\x37\x5e\x5b" "\x4a\xe2\x97\x5a\x8a\x3f\x72\xde\xcb\x8f\xbd\x78\xdd\x4f\x4f\x0a\xc6\xdf" "\x93\xc6\xef\x6a\x29\x7e\x79\xe5\x39\x87\x96\xdf\x3b\xb0\x3a\x18\xff\xa1" "\x38\x89\x5f\x69\x29\xfe\xc3\x57\x3c\xfa\xb5\xf9\xef\x7a\xf2\xb1\x60\xfc" "\x81\x34\xff\x9e\xd6\xce\x27\x86\x77\xbc\x7e\xe3\x23\x27\x84\xc7\x3f\x4a" "\xe3\xf7\xb6\x14\xff\xe9\x91\xe1\x55\xf7\xdd\xba\x78\x67\x30\xfe\xbe\x38" "\xe9\x67\xec\xdc\x2e\x8a\x1e\x7f\x75\xc5\x86\xea\x76\x1c\x75\x27\xc7\xe1" "\x34\x8f\xee\xba\xbc\xa2\xec\x76\x9c\xd9\x2e\x65\xb6\xcb\x93\xb7\x4b\xd5" "\x35\xf8\x5a\x07\xe5\x38\xae\xdf\x9f\xb6\x4b\xf6\x9f\x3e\x29\x97\x3c\x37" "\x44\x51\xb4\x6f\xf6\xd4\xfd\xe9\xd9\x63\x65\x61\xf5\xf6\x60\xba\x1d\x65" "\xbf\x69\xbc\xff\x68\x53\x9a\x74\x4e\x90\xb7\xbf\xe8\xfc\x1a\x00\xde\x4c" "\xd2\xe7\xff\xd3\x73\x8d\xf4\xf9\xff\xc5\xc9\x1f\xc4\x49\xcf\xff\x57\x6f" "\xe3\x59\x75\xf7\x5f\x98\x9c\x4f\x2d\x9c\xd8\x35\x7e\x9d\x77\x4f\x7f\xf5" "\x0f\xe9\xc4\x75\xe1\x63\x4f\x67\xfb\x3e\x9c\xb3\xae\x97\xe6\x91\x5d\xd7" "\x4b\xe3\x2f\x3b\xb3\x3e\x46\xab\xeb\x7a\x45\xeb\x72\x67\x64\xb6\xd3\xbc" "\x16\x27\xa3\x92\xe6\xd3\xe0\xbc\x61\x6e\xd4\xc4\xba\xdc\xd4\x7e\x1a\xaf" "\xcb\x65\xca\x2f\x5e\x37\xeb\xff\x42\x66\x47\xd7\xf8\xda\x5e\xe8\x71\xeb" "\x4e\x56\x2a\xf2\x9e\x67\xce\xe4\x3b\x77\x2c\x42\xbb\xe7\xd9\x0b\xf3\xb3" "\xae\x9d\x67\x87\xe6\x5d\x76\xbd\x23\x7d\x9e\x3e\x9e\x32\xef\x9a\x7b\x5d" "\x44\xfa\xf8\x66\x5f\x17\x91\xc6\x5f\x94\x59\x40\x6b\xf5\x75\x11\xed\xce" "\xbb\x74\x59\xa3\xc1\xbc\x1b\xaf\xac\x78\x3d\x75\xea\xbc\x88\x1a\x8c\xeb" "\xc4\xbc\xc8\x8f\x96\x9d\x17\xd3\x98\x47\x7d\xd5\x79\x34\xb3\xcf\x4b\x1d" "\xfb\xd7\xfb\x33\xb1\xfe\xfe\xe5\xda\xfa\xfb\x31\xb7\x9e\x90\x3e\x2f\x32" "\xdd\xf5\x84\x68\xb4\x7e\x7c\x9a\x5c\x4f\x38\xda\xaf\xf7\xd3\xfd\xe9\xf1" "\xa1\xab\xc9\x75\x80\xd5\x81\xfd\x9d\x5a\x07\x48\x0f\x17\x69\x5e\xbf\x69" "\x90\xcb\x91\x60\x1d\x00\x00\x26\xae\xff\xd3\x73\x8a\xb1\xeb\xff\xb1\xbf" "\xd5\xfd\x99\xf3\xfc\xa2\xeb\x96\xec\x55\x46\x1a\x2f\xf8\x3a\x96\x72\x7e" "\x3e\x45\xd7\xbf\x53\x5f\xcf\x36\xa7\xa5\xf3\xca\xcb\x5f\x39\xf1\xac\x95" "\x5b\x1f\xdd\x18\xbc\x6e\x78\xa2\xd9\xd7\xa5\xdc\x5e\xb7\x35\xa7\xe0\x75" "\x29\x45\xe3\xb8\x24\xb3\x5d\x38\x8e\x81\x97\x82\x14\xad\x3b\x2c\xcd\xb4" "\xef\x8d\xe6\xb5\x34\x8e\x67\xfc\xf6\xa6\x1b\xf7\xee\x1f\x7a\x2e\x38\x8e" "\x83\xd5\x13\xa9\xe2\x71\xdc\x53\xb7\x35\xaf\xcd\x71\x5c\x96\xd9\x2e\x1c" "\xc7\xee\xfc\xac\x8a\xc6\x31\xdb\x4f\xd1\xfc\x3d\x3b\xb3\xdd\x9b\xbc\x22" "\x68\xba\xe3\xfe\xee\x25\x97\x5f\xbb\xea\xc0\x96\x07\x82\xe3\x3e\xda\xec" "\xb8\x3f\x54\xb7\xd5\x57\x30\xee\xae\xd3\x03\xf1\x67\xf4\x3a\x3d\x3a\x76" "\xaf\xd3\xd3\xf8\xc7\xc8\xf3\xfe\x45\xeb\x91\x6f\xd8\x3a\x40\xb2\x6e\x3d" "\x53\xeb\x00\xd7\x07\xf6\x4f\x77\x1d\xa0\x77\xca\x37\xb5\xba\xc6\x1d\x73" "\xeb\x00\x81\xbf\x0b\x00\x70\x2c\x4b\xaf\xff\x6b\xaf\x97\x4f\xae\xff\xff" "\x77\xa6\x5d\xbb\xd7\x87\xc1\xf3\xb6\xc1\xce\xbc\x9e\x35\x78\xde\x56\x3b" "\xaf\x6d\xef\xbc\x3c\x98\x7f\xed\xbc\xbc\xbd\xeb\xa2\x60\xfc\xda\x75\x51" "\x7b\xd7\x2d\xc1\xf1\xa9\x5d\xb7\xb4\x77\xdd\x15\x8c\x5f\xbb\xee\x6a\x6f" "\x9d\x26\x38\x3e\x4f\xa4\xe3\x33\xf5\xbc\x7f\x77\x13\xf1\xd3\xf3\xfe\xd0" "\x7f\x17\x48\xcf\xfb\x8f\xfd\xeb\xa2\x99\x5d\x67\xe8\xf4\x75\x51\xe4\xba" "\xe8\x0d\xe1\xba\x08\x00\xe0\xcd\x2d\xbd\xfe\x4f\x4f\x57\xd3\xd7\xff\x3f" "\x99\x6c\x67\xcf\x8d\x67\xfe\x3a\x77\xa6\xaf\x43\x67\xfa\x3a\x7a\xa6\xd7" "\x19\x66\x7a\x9d\xe4\x58\xbf\xce\x3d\xf2\xeb\x0c\xcd\xc4\x6f\x7e\x9d\x61" "\x9a\xeb\x6c\xc9\xeb\x54\x9b\x5f\x67\xeb\xd0\x3a\xc0\xe1\xfa\x17\xf0\xcc" "\xd4\x3a\x80\xe7\x47\xdf\x18\xd6\x01\x00\x00\xde\x1c\xde\x93\xdc\xde\xdc" "\x64\xfb\xae\xa8\xfa\x46\x9b\x9f\xb8\xe5\xd6\x0b\xd6\xac\x1f\xfa\xd4\x9a" "\x0d\xdb\x86\x86\x46\x6e\x5f\x77\xcb\xd0\x9a\xe1\x2d\xc3\xdb\x6b\xed\xba" "\xc7\xaf\xbc\xa6\xbe\x4e\x3a\xd4\x5f\xd1\xeb\xa4\xf3\xda\xcf\x69\xd0\x7e" "\x4d\x30\x7e\x7d\x3e\x57\x06\xda\x87\xb4\x5b\x7f\xa8\xbf\xa2\xfa\xf3\xda" "\x37\xaa\x7f\x6d\x30\x7e\x7d\x3e\x57\x05\xda\x87\xb4\x5b\x7f\xa8\xbf\xa2" "\xfa\x27\xb7\xbf\xac\x89\xfa\xd7\x05\xe3\xd7\xe7\x73\x75\xa0\x7d\x48\xbb" "\xf5\x87\xfa\x2b\xaa\x3f\xaf\x7d\xa3\xfa\x3f\x11\x8c\x5f\x9f\xcf\x7b\x03" "\xed\x43\xda\xad\x3f\xd4\x5f\x51\xfd\x79\xed\x1b\xd5\x7f\x4b\x30\x7e\x7d" "\x3e\xff\x21\xd0\x3e\xa4\x61\xfd\xb9\xf9\x35\xd7\x5f\x51\xfd\x79\xed\x1b" "\xd5\x9f\x7d\xbf\xcc\x50\xfd\xef\x0b\xb4\x0f\x69\xf7\xf1\x0f\xf5\x57\x54" "\x7f\x5e\xfb\x46\xf5\x0f\x05\xe3\xd7\xe7\xf3\xfe\x40\xfb\x90\x76\xeb\x0f" "\xf5\x57\x54\x7f\x5e\xfb\x46\xf5\x6f\x08\xc6\xaf\xcf\x67\x55\xa0\x7d\x48" "\xbb\xf5\x87\xfa\x2b\xaa\x3f\xaf\x7d\xa3\xfa\x37\x06\xe3\xd7\xe7\x73\x4d" "\xa0\x7d\x48\xbb\xf5\x87\xfa\x2b\xaa\x3f\xaf\x7d\xa3\xfa\x6f\x0d\xc6\xaf" "\xcf\xe7\x03\x81\xf6\x21\xed\xd6\x1f\xea\xaf\xa8\xfe\xbc\xf6\x8d\xea\x1f" "\x0e\xc6\xaf\xcf\xe7\xda\x40\xfb\x3a\x93\x16\x8e\xdb\xad\x3f\xd4\x5f\x51" "\xfd\x79\xed\x1b\xd5\x7f\x5b\x30\x7e\x7d\x3e\x1f\x0c\xb4\xaf\xd7\x53\xfb" "\xae\xdd\xfa\x43\xfd\x15\xd5\x9f\xd7\xbe\x51\xfd\x9f\x0c\xc6\xaf\xcf\xe7" "\xba\x40\xfb\x90\x76\xeb\x0f\xf5\x57\x54\x7f\x5e\xfb\x46\xf5\x6f\x0a\xc6" "\xaf\xcf\xe7\xfa\x40\xfb\x90\x76\xeb\x0f\xf5\x57\x54\x7f\x5e\xfb\x46\xf5" "\x6f\x0e\xc6\xaf\xcf\xe7\x43\x81\xf6\x21\xed\xd6\x1f\xea\xaf\xa8\xfe\xbc" "\xf6\x8d\xea\xdf\x12\x8c\x5f\x9f\xcf\x87\x03\xed\x43\xda\xad\x3f\xd4\x5f" "\x51\xfd\x79\xed\x1b\xd5\xbf\x35\x18\xbf\x3e\x9f\xd5\x81\xf6\x21\xed\xd6" "\x1f\xea\xaf\xa8\xfe\xbc\xf6\x8d\xea\xbf\x3d\x18\xbf\x3e\x9f\x1b\x02\xed" "\x43\xda\xad\x3f\xd4\x5f\x51\xfd\x79\xed\x1b\xd5\x7f\x47\x30\x7e\x7d\x3e" "\x1f\x99\xda\x3e\x1e\xcd\x0f\x39\xae\xdd\xfa\x73\xfa\xcb\xe4\xd7\x7c\x3d" "\x8d\xea\xdf\x16\x8c\x5f\x9f\xcf\x47\x03\xed\x43\xda\xad\x3f\xd4\x5f\x51" "\xfd\x79\xed\x1b\xd5\x3f\x12\x8c\x5f\x9f\xcf\xc7\x02\xed\x43\xda\xad\x3f" "\xd4\x5f\x51\xfd\x79\xed\x1b\xd5\xbf\x3d\x18\xbf\x3e\x9f\x1b\x03\xed\x43" "\xda\xad\x3f\xd4\x5f\x51\xfd\x79\xed\x1b\xd5\xbf\x23\x18\xbf\x3e\x9f\x9b" "\x02\xed\x43\xda\xad\x3f\xd4\x5f\x51\xfd\x79\xed\x1b\xd5\xff\xa9\x60\xfc" "\xfa\x7c\x3e\x1e\x68\x1f\xd2\x6e\xfd\xa1\xfe\x8a\xea\xcf\x6b\xdf\xa8\xfe" "\x9d\xc1\xf8\xf5\xf9\xdc\x1c\x68\x1f\xd2\x6e\xfd\xa1\xfe\x8a\xea\xcf\x6b" "\xdf\xa8\xfe\x3b\x83\xf1\xeb\xf3\x59\x13\x68\x1f\x52\xab\x7f\xfb\xb6\xa1" "\xa1\x35\x3b\x6e\x5f\xbf\x6e\xfb\x50\x77\xb4\x75\xfd\xd0\xc8\x9a\x9d\xdb" "\x86\xb7\x6f\x1f\x4a\x4e\xd4\xda\x7d\x5d\x62\xf0\xff\x97\x25\xaf\x4b\xec" "\x8e\xba\x1a\xd6\xbf\x28\xb3\x7d\x5c\xf2\xfe\x40\xc7\x05\xde\x1f\x28\xdb" "\x3e\x0d\x7b\xf2\xf8\x37\x53\xdf\x1f\x28\xdb\x6d\x57\xc1\xfb\xe4\x14\x3d" "\x5e\xd9\xfe\x8b\xde\x67\x28\xaf\x7d\xde\x7c\x0b\x3d\xbe\x45\xc7\x83\x66" "\xe7\x43\x56\xdd\xef\x47\x75\x92\x0c\x6f\x19\x19\xda\x36\xf5\xf8\xdd\xd3" "\x70\x3c\x26\xcf\x89\x68\xfc\x65\x73\x3d\xd9\xf7\xf0\x6e\xd8\x3e\xdb\x32" "\xd0\x4d\xa1\xe6\xeb\xa9\x34\xac\x27\xbb\x7b\x76\xf2\x42\xc0\xd9\xf1\x09" "\x4d\xb5\x8f\x02\x9f\x07\x37\x5d\xcd\xd7\x13\x07\xeb\xc9\xcb\x63\xba\x9f" "\x63\x97\x86\x9d\xd6\xe7\xd8\x65\xbe\x4c\x91\x33\x3d\xea\xea\xdd\x30\x32" "\x7e\x90\x1e\x5e\xb7\x69\x78\xd7\xd0\xd4\xfc\xe7\x1c\x05\xf9\x37\x33\x8e" "\xa3\x1d\xcf\xa3\x34\x25\x8f\xa2\xc7\x3f\xce\x8c\xc7\x82\x24\x93\x05\xa1" "\xcf\x7b\x0b\x8c\xdf\xce\xef\xfe\xd3\xc3\x7f\xf8\xc3\xff\x7c\x5f\x14\x0d" "\x9c\x50\x3e\xa5\xad\xf1\x8b\x07\x0f\xaf\x3d\x78\xe2\x27\x7e\x71\xe9\xec" "\xf3\xc7\xf2\x2f\x35\xcc\xbf\xd6\x32\xfd\x5c\xe5\x82\xcf\x3f\xcc\xb6\x4f" "\xeb\xe9\xda\xb4\x75\x64\xfb\xbf\xdd\xb0\x75\xc7\x96\xfc\x67\xd0\xd2\xd7" "\x3b\x97\x6a\xdb\x33\xf4\x7a\xe7\xa4\xce\x72\x93\xaf\x5f\x0e\xbd\xde\x63" "\xba\xaf\x5f\x8e\xa7\x7c\x73\x74\x6a\xf6\xf5\xcb\x00\x00\x00\x6f\x15\xe9" "\xff\xff\x4f\xaf\x57\x17\x26\xff\x07\x75\x41\x66\x89\x20\x6f\x1d\x78\xcd" "\x96\xbc\x75\xe0\xf6\xfe\x7f\x74\x70\x1d\x78\x5f\x73\xeb\xc0\xd9\xd5\x88" "\xe3\xa2\xae\xff\x17\x35\x58\x07\xce\xb6\x4f\xcb\x6e\x76\x1d\xb8\x77\xf6" "\xc4\x0f\x5a\x59\x07\xce\xf6\x1f\x5a\xa7\x2d\x35\x68\xdf\xe8\x79\x97\x66" "\xd7\x81\x3f\x16\x68\x3f\x5d\xcd\xcf\x93\xf6\xde\x07\x20\x38\x4f\x92\x91" "\x2a\x9a\x27\xd9\xff\x87\x5f\xf4\x7c\x41\xb6\xfd\x74\xe7\x49\x4f\x9b\xcf" "\x17\x64\xfb\x2f\x9a\x27\x79\xed\x1b\x3d\x3f\xdd\xec\x3c\xb9\x21\xd0\x3e" "\xa4\xf9\xf9\xd0\xc2\xfb\x4e\xf4\x4f\xbc\xef\x44\x70\x3e\x0c\x34\x37\x1f" "\xb2\x9f\xab\x59\x34\x1f\xb2\xed\xa7\x3b\x1f\x2a\x6d\xce\x87\x6c\xff\x45" "\xf3\x21\xaf\x7d\xa3\xd7\xeb\x34\x3b\x1f\x3e\x14\x68\xdf\xac\xe9\x1c\x2f" "\xaa\x5a\x7b\x5f\x98\xe0\xfc\x58\xdb\xdc\xfc\xc8\x7e\x5e\x4a\xd1\xfc\xc8" "\xb6\x9f\xee\xfc\x88\xdb\x9c\x1f\xd9\xfe\x1b\xcd\x8f\x38\xd0\xbe\xd1\xeb" "\x19\x9b\x9d\x1f\x1f\x0c\xb4\x4f\x35\xff\xf8\xb7\xf7\xbe\x3d\xc1\xc7\x7f" "\x4f\x73\x8f\x7f\xf6\x73\x5b\x8a\x1e\xff\x6c\xfb\xe9\x3e\xfe\xa5\x36\x1f" "\xff\x6c\xff\x45\xc7\x87\xbc\xf6\x8d\x5e\xcf\xdd\xec\xe3\x7f\x4d\xa0\x7d" "\xaa\xfe\xf1\x1f\x7b\xe0\xc7\x1f\xf7\xa1\x35\x3b\xb7\x6e\x9b\xfc\x1a\xe8" "\x99\xfe\xdc\x96\x90\xe6\xf3\x9b\xd9\xcf\xad\x69\x55\xf3\xf9\xcf\xec\xfb" "\x3e\xcd\x7c\xfe\x33\xfb\xbe\x52\x33\x9f\x7f\x7b\xd7\x4d\xc1\xfc\xf7\xb5" "\xf7\x4c\x57\xf3\xf9\xcf\xec\xe7\x12\xb5\xea\x88\x3d\x1f\x9b\xfc\x9f\xa1" "\xa2\xf7\x9f\x2a\x7a\x9e\xf6\xa3\x81\xfd\xd3\x7d\x9e\x76\xd6\x94\x6f\x8e" "\x4e\x9e\xa7\x05\x00\x00\x80\x99\x97\x3e\xff\x9f\xbe\x9b\x77\xfa\xfe\xf0" "\x5f\x4c\x6e\x03\x1f\xd3\xdf\xb2\x63\xff\xf3\xbd\xab\xeb\x5c\x71\xfd\x7f" "\xcb\x28\x8c\x7f\xcc\x7e\xfe\x76\xba\x00\xd3\xea\xe7\x6f\x57\x9a\xcb\xbf" "\xd9\x75\x4c\xeb\x79\x0d\x3a\x3b\x0a\x58\xcf\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe8\x8c\xd9\x5d\x0b\xc7\x6f\x9f\xfa\xdc" "\xc8\x9f\xaf\x59\xf4\x9e\x9f\xdd\x3b\xf4\xea\xee\xab\x7f\xb0\xf9\x9e\x3d" "\x83\xb3\x9e\xba\xec\x81\xf7\x3f\xfb\xf5\x8f\x7f\xeb\xf9\x17\x16\x2c\x5b" "\xfe\xcd\xdb\xae\x3c\x74\xc7\xdc\x55\xf7\xdf\x3f\xf8\xcb\x8b\x0e\xfd\xfc" "\xaf\x77\x17\x06\xee\xab\xde\x9c\x9d\x6c\x56\xa2\x28\x7e\x29\x8e\xa2\x53" "\x7f\xb1\xec\x2b\xf7\xfd\xe4\xe9\x93\xc6\xf6\xc5\x51\x14\x95\xe3\xbe\xd1" "\x28\x5a\x10\x97\x7e\x1c\x67\x23\x0c\xbc\x16\x45\xd1\xfa\x5a\x9e\xf5\x3f" "\x7c\xfc\xd5\x15\x1b\xc6\x6e\x47\xbf\x38\xbb\x6e\xff\x71\x99\x20\xd9\xba" "\xa2\xde\x72\x9a\x4f\x5d\x9e\xd1\x9d\x85\x15\x71\x0c\xaa\x24\xf3\xec\xf3" "\x3f\xda\x7a\xca\xef\xcf\xbb\xf2\xd9\xbd\xbf\xba\xe2\xd5\x81\xca\x6b\xdb" "\x46\x27\x9a\xc4\x95\x49\xf3\x29\x8a\xe6\xaf\x9d\x7c\xff\xee\x28\x8a\x7a" "\x92\x7f\x63\xd2\xd9\xb6\x30\xbd\x73\x72\x7b\x6d\x14\x45\x73\x26\xdd\xef" "\xe2\x82\xbc\xce\x68\x32\xff\x73\x03\xdb\x8b\x92\xdb\x59\xc9\x6d\x6f\x41" "\x9c\xf4\xe7\xa7\x67\xb6\xbb\x9b\xcc\xa3\x2b\x73\x5b\x69\xf2\x7e\xad\x2a" "\xcd\x70\xfc\x54\xfa\xf8\xcd\x9d\xe1\xfe\xa7\x1c\xdd\x32\xfd\x2c\x48\x6e" "\xbf\x9b\xdc\x9e\x3d\xcd\xf8\xe5\xf4\x5f\x1c\x95\xe2\xa8\xab\xd6\xdd\xa6" "\x78\x62\x8e\x44\x93\x1e\xb7\x38\x8a\xc7\x1f\xfb\x89\xed\x52\xdd\x5c\x88" "\x33\x73\x23\x8e\xa2\x38\xb3\x5d\xca\x6c\x97\xbb\x33\x75\x8d\xf7\x9b\x4c" "\xb4\x72\x1c\xd7\xef\x4f\xdb\x65\xf6\xf7\x27\xfb\xbb\x92\xfd\xa7\x17\xcc" "\xb5\xeb\x03\xfb\xdf\x91\xd6\x9b\xfc\xa2\x1e\xcc\xd4\x9f\x0d\xda\x3b\xe5" "\x9b\x5a\x5d\xe3\xd2\xbc\x7e\xd3\x20\x97\x23\xa1\x34\xe9\x18\x94\xb7\x3f" "\xcd\xb7\x92\x3c\x18\xbd\xc9\xbe\xde\xf8\xf8\x29\xf7\x39\x9c\x23\xfd\xd9" "\xea\x17\xbe\xf4\xed\xe7\x77\x7d\x63\x49\x5f\xa0\xbf\xf8\x3b\x71\x12\x3f" "\x6e\x29\xfe\x33\x9b\x2f\xd9\xbf\x74\xd7\xaf\x0f\x2c\xac\x8f\x3a\xf1\xdd" "\xda\x52\x12\xbf\xd4\x52\xfc\x91\xf3\x5e\x7e\xec\xc5\xeb\x7e\x7a\xd2\xc2" "\x9c\xdc\xc7\xe3\xef\x49\xe3\x97\x5b\x8a\xff\xdc\x85\x4b\xbf\xfa\xc3\xdd" "\x3b\x0f\xf6\x85\xe2\xff\x31\x1d\x9f\xae\x96\xe2\x97\x57\x9e\x73\x68\xf9" "\xbd\x03\xab\x83\xf9\x3f\x94\xc6\xaf\xb4\x14\xff\xe1\x2b\x1e\xfd\xda\xfc" "\x77\x3d\xf9\x58\x30\xff\x81\x74\x7c\x7a\x5a\x1b\x9f\xe1\x1d\xaf\xdf\xf8" "\xc8\x09\x07\x82\xf1\xa3\x34\xfe\x9c\x96\xe2\x5f\xfe\xca\x89\x67\xad\xdc" "\xfa\xe8\xc6\x60\xfc\x27\xd2\xf1\xe9\x6d\x29\xfe\xd3\x23\xc3\xab\xee\xbb" "\x75\xf1\xce\xfe\x50\xfc\x7d\x69\xfc\x79\x2d\xc5\x3f\xe3\xb7\x37\xdd\xb8" "\x77\xff\xd0\x73\xc1\xfc\x07\xd3\xf1\xe9\x6b\x29\xfe\xbb\x97\x5c\x7e\xed" "\xaa\x03\x5b\x1e\x08\x1d\x3b\xe3\xd1\x23\xf5\x17\x16\xe0\xcd\xe9\x6d\xc9" "\x39\xd6\x17\x92\xed\x56\xaf\x33\xdb\x35\xe9\x7a\xe1\xc1\xbe\xb8\x7a\x26" "\x35\x37\xf9\x37\xaf\x93\x1d\x65\x8c\xf5\x33\x7f\x06\xe3\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf0\xe6\x34\x74\xd5\x83\xbb\xaf\xda\xb7\xe6\xea\xae\x38\x8a\xe2\x40" "\x9b\xc3\x39\xd2\x9f\x95\x67\x0d\x0e\xf6\xb7\xd0\x6f\x79\xe5\x39\x87\x96" "\xdf\x3b\xb0\x7a\xf2\xbe\x85\x2d\xc4\x01\x00\x00\x00\x8a\x95\x57\xc6\x71" "\x14\x0d\xac\x2e\xd5\xf6\x54\xa2\x85\xd1\xce\xb8\x27\x3a\x39\xb7\x7d\xba" "\x46\x70\x72\xba\x15\xd7\xef\xcf\xae\x21\xf4\x4c\xb4\xec\x48\x9c\x52\x87" "\xe2\x94\x3b\x14\xa7\xab\x43\x71\xba\x3b\x14\x67\x56\x87\xe2\xcc\xee\x50" "\x9c\x4a\x41\x9c\x4a\xdd\xfe\xc5\xc1\x38\x3d\x0d\xe3\x94\x9a\xce\x67\x4e" "\x87\xe2\xf4\x36\x88\x53\xc9\xd9\x1f\x8a\x33\xb7\x43\xf9\xcc\xeb\x50\x9c" "\xf9\xd9\x38\x95\xd6\xe2\x1c\xd7\xa1\x7c\xfa\x1a\xc6\x69\x7e\x1e\x2e\xe8" "\x50\x9c\xe3\xa7\x17\x27\x3b\xfd\x6b\x71\xde\xd6\xa1\x7c\xde\xde\xa1\x38" "\x27\x74\x28\xce\x89\x1d\x8a\x73\x52\x87\xe2\x64\xd7\x94\xa7\x3b\x0f\xe7" "\x25\x2d\x17\x85\xe2\x8c\x7f\x53\x2e\x8c\xd3\x15\x97\x6b\x3f\xc8\x5b\x4f" "\x4f\xfb\x39\x35\x73\xbf\xd2\x34\xfb\xe9\x6d\xb2\x9f\xec\x9a\xfd\x74\xfb" "\xe9\x69\xb2\x9f\x33\xdb\xec\xa7\xd2\x64\x3f\x4b\xdb\xec\x27\x6e\xb2\x9f" "\xb3\xdb\xec\xa7\x54\xd0\x4f\x3a\x6f\xef\xcc\xe6\x97\xf6\x93\x6e\x35\x39" "\xff\xef\xea\x50\x9c\x5d\x1d\x8a\xf3\xe9\x0e\xc5\xf9\x4c\x87\xe2\xdc\xdd" "\xa1\x38\x9f\xed\x50\x9c\xdd\x6d\xc6\x69\x2c\x7b\x76\x08\xbc\x95\xa5\xcf" "\xc3\x4f\x1c\x19\xfa\xa2\xd9\x5d\x97\x46\x73\x92\x23\x4e\x76\x15\x20\xbd" "\xde\x5d\x5c\xbd\xf7\x94\xe3\x51\x25\x7b\x81\x9e\x48\xe3\x9d\x92\xd9\x3f" "\xab\x28\x5e\xf6\x42\x3d\x13\x6f\x71\x87\xf3\x3b\x23\xb3\x3f\xb9\x2e\x1f" "\x5d\x9c\x44\x4f\xcf\x9b\x1a\xc4\xeb\x9b\x1c\x6f\x49\xe6\x87\x85\xf5\x66" "\x17\x14\x32\xf9\x2d\x9b\x6e\xbc\xec\xc2\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xcc\xa0\xa1\xab\x1e\xdc\xfd\xaf\xec\xda\x5d\x8c\x5c\x65\xf9" "\x00\xf0\xf7\xec\xcc\xce\x0c\xdb\xc2\x7f\xfa\x0f\xd4\x81\x14\x3a\x52\x5a" "\x31\x22\x2d\x5d\x94\x8f\xd4\x70\xd0\x8b\x59\x62\x50\x02\xf8\x11\xd0\xee" "\x96\x32\xd4\x4d\xb7\xbb\xc8\xb6\x29\xac\xc8\x5a\x2f\x88\x17\x2a\x24\x9a" "\xb8\x7a\x61\x0c\x57\x18\x42\x8c\x1a\x04\x95\xa4\x5c\x68\x0c\x4a\xc2\x26" "\x8a\x4d\x04\x25\x51\x89\xa2\x01\x12\x20\x69\x4d\x4c\xc6\xec\xce\x39\xf3" "\xc5\xcc\xce\x32\x20\x5b\xf0\xf7\x0b\x39\x1f\xef\xfb\x3c\xef\x73\xce\x2c" "\x69\xf2\xbc\x33\x95\xc5\xf1\xb1\x10\x85\xa5\xff\xba\xaa\x75\x91\xce\x65" "\x72\x71\x5c\x1e\xa0\xee\x27\xff\xf2\xf5\x1f\xfc\x79\xee\xbb\xe7\xb5\x8e" "\xe5\xb3\x03\x2c\x04\x00\x00\x00\xf4\x95\xf6\xe1\xc3\x8d\x91\x42\xc8\x67" "\xb7\x87\x5c\x94\x6b\x8b\x2b\x24\xfb\x00\x85\xe4\x3e\x53\xac\x9f\xa3\xf2" "\xd0\xf2\x79\x24\xda\xb0\x62\x7c\x36\x89\xdf\x7e\xf0\xc0\xad\xdb\x67\xef" "\x98\x7b\xff\xe4\x81\x3d\xfb\xaa\xfb\xaa\xd3\xa3\xa3\xa3\x97\x5e\x3c\xba" "\xf3\x92\x9d\x1f\xdc\x7e\xcb\xe4\x54\x75\x47\xfd\x18\xf2\x7d\xd6\x1b\x4e" "\xd6\x9b\xbd\x63\x6e\xff\x9e\xa9\xa9\xea\x6d\xb3\xf5\xfb\xce\xe7\x2e\x25" "\x79\xa5\xe6\xd0\xc4\xd2\xe1\x48\xf2\xdc\xff\xdf\xa7\x4e\x94\xc4\x37\xeb" "\xfc\xf7\x2e\xfa\xff\xb5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x60\x6d\x55\x2b\x0b\xf3\x95\xc5\xf1\xb1\x91\x28\x84\xa8\x47\x4c" "\xad\x8b\x74\x2e\x93\x8b\xe3\xf2\x00\x75\xaf\x7c\x75\xe3\xd6\xcb\x67\x1e" "\xd8\xd7\x3a\x96\xcf\x0e\xb0\x10\x00\x00\x00\xd0\x57\xda\x87\x0f\x37\x46" "\x0a\x21\x9f\xcd\x84\x4c\x38\x73\xf9\xee\xdc\x66\x68\x31\x84\x66\xdf\x0f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\xef\xa9\x56" "\x16\xe6\x2b\x8b\xe3\x63\xeb\xa2\x10\xa2\x1e\x31\xb5\x2e\xd2\xb9\x4c\x2e" "\x8e\xcb\x03\xd4\xfd\xcd\xec\xe4\xd5\x77\x7f\x6e\xf3\xe1\xd6\xb1\xd2\x00" "\xeb\x00\x00\x00\x00\xfd\xa5\x7d\xf8\x50\x63\xa4\x10\x4a\x61\x4b\x18\x8e" "\xce\x6c\x8b\x4b\xf7\x06\xce\xea\xc8\xef\x8c\x4b\xd7\x39\x7b\x95\x71\x9d" "\x7b\x07\xbd\xe2\xb6\xac\x10\x17\x85\xa8\x11\xb7\x6d\x95\xeb\xbd\xb7\x4f" "\xdc\xc7\x92\xf3\xed\xf5\xd3\x53\x57\x04\x00\x00\x00\x78\xfb\x4a\xfb\xff" "\x6c\x63\xa4\x18\xf2\xd9\x53\x7b\xf6\xff\x3d\xfa\xfa\x87\x3b\xe3\x36\x77" "\xc4\x65\x92\xf3\x20\xbf\x15\x00\x00\x00\x00\xde\x98\xb4\xff\xcf\x35\x46" "\x4a\x21\x9f\x2d\x35\xfa\xf5\x7e\xdf\xe3\xa7\xfd\xfe\xb9\x1d\x71\x69\xfe" "\x4a\xdf\xdb\xb7\xe6\xf7\xfb\xde\x3e\x8d\x3b\xbf\x47\x9d\xce\xef\xf3\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\x93\x57\xb5\xb2\x30\x5f\x59\x1c\x1f\xcb\x44" "\x21\x44\x3d\x62\x6a\x5d\xa4\x73\x99\x5c\x1c\x97\x07\xa8\xfb\xec\xc5\xdb" "\xbe\xf5\xf3\xf9\xc3\x27\x5a\xc7\xf2\xd9\x01\x16\x02\x00\x00\x00\xfa\x4a" "\xfb\xf0\x66\xeb\x5d\x08\xf9\xec\x48\x18\x0e\xeb\x96\xfb\xfe\x4b\xb7\xfd" "\xf3\xf3\x73\x13\x47\x36\x0c\x17\x93\xe9\x5c\x2e\xdc\xbe\xe7\xe0\xc1\xdb" "\x76\xd6\x8f\x69\xdc\x96\x2f\xbf\xfc\xe9\xdf\xfd\x34\x2a\xbf\x26\xee\xa2" "\xfa\x71\x4d\x5e\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x78\x53\x55\x2b\x0b\xf3\x95\xc5\xf1\xb1\x53\xa2\x10\xa2\x1e\x31\xb5" "\x2e\xd2\xb9\x4c\x2e\x8e\xcb\x03\xd4\x7d\x76\xf2\xd0\xbf\x6f\xbc\xff\x8c" "\x97\x5a\xc7\x4a\x03\xac\x03\x00\x00\x00\x74\x37\xd4\x72\x9d\xf6\xe1\xcd" "\xde\xbf\x10\x4a\x21\x17\x72\x61\xe3\xf2\x5d\x6b\xaf\xdf\x99\xbb\xa4\xd7" "\x9e\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\xce\x31\x7b\xc7\xdc\xfe\x3d\x53\x53\xd5\xdb\xde\xc8\x45\xf9\x8d\xa5\xbb" "\xd8\xbf\x67\x6a\x7a\x95\xc1\xc7\xd7\xfe\x51\x5d\xbc\x25\x17\x87\x4f\x5b" "\xd3\xc7\x58\xeb\x7f\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x93\x45\xb5\xb2\x30\x5f\x59\x1c\x1f\x2b\x44\x21" "\x44\x3d\x62\x6a\x5d\xa4\x73\x99\x5c\x1c\x97\x07\xa8\x7b\xdf\x87\x1f\xf8" "\xce\x69\x1f\xf8\xc5\x83\xad\x63\xa5\x95\x12\x3e\x9b\x1b\xa0\x0a\x00\x00" "\x00\x10\x5a\xfa\xf0\x66\xef\x5f\x08\xa5\x30\x1c\x86\xc3\x19\xcb\x77\xdd" "\xf6\x04\x96\xfb\xff\xe2\x5b\xf8\x90\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x49\xa1\x5a\x59\x98\xaf\x2c\x8e\x8f\x9d\x1a\x85" "\x10\xf5\x88\xa9\x75\x91\xce\x65\x72\x71\x5c\x1e\xa0\xee\xb9\x7f\xfd\xcc" "\x8d\x47\x8f\x55\x9f\x6d\x1d\xcb\x67\x07\x58\x08\x00\x00\x00\xe8\x2b\xed" "\xc3\x73\x8d\x91\x42\xc8\x67\x2f\x0a\xf9\xb0\x29\xb9\x9f\x6a\x4f\x88\x32" "\xc9\xb9\xfb\xbe\x40\x33\xef\xd6\xb6\xb4\x91\x55\xe7\xdd\xd9\x96\x97\x59" "\x75\xde\x57\x3a\xde\x2c\x9b\xbc\x4d\x3d\xaf\x90\xae\x57\xac\x9f\x1b\x79" "\xe5\xd7\xe6\x95\x43\x08\xa5\x24\xaf\xd4\x9c\x98\x68\xcb\x0b\xf7\xb6\x65" "\x9d\xba\xea\xe7\xfc\x5e\x5b\x5e\xb1\x4f\x5e\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\x93\x50\xb5\xb2\x30\x5f\x59\x1c\x1f" "\x8b\xa2\x10\xa2\x1e\x31\xb5\x2e\xd2\xb9\x4c\x2e\x8e\xcb\x03\xd4\x7d\xea" "\xc0\x65\xc7\xb6\xcd\xfd\xf1\xa5\xd6\xb1\xd2\x00\xeb\x00\x00\x00\x00\xfd" "\xa5\x7d\x78\xb3\xf7\x2f\x84\x52\x38\x3b\x9c\x16\xce\x5e\xee\xfb\x43\x71" "\x79\xb0\x96\x4f\x66\xd3\xb8\x5d\xf7\xbf\x70\xf9\xdf\x7f\x76\xca\xd7\x42" "\xd8\xb1\xf1\xb7\xe7\x64\x7b\xae\xff\xb7\xf3\x2b\xbf\xec\x3c\x84\x30\xd4" "\x1e\x34\x14\xc2\xff\x25\xf5\xa2\x62\xfb\x54\x5a\xef\xf0\x4f\xfe\x71\xdf" "\x8b\x2f\x3e\xfc\xd1\x10\x76\x9c\x91\xd9\xf4\x7a\xeb\xb5\x2f\x19\xd7\x26" "\x4e\x6c\xbc\xe9\xc9\x5d\xf9\xed\xfd\x3e\x1d\x00\x00\x00\x78\x67\x48\xfb" "\xff\xe1\xc6\x48\x31\xe4\xb3\xd3\x9d\xfd\x7f\x43\xda\x79\xbf\xae\xfe\x7f" "\xe6\xf4\xeb\xee\xdc\x90\x1c\x93\x8e\xbc\x23\x63\xa8\x98\xd4\x1b\xea\x51" "\x6f\xff\x25\xdf\xf8\x71\xf9\x9c\x63\x7f\x58\xea\xff\x57\xaa\xf7\xf1\x2f" "\x9e\xf5\x91\x0d\x61\xe6\x92\x78\x32\x3d\xd6\x47\x3a\x44\x71\x6d\xea\x9e" "\xad\xbb\x9f\x5f\xff\xf8\xa1\xf4\xad\xeb\xf5\x33\x1d\xf5\xd3\xcf\xe5\xb9" "\x13\x3f\xfa\xc4\xe1\xd9\xbd\x5f\xaa\xd7\x2f\x84\x42\x32\x7e\x56\xb6\x5b" "\xfd\xd7\x1e\x3b\x9c\x12\xd7\x8e\x4f\x3f\xf2\xd8\xde\x5d\x73\xd7\xb4\xd7" "\xcf\xf6\x78\xff\xbb\xb7\xbe\xfb\x4f\xbf\xff\xf6\x81\x17\x96\xea\xbf\xb2" "\x79\xa4\x51\xff\x3d\x2b\xbc\xff\xca\xf5\x4f\xbf\xbe\xf2\xf4\x91\x87\xee" "\xbd\xb6\xbd\xfe\x70\x8f\xfa\xfb\xae\x5b\xf7\xfd\x57\xcb\x33\xff\xea\x7c" "\xff\x91\x8e\x85\x93\x4f\xbe\xfe\x07\x6f\xf9\x2b\x74\x88\xe2\xda\x2b\x93" "\x4f\x5c\xb1\xfe\xe8\x96\xdd\xed\xf5\x43\x08\x13\xad\x81\xe9\xe7\xff\xd8" "\x23\xdf\x2c\x1f\xfd\xf5\x86\x03\x69\xfd\xf4\xb7\x22\xe7\x6f\xe9\xa8\xdf" "\xf2\xbf\x5a\xeb\xb1\x63\xcf\x29\x8a\x6b\x47\x37\x5d\xb0\x6f\xf4\xd1\x83" "\xeb\xda\xeb\x47\x1d\xf5\xd3\xf7\x3f\x76\xd7\x0f\x8f\x7f\xe1\xd8\x53\x57" "\x75\xbe\xff\xcd\x9d\xef\xdf\xb3\x7e\xe7\xfb\x5f\xb5\x2d\x73\xc3\x33\x9b" "\x47\x07\xf9\xf1\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xdb\x40" "\xb5\xb2\x30\x5f\x59\x1c\x1f\x0b\x99\x10\xa2\x1e\x31\xb5\x2e\xd2\xb9\x4c" "\x2e\x8e\xcb\x03\xd4\xfd\xd0\x79\x57\x5e\x73\xf5\x4b\xd3\x5f\x6d\x1d\xcb" "\x67\x07\x58\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x78\xd3\x54\x2b\x0b\xf3\x95\xc5\xf1\xb1\xa1\x28\x84\xa8" "\x47\x4c\xad\x8b\x74\x2e\x93\x8b\xe3\xf2\x00\x75\x67\x2f\x7c\xf9\xc1\xe7" "\xaf\xfd\xd5\xbb\x5a\xc7\x4a\x03\xac\x03\x00\x00\x00\xf4\x97\xf6\xe1\xcd" "\xde\xbf\x10\x4a\x21\x17\x72\x61\x64\xb9\xef\x9f\x38\xb1\xf1\xa6\x27\x77" "\xe5\xb7\x87\x62\x7d\x36\x4a\xce\xd9\xa9\x99\xd9\x83\xef\xbb\x65\xe6\xd0" "\xf4\xcd\x6b\xf4\xe4\x00\x00\x00\xc0\x6a\xa5\xfd\x7f\xb6\x31\x52\x0c\xf9" "\xec\x79\x61\x38\xe9\xff\x8f\x6e\xba\x60\xdf\xe8\xa3\x07\xd7\xa5\xfd\x7f" "\x08\x61\x62\xe9\x50\xb8\x65\x72\xaa\x3a\x1a\x1a\xfb\x04\x57\x6d\xcb\xdc" "\xf0\xcc\xe6\xd1\x72\x63\x9f\xa0\x35\xee\xc2\xbd\x33\x53\xc9\x36\x41\xba" "\xee\x5d\x97\xad\x7f\x6e\xf6\x53\x8b\x57\x77\x5d\x77\x67\x33\xee\x95\xc9" "\x27\xae\x58\x7f\x74\xcb\xee\x34\x6e\x38\x39\x2f\xc7\x5d\xd4\x8c\x9b\xba" "\x67\xeb\xee\xe7\xd7\x3f\x7e\x28\x8d\x1b\x4a\xf7\x29\x96\xe2\x76\x34\xe3" "\x8e\x4f\x3f\xf2\xd8\xde\x5d\x73\xd7\xa4\xf3\x99\xd6\xf5\x5a\xe2\x4e\xbf" "\xbe\xf2\xf4\x91\x87\xee\xbd\xb6\xb1\x4e\x72\x1e\x49\xea\x02\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x1f\x76\xe0\x40\x00\x00\x00\x00\x00" "\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x5f\x47\x21" "\x52\x55\x71\x1c\x80\xcf\x99\x99\xd5\xd1\xd1\x6d\xb6\x28\x17\x29\x52\x31" "\xd1\x20\x59\xa9\xa8\x84\x68\x15\x92\x1e\xda\x90\x02\x5f\x2c\xf0\x21\x2b" "\x23\x93\x5a\xc2\x10\x62\x37\x21\x0b\x93\xf0\xa9\x22\x28\x22\x0a\x02\x91" "\x82\xa0\x87\x22\x2c\x28\x83\x24\x0a\x22\xb4\x87\x30\xb4\x87\x7a\x88\x8d" "\x68\x43\xdc\xa8\x98\xd9\x7b\x67\x67\xae\xde\x66\xbb\x35\x09\xcb\xf7\xc1" "\x70\xf6\x9e\x3b\xf7\x77\xfe\xe7\xdc\x33\x33\x7b\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x2e\xac\xf9\x95\xc1\x66\x7b\xf4\xa9\xd1\xdf" "\xee\x18\x0b\x9f\xed\xdd\x3e\x39\x76\xdb\x7b\x3b\x9f\x3c\x38\x3c\xef\xe8" "\x2d\x07\x6e\x3f\xf1\xf2\x3d\x6f\x9c\x3a\x3d\xb0\x7a\xdd\xeb\x0f\x6e\x9a" "\x7a\x64\xd1\xc8\xfe\xfd\xc3\x5f\xdd\x30\xf5\xf9\x1f\x4f\x74\x0d\x7e\x7c" "\xba\x59\x93\x1c\x56\x43\x88\x3f\xc5\x10\xae\xf8\x62\xf5\xf3\xfb\x3e\x39" "\xb6\xa4\xd1\x17\x43\x08\xe5\x58\x1f\x0f\x61\x20\x96\x3e\x1a\x88\x99\x84" "\xa1\xb3\x21\x84\x7b\x5b\x75\x76\x9e\x7c\x67\xf2\xda\xfb\x1a\xed\xf8\xb3" "\xf3\x3b\xfa\x2f\xca\x84\x34\xe7\xb5\xf4\xd6\xd6\xbc\x42\xad\x9c\xd6\x33" "\xad\xde\x59\x2f\x73\x4b\x35\xd9\x67\x4f\x7f\xb0\xeb\xf2\x1f\xd6\x6e\x3a" "\x71\xe4\x9b\x8d\x93\x43\xd5\xb3\x8f\x8e\xcf\xbc\x25\x56\xdb\xf6\x53\x08" "\xfd\xdb\xda\xaf\xef\x0b\x21\x2c\x48\x5e\x0d\xe9\x6e\x1b\x4c\x2f\x4e\xda" "\xcd\x21\x84\x85\x6d\xd7\xdd\xd8\xa5\xae\x15\xb3\xac\xff\x9a\x9c\xe3\xa5" "\x49\x3b\x2f\x69\x6b\x5d\x72\xd2\xf3\xcb\x33\xc7\x7d\xb3\xac\xa3\xd2\x6a" "\xa7\x3f\x39\xd5\x59\x5e\x57\x54\xa9\xc7\xf9\xa9\xf4\xfe\x2d\xea\xf1\xf8" "\xd9\x2f\xb7\xec\x38\x03\x49\xfb\x6e\xd2\xae\xf9\x87\xf9\xe5\xf4\x15\x43" "\x29\x86\x4a\x6b\xb8\x87\xe2\xcc\x1e\x09\x6d\xf7\x2d\x86\xd8\xbc\xf7\x33" "\xc7\xa5\x8e\xbd\x10\x33\x7b\x23\x86\x10\xfb\xda\x26\x12\x43\x28\x65\xce" "\x97\xfb\x32\xf3\x6a\x8e\x9b\x6c\xb4\x72\x8c\x9d\xfd\xe9\xfb\x32\xfd\xcb" "\x92\xfe\x4a\xd2\xbf\xbc\xcb\x5e\xbb\xeb\xef\x16\xa5\x71\x6d\xf2\x41\x3d" "\x93\x99\x7f\x36\xb4\x76\xce\x1f\xad\x79\x35\xa5\x75\x7d\xd7\x65\xbc\x5e" "\x2b\xb5\x7d\x07\x9d\xaf\x3f\xad\xb7\x9a\xdc\x8c\x5a\xd2\x57\x8b\x17\x9f" "\x73\xcd\x9f\xe7\x91\x9e\xdb\x72\xfa\xb9\xb7\x4e\xed\x79\x65\x65\x3d\xa7" "\x8e\xf8\x76\x4c\xf2\x63\xa1\xfc\xaf\x77\xde\x74\x7c\xd5\x9e\x6f\x27\x06" "\xf3\xf2\xb7\x95\x92\xfc\x52\xa1\xfc\xd1\xb5\xbf\x1c\xfe\xf1\xce\x4f\x97" "\xe4\xe6\x1f\x4c\xf3\xcb\x85\xf2\x4f\x5e\xb7\xea\x85\xf7\xc7\x76\x9f\xc9" "\x5d\x9f\x9f\xd3\xf5\xa9\x14\xca\x2f\xaf\xbf\x7a\x6a\xdd\xde\xa1\x2d\xb9" "\xf5\xbf\x9a\xe6\x57\x0b\xe5\xbf\xb6\xf1\xd0\x4b\xfd\xd7\x7f\x7c\x38\xb7" "\xfe\xa1\x74\x7d\x16\x14\x5b\x9f\x1d\x8f\xfd\xbe\xf5\xcd\x4b\x27\x72\xf3" "\x43\x9a\xbf\xb0\x50\xfe\x86\x5f\x2f\xbb\x6a\xfd\xae\x43\xf7\xe7\xe6\x7f" "\x98\xae\x4f\xad\x50\xfe\xb1\xd1\x1d\x23\xfb\x1e\xb8\x72\xf7\xb2\xbc\xfc" "\x2f\x63\xf3\x83\x55\x0b\x8b\x0b\xe5\xaf\xf8\xfe\xee\xad\x47\x8e\x6f\x3f" "\x99\x5b\xff\x70\xba\x3e\xf5\x42\xf9\x37\xaf\xdc\xb0\x79\x64\xe2\xe1\x03" "\x79\xdf\x9d\x71\xfc\xff\xfa\x85\x05\x98\x9b\x2e\x49\xfe\xc7\x7a\x26\x39" "\x2e\xfa\x9c\xf9\x6f\xb5\x3d\x2f\xbc\x58\x9f\xfe\x69\x6a\x3e\xd3\x34\x5e" "\x8b\xff\xcb\x81\x32\x1a\xe3\xf4\xf7\x30\x1f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\x2f\x76\xe0\x80\x04\x00\x00\x00\x40\xd0\xff\xd7\xed\x08\x14\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xa7\x02\x00\x00\xff\xff\xca" "\x45\x5a\x6e", 23511); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000100, /*flags=MS_I_VERSION|MS_SYNCHRONOUS|MS_DIRSYNC*/ 0x800090, /*opts=*/0x20005f80, /*chdir=*/1, /*size=*/0x5bd7, /*img=*/0x2000bc00); memcpy((void*)0x20000340, "./file2\000", 8); syscall(__NR_truncate, /*file=*/0x20000340ul, /*len=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_802154(); use_temporary_dir(); loop(); return 0; }