// https://syzkaller.appspot.com/bug?id=5fbcee368b4c2153e9a8395c94c79189d0e7fb53 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static 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; #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE \ { \ 0x08, 0x02, 0x11, 0x00, 0x00, 0x00 \ } #define WIFI_IBSS_BSSID \ { \ 0x50, 0x50, 0x50, 0x50, 0x50, 0x50 \ } #define WIFI_IBSS_SSID \ { \ 0x10, 0x10, 0x10, 0x10, 0x10, 0x10 \ } #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, true); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) { if (errno != ENOENT && errno != EACCES) exit(1); } else { struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); } uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) { return; } int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP); if (ret < 0) exit(1); } close(sock); } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_wifi_devices(); setup_binderfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_usb() { if (chmod("/dev/raw-gadget", 0666)) exit(1); } #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) { } 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) { } } } close(sock_route); close(sock_generic); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 15; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 9 ? 4000 : 0) + (call == 14 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[7] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000080, "jfs\000", 4); memcpy((void*)0x20005e40, "./bus\000", 6); memcpy( (void*)0x2000de40, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\x19\x07\xf0\xe7\xbe\xfa\xa5\x34\xb5" "\xba\xa8\x4a\x84\x90\x9b\xb6\x40\x29\xcd\x6b\x09\x81\x02\x6d\x17\xb0" "\x60\xc3\x02\x65\x8b\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\xab\x88\xb8" "\xf2\x86\x05\x1f\x02\x84\xc4\x12\x21\x96\xac\xf8\x00\x5d\xb0\x65\xc7" "\x07\x20\x52\x82\x04\xea\x8a\x41\x63\x9f\xe3\xcc\x9d\x5c\xe7\x3a\x38" "\xbe\x63\xfb\xfc\x7e\x92\x33\xf3\xcc\x99\xf1\x3d\x93\xff\x7d\xf5\xcc" "\xdc\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40" "\xfc\xe0\xfb\x3f\x3a\xd7\x8b\x88\x2b\xbf\x4c\x0b\x56\x22\x3e\x17\x83" "\x88\x7e\xc4\x52\x5d\xaf\x46\xc4\xd2\xea\x4a\x5e\x7f\x18\x11\x2f\xc6" "\x56\x73\xbc\x10\x11\xa3\x85\x88\x7a\xfb\xad\x7f\x9e\x8b\x78\x33\x22" "\x3e\x3d\x11\x71\xff\xc1\x9d\xb5\x7a\xf1\xf9\x3d\xf6\xe3\x7b\x7f\xfa" "\xfb\xef\x7f\xfc\xcc\x0f\xff\xf6\xc7\xd1\x99\xff\xfc\xf9\xd6\xe0\xad" "\xdd\xd6\xbb\x7d\xfb\x37\xff\xfe\xcb\xdd\xfd\xed\x33\x00\x00\x00\x94" "\xa6\xaa\xaa\xaa\x97\x3e\xe6\x9f\x4c\x9f\xef\xfb\x5d\x77\x0a\x00\x98" "\x8b\xfc\xfa\x5f\x25\x79\xb9\x5a\xad\x56\xab\xd5\xea\xe3\x57\x37\x55" "\xd3\xdd\x6d\x16\x11\xb1\xd1\xdc\xa6\x7e\xcf\xe0\x70\x3c\x00\x1c\x31" "\x1b\xf1\x59\xd7\x5d\xa0\x43\xf2\x2f\xda\x30\x22\x9e\xe9\xba\x13\xc0" "\xa1\xd6\xeb\xba\x03\x1c\x88\xfb\x0f\xee\xac\xf5\x52\xbe\xbd\xe6\xeb" "\xc1\xea\x76\x7b\x3e\x17\x64\x22\xff\x8d\xde\xce\xf5\x1d\xbb\x4d\x67" "\x69\x9f\x63\x32\xaf\xfb\xd7\x66\x0c\xe2\xf9\x5d\xfa\xb3\x34\xa7\x3e" "\x1c\x26\x39\xff\x7e\x3b\xff\x2b\xdb\xed\xe3\xb4\xde\x41\xe7\x3f\x2f" "\xbb\xe5\x3f\xde\xbe\xf4\xa9\x38\x39\xff\x41\x3b\xff\x96\xe3\x93\x7f" "\x7f\x6a\xfe\xa5\xca\xf9\x0f\x9f\x28\xff\x81\xfc\x01\x00\x00\x00\x00" "\xe0\x10\xcb\x7f\xff\x5f\xe9\xf8\xf8\xef\xc2\xfe\x77\x65\x4f\x1e\x77" "\xfc\x77\x75\x4e\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xa7\x6d\xbf\xe3" "\xff\xed\x30\xfe\x1f\x00\x00\x00\x1c\x5a\xf5\x67\xf5\xda\x6f\x4f\x3c" "\x5c\xb6\xdb\x77\xb1\xd5\xcb\x2f\xf7\x22\x9e\x6d\xad\x0f\x14\x26\x5d" "\x2c\xb3\xdc\x75\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x24" "\xc3\xed\x73\x78\x2f\xf7\x22\x46\x11\xf1\xec\xf2\x72\x55\x55\xf5\x4f" "\x53\xbb\x7e\x52\xfb\xdd\xfe\xa8\x2b\x7d\xff\xa1\x64\x5d\x3f\xc9\x03" "\x00\xc0\xb6\x4f\x4f\xb4\xae\xe5\xef\x45\x2c\x46\xc4\xe5\xf4\x5d\x7f" "\xa3\xe5\xe5\xe5\xaa\x5a\x5c\x5a\xae\x96\xab\xa5\x85\xfc\x7e\x76\xbc" "\xb0\x58\x2d\x35\x3e\xd7\xe6\x69\xbd\x6c\x61\xbc\x87\x37\xc4\xc3\x71" "\x55\xff\xb2\xc5\xc6\x76\x4d\xb3\x3e\x2f\xcf\x6a\x6f\xff\xbe\xfa\xb6" "\xc6\xd5\x60\x0f\x1d\x9b\x8f\x0e\x03\x07\x80\x88\xd8\x7e\x35\xba\xef" "\x15\xe9\x98\xa9\xaa\xe7\xa2\xeb\x77\x39\x1c\x0d\x1e\xff\xc7\x8f\xc7" "\x3f\x7b\xd1\xf5\xfd\x14\x00\x00\x00\x38\x78\x55\x55\x55\xbd\xf4\x75" "\xde\x27\xd3\x31\xff\x7e\xd7\x9d\x02\x00\xe6\x22\xbf\xfe\xb7\x8f\x0b" "\xa8\xd5\x6a\xb5\x5a\xad\x3e\x7e\x75\x53\x35\xdd\xdd\x66\x11\x11\x1b" "\xcd\x6d\xea\xf7\x0c\x86\xe3\x07\x80\x23\x66\x23\x3e\xeb\xba\x0b\x74" "\x48\xfe\x45\x1b\x46\xc4\x8b\x5d\x77\x02\x38\xd4\x7a\x5d\x77\x80\x03" "\x71\xff\xc1\x9d\xb5\x5e\xca\xb7\xd7\x7c\x3d\x48\xe3\xbb\xe7\x73\x41" "\x26\xf2\xdf\xe8\x6d\x6d\x97\xb7\x9f\x36\x9d\xa5\x7d\x8e\xc9\xbc\xee" "\x5f\x9b\x31\x88\xe7\x77\xe9\xcf\x0b\x73\xea\xc3\x61\x92\xf3\xef\xb7" "\xf3\xbf\xb2\xdd\x3e\x4e\xeb\x1d\x74\xfe\xf3\xb2\x5b\xfe\xf5\x7e\xae" "\x74\xd0\x9f\xae\xe5\xfc\x07\xed\xfc\x5b\x8e\x4f\xfe\xfd\xa9\xf9\x97" "\x2a\xe7\x3f\x7c\xa2\xfc\x07\xf2\x07\x00\x00\x00\x00\x80\x43\x2c\xff" "\xfd\x7f\xc5\xf1\xdf\xbc\xcb\x00\x00\x00\x00\x00\x00\x00\x70\xe4\xdc" "\x7f\x70\x67\x2d\x5f\xf7\x9a\x8f\xff\x7f\x61\xca\x7a\xae\xff\x3c\x9e" "\x72\xfe\x3d\xf9\x17\x29\xe7\xdf\x6f\xe5\xff\x95\xd6\x7a\x83\xc6\xfc" "\xbd\x77\x1f\xe6\xff\xaf\x07\x77\xd6\xfe\x70\xeb\x9f\x9f\xcf\xd3\xbd" "\xe6\xbf\x90\x67\x7a\xe9\x9e\xd5\x4b\xf7\x88\x5e\xba\xa5\xde\x30\x4d" "\xf7\xb3\x77\x8f\xda\x1c\x0d\xc6\xf5\x2d\x8d\x7a\xfd\xc1\x30\x9d\xf3" "\x53\x8d\xde\x8f\x6b\x71\x3d\xd6\xe3\xec\xc4\xba\xfd\xf4\xff\xf1\xb0" "\xfd\xdc\x44\x7b\xdd\xd3\xd1\x44\xfb\xf9\x89\xf6\xe1\x23\xed\x17\x26" "\xda\x47\xe9\x7b\x07\xaa\xa5\xdc\x7e\x3a\xd6\xe2\x67\x71\x3d\xde\xdb" "\x6a\xaf\xdb\x16\x66\xec\xff\xe2\x8c\xf6\x6a\x46\x7b\xce\x7f\xe0\xf1" "\x5f\xa4\x9c\xff\xb0\xf1\x53\xe7\xbf\x9c\xda\x7b\xad\x69\xed\xde\x27" "\xfd\x47\x1e\xf7\xcd\xe9\xb4\xdb\x79\xe7\xda\x17\x7f\x7d\xf6\xe0\x77" "\x67\xa6\xcd\x18\xec\xec\x5b\x53\xbd\x7f\xa7\x3a\xe8\xcf\xd6\xff\xc9" "\x33\xe3\xf8\xc5\xcd\xf5\x1b\xa7\x6f\x5f\xbd\x75\xeb\xc6\xb9\x48\x93" "\x89\xa5\xe7\x23\x4d\x9e\xb2\x9c\xff\x28\xfd\xec\x3c\xff\xbf\xbc\xdd" "\x9e\x9f\xf7\x9b\x8f\xd7\x7b\x9f\x8c\x9f\x38\xff\xc3\x62\x33\x86\xbb" "\xe6\xff\x72\x63\xbe\xde\xdf\xd7\xe6\xdc\xb7\x2e\xe4\xfc\xc7\xe9\x27" "\xe7\xff\x5e\x6a\x9f\xfe\xf8\x3f\xca\xf9\xef\xfe\xf8\x7f\xbd\x83\xfe" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xe3\x54\x55\xb5" "\x75\x89\xe8\x3b\x11\x71\x31\x5d\xff\xd3\xd5\xb5\x99\x00\xc0\x7c\xe5" "\xd7\xff\x2a\xc9\xcb\xd5\x6a\xb5\x5a\xad\x56\x1f\xbf\xba\xa9\x9a\xee" "\xed\x66\x11\x11\x7f\x6d\x6e\x53\xbf\x67\xf8\xd5\xb4\x5f\x06\x00\x1c" "\x66\xff\x8d\x88\x7f\x74\xdd\x09\x3a\x23\xff\x82\xe5\xef\xfb\xab\xa7" "\xaf\x74\xdd\x19\x60\xae\x6e\x7e\xf4\xf1\x4f\xae\x5e\xbf\xbe\x7e\xe3" "\x66\xd7\x3d\x01\x00\x00\x00\x00\x00\x00\x00\xfe\x5f\x79\xfc\xcf\xd5" "\xc6\xf8\xcf\xaf\x44\xc4\x4a\x6b\xbd\x89\xf1\x5f\xdf\x8d\xd5\xfd\x8e" "\xff\x39\xcc\x33\x3b\x03\x8c\x3e\xe5\x81\xbe\x77\xb1\xd9\x1f\x0f\xfa" "\x8d\xe1\xc6\x5f\x8a\xc7\x8f\xff\x7d\x2a\x1e\x3f\xfe\xf7\x70\xc6\xed" "\x8d\x66\xb4\x8f\x67\xb4\x2f\xcc\x68\x5f\x9c\xd1\x3e\xf5\x42\x8f\x86" "\x9c\xff\x4b\x8d\xf1\xce\xeb\xfc\x4f\xb6\x86\x5f\x2f\x61\xfc\xd7\xf6" "\x98\xf7\x25\xc8\xf9\x9f\x6a\xdc\x9f\xeb\xfc\xbf\xdc\x5a\xaf\x99\x7f" "\xf5\xbb\xa3\x9c\x7f\x7f\x22\xff\x33\xb7\x3e\xfc\xf9\x99\x9b\x1f\x7d" "\xfc\xc6\xb5\x0f\xaf\x7e\xb0\xfe\xc1\xfa\x4f\x2f\x9c\x3b\x77\xf6\xc2" "\xc5\x8b\x97\x2e\x5d\x3a\xf3\xfe\xb5\xeb\xeb\x67\xb7\xff\xed\xb0\xc7" "\x07\x2b\xe7\x9f\xc7\xbe\x76\x1e\x68\x59\x72\xfe\x39\x73\xf9\x97\x25" "\xe7\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\x97\x52\x2d\xff\xb2\xe4\xfc\xf3" "\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\xd7\x52\x2d" "\xff\xb2\xe4\xfc\xbf\x9a\x6a\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96" "\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\xdf\x48\xb5\xfc\xcb\x92\xf3\x3f" "\x9d\x6a\xf9\x97\x25\xe7\x7f\x26\xd5\xf2\x2f\x4b\xce\x3f\x1f\xe1\x92" "\x7f\x59\x72\xfe\xf9\xcc\x06\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b" "\xce\xff\x42\xaa\xe5\x5f\x96\x9c\xff\x9b\xa9\x96\x7f\x59\x72\xfe\x5f" "\x4f\xb5\xfc\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\xff\x8d\x54\xcb" "\xbf\x2c\x39\xff\x4b\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92" "\xf3\xff\x56\xaa\xe5\x5f\x96\x9c\xff\x5b\xa9\x96\x7f\x59\x72\xfe\xdf" "\x4e\xb5\xfc\xcb\x92\xf3\xff\x4e\xaa\xe5\x5f\x96\x9c\xff\x77\x53\x2d" "\xff\xb2\xe4\xfc\xdf\x4e\xb5\xfc\xcb\xf2\xf0\xfb\xff\xcd\x1c\xc3\x99" "\xf1\xe1\xe8\x86\x99\xa3\x37\xd3\xf5\x33\x13\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd0\x36\x8f\xd3\x89\x27\x6f\xf1\xd5\xae\x76\x15\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\x1f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81" "\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xbd\xc5\xc8\x55\xdf\x77" "\x00\x3f\xb3\xde\xb5\xd7\x26\x01\x27\x10\x6a\xa8\x81\xb5\x71\x8c\x31" "\x0b\xbb\xbe\xe0\x4b\x5a\x37\x0e\x21\x84\x42\xd2\x94\x5b\x1a\x7a\xc1" "\x76\xbd\x6b\xb3\x89\x6f\x78\xd7\x0d\x50\x24\x3b\x22\x69\x90\xe2\xa8" "\x51\x95\xaa\xbc\xb4\x4d\x22\xd4\xf0\x52\xc5\xaa\xf2\x90\x56\x34\xa2" "\x52\xd5\xaa\x4f\xa5\x7d\x48\x1f\x5a\xa5\xaa\x94\x07\x54\x91\x88\x44" "\xaa\xd4\x2b\x5b\xcd\x99\xff\xff\xbf\x33\xb3\x67\x67\xd6\x78\xd8\xcc" "\x9c\xf3\xf9\x48\xf8\xe7\x9d\x39\x33\xe7\xcc\x99\xff\xcc\xee\x77\xcd" "\x77\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\xdc\xa6\x0f\x4f\x7f" "\xb1\x96\x65\x59\xfd\xbf\xfc\x8f\xf5\x59\xf6\xae\xfa\xdf\xd7\x8e\xad" "\xcf\x2f\xfb\xc0\x4f\xfb\x08\x01\x00\x00\x80\x2b\xf5\x7f\xf9\x9f\x6f" "\x5e\x93\x2e\x38\xb8\x8c\x1b\x35\x6d\xf3\xb7\x37\xff\xfd\xb7\xe7\xe7" "\xe7\xe7\xb3\x4f\xad\xfa\xfd\x91\xaf\xce\xcf\xa7\x2b\xc6\xb2\x6c\x64" "\x4d\x96\xe5\xd7\x45\x97\xfe\xed\xf1\x5a\xf3\x36\xc1\xf3\xd9\x68\x6d" "\xa8\xe9\xe3\xa1\x2e\xbb\x5f\xd5\xe5\xfa\xe1\x2e\xd7\x8f\x74\xb9\x7e" "\x75\x97\xeb\xd7\x74\xb9\x7e\xb4\xcb\xf5\x8b\x4e\xc0\x22\x6b\x1b\xdf" "\x8f\xc9\xef\x6c\x4b\xfe\xd7\xf5\x8d\x53\x9a\x5d\x97\x8d\xe4\xd7\x6d" "\x29\xb8\xd5\xf3\xb5\x35\x43\x43\xf1\x7b\x39\xb9\x5a\x7e\x9b\xf9\x91" "\x63\xd9\x4c\x76\x22\x9b\xce\x26\x5b\xb6\x6f\x6c\x5b\xcb\xb7\x7f\x65" "\x53\x7d\x5f\xf7\x67\x71\x5f\x43\x4d\xfb\xda\x58\x5f\x21\x3f\x7e\xee" "\x68\x3c\x86\x5a\x38\xc7\x5b\x5a\xf6\xb5\x70\x9f\xd1\x0f\x3f\x94\x8d" "\xfd\xe4\xc7\xcf\x1d\xfd\x93\xb9\x37\x6e\x28\x9a\x5d\x4f\x43\xcb\xfd" "\x35\x8e\x73\xdb\xe6\xfa\x71\x7e\x3e\x5c\xd2\x38\xd6\x5a\xb6\x26\x9d" "\x93\x78\x9c\x43\x4d\xc7\xb9\xb1\xe0\x39\x59\xd5\x72\x9c\xb5\xfc\x76" "\xf5\xbf\xb7\x1f\xe7\x9b\xcb\x3c\xce\x55\x0b\x87\xb9\xa2\xda\x9f\xf3" "\xd1\x6c\x28\xff\xfb\x6b\xf9\x79\x1a\x6e\xfe\xb6\x5e\x3a\x4f\x1b\xc3" "\x65\xff\x79\x6b\x96\x65\x17\x16\x0e\xbb\x7d\x9b\x45\xfb\xca\x86\xb2" "\x75\x2d\x97\x0c\x2d\x3c\x3f\xa3\x8d\x15\x59\xbf\x8f\xfa\x52\x7a\x6f" "\x36\x7c\x59\xeb\x74\xd3\x32\xd6\x69\x7d\x4e\x6d\x69\x5d\xa7\xed\xaf" "\x89\xf8\xfc\x6f\x0a\xb7\x1b\x5e\xe2\x18\x9a\x9f\xa6\x1f\x7e\x6e\xf5" "\xa2\xe7\xfd\x72\xd7\x69\x54\x7f\xd4\x4b\xbd\x56\xda\xd7\x60\xaf\x5f" "\x2b\xfd\xb2\x06\xe3\xba\x78\x2d\x7f\xd0\x2f\x14\xae\xc1\x2d\xe1\xf1" "\x3f\xb7\x75\xe9\x35\x58\xb8\x76\x0a\xd6\x60\x7a\xdc\x4d\x6b\x70\x73" "\xb7\x35\x38\xb4\x7a\x55\x7e\xcc\xe9\x49\xa8\xe5\xb7\x59\x58\x83\x3b" "\x5a\xb6\x5f\x95\xef\xa9\x96\xcf\xd7\xb7\x76\x5e\x83\x13\x73\x27\xcf" "\x4c\xcc\x3e\xf3\xec\x9d\x33\x27\x8f\x1c\x9f\x3e\x3e\x7d\x6a\xd7\x8e" "\x1d\x93\xbb\xf6\xec\xd9\xb7\x6f\xdf\xc4\xb1\x99\x13\xd3\x93\x8d\x3f" "\xdf\xe6\xd9\xee\x7f\xeb\xb2\xa1\xf4\x1a\xd8\x1c\xce\x5d\x7c\x0d\xdc" "\xd6\xb6\x6d\xf3\x52\x9d\xff\x7a\xef\x5e\x87\xa3\x1d\x5e\x87\xeb\xdb" "\xb6\xed\xf5\xeb\x70\xb8\xfd\xc1\xd5\x56\xe6\x05\xb9\x78\x4d\x37\x5e" "\x1b\x8f\xd6\x4f\xfa\xe8\xc5\xa1\x6c\x89\xd7\x58\xfe\xfc\x6c\xbf\xf2" "\xd7\x61\x7a\xdc\x4d\xaf\xc3\xe1\xa6\xd7\x61\xe1\xe7\x94\x82\xd7\xe1" "\xf0\x32\x5e\x87\xf5\x6d\xce\x6c\x5f\xde\xd7\x2c\xc3\x4d\xff\x15\x1d" "\xc3\x3b\xf5\xb9\x60\x7d\xd3\x1a\x6c\xff\x7a\xa4\x7d\x0d\xf6\xfa\xeb" "\x91\x7e\x59\x83\xa3\x61\x5d\xfc\xcb\xf6\xa5\x3f\x17\x6c\x0c\xc7\xfb" "\xc2\xf8\xe5\x7e\x3d\xb2\x6a\xd1\x1a\x4c\x0f\x37\xbc\xf7\xd4\x2f\x49" "\x5f\xef\x8f\xee\xcb\x47\xd1\xba\xbc\xb1\x7e\xc5\x55\xab\xb3\x73\xb3" "\xd3\x67\xef\x7a\xfa\xc8\xdc\xdc\xd9\x1d\x59\x18\x2b\xe2\xda\xa6\xb5" "\xd2\xbe\x5e\xd7\x35\x3d\xa6\x6c\xd1\x7a\x1d\xba\xec\xf5\x7a\x70\xe6" "\xe6\x17\x6e\x2c\xb8\x7c\x7d\x38\x57\xa3\x77\xd6\xff\x18\x5d\xf2\xb9" "\xaa\x6f\xb3\xfb\xae\xce\xcf\x55\xfe\xd9\xad\xf8\x7c\xb6\x5c\xba\x33" "\x0b\xa3\xc7\x56\xfa\x7c\x16\x7d\x36\xaf\x9f\xcf\x94\x25\x3b\x9c\xcf" "\xfa\x36\x9f\x9f\xb8\xf2\xaf\xc5\x53\x2e\x6d\x7a\xff\x1d\x59\xe2\xfd" "\x37\xe6\xfe\xb7\x1a\xfb\x4b\x77\xf5\xfc\xaa\x91\xe1\xc6\xeb\x77\x55" "\x3a\x3b\x23\x2d\xef\xc7\xad\x4f\xd5\x70\xfe\xde\x55\xcb\xf7\xfd\xe6" "\xc4\xf2\xde\x8f\x47\xc2\x7f\x2b\xfd\x7e\x7c\x5d\x87\xf7\xe3\x0d\x6d" "\xdb\xf6\xfa\xfd\x78\xa4\xfd\xc1\xc5\xf7\xe3\x5a\xb7\xef\x76\x5c\x99" "\xf6\xe7\x73\x34\xac\x93\x13\x93\x9d\xdf\x8f\xeb\xdb\x6c\xd8\x79\xb9" "\x6b\x72\xb8\xe3\xfb\xf1\xad\x61\xd6\xc2\xf9\xbf\x3d\x24\x85\x94\x8b" "\x9a\xd6\xce\x52\xeb\x36\xed\x6b\x78\x78\x24\x3c\xae\xe1\xb8\x87\xd6" "\x75\xba\xab\x65\xfb\x91\x90\xcd\xea\xfb\x7a\x79\xe7\xdb\x5b\xa7\xdb" "\x6e\x6d\xdc\xd7\xaa\xf4\xe8\x16\xac\xd4\x3a\x1d\x6b\xdb\xb6\xd7\xeb" "\x34\xbd\x5f\x2d\xb5\x4e\x6b\xdd\xbe\xfb\xf6\xf6\xb4\x3f\x9f\xa3\x61" "\x5d\x5c\xb7\xab\xf3\x3a\xad\x6f\xf3\xea\xee\x2b\x7f\xef\x5c\x1b\xff" "\xda\xf4\xde\xb9\xba\xdb\x1a\x1c\x59\xb5\xba\x7e\xcc\x23\x69\x11\x36" "\xde\xef\xe7\xd7\xc6\x35\x78\x57\x76\x34\x3b\x9d\x9d\xc8\xa6\xf2\x6b" "\x57\xe7\xeb\xa9\x96\xef\x6b\xfc\xee\xe5\xad\xc1\xd5\xe1\xbf\x95\x7e" "\xaf\xdc\xd0\x61\x0d\x6e\x6b\xdb\xb6\xd7\x6b\x30\x7d\x1e\x5b\x6a\xed" "\xd5\x86\x17\x3f\xf8\x1e\x68\x7f\x3e\x47\xc3\xba\x78\xf1\xee\xce\x6b" "\xb0\xbe\xcd\xbd\x7b\x7b\xfb\xb5\xeb\xb6\x70\x49\xda\xa6\xe9\x6b\xd7" "\xf6\xef\xaf\x2d\xf5\x3d\xaf\x1b\xdb\x4e\xd3\x3b\xf9\x3d\xaf\xfa\x71" "\xfe\xf5\xde\xce\xdf\x9b\xad\x6f\x73\x62\xdf\xe5\xe6\xcc\xce\xe7\xe9" "\x8e\x70\xc9\x55\x05\xe7\xa9\xfd\xf5\xbb\xd4\x6b\x6a\x2a\x5b\x99\xf3" "\xb4\x21\x1c\xe7\x1b\xfb\x96\x3e\x4f\xf5\xe3\xa9\x6f\xf3\xd5\xfd\xcb" "\x5c\x4f\x07\xb3\x2c\x3b\xff\xd4\x3d\xf9\xf7\x7b\xc3\xbf\xaf\xfc\xd9" "\xb9\xef\x7d\xbb\xe5\xdf\x5d\x8a\xfe\x4d\xe7\xfc\x53\xf7\xfc\xe8\xdd" "\xc7\xfe\xe6\x72\x8e\x1f\x80\xc1\xf7\x56\x63\xac\x6b\x7c\xae\x6b\xfa" "\x97\xa9\xe5\xfc\xfb\x3f\x00\x00\x00\x30\x10\x62\xee\x1f\x0a\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\x8f\xff\x57\x78\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\x3f\x1c\x66\x52\x91\xfc\xbf\xe1\xde\x37\x66\xde\x3a" "\x9f\xa5\x66\xfe\x7c\x10\xaf\x4f\xa7\xe1\x81\xc6\x76\xb1\xe3\x3a\x19" "\x3e\x1e\x9b\x5f\x50\xbf\xfc\x9e\x97\xa6\xff\xe3\x2f\xce\x2f\x6f\xdf" "\x43\x59\x96\xfd\xef\x03\xbf\x5d\xb8\xfd\x86\x07\xe2\x71\x35\x8c\x85" "\xe3\xbc\xf4\x91\xd6\xcb\x17\xdf\xf0\xfc\xb2\xf6\x7f\xf8\xb1\x85\xed" "\x9a\xfb\xeb\x5f\x0b\xf7\x1f\x1f\xcf\x72\x97\x41\x51\x05\x77\x32\xcb" "\xb2\x57\xae\xf9\x72\xbe\x9f\xb1\xc7\x2f\xe6\xf3\xd5\x07\x0e\xe7\xf3" "\xe1\x0b\x2f\x3c\x5f\xdf\xe6\xcd\xfd\x8d\x8f\xe3\xed\x5f\xbf\xb6\xb1" "\xfd\x1f\x86\xf2\xef\xc1\x63\x47\x5a\x6e\xff\x7a\x38\x0f\x3f\x08\x73" "\xf2\xc1\xe2\xf3\x11\x6f\xf7\xad\x8b\xb7\x6f\xdc\xfb\xc9\x85\xfd\xc5" "\xdb\xd5\x36\x5f\x9d\x3f\xec\x17\x9f\x68\xdc\x6f\xfc\x39\x39\x5f\x79" "\xbe\xb1\x7d\x3c\xcf\x4b\x1d\xff\x5f\x7e\xe9\xe5\x6f\xd5\xb7\x7f\xfa" "\xfd\xc5\xc7\x7f\x7e\xa8\xf8\xf8\x5f\x0e\xf7\xfb\x52\x98\xff\x75\x53" "\x63\xfb\xe6\xe7\xa0\xfe\x71\xbc\xdd\x17\xc2\xf1\xc7\xfd\xc5\xdb\xdd" "\xf5\x8d\xef\x16\x1e\xff\xa5\x2f\x36\xb6\x3f\x73\x5f\x63\xbb\xc3\x61" "\xc6\xfd\x6f\x0b\x1f\x6f\xb9\xef\x8d\x99\xe6\xf3\xf5\x74\xed\x48\xcb" "\xe3\xca\x3e\xda\xd8\x2e\xee\x7f\xf2\x7b\xbf\x9b\x5f\x1f\xef\x2f\xde" "\x7f\xfb\xf1\x8f\x1e\xba\xd8\x72\x3e\xda\xd7\xc7\xab\xff\xd8\xb8\x9f" "\x89\xb6\xed\xe3\xe5\x71\x3f\xd1\x9f\xb7\xed\xbf\x7e\x3f\xcd\xeb\x33" "\xee\xff\xe5\xdf\x39\xdc\x72\x9e\xbb\xed\xff\xd2\xc3\xaf\xdf\x54\xbf" "\xdf\xf6\xfd\xdf\xd1\xb6\xdd\x99\xa7\xb6\xe7\xfb\x5f\xb8\xbf\xd6\x9f" "\xd8\xf4\x47\x5f\xf8\x72\xe1\xfe\xe2\xf1\x1c\xfc\xd3\x33\x2d\x8f\xe7" "\xe0\x43\xe1\x75\x1c\xf6\xff\xe2\x13\x61\x3d\x86\xeb\xff\xfb\x52\xe3" "\xfe\xda\x7f\xba\xc2\xe1\x87\x5a\xdf\x7f\xe2\xf6\x5f\x5b\x7f\xbe\xe5" "\xf1\x44\xf7\xff\xa4\xb1\xff\x4b\x1f\x3c\x9e\xcf\x35\xa3\x6b\xd7\x5d" "\xf5\xae\x77\x5f\x7d\xe1\x96\xfa\xb9\xcb\xb2\xd7\x1e\x69\xdc\x5f\xb7" "\xfd\x1f\xff\xe3\xd3\x2d\xc7\xff\xf5\xeb\x1b\xe7\x23\x5e\x1f\x3b\xfa" "\xed\xfb\x5f\x4a\xdc\xff\xd9\xcf\x8e\x9f\x3a\x3d\x7b\x6e\x66\xaa\xe9" "\xac\xe6\x3f\x3b\xe7\x63\x8d\xe3\x89\xc7\x7b\x4d\x78\x6f\x6d\xff\xf8" "\xd0\xe9\xb9\x27\xa7\xcf\x8e\x4d\x8e\x4d\x66\xd9\x58\x79\x7f\x84\xde" "\xdb\xf6\x8d\x30\x7f\xd4\x18\x17\x2e\xf7\xf6\xdb\x1f\x0b\xcf\xe7\x8d" "\x7f\xf0\xca\xba\xad\xff\xf0\xa5\x78\xf9\x3f\x3d\xda\xb8\xfc\xe2\x83" "\x8d\xcf\x5b\xb7\x85\xed\xbe\x12\x2e\x5f\x1f\x9e\xbf\x2b\xdd\xff\x8b" "\x9b\xae\xcf\x5f\xdf\xb5\x57\x1b\x1f\xb7\xf4\xd8\x7b\x60\xe3\x96\x7f" "\xdf\xb7\xac\x0d\xc3\xe3\x6f\xff\xba\x20\xae\xf7\x33\xef\x7b\x32\x3f" "\x0f\xf5\xeb\xf2\xcf\x1b\xf1\x75\x7d\x85\xc7\xff\xfd\xa9\xc6\xfd\x7c" "\x27\x9c\xd7\xf9\xf0\x93\x99\x37\x5f\xbf\xb0\xbf\xe6\xed\xe3\xcf\x46" "\xb8\xf8\x48\xe3\xf5\x7e\xc5\xe7\x2f\xbc\xcd\xc5\xe7\xf5\x9b\xe1\xf9" "\xfe\xf8\x0f\x1a\xf7\x1f\x8f\x2b\x3e\xde\xef\x87\xaf\x63\xbe\xbb\xa1" "\xf5\xfd\x2e\xae\x8f\xef\x9c\x1f\x6a\xbf\xff\xfc\xa7\x78\x5c\x08\xef" "\x27\xd9\x85\xc6\xf5\x71\xab\x78\xbe\x2f\xbe\x79\x7d\xe1\xe1\xc5\x9f" "\x43\x92\x5d\xb8\x21\xff\xf8\xf7\xd2\xfd\xdc\x70\x59\x0f\x73\x29\xb3" "\xcf\xcc\x4e\x9c\x98\x39\x75\xee\xe9\x89\xb9\xe9\xd9\xb9\x89\xd9\x67" "\x9e\x3d\x74\xf2\xf4\xb9\x53\x73\x87\xf2\x9f\xe5\x79\xe8\xd3\xdd\x6e" "\xbf\xf0\xfe\xb4\x2e\x7f\x7f\x9a\x9a\xde\xb3\x3b\xcb\xdf\xad\x4e\x37" "\xc6\x3b\xec\xa7\x7d\xfc\x67\x1e\x3b\x3a\xb5\x77\x72\xeb\xd4\xf4\xb1" "\x23\xe7\x8e\xcd\x3d\x76\x66\xfa\xec\xf1\xa3\xb3\xb3\x47\xa7\xa7\x66" "\xb7\x1e\x39\x76\x6c\xfa\xb3\xdd\x6e\x3f\x33\x75\x60\xc7\xce\xfd\xbb" "\xf6\xee\x1c\x3f\x3e\x33\x75\x60\xdf\xfe\xfd\xbb\xf6\x8f\xcf\x9c\x3a" "\x5d\x3f\x8c\xc6\x41\x75\xb1\x67\xf2\x33\xe3\xa7\xce\x1e\xca\x6f\x32" "\x7b\x60\xf7\xfe\x1d\x77\xdf\xbd\x7b\x72\xfc\xe4\xe9\xa9\xe9\x03\x7b" "\x27\x27\xc7\xcf\x75\xbb\x7d\xfe\xb9\x69\xbc\x7e\xeb\xdf\x1a\x3f\x3b" "\x7d\xe2\xc8\xdc\xcc\xc9\xe9\xf1\xd9\x99\x67\xa7\x0f\xec\xd8\xbf\x67" "\xcf\xce\xae\x3f\x0d\xf0\xe4\x99\x63\xb3\x63\x13\x67\xcf\x9d\x9a\x38" "\x37\x3b\x7d\x76\xa2\xf1\x58\xc6\xe6\xf2\x8b\xeb\x9f\xfb\xba\xdd\x9e" "\x72\x9a\xfd\xd7\xc6\xd7\xb3\xed\x6a\x8d\x1f\xc4\x97\x7d\xe2\x8e\x3d" "\xe9\xe7\xb3\xd6\xbd\xf4\xb9\x25\xef\xaa\xb1\x49\xdb\x0f\x10\x7d\x23" "\xfc\x2c\x9a\xbf\x7b\xcf\x99\x7d\xcb\xf9\x38\xe6\xfe\x91\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x57\x87\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xaf\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x1f" "\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde" "\xbf\xfe\xff\x60\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xaf\xcd\xb2\x4a\xe6\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\x5f\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xae\x30\x93\x8a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f" "\x26\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7" "\x7a\xd9\xff\xaf\x15\x7c\x56\xbd\xdc\xfe\x7f\xcc\xfd\xef\x0e\x33\xa9" "\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xea\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\x6b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\xd7\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17" "\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x3d\xd5\x6f\xbf\xff\x3f\xe6\xfe\xf7\x84\x99\x54\x24\xff" "\x03\x00\x00\x40\x15\xc4\xdc\xff\xde\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf\x0b" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf" "\xfe\xff\x60\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xbf\x2f\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\xeb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x7f\x26\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x43\x98\x49\x45" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xf5\xff\x07" "\x93\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53" "\xfd\xd6\xff\x8f\xb9\xff\x86\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xd9\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x8d\x61\x26\x15\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\x1f\x4c\xfa\xff" "\x9d\xf5\x6d\xff\x3f\xf4\x3d\xf5\xff\xf5\xff\x07\xf9\xf8\xf5\xff\xf5" "\xff\x59\xac\xdf\xfa\xff\x31\xf7\xdf\x14\x66\x52\x91\xfc\x0f\x00\x00" "\x00\x55\x10\x73\xff\xcd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\xb7\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x85\x99\x54\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xef\x5f\xff\x7f\x30" "\xe9\xff\x77\xd6\xb7\xfd\xff\x40\xff\x5f\xff\x7f\x90\x8f\x5f\xff\x5f" "\xff\x9f\xc5\xfa\xad\xff\x1f\x73\xff\xa6\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x25\xcc\xa4\x22" "\xf9\x5f\xff\xbf\xb0\xff\xff\xc2\xf0\x72\xfa\xff\xc3\x0b\x7f\xd5\xff" "\x6f\x3d\x7e\xfd\xff\x56\xfa\xff\x61\x3d\xe8\xff\xeb\xff\xaf\x00\xfd" "\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad" "\xff\x1f\x73\xff\xfb\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee" "\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x5b\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\xb6\x30\x93\x8a\xe4\x7f\xfd\x7f\xbf" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\xff\xfa\xff\x83\x49\xff\xbf\x33" "\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7" "\xdc\x7f\x7b\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xdb\xc3" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xef\x08\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x1f\x0f\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4c\xff\xbf\x0b" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xdf\x19" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x5d\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\x13\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x93\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xc5\xfb\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x1d\x61\x26\x15\xc9" "\xff\x00\x00\x00\x50\x05\x31\xf7\xef\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x3b" "\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\xff" "\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5" "\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\x7f\x77\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xef\x0b\x33\xa9\x48" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\xff\x60" "\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa" "\xdf\xfa\xff\x31\xf7\xef\x0f\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88" "\xb9\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x3f\x17\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xf3\x61\x26\x15\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\x1f\x4c\xfa\xff" "\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff" "\x3f\xe6\xfe\x03\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xff" "\x42\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x07\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x0f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x17\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa6\xff" "\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb" "\x3f\x14\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x3d\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xbf\x37\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x7f\x05\xfa\xff\xb7\x64\xfa\xff\xfa\xff\x2b\x44\xff\xbf\xb3\xde" "\xf7\xff\xff\x47\xff\x5f\xff\x3f\xd1\xff\xd7\xff\xd7\xff\xa7\x5d\xbf" "\xf5\xff\x63\xee\xff\x48\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x34\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xfe\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xbf\xff\xbf\x78\xff\xfa\xff\x83\x49\xff\xbf" "\x33\xbf\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa" "\xff\x31\xf7\xff\x62\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\x0f\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x3f\x18\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xff\xb1\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f\x26\xfd\xff\xce\xf4" "\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73" "\xff\xc7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\xa5\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4f\x84\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\xff\x72\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\x7f\x05" "\xfb\xff\x43\xfa\xff\xfa\xff\xfa\xff\xe5\x55\xd8\xbf\x6f\x5f\x54\x1d" "\xe8\xff\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x40\xbf\xf5" "\xff\x63\xee\x7f\x28\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe" "\x87\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x1f\x09\x33\xc9\xf3" "\xff\x65\xff\x6f\x7b\x00\x00\x00\x40\x1f\x8a\xb9\xff\xd1\x30\x93\x8a" "\xfc\xfb\xbf\xfe\xbf\xfe\x7f\x05\xfb\xff\x7e\xff\xbf\xfe\xbf\xfe\x7f" "\x89\xf9\xfd\xff\x9d\xe9\xff\x77\x51\xe5\xfe\xff\x48\x98\xfa\xff\xfa" "\xff\xfa\xff\xf4\x50\xbf\xf5\xff\x63\xee\x7f\x2c\xcc\xa4\x22\xf9\x1f" "\x00\x00\x00\xaa\x20\xe6\xfe\x4f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\xff\x4a\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xa7\xc2" "\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xf7\xaf" "\xff\x3f\x98\xf4\xff\x3b\xd3\xff\xef\xa2\xca\xfd\xff\x3e\xe8\xcf\x0f" "\xfa\xf1\xeb\xff\xeb\xff\xb3\x58\xbf\xf5\xff\x63\xee\x7f\x3c\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5f\x0d\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xff\xb5\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x5f\x0f\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x2f\xde\xbf\xfe\xff\x60\xd2\xff\xef\xe8\x9b\x99\xfe\x7f\x67\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xff\x8d\x30\x93" "\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x9f\x08\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x38\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf" "\x78\xff\xfa\xff\x83\x49\xff\xbf\x33\xbf\xff\xbf\x0b\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\x1f\x09\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\xff\x37\xc3\x4c\xe4\x7f\x00\x00\x00\x28" "\x8d\x98\xfb\x8f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x85" "\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xef\x5f" "\xff\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xff\x15\x1c\x7f" "\xfc\xfc\xa0\xff\xaf\xff\x5f\x49\xff\x7c\xed\x5f\x4d\x14\x5c\xdc\x6f" "\xfd\xff\x98\xfb\xa7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee" "\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x3c\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\xff\xc9\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f\xa6\x41\xeb\xff\x8f" "\xb4\x7d\xac\xff\xaf\xff\xaf\xff\x3f\xb8\xc7\xef\xf7\xff\xeb\xff\xb3" "\x58\xbf\xf5\xff\x63\xee\x9f\x09\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a" "\x88\xb9\xff\xd3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9f\x09" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x11\x66\x52\x91\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xc1\x34\x68" "\xfd\xff\x76\xfa\xff\xfa\xff\xfa\xff\x83\x7b\xfc\xfa\xff\xfa\xff\x2c" "\xd6\x6f\xfd\xff\x98\xfb\x4f\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15" "\xc4\xdc\x7f\x2a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x74\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x99\x30\x93\x8a\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f\x26\xfd\xff" "\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff" "\x1f\x73\xff\x53\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x9f" "\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0d\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\x9f\x0b\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4c\xff\xbf" "\x0b\xfd\x7f\xfd\xff\xff\x67\xef\x2e\x76\xc5\xc8\x8e\x38\x0e\xcf\xac" "\x92\xc7\xc8\x4b\x86\x93\x09\x33\x33\x33\x33\x33\x33\x4c\x98\x99\xd1" "\x21\x87\x71\x11\x59\xaa\x2a\x25\xf7\xb6\x4f\x3b\x52\xc7\x3e\x7d\xea" "\xfb\x36\x35\x9a\x91\x75\xee\xc2\x77\xa4\xff\xe2\xa7\xd6\xff\xeb\xff" "\x39\xd4\x6c\xfd\x7f\xee\xfe\xbb\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x1e\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\x7f\xcf\xb8" "\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xbf\x57\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9\xff\xc7\xf4" "\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\xbf" "\x77\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xef\x13\xb7\xd8\xff" "\x00\x00\x00\xb0\x8c\xdc\xfd\xf7\x8d\x5b\xec\x7f\x00\x00\x00\x58\x46" "\xee\xfe\xfb\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x4c\xff\xbf\x43\xff\xaf\xff\xd7\xff" "\xeb\xff\x39\xd4\x6c\xfd\x7f\xee\xfe\xfb\xc7\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f" "\x40\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x3f\x30\x6e\x69\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xbe\xfe\xff\x9c\xf4\xff" "\x63\xfa\xff\x1d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa1\x66\xeb\xff\x73" "\xf7\x3f\x28\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8e\x5b" "\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x87\xc4\x2d\xf6\x3f\x00\x00\x00" "\x2c\x23\x77\xff\x43\xe3\x96\x26\xfb\x5f\xff\x7f\x5c\xff\x7f\xb7\x0b" "\xff\x4e\xff\xaf\xff\xff\xcf\xbf\x1f\xb7\xe9\xff\xf5\xff\xfa\xff\x9b" "\x42\xff\x3f\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\x6a\xb6" "\xfe\x3f\x77\xff\xc3\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xf0\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x44\xdc\x62\xff\x03" "\x00\x00\xc0\x32\x72\xf7\x3f\x32\x6e\x69\xb2\xff\xf5\xff\xbe\xff\xaf" "\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x4c\xff\xbf\x43" "\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\x6c\xfd\x7f\xee\xfe\x47\xc5\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xd1\x71\x8b\xfd\x0f\x00\x00" "\x00\xcb\xc8\xdd\xff\x98\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f" "\x6c\xdc\xd2\x64\xff\xeb\xff\xa7\xef\xff\x6f\xbf\xf6\xdf\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\x7f\x63\xf4\xff\x63\xfa\xff\x1d\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\xa1\x66\xeb\xff\x73\xf7\x3f\x2e\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8f\x5b\xec\x7f\x00\x00\x00\x58\x46" "\xee\xfe\x27\xc4\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x13\xe3\x96" "\x26\xfb\x5f\xff\x3f\x7d\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xff\x3f\xd0\xff\x8f\xe9\xff\x77\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x87" "\x9a\xad\xff\xcf\xdd\xff\xa4\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\x3f\x39\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x9f\x12\xb7\xd8" "\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x4f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x6f\xbf\xaf\xff\x3f\x27\xfd\xff\x98\xfe\x7f" "\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xd9\xfa\xff\xdc\xfd\x4f\x8b" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3\xe3\x16\xfb\x1f\x00" "\x00\x00\x96\x91\xbb\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd" "\xff\xcc\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6" "\xfb\xfa\xff\x73\xd2\xff\x8f\xe9\xff\x77\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\x87\x9a\xad\xff\xcf\xdd\xff\xac\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x9f\x13" "\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\xcf\x8d\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xbf\xaf\xff\x3f\x27\xfd\xff\x98" "\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xd9\xfa\xff\xdc\xfd" "\xcf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xf3\xe3\x16\xfb" "\x1f\x00\x00\x00\x96\x91\xbb\xff\x05\x71\x8b\xfd\x0f\x00\x00\x00\xcb" "\xc8\xdd\xff\xc2\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xb5" "\xfa\xff\x3b\xf5\xff\xcd\xe9\xff\xc7\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\x7f\x51\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x5f\x1c\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd" "\x2f\x89\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x97\xc6\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xd5\xff\xfb\xfe\x7f\x77\xfa\xff" "\x31\xfd\xff\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\xb3\xf5\xff\xb9" "\xfb\x5f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x97\xc7\x2d" "\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00" "\x96\x91\xbb\xff\x95\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\xed\xf7\xf5\xff\xe7\xa4\xff\x1f\xd3\xff\xef\xd0\xff\xeb\xff" "\xf5\xff\xfa\x7f\x0e\x35\x5b\xff\x9f\xbb\xff\x55\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\x7f\x75\xdc\x62\xff\x03\x00\x00\xc0\x32\x72" "\xf7\xbf\x26\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x5f\x1b\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x7e\x5f\xff\x7f\x4e" "\xfa\xff\x31\xfd\xff\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\xb3\xf5" "\xff\xb9\xfb\x5f\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xd7" "\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x1b\xe2\x16\xfb\x1f\x00" "\x00\x00\x96\x91\xbb\xff\x8d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xed\xf7\xf5\xff\xe7\xa4\xff\x1f\xd3\xff\xef\xd0\xff" "\xeb\xff\xf5\xff\xfa\x7f\x0e\x35\x5b\xff\x9f\xbb\xff\x4d\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00\x00\xc0" "\x32\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\xdf\x1a" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x7e\x5f\xff" "\x7f\x4e\xfa\xff\xb1\x9b\xdf\xff\x5f\xbd\xf8\x2b\x3d\xa4\xff\xd7\xff" "\x9f\xf9\xe7\xd7\xff\xeb\xff\xb9\x6c\xb6\xfe\x3f\x77\xff\xdb\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf6\xb8\xc5\xfe\x07\x00\x00" "\x80\x65\xe4\xee\x7f\x47\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xbf" "\x33\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xbe" "\xfe\xff\x9c\xf4\xff\x63\xbe\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff" "\x39\xd4\x6c\xfd\x7f\xee\xfe\x77\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\x9e\xb8" "\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x6f\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9\xff\xc7\xf4" "\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\x7f" "\x5f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1f\xb7\xd8\xff" "\x00\x00\x00\xb0\x8c\xdc\xfd\x1f\x88\x5b\xec\x7f\x00\x00\x00\x58\x46" "\xee\xfe\x0f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x4c\xff\xbf\x43\xff\x7f\x43\xfd\xfc" "\x5d\xae\xf3\xe7\xf5\xff\xfa\x7f\xfd\x3f\x17\xcd\xd6\xff\xe7\xee\xff" "\x50\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x1c\xb7\xd8\xff" "\x00\x00\x00\xb0\x8c\xdc\xfd\x1f\x89\x5b\xec\x7f\x00\x00\x00\x58\x46" "\xee\xfe\x8f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x6c\xf6\xfe\x3f\x7f\xbf\xf4\xff\x73" "\xf7\xff\xd7\xa3\xff\xd7\xff\xeb\xff\xb9\x68\xb6\xfe\x3f\x77\xff\xc7" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf1\xb8\xc5\xfe\x07" "\x00\x00\x80\x65\xe4\xee\xff\x44\xdc\x62\xff\x03\x00\x00\xc0\x32\x72" "\xf7\x7f\x32\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\xfd\xbe\xfe\xff\x9c\xf4\xff\x63\xb3\xf7\xff\xbe\xff\xaf\xff\x3f\xf3" "\xcf\xaf\xff\xd7\xff\x73\xd9\x6c\xfd\x7f\xee\xfe\x4f\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xcb" "\xc8\xdd\x7f\x67\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x7f\x26\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xbe\xfe\xff" "\x9c\xf4\xff\x63\xfa\xff\x1d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa1\x6e" "\x59\xff\x7f\xfb\x6d\x9b\xfd\x7f\xee\xfe\xcf\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x73\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd" "\xff\xf9\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x42\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9" "\xff\xc7\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xf6\xfd" "\xff\xdc\xfd\x5f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x97" "\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\xcb\x71\x8b\xfd\x0f\x00" "\x00\x00\xcb\xc8\xdd\xff\x95\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf6\xfb\xfa\xff\x73\xd2\xff\x8f\xe9\xff\x77\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x87\x9a\xad\xff\xcf\xdd\xff\xd5\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\x60" "\x19\xb9\xfb\xbf\x1e\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\xdf\x88" "\x5b\x9a\xec\x7f\xfd\xff\xe1\xfd\xff\x95\x3b\xe2\x1f\xf4\xff\xfa\xff" "\x8b\x7f\x3f\xf4\xff\xfa\x7f\xfd\xff\xff\x9f\xfe\x7f\x4c\xff\xbf\x43" "\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\x6c\xfd\x7f\xee\xfe\x6f\xc6\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00" "\x00\xcb\xc8\xdd\xff\xed\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff" "\x4e\xdc\xd2\x64\xff\xeb\xff\x7d\xff\x5f\xff\xaf\xff\xd7\xff\x6f\xbf" "\xaf\xff\x3f\x27\xfd\xff\x98\xfe\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff" "\x73\xa8\xd9\xfa\xff\xdc\xfd\xdf\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\xf7\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\xfb\x71" "\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\x83\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb\xfa\xff\x73\xd2\xff\x8f\xe9" "\xff\x77\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x87\x9a\xad\xff\xcf\xdd\xff" "\xc3\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x28\x6e\xb1\xff" "\x01\x00\x00\x60\x19\xb9\xfb\x7f\x1c\xb7\xd8\xff\x00\x00\x00\xb0\x8c" "\xdc\xfd\x3f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x6f\xbf\xaf\xff\x3f\x27\xfd\xff\xd8\x2d\xee\xff\xef\x7a\xbd\xe7\xf2" "\xff\xe3\xfa\x7f\xfd\xff\x99\x7f\x7e\xfd\xbf\xfe\x9f\xcb\x66\xeb\xff" "\x73\xf7\xff\x34\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x3f\x8b" "\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x9f\xc7\x2d\xf6\x3f\x00\x00" "\x00\x2c\x23\x77\xff\x2f\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xdb\xef\xeb\xff\xcf\x49\xff\x3f\xe6\xfb\xff\x3b\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\xff\x65\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\xaf\xc4\x2d\xf6\x3f\x00\x00\x00\x2c" "\x23\x77\xff\xaf\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\xd7\x71" "\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xf7\xf5\xff" "\xe7\xa4\xff\x1f\xd3\xff\xef\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\x35" "\x5b\xff\x9f\xbb\xff\x37\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x6d\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xff\x2e\x6e\xb1\xff" "\x01\x00\x00\x60\x19\xb9\xfb\xaf\xc6\x2d\x4d\xf6\xbf\xfe\xff\xbc\xfd" "\xff\xb5\x3f\xa4\xff\xd7\xff\xeb\xff\xf5\xff\xfc\x37\xfd\xff\x98\xfe" "\x7f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xd9\xfa\xff\xdc\xfd\xbf" "\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x1f\xe2\x16\xfb\x1f" "\x00\x00\x00\x96\x91\xbb\xff\x8f\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8" "\xdd\xff\xa7\xb8\xa5\xc9\xfe\xd7\xff\x9f\xb7\xff\xf7\xfd\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xbf\x4c\xff\x3f\xa6\xff\xdf\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\x1c\x6a\xb6\xfe\x3f\x77\xff\x9f\xe3\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\x97\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee" "\xff\x6b\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xff\x2d\x6e\x69\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xbe\xfe\xff\x9c\xf4" "\xff\x63\xfa\xff\x1d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa1\x66\xeb\xff" "\x73\xf7\xff\x3d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xff\x88" "\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x2c\x23\x77\xff\xbf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xdb\xef\xeb\xff\xcf\x49\xff\x3f\xa6\xff\xdf\xa1\xff\xd7" "\xff\xeb\xff\xf5\xff\x1c\x6a\xb6\xfe\x3f\x77\xff\xbf\x03\x00\x00\xff" "\xff\x90\xf8\x76\xe2", 24213); res = -1; res = syz_mount_image(0x20000080, 0x20005e40, 0x2210090, 0x20000540, 1, 0x5e95, 0x2000de40); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x20002000, "./bus\000", 6); syscall(__NR_open, 0x20002000ul, 0x143142ul, 0ul); break; case 2: memcpy((void*)0x20000040, "./bus\000", 6); res = syscall(__NR_open, 0x20000040ul, 0x147042ul, 0ul); if (res != -1) r[1] = res; break; case 3: memcpy((void*)0x20000180, "./bus\000", 6); res = syscall(__NR_open, 0x20000180ul, 0x14d27eul, 0ul); if (res != -1) r[2] = res; break; case 4: syscall(__NR_mmap, 0x20000000ul, 0x600000ul, 0x27ffffful, 0x4002011ul, r[2], 0ul); break; case 5: syscall(__NR_ftruncate, r[1], 0x2007ffful); break; case 6: memcpy((void*)0x20000040, "./bus\000", 6); res = syscall(__NR_open, 0x20000040ul, 0ul, 0ul); if (res != -1) r[3] = res; break; case 7: memcpy((void*)0x20000040, "./bus\000", 6); res = syscall(__NR_open, 0x20000040ul, 0x147042ul, 0ul); if (res != -1) r[4] = res; break; case 8: *(uint64_t*)0x200659c0 = 5; *(uint64_t*)0x200659c8 = 0; *(uint64_t*)0x200659d0 = 0; *(uint64_t*)0x200659d8 = 0; *(uint64_t*)0x200659e0 = 0; *(uint64_t*)0x200659e8 = 0; *(uint64_t*)0x200659f0 = 0; *(uint64_t*)0x200659f8 = 0; *(uint64_t*)0x20065a00 = 0; *(uint64_t*)0x20065a08 = 0; *(uint64_t*)0x20065a10 = 0; *(uint64_t*)0x20065a18 = 0; *(uint64_t*)0x20065a20 = 0; *(uint64_t*)0x20065a28 = 0; *(uint64_t*)0x20065a30 = 0; *(uint64_t*)0x20065a38 = 0; *(uint64_t*)0x20065a40 = 0; *(uint64_t*)0x20065a48 = 0; *(uint64_t*)0x20065a50 = 0; *(uint64_t*)0x20065a58 = 0; *(uint64_t*)0x20065a60 = 0; *(uint64_t*)0x20065a68 = 0; *(uint64_t*)0x20065a70 = 0; *(uint64_t*)0x20065a78 = 0; *(uint64_t*)0x20065a80 = 0; *(uint64_t*)0x20065a88 = 0; *(uint64_t*)0x20065a90 = 0; *(uint64_t*)0x20065a98 = 0; *(uint64_t*)0x20065aa0 = 0; *(uint64_t*)0x20065aa8 = 0; *(uint64_t*)0x20065ab0 = 0; *(uint64_t*)0x20065ab8 = 0; *(uint64_t*)0x20065ac0 = 0; *(uint64_t*)0x20065ac8 = 0; *(uint64_t*)0x20065ad0 = 0; *(uint64_t*)0x20065ad8 = 0; *(uint64_t*)0x20065ae0 = 0; *(uint64_t*)0x20065ae8 = 0; *(uint64_t*)0x20065af0 = 0; *(uint64_t*)0x20065af8 = 0; *(uint64_t*)0x20065b00 = 0; *(uint64_t*)0x20065b08 = 0; *(uint64_t*)0x20065b10 = 0; *(uint64_t*)0x20065b18 = 0; *(uint64_t*)0x20065b20 = 0; *(uint64_t*)0x20065b28 = 0; *(uint64_t*)0x20065b30 = 0; *(uint64_t*)0x20065b38 = 0; *(uint64_t*)0x20065b40 = 0; *(uint64_t*)0x20065b48 = 0; *(uint64_t*)0x20065b50 = 0; *(uint64_t*)0x20065b58 = 0; *(uint64_t*)0x20065b60 = 0; *(uint64_t*)0x20065b68 = 0; *(uint64_t*)0x20065b70 = 0; *(uint64_t*)0x20065b78 = 0; *(uint64_t*)0x20065b80 = 0; *(uint64_t*)0x20065b88 = 0; *(uint64_t*)0x20065b90 = 0; *(uint64_t*)0x20065b98 = 0; *(uint64_t*)0x20065ba0 = 0; *(uint64_t*)0x20065ba8 = 0; *(uint64_t*)0x20065bb0 = 0; *(uint64_t*)0x20065bb8 = 0; *(uint64_t*)0x20065bc0 = 0; *(uint64_t*)0x20065bc8 = 0; *(uint64_t*)0x20065bd0 = 0; *(uint64_t*)0x20065bd8 = 0; *(uint64_t*)0x20065be0 = 0; *(uint64_t*)0x20065be8 = 0; *(uint64_t*)0x20065bf0 = 0; *(uint64_t*)0x20065bf8 = 0; *(uint64_t*)0x20065c00 = 0; *(uint64_t*)0x20065c08 = 0; *(uint64_t*)0x20065c10 = 0; *(uint64_t*)0x20065c18 = 0; *(uint64_t*)0x20065c20 = 0; *(uint64_t*)0x20065c28 = 0; *(uint64_t*)0x20065c30 = 0; *(uint64_t*)0x20065c38 = 0; *(uint64_t*)0x20065c40 = 0; *(uint64_t*)0x20065c48 = 0; *(uint64_t*)0x20065c50 = 0; *(uint64_t*)0x20065c58 = 0; *(uint64_t*)0x20065c60 = 0; *(uint64_t*)0x20065c68 = 0; *(uint64_t*)0x20065c70 = 0; *(uint64_t*)0x20065c78 = 0; *(uint64_t*)0x20065c80 = 0; *(uint64_t*)0x20065c88 = 0; *(uint64_t*)0x20065c90 = 0; *(uint64_t*)0x20065c98 = 0; *(uint64_t*)0x20065ca0 = 0; *(uint64_t*)0x20065ca8 = 0; *(uint64_t*)0x20065cb0 = 0; *(uint64_t*)0x20065cb8 = 0; *(uint64_t*)0x20065cc0 = 0; *(uint64_t*)0x20065cc8 = 0; *(uint64_t*)0x20065cd0 = 0; *(uint64_t*)0x20065cd8 = 0; *(uint64_t*)0x20065ce0 = 0; *(uint64_t*)0x20065ce8 = 0; *(uint64_t*)0x20065cf0 = 0; *(uint64_t*)0x20065cf8 = 0; *(uint64_t*)0x20065d00 = 0; *(uint64_t*)0x20065d08 = 0; *(uint64_t*)0x20065d10 = 0; *(uint64_t*)0x20065d18 = 0; *(uint64_t*)0x20065d20 = 0; *(uint64_t*)0x20065d28 = 0; *(uint64_t*)0x20065d30 = 0; *(uint64_t*)0x20065d38 = 0; *(uint64_t*)0x20065d40 = 0; *(uint64_t*)0x20065d48 = 0; *(uint64_t*)0x20065d50 = 0; *(uint64_t*)0x20065d58 = 0; *(uint64_t*)0x20065d60 = 0; *(uint64_t*)0x20065d68 = 0; *(uint64_t*)0x20065d70 = 0; *(uint64_t*)0x20065d78 = 0; *(uint64_t*)0x20065d80 = 0; *(uint64_t*)0x20065d88 = 0; *(uint64_t*)0x20065d90 = 0; *(uint64_t*)0x20065d98 = 0; *(uint64_t*)0x20065da0 = 0; *(uint64_t*)0x20065da8 = 0; *(uint64_t*)0x20065db0 = 0; *(uint64_t*)0x20065db8 = 0; *(uint64_t*)0x20065dc0 = 0; *(uint64_t*)0x20065dc8 = 0; *(uint64_t*)0x20065dd0 = 0; *(uint64_t*)0x20065dd8 = 0; *(uint64_t*)0x20065de0 = 0; *(uint64_t*)0x20065de8 = 0; *(uint64_t*)0x20065df0 = 0; *(uint64_t*)0x20065df8 = 0; *(uint64_t*)0x20065e00 = 0; *(uint64_t*)0x20065e08 = 0; *(uint64_t*)0x20065e10 = 0; *(uint64_t*)0x20065e18 = 0; *(uint64_t*)0x20065e20 = 0; *(uint64_t*)0x20065e28 = 0; *(uint64_t*)0x20065e30 = 0; *(uint64_t*)0x20065e38 = 0; *(uint64_t*)0x20065e40 = 0; *(uint64_t*)0x20065e48 = 0; *(uint64_t*)0x20065e50 = 0; *(uint64_t*)0x20065e58 = 0; *(uint64_t*)0x20065e60 = 0; *(uint64_t*)0x20065e68 = 0; *(uint64_t*)0x20065e70 = 0; *(uint64_t*)0x20065e78 = 0; *(uint64_t*)0x20065e80 = 0; *(uint64_t*)0x20065e88 = 0; *(uint64_t*)0x20065e90 = 0; *(uint64_t*)0x20065e98 = 0; *(uint64_t*)0x20065ea0 = 0; *(uint64_t*)0x20065ea8 = 0; *(uint64_t*)0x20065eb0 = 0; *(uint64_t*)0x20065eb8 = 0; *(uint64_t*)0x20065ec0 = 0; *(uint64_t*)0x20065ec8 = 0; *(uint64_t*)0x20065ed0 = 0; *(uint64_t*)0x20065ed8 = 0; *(uint64_t*)0x20065ee0 = 0; *(uint64_t*)0x20065ee8 = 0; *(uint64_t*)0x20065ef0 = 0; *(uint64_t*)0x20065ef8 = 0; *(uint64_t*)0x20065f00 = 0; *(uint64_t*)0x20065f08 = 0; *(uint64_t*)0x20065f10 = 0; *(uint64_t*)0x20065f18 = 0; *(uint64_t*)0x20065f20 = 0; *(uint64_t*)0x20065f28 = 0; *(uint64_t*)0x20065f30 = 0; *(uint64_t*)0x20065f38 = 0; *(uint64_t*)0x20065f40 = 0; *(uint64_t*)0x20065f48 = 0; *(uint64_t*)0x20065f50 = 0; *(uint64_t*)0x20065f58 = 0; *(uint64_t*)0x20065f60 = 0; *(uint64_t*)0x20065f68 = 0; *(uint64_t*)0x20065f70 = 0; *(uint64_t*)0x20065f78 = 0; *(uint64_t*)0x20065f80 = 0; *(uint64_t*)0x20065f88 = 0; *(uint64_t*)0x20065f90 = 0; *(uint64_t*)0x20065f98 = 0; *(uint64_t*)0x20065fa0 = 0; *(uint64_t*)0x20065fa8 = 0; *(uint64_t*)0x20065fb0 = 0; *(uint64_t*)0x20065fb8 = 0; *(uint64_t*)0x20065fc0 = 0; *(uint64_t*)0x20065fc8 = 0; *(uint64_t*)0x20065fd0 = 0; *(uint64_t*)0x20065fd8 = 0; *(uint64_t*)0x20065fe0 = 0; *(uint64_t*)0x20065fe8 = 0; *(uint64_t*)0x20065ff0 = 0; *(uint64_t*)0x20065ff8 = 0; *(uint64_t*)0x20066000 = 0; *(uint64_t*)0x20066008 = 0; *(uint64_t*)0x20066010 = 0; *(uint64_t*)0x20066018 = 0; *(uint64_t*)0x20066020 = 0; *(uint64_t*)0x20066028 = 0; *(uint64_t*)0x20066030 = 0; *(uint64_t*)0x20066038 = 0; *(uint64_t*)0x20066040 = 0; *(uint64_t*)0x20066048 = 0; *(uint64_t*)0x20066050 = 0; *(uint64_t*)0x20066058 = 0; *(uint64_t*)0x20066060 = 0; *(uint64_t*)0x20066068 = 0; *(uint64_t*)0x20066070 = 0; *(uint64_t*)0x20066078 = 0; *(uint64_t*)0x20066080 = 0; *(uint64_t*)0x20066088 = 0; *(uint64_t*)0x20066090 = 0; *(uint64_t*)0x20066098 = 0; *(uint64_t*)0x200660a0 = 0; *(uint64_t*)0x200660a8 = 0; *(uint64_t*)0x200660b0 = 0; *(uint64_t*)0x200660b8 = 0; *(uint64_t*)0x200660c0 = 0; *(uint64_t*)0x200660c8 = 0; *(uint64_t*)0x200660d0 = 0; *(uint64_t*)0x200660d8 = 0; *(uint64_t*)0x200660e0 = 0; *(uint64_t*)0x200660e8 = 0; *(uint64_t*)0x200660f0 = 0; *(uint64_t*)0x200660f8 = 0; *(uint64_t*)0x20066100 = 0; *(uint64_t*)0x20066108 = 0; *(uint64_t*)0x20066110 = 0; *(uint64_t*)0x20066118 = 0; *(uint64_t*)0x20066120 = 0; *(uint64_t*)0x20066128 = 0; *(uint64_t*)0x20066130 = 0; *(uint64_t*)0x20066138 = 0; *(uint64_t*)0x20066140 = 0; *(uint64_t*)0x20066148 = 0; *(uint64_t*)0x20066150 = 0; *(uint64_t*)0x20066158 = 0; *(uint64_t*)0x20066160 = 0; *(uint64_t*)0x20066168 = 0; *(uint64_t*)0x20066170 = 0; *(uint64_t*)0x20066178 = 0; *(uint64_t*)0x20066180 = 0; *(uint64_t*)0x20066188 = 0; *(uint64_t*)0x20066190 = 0; *(uint64_t*)0x20066198 = 0; *(uint64_t*)0x200661a0 = 0; *(uint64_t*)0x200661a8 = 0; *(uint64_t*)0x200661b0 = 0; *(uint64_t*)0x200661b8 = 0; *(uint64_t*)0x200661c0 = 0; *(uint64_t*)0x200661c8 = 0; *(uint64_t*)0x200661d0 = 0; *(uint64_t*)0x200661d8 = 0; *(uint64_t*)0x200661e0 = 0; *(uint64_t*)0x200661e8 = 0; *(uint64_t*)0x200661f0 = 0; *(uint64_t*)0x200661f8 = 0; *(uint64_t*)0x20066200 = 0; *(uint64_t*)0x20066208 = 0; *(uint64_t*)0x20066210 = 0; *(uint64_t*)0x20066218 = 0; *(uint64_t*)0x20066220 = 0; *(uint64_t*)0x20066228 = 0; *(uint64_t*)0x20066230 = 0; *(uint64_t*)0x20066238 = 0; *(uint64_t*)0x20066240 = 0; *(uint64_t*)0x20066248 = 0; *(uint64_t*)0x20066250 = 0; *(uint64_t*)0x20066258 = 0; *(uint64_t*)0x20066260 = 0; *(uint64_t*)0x20066268 = 0; *(uint64_t*)0x20066270 = 0; *(uint64_t*)0x20066278 = 0; *(uint64_t*)0x20066280 = 0; *(uint64_t*)0x20066288 = 0; *(uint64_t*)0x20066290 = 0; *(uint64_t*)0x20066298 = 0; *(uint64_t*)0x200662a0 = 0; *(uint64_t*)0x200662a8 = 0; *(uint64_t*)0x200662b0 = 0; *(uint64_t*)0x200662b8 = 0; *(uint64_t*)0x200662c0 = 0; *(uint64_t*)0x200662c8 = 0; *(uint64_t*)0x200662d0 = 0; *(uint64_t*)0x200662d8 = 0; *(uint64_t*)0x200662e0 = 0; *(uint64_t*)0x200662e8 = 0; *(uint64_t*)0x200662f0 = 0; *(uint64_t*)0x200662f8 = 0; *(uint64_t*)0x20066300 = 0; *(uint64_t*)0x20066308 = 0; *(uint64_t*)0x20066310 = 0; *(uint64_t*)0x20066318 = 0; *(uint64_t*)0x20066320 = 0; *(uint64_t*)0x20066328 = 0; *(uint64_t*)0x20066330 = 0; *(uint64_t*)0x20066338 = 0; *(uint64_t*)0x20066340 = 0; *(uint64_t*)0x20066348 = 0; *(uint64_t*)0x20066350 = 0; *(uint64_t*)0x20066358 = 0; *(uint64_t*)0x20066360 = 0; *(uint64_t*)0x20066368 = 0; *(uint64_t*)0x20066370 = 0; *(uint64_t*)0x20066378 = 0; *(uint64_t*)0x20066380 = 0; *(uint64_t*)0x20066388 = 0; *(uint64_t*)0x20066390 = 0; *(uint64_t*)0x20066398 = 0; *(uint64_t*)0x200663a0 = 0; *(uint64_t*)0x200663a8 = 0; *(uint64_t*)0x200663b0 = 0; *(uint64_t*)0x200663b8 = 0; *(uint64_t*)0x200663c0 = 0; *(uint64_t*)0x200663c8 = 0; *(uint64_t*)0x200663d0 = 0; *(uint64_t*)0x200663d8 = 0; *(uint64_t*)0x200663e0 = 0; *(uint64_t*)0x200663e8 = 0; *(uint64_t*)0x200663f0 = 0; *(uint64_t*)0x200663f8 = 0; *(uint64_t*)0x20066400 = 0; *(uint64_t*)0x20066408 = 0; *(uint64_t*)0x20066410 = 0; *(uint64_t*)0x20066418 = 0; *(uint64_t*)0x20066420 = 0; *(uint64_t*)0x20066428 = 0; *(uint64_t*)0x20066430 = 0; *(uint64_t*)0x20066438 = 0; *(uint64_t*)0x20066440 = 0; *(uint64_t*)0x20066448 = 0; *(uint64_t*)0x20066450 = 0; *(uint64_t*)0x20066458 = 0; *(uint64_t*)0x20066460 = 0; *(uint64_t*)0x20066468 = 0; *(uint64_t*)0x20066470 = 0; *(uint64_t*)0x20066478 = 0; *(uint64_t*)0x20066480 = 0; *(uint64_t*)0x20066488 = 0; *(uint64_t*)0x20066490 = 0; *(uint64_t*)0x20066498 = 0; *(uint64_t*)0x200664a0 = 0; *(uint64_t*)0x200664a8 = 0; *(uint64_t*)0x200664b0 = 0; *(uint64_t*)0x200664b8 = 0; *(uint64_t*)0x200664c0 = 0; *(uint64_t*)0x200664c8 = 0; *(uint64_t*)0x200664d0 = 0; *(uint64_t*)0x200664d8 = 0; *(uint64_t*)0x200664e0 = 0; *(uint64_t*)0x200664e8 = 0; *(uint64_t*)0x200664f0 = 0; *(uint64_t*)0x200664f8 = 0; *(uint64_t*)0x20066500 = 0; *(uint64_t*)0x20066508 = 0; *(uint64_t*)0x20066510 = 0; *(uint64_t*)0x20066518 = 0; *(uint64_t*)0x20066520 = 0; *(uint64_t*)0x20066528 = 0; *(uint64_t*)0x20066530 = 0; *(uint64_t*)0x20066538 = 0; *(uint64_t*)0x20066540 = 0; *(uint64_t*)0x20066548 = 0; *(uint64_t*)0x20066550 = 0; *(uint64_t*)0x20066558 = 0; *(uint64_t*)0x20066560 = 0; *(uint64_t*)0x20066568 = 0; *(uint64_t*)0x20066570 = 0; *(uint64_t*)0x20066578 = 0; *(uint64_t*)0x20066580 = 0; *(uint64_t*)0x20066588 = 0; *(uint64_t*)0x20066590 = 0; *(uint64_t*)0x20066598 = 0; *(uint64_t*)0x200665a0 = 0; *(uint64_t*)0x200665a8 = 0; *(uint64_t*)0x200665b0 = 0; *(uint64_t*)0x200665b8 = 0; *(uint64_t*)0x200665c0 = 0; *(uint64_t*)0x200665c8 = 0; *(uint64_t*)0x200665d0 = 0; *(uint64_t*)0x200665d8 = 0; *(uint64_t*)0x200665e0 = 0; *(uint64_t*)0x200665e8 = 0; *(uint64_t*)0x200665f0 = 0; *(uint64_t*)0x200665f8 = 0; *(uint64_t*)0x20066600 = 0; *(uint64_t*)0x20066608 = 0; *(uint64_t*)0x20066610 = 0; *(uint64_t*)0x20066618 = 0; *(uint64_t*)0x20066620 = 0; *(uint64_t*)0x20066628 = 0; *(uint64_t*)0x20066630 = 0; *(uint64_t*)0x20066638 = 0; *(uint64_t*)0x20066640 = 0; *(uint64_t*)0x20066648 = 0; *(uint64_t*)0x20066650 = 0; *(uint64_t*)0x20066658 = 0; *(uint64_t*)0x20066660 = 0; *(uint64_t*)0x20066668 = 0; *(uint64_t*)0x20066670 = 0; *(uint64_t*)0x20066678 = 0; *(uint64_t*)0x20066680 = 0; *(uint64_t*)0x20066688 = 0; *(uint64_t*)0x20066690 = 0; *(uint64_t*)0x20066698 = 0; *(uint64_t*)0x200666a0 = 0; *(uint64_t*)0x200666a8 = 0; *(uint64_t*)0x200666b0 = 0; *(uint64_t*)0x200666b8 = 0; *(uint64_t*)0x200666c0 = 0; *(uint64_t*)0x200666c8 = 0; *(uint64_t*)0x200666d0 = 0; *(uint64_t*)0x200666d8 = 0; *(uint64_t*)0x200666e0 = 0; *(uint64_t*)0x200666e8 = 0; *(uint64_t*)0x200666f0 = 0; *(uint64_t*)0x200666f8 = 0; *(uint64_t*)0x20066700 = 0; *(uint64_t*)0x20066708 = 0; *(uint64_t*)0x20066710 = 0; *(uint64_t*)0x20066718 = 0; *(uint64_t*)0x20066720 = 0; *(uint64_t*)0x20066728 = 0; *(uint64_t*)0x20066730 = 0; *(uint64_t*)0x20066738 = 0; *(uint64_t*)0x20066740 = 0; *(uint64_t*)0x20066748 = 0; *(uint64_t*)0x20066750 = 0; *(uint64_t*)0x20066758 = 0; *(uint64_t*)0x20066760 = 0; *(uint64_t*)0x20066768 = 0; *(uint64_t*)0x20066770 = 0; *(uint64_t*)0x20066778 = 0; *(uint64_t*)0x20066780 = 0; *(uint64_t*)0x20066788 = 0; *(uint64_t*)0x20066790 = 0; *(uint64_t*)0x20066798 = 0; *(uint64_t*)0x200667a0 = 0; *(uint64_t*)0x200667a8 = 0; *(uint64_t*)0x200667b0 = 0; *(uint64_t*)0x200667b8 = 0; *(uint64_t*)0x200667c0 = 0; *(uint64_t*)0x200667c8 = 0; *(uint64_t*)0x200667d0 = 0; *(uint64_t*)0x200667d8 = 0; *(uint64_t*)0x200667e0 = 0; *(uint64_t*)0x200667e8 = 0; *(uint64_t*)0x200667f0 = 0; *(uint64_t*)0x200667f8 = 0; *(uint64_t*)0x20066800 = 0; *(uint64_t*)0x20066808 = 0; *(uint64_t*)0x20066810 = 0; *(uint64_t*)0x20066818 = 0; *(uint64_t*)0x20066820 = 0; *(uint64_t*)0x20066828 = 0; *(uint64_t*)0x20066830 = 0; *(uint64_t*)0x20066838 = 0; *(uint64_t*)0x20066840 = 0; *(uint64_t*)0x20066848 = 0; *(uint64_t*)0x20066850 = 0; *(uint64_t*)0x20066858 = 0; *(uint64_t*)0x20066860 = 0; *(uint64_t*)0x20066868 = 0; *(uint64_t*)0x20066870 = 0; *(uint64_t*)0x20066878 = 0; *(uint64_t*)0x20066880 = 0; *(uint64_t*)0x20066888 = 0; *(uint64_t*)0x20066890 = 0; *(uint64_t*)0x20066898 = 0; *(uint64_t*)0x200668a0 = 0; *(uint64_t*)0x200668a8 = 0; *(uint64_t*)0x200668b0 = 0; *(uint64_t*)0x200668b8 = 0; *(uint64_t*)0x200668c0 = 0; *(uint64_t*)0x200668c8 = 0; *(uint64_t*)0x200668d0 = 0; *(uint64_t*)0x200668d8 = 0; *(uint64_t*)0x200668e0 = 0; *(uint64_t*)0x200668e8 = 0; *(uint64_t*)0x200668f0 = 0; *(uint64_t*)0x200668f8 = 0; *(uint64_t*)0x20066900 = 0; *(uint64_t*)0x20066908 = 0; *(uint64_t*)0x20066910 = 0; *(uint64_t*)0x20066918 = 0; *(uint64_t*)0x20066920 = 0; *(uint64_t*)0x20066928 = 0; *(uint64_t*)0x20066930 = 0; *(uint64_t*)0x20066938 = 0; *(uint64_t*)0x20066940 = 0; *(uint64_t*)0x20066948 = 0; *(uint64_t*)0x20066950 = 0; *(uint64_t*)0x20066958 = 0; *(uint64_t*)0x20066960 = 0; *(uint64_t*)0x20066968 = 0; *(uint64_t*)0x20066970 = 0; *(uint64_t*)0x20066978 = 0; *(uint64_t*)0x20066980 = 0; *(uint64_t*)0x20066988 = 0; *(uint64_t*)0x20066990 = 0; *(uint64_t*)0x20066998 = 0; *(uint64_t*)0x200669a0 = 0; *(uint64_t*)0x200669a8 = 0; *(uint64_t*)0x200669b0 = 0; *(uint8_t*)0x200669b8 = 0x1f; memcpy((void*)0x200669b9, "\xf7\x42\x46\x09\x58\x67\x55", 7); res = syscall(__NR_ioctl, r[0], 0xd000943d, 0x200659c0ul); if (res != -1) r[5] = *(uint64_t*)0x200659c8; break; case 9: memcpy((void*)0x20000180, "msdos\000", 6); memcpy((void*)0x20000000, "./bus\000", 6); *(uint8_t*)0x20003600 = -1; sprintf((char*)0x20003601, "%020llu", (long long)-1); *(uint32_t*)0x20003615 = -1; *(uint64_t*)0x20003619 = -1; sprintf((char*)0x20003621, "%023llo", (long long)-1); sprintf((char*)0x20003638, "%020llu", (long long)-1); memcpy( (void*)0x2000364c, "\x6c\x62\x5a\xe8\x7e\xc6\xa2\xb7\x07\x38\xc0\xc2\x9e\xf3\xcb\x48\x7e" "\x1f\xd7\x90\x61\x1d\x1b\x8a\xff\x2a\xa4\x4f\xe4\xbd\xd1\x93\x3c\x0b" "\x35\x5e\xbb\x53\xe2\x75\xcc\xcb\xfc\x1e\x73\x1e\x25\x25\xb4\x0a\x8e" "\x2f\xc4\x96\x45\x61\x6f\x66\xaf\x80\xdf\x6d\xc5\xdf\x9a\xee\x17\x91" "\x74\xb1\x98\xd2\xae\xe6\x92\xc0\x7e\x98\x92\xb5\xe2\x1d\xa6\xd0\xb3" "\x23\xef\xd0\x61\xb7\x0b\x78\x39\x43\xaa\x92\xfc\xcf\x24\xbf\x92\x6e" "\x9c\x2d\x16\x14\x53\xae\xe6\x47\x57\xe6\xe2\xd2\x6d\xe0\x78\x8d\x19" "\xa4\xf0\x65\x47\x79\x7c\xfc\x14\x73\x95\x4c\x3d\x7e\xc3\xa4\x5f\x3b" "\x4e\x90\x86\x19\xa1\x0a\x2f\x92\xf4\x6e\x7e\x89\x93\xc3\x3e\xe8\x06" "\xe2\x94\x34\x48\x0b\x75\x57\xbe\xe7\x74\xc8\xf9\x2a\x75\x9a\x76\x78" "\x58\xe7\x03\xca\xb5\x86\x0b\xdd\x49\x44\x5d\x2e\x33\x73\x0a\xdb\x6a" "\x52\xe0\x78\x8a\xa2\x4b\x42\x67\xb4\x17\xd2\x58\x50\x22\xd6\x96\xdd" "\x4a\x70\xb3\x0a\xce\x66\xcb\xa3\x48\x6c\x8d\xf5\xcb\xf4\x37\xd2\xed" "\x22\x66\x55\x8f\xab\xf1\xa3\xf8\x83\x10\x32\xa9\x15\xa1\xeb\xc0\xa0" "\xc6\x4e\x6c\x8b\xb0\x3d\xcd", 245); sprintf((char*)0x20003741, "0x%016llx", (long long)-1); sprintf((char*)0x20003753, "0x%016llx", (long long)-1); sprintf((char*)0x20003765, "%023llo", (long long)-1); syz_mount_image(0x20000180, 0x20000000, 0x1a404ac, 0x20003600, 1, 0, 0x20000000); break; case 10: *(uint64_t*)0x200679c0 = 0; *(uint64_t*)0x200679c8 = 0; memcpy((void*)0x200679d0, "\xef\xb7\x6c\x00\x3d\x52\x7f\x42\x35\x83\xf4\x62\x95\x4f\xac\x46" "\x43\x03\xa1\x9a\xc2\xc6\xbb\x3c\x1d\x85\x73\x99\x23\x57\xa4\x35" "\x3b\x55\x45\x5e\xf8\x56\x0f\x89\x7b\xb1\xbc\xc5\x10\x82\x32\x12" "\xa7\x7c\x90\x8e\xb8\x56\x43\xc6\xf9\x2a\x5c\xfa\x65\x60\xeb\xd5" "\x75\xf1\xba\x61\x3b\x8c\xf3\x70\xdc\xd4\x62\xfd\x7f\xcf\x8f\x32" "\x92\xcc\x1c\xeb\x81\xb0\x08\xd9\xb2\x0a\x80\x4c\x98\x42\xb5\x7d" "\x97\xe8\xbb\xc2\xf0\xd5\xdb\x55\xd7\xfd\xc2\x33\xf1\xb4\xf6\x74" "\x59\x31\xa0\x16\x89\x87\x80\x6c\x41\x15\xd6\x2a\xee\xaa\xc7\x49" "\x21\x1d\x4b\xcc\x40\xd6\x2b\xf5\x24\x11\x9c\x0f\xe1\xa6\x03\x3e" "\xc7\x9c\xe3\xca\x84\x23\x63\xad\xc1\x9d\x13\x76\x0f\xbb\x8f\x0b" "\x7d\x25\xd1\x5f\x16\x3e\x2c\x3a\x77\xb0\x57\x69\xb3\x60\x1c\x9c" "\xb9\x21\x1e\x83\xea\x2e\x90\x71\x56\xb8\xdd\x97\x37\xe3\x5b\xde" "\xe4\xea\x6e\x67\xc7\x92\xc6\x9c\xfb\xa7\x20\x34\x60\xdf\xe2\x9b" "\x20\x0f\xc2\xc3\xab\xac\x4a\xcb\x36\x91\xa1\x5f\xac\x86\x4a\x68" "\x64\x5f\x0e\x34\x2f\xcd\x62\xe8\x44\xac\x0b\x1c\xf1\x7f\x1d\x54" "\x12\x6d\x25\xcf\x2d\xfb\x7b\xb2\xba\x30\xcd\x11\xdf\xf5\x14\x89", 256); memcpy( (void*)0x20067ad0, "\x9a\x8f\xe5\x0b\x79\x34\xc1\x8a\x07\x5c\xc2\x68\xa5\xd8\x3d\xf5\x1a" "\x25\x02\xe1\xb7\xd6\x25\xa7\x67\x77\x82\x3f\x3a\xf1\x97\x51\xf9\x0c" "\x88\xbc\x57\xec\x01\x60\xf9\x09\xb3\x25\x87\x1d\xa0\xdc\x07\x39\x08" "\x27\x61\x96\x4c\x93\xa5\x2a\xf4\x61\xce\x75\x64\xc5\xc2\x67\x29\x4c" "\x1e\xd0\xe1\x82\x34\xcd\x88\x75\x04\x02\xc7\x29\x79\x87\xa4\x91\xd2" "\x9d\xb1\x40\x9e\x8d\xfe\x35\x4d\x0e\xf5\x49\x94\x43\x21\x2b\x65\xe9" "\x00\x6d\x30\x3c\x8c\xda\x5d\xd1\x25\xf0\xd7\x18\x87\xe8\xf5\xe7\x90" "\xbe\x51\xab\x2b\xf6\xb8\xf8\xe8\xac\x0a\x31\x1c\x65\x77\x8c\x09\x41" "\xe4\x75\xdf\x2b\x94\xf8\x8f\x70\x1c\x3d\xd0\x0e\x58\x82\x5a\xb4\x17" "\x4b\x23\xa7\x5a\x26\x05\x19\x2a\x69\xba\xbd\x26\x01\x41\x6a\xa6\x76" "\x32\x07\xce\x47\x50\xd1\xbb\x66\xca\x18\xb0\x34\x7e\x5f\x02\xa2\x4d" "\x27\xb2\x1c\x0d\xe7\xf6\xf4\x30\xb9\x12\xef\xec\x17\xc3\x81\x9e\x0c" "\x69\xa5\x39\x04\x34\xa2\x9a\x95\x0f\xa8\xdd\x35\x81\x1f\x11\x6d\xed" "\x36\xc5\xaa\x6c\xe2\x0c\xe0\x99\x3b\xcc\x1e\x45\xd4\x34\x3f\xf3\x7c" "\x40\x89\x61\xe9\x16\x59\x8c\xc4\x6b\x6d\x81\xdb\x0d\x26\x3e\xba\x4c" "\x61\x4a\x92\xda\x24\x06\x77\xa5\xcc\x51\x89\x03\x69\x5a\x87\xbe\xb9" "\x16\x2d\x94\x2e\xce\x63\x06\x4e\x8a\xbd\x7f\x90\x01\xad\x2c\x0c\x8b" "\x42\xf5\x9b\x33\x86\xea\xfa\xd0\xaf\x34\x54\x33\x54\x47\x9c\x52\x9a" "\x5c\x8e\xce\x58\xb7\xb8\x74\x49\x2b\x49\x65\x8f\x37\x9c\x20\x6f\x9f" "\x6d\xf3\x23\xa7\x5c\x80\x93\x2f\x61\x5c\x18\x62\x68\x0b\x46\x10\x07" "\xb7\xfa\xb7\xc8\x97\xea\xed\xa3\x65\xbb\x6f\xc7\x66\xcc\x07\xe6\xc7" "\x56\x92\x13\xd6\xed\x3a\x45\x78\x50\xaf\x90\x0b\x5a\xfe\x5d\x49\xea" "\x5d\x99\x91\x88\xe1\xc2\x15\xb2\x17\x84\xe9\x2e\x27\x10\x63\xa6\xa3" "\x55\xcf\xd3\xdd\x3d\x9e\x35\x88\x77\x64\x61\x74\xe2\x5e\xa2\xe8\x03" "\xa7\x44\x60\xb5\xa1\x86\xb2\xf0\xab\xa8\x31\x40\xea\x2c\xe4\x58\x33" "\xe6\xdb\x56\x39\x26\x43\xf1\x9b\xda\x72\x94\x6f\x31\x82\x8e\x02\xe9" "\x2c\xaf\x9f\xb6\x02\x13\xc1\x91\x41\x20\xf0\xae\xf7\xb1\x51\xb6\x98" "\xc1\x80\xe3\xbd\x24\x71\x7e\x75\x9d\xfb\x28\xc6\x16\x06\x6e\x48\xe8" "\x2e\x87\xf1\x05\x45\x0a\xcd\x8f\xb9\x21\x45\xec\x16\x27\x22\x50\x35" "\x8a\x19\x8f\x2e\x90\x45\xba\xa2\x37\x4f\x42\x2e\x00\x63\x40\xbc\x19" "\x4e\xa0\xa0\x9f\x15\x51\xd1\x3d\x1b\xd4\x21\xe2\xf7\xa9\xe0\x60\xd8" "\xd0\x4c\x79\x23\x4b\x7a\xbe\x54\x3c\x03\x35\xe5\xe1\x4e\x45\xf6\x26" "\x81\xa8\xf3\x30\x29\x75\x84\x3a\xae\x69\x9f\x1b\xb1\x10\x70\xf0\xb8" "\x38\x8c\xc1\xd2\xc5\x28\x4a\xa7\x56\xf9\x9d\xb9\x93\x62\x7c\xcc\x20" "\xfd\x45\xd2\x7b\x63\xd4\xaa\xf4\x67\x80\x5b\xd3\xb4\x06\xca\x1b\xeb" "\x52\x28\x23\xf1\xb8\x3c\x76\xa7\xb8\x38\x22\x95\xfc\xf8\xf0\x52\x8a" "\x3c\x79\x85\xbe\x25\x5a\x52\x93\x7b\xa2\xb1\x8a\xed\x69\xae\xbe\xbc" "\xec\xfd\xfa\x8b\x59\x2c\x74\x36\x10\xa1\xa8\x9d\x94\x16\x56\x4a\x4a" "\x4b\x56\xa2\x45\xae\x68\xe0\xb6\x8f\x1f\xbe\xf1\x56\x89\xa7\xaf\x3a" "\x49\x80\xc3\x34\xac\xb3\x03\xfb\x4b\xde\x8e\xad\x92\xb3\x40\x24\x1c" "\xd1\x30\xba\x65\xb8\x69\xaf\x2c\x78\x50\x3a\x04\xde\x9b\x6d\x82\xe5" "\x32\x1b\x28\x64\x2e\x70\xd7\x34\xbc\x06\xd7\x7e\x6f\x9e\xb3\xca\x8f" "\xc3\x89\x81\xc4\xa7\xda\x2b\x49\x79\x37\x07\x81\x6d\x48\x5d\x7c\xad" "\x51\xba\x69\x90\xc7\x56\x8d\xe3\xec\x29\x04\x69\xaa\x8c\xe5\x99\xdd" "\xe0\xbd\xf7\x0d\x43\x15\x18\x25\x12\x14\xd5\x5d\x38\x3a\xce\x7c\x77" "\x3a\xa4\x43\xf9\xe9\x4e\x6c\xbb\xe3\xa1\xf5\xb9\x60\x08\x32\x87\x0d" "\xea\x09\x06\x6a\xb8\xc6\x86\x4f\x9c\x1e\x77\x6e\x0a\xa9\xc6\xee\x47" "\xcf\xc5\x7c\x32\x35\x3b\x67\xd6\x18\xbe\xa1\x41\x4f\x87\x87\x49\x2a" "\xc8\x1b\x3e\x02\xd9\x07\xaa\x05\x5a\xc0\xd6\x8d\x51\x76\xba\xdd\xd2" "\xc4\x19\x26\xfc\x9e\xe4\x6d\x1e\xdc\x96\xed\x1a\xfa\x1c\xc4\x66\xe3" "\x79\x8a\x09\x3d\xe8\xe5\xaf\xb7\x1b\xa5\x3a\xa8\x35\xff\x99\xa4\x40" "\xf1\xc9\xcd\xef\x43\x42\x3f\xe0\x01\x40\xf7\xdb\xab\x2a\x8c\x1f\x20" "\xee\x42\xc7\x0f\x7c\xa4\xeb\x53\x40\xa7\xaf\x3d\xcc\xe2\x05\xe1\x45" "\xa7\xe7\xce\xa9\xbf\xae\x5f\xc9\x7e\xac\xf4\x43\xf9\x22\xe5\xaf\x01" "\x03\xc0\xa0\xce\x8e\x14\xf7\x17\x53\xaf\x8e\x5d\x5e\x49\xad\x4e\x0c" "\xbb\xdc\xaf\x25\x91\xc4\x15\x6b\x06\x92\xef\x96\x65\x8d\x6a\x08\xbc" "\x07\xbe\xd3\x1f\x20\x27\x31\x16\xf8\x7f\x37\x01\x5a\x71\xae\x43\x6f" "\x1f\x77\x94\x78\x13\xbf\x7c\x32\x33\x19\x50\xc2\xdb\x09\x30\x3c\xab" "\x52\xd9\x3c\x99\x49\x91\x08\x53\x59\xdc\xde\xab\xd7\x3d\x1b\x3a\xba" "\x4b\x86\x43\xe0\xf5\x28\xca\x70\x42\x8e\x12\x07\x10\xef\xed\x9a\x3a" "\x64\x92\xad\xa3\xb6\x75\x56\x02\x52\xf6\x6c\x09\x43\x13\x90\x07\xa3" "\xba\x2b\x3f\x1e\x6b\x7d\xbd\x9d\x3d\x72\xa4\xdf\xe5\x10\xa7\xe9\x8a" "\x20\xac\x9a\x48\x8b\xa8\x75\x7d\x01\xee\xd5\x0f\x2f\x8b\x8d\x83\x12" "\xb9\x4d\x3a\x1a\x2d\x5d\x02\x7e\xdd\x86\x06\x89\x6f\xd6\x78\x8d\x8e" "\x34\x95\xab\xf8\x23\x1f\xf4\xc1\x2d\x7c\x10\x0b\x18\x6a\x06\xe9\x6e" "\x18\x7e\xbb\x5d\x4b\xe1\x12\x6d\x82\x1c\x52\x06\x68\x9a\xbd\x64\x7c" "\x34\x4a\xc7\x24\x12\x09\xc8\xa7\x60\xfb\x05\x12\x79\x81\x78\xbc\xf0" "\xbb\xb0\x1e\x0a\xf3\x78\x28\x21\x2e\x47\x36\x1d\x5d\x54\x1d\xbd\x49" "\x95\x72\x7d\x76\x79\x1b\xc0\x9c\x64\xb1\x98\x67\x75\x59\xa3\xd7\xa7" "\x6d\xf2\x8e\x25\xa3\x5c\x67\xf2\x2c\xfb\x78\x14\x41\x3e\xf5\x60\x13" "\xd5\xad\xb5\x08\x4e\xea\xe7\xac\x1e\x1d\xcb\x7a\xaf\x87\x6d\x9f\x07" "\x48\x31\x83\x68\x5e\xb3\x5a\x12\x63\xf6\xe4\x7a\xd2\xde\x12\x28\x2e" "\x16\x59\x51\x4e\xc1\xd1\xb1\x1e\x7f\xa6\x3e\xf4\xed\x57\x6b\x3a\x9d" "\x9c\x94\xae\xa4\x1a\xbc\x5c\x10\x49\x8a\x64\x9b\x0d\x32\xac\x75\xea" "\x14\x33\x8f\xcb\xb8\x07\x82\x5e\xdc\x01\x8c\x18\xf5\x57\x01\x50\xe7" "\x6e\x4e\x81\x8e\xbf\x83\xd6\x5d\x23\x82\xb2\x2f\xd8\x40\xa9\x52\x53" "\xa4\x14\xbf\x25\xf4\xf0\x79\x34\x9e\xbf\x79\x51\x3b\x5f\x3b\xf4\x36" "\x13\x92\x60\xfb\x25\x43\xfb\x2d\x3c\xf0\x3c\x34\xa3\x6f\x92\x6c\x90" "\x64\x4c\xf5\x14\x7f\x93\x29\xe2\xc6\x5e\x6b\x82\x60\xea\xf4\x1d\x4b" "\x68\x46\x31\x26\x44\x31\xc7\xac\x0a\xc2\x1f\xe4\x6a\x2c\xce\x86\xd1" "\xa4\x4d\xbb\xbd\x0c\xf9\x7c\x2c\xfb\xfb\xf9\x87\x46\xbc\xae\x00\xd2" "\xbc\x85\x3a\x9f\xfe\x40\x9b\x73\x75\xb5\xa4\x5f\xf0\x72\xa0\x28\x1c" "\x43\xbb\x9a\x64\x43\x89\x78\xd2\x50\x26\xe9\x4d\xe2\x3e\xfe\xab\xf2" "\x2c\x22\x87\x36\xc8\x95\xb9\x77\xa8\xb6\x91\x60\xe5\x78\x92\x20\x96" "\x50\x40\x78\xd7\x36\x50\xa9\x11\x13\x1e\x8f\x6a\x2b\x8f\x7f\x9f\x76" "\x8b\xdb\x11\x6a\xbb\x90\x77\x61\x0f\xf1\x61\x5b\x8e\xcc\x48\x33\x49" "\xf9\x85\x65\xd0\xad\x88\x92\x1c\xab\xb8\xc2\x0b\x6c\x78\x54\x5d\xe2" "\x49\x88\x11\x85\xa8\x55\x8f\x05\x3c\xef\x16\x05\x68\x15\xa6\x22\xa4" "\xd2\x01\xad\x92\xf6\x70\x0f\x7e\x01\x84\x88\x83\x9c\xd4\x26\x15\xf9" "\x4b\xfc\x5d\x2c\x51\x0e\x00\x56\x33\x2e\x39\x65\x9f\xce\xd2\x7a\x04" "\xfe\x0c\x4b\xe3\x7b\x47\x64\xe1\xa7\x8a\x50\x99\xd3\xd1\x06\x26\xe1" "\xab\x84\xba\x87\x20\xaf\x19\x3c\xea\x8d\x8b\x6f\x36\x97\x14\xc9\x72" "\x7a\xd5\x2b\xb8\xa5\x2b\xf1\xd3\xa6\x4d\x03\xe9\x71\xb3\xf4\xb4\x08" "\xf5\x8f\xc5\x93\x15\x76\x06\xd7\x37\x6c\x2c\xe8\x86\x7c\xab\x2b\xb5" "\x21\x6d\x9f\x4f\xf0\x5d\x3e\x00\x1f\xe1\x99\x25\xcd\xe7\x2d\xd5\x12" "\x74\x33\xb6\x73\xb4\x56\x39\xd8\x9b\xf7\x5d\x5a\x48\xfc\xda\x72\x3c" "\x46\xfa\x50\x0d\xb4\x78\x03\xc0\x3f\x8b\x03\x9d\x42\x71\xfc\xcd\x6c" "\x50\x7a\x22\x78\x11\xa3\x20\x80\x83\x1d\x9e\x2f\x80\x9c\x0c\xe8\xb3" "\xc5\xb8\x39\x9b\x52\x18\x99\xa8\x5d\xdd\xaa\xfc\x06\x2f\x78\x18\xd8" "\x4f\x2e\xa0\x64\xbc\xce\x1f\x29\x4e\x21\x43\x20\x95\x7b\x24\x8a\x44" "\xb6\x44\x01\xa5\x54\x47\x5c\xc1\x7c\x1a\x08\xfd\x83\xaa\x4b\xdc\xeb" "\x57\x9e\x48\x94\x87\x0d\x97\xdf\xfb\xcc\x55\xde\x90\xd9\x93\x6c\x46" "\x53\xc1\x2c\xc5\xcb\xb3\x9b\x0c\x9e\x24\x74\xb2\xc7\x1c\x97\x5e\x50" "\x5a\x71\xa9\x40\xcd\xde\x72\xec\x5a\x5a\xad\x5f\x9a\xdb\x92\x1c\x9b" "\xc0\x93\x9e\x11\x44\x8e\xd8\x84\xd7\xa5\x5c\x30\xf0\x8e\x63\x4b\xb9" "\x56\xb2\xef\x89\x27\xc9\x23\x42\x95\x28\x8f\x4d\x3b\x4c\x83\xdb\xc9" "\xee\xe6\xb8\x6a\x00\x46\xc1\x14\x68\x14\x29\x57\xe2\x05\x55\x6e\x85" "\x94\x05\x96\x1d\x7e\x05\x29\xec\x1a\xfd\xb6\xb9\x85\x90\xe9\x62\x8b" "\x44\x2c\xf3\xab\x5f\xe3\x1f\xdf\x2b\x12\x87\xa0\x85\x05\x61\x99\xce" "\xc5\x51\x9f\x0e\x1e\x7a\x11\x14\x09\xe3\xe2\x17\xfd\xb9\x0c\x76\xe4" "\xbc\xa4\xcb\x7c\x50\x7d\x76\x34\x57\x20\x31\x80\x94\x1c\x69\xbc\x95" "\x96\x4b\x90\xda\xf6\x67\x85\x12\x18\x45\x49\xb0\xfe\x5d\xbc\x00\x66" "\x2c\xc0\x2f\xee\xcc\x2d\xc9\x3e\x1f\x7b\x80\x39\xb0\xd5\xd2\xf8\xf2" "\xaf\x4c\xa8\x5e\x68\x4e\xd7\xc3\xef\x15\x89\x2f\x94\xcc\x92\x21\x68" "\x46\xee\x9a\xff\xf9\xbe\x9a\xfa\x92\x52\xfb\xf6\x65\x4d\x60\x9e\x5c" "\x0a\x17\xda\xab\x27\xdc\xb3\x89\x56\x1d\xa7\x15\xc4\xe3\x36\xe2\x96" "\x3d\x32\x70\xfd\xa1\x4d\xcf\xa2\x7e\x2b\x1a\xda\xba\x08\xe5\xea\xdb" "\x2c\xf2\x11\xbe\x49\x2c\x6d\x87\x51\x9c\xf4\x72\x21\x4b\x73\xf7\xb0" "\xd0\xcb\x94\x7d\xec\xb5\x01\x7d\x4a\x9c\xcf\x67\xdf\xe9\xa4\xcd\x26" "\xe6\x13\xe9\x52\xf7\x5e\x3f\x58\x65\xec\x7a\x43\xaf\xdb\x53\x69\x52" "\xeb\x69\xa4\xb1\x30\xd3\xf9\x04\x14\x56\x45\xd2\xbc\xcb\xa0\xce\x06" "\x49\xcd\x13\xff\x7b\x89\x25\xb1\x0e\xdd\x5c\xd9\x46\xc0\xb2\x53\x89" "\x52\x81\x03\x63\x22\xc2\x52\x2d\x8d\xbd\x72\x0b\xa0\x6a\x17\xdb\x16" "\xda\x24\x0b\xd3\x0d\x94\x0a\x92\x01\xc0\x1f\x5a\x8c\x87\x3d\x7b\x59" "\xfc\x53\xaa\xf5\x30\xe8\x66\xbb\xb4\x51\x28\x81\xeb\x81\x62\x8e\xea" "\xdd\xc5\xa8\xd3\x3d\x58\xdf\xb0\xe2\xdc\x5e\xe7\x16\x09\x04\xef\xf1" "\x2b\x21\x86\x73\x07\xa0\x16\x4a\x05\x5e\x47\x13\x2c\x18\xd6\xf0\xdc" "\x44\xb0\x87\x7b\x68\x82\xd6\xbc\xa9\x2d\x0e\xbc\x2b\xd4\x88\x74\xa5" "\x91\x1e\x94\xd5\x3b\xd0\x16\x3b\xf2\x13\x2f\x89\x2f\x40\x9a\x66\x0e" "\x68\xb6\x23\xdf\xcb\x95\x37\x5e\x3f\x9a\x41\x3f\x51\x01\x6c\xe1\x11" "\xc5\x85\xef\xba\xe1\x92\xe3\x68\xe1\xbf\x28\x0e\x6a\x98\x04\xd4\x53" "\xb3\x44\xef\x76\xa2\x85\x37\xfb\x86\x30\x8f\xe3\x5b\xbe\x33\x43\x97" "\x0e\x40\xf3\xb0\x89\xa4\xea\x11\x14\x7a\xf8\x86\x2a\x34\x2b\x5d\xfc" "\x7e\x4c\x73\x95\xdb\xe8\x5c\xed\x24\x5e\x85\xa8\x37\xd9\x85\x0e\x4a" "\xc8\x69\x73\xf1\x5a\x97\xb1\x07\xad\xc2\xb5\xa8\xb6\x0d\x8a\x08\x89" "\xf5\x06\x3d\x37\x73\x3b\x7e\xd5\xd3\x8a\x76\xbe\xfa\xf3\xdd\xf9\xbd" "\x9a\x47\x2b\x21\xcb\x38\xd0\x7d\xaf\x5f\x33\x30\x29\x5b\x14\x34\x56" "\x13\xe1\xad\x0f\xcc\xd0\x67\xb5\x8a\xa1\x4a\xa2\x2c\x08\xed\x78\x1f" "\x3c\xee\x8d\xa1\x88\x97\x75\x19\x4a\x24\x1c\xc3\x65\x12\x14\x58\xa8" "\xf5\x4d\x10\x65\x2e\xba\xf4\xa5\x6d\x93\xdd\xbb\x1b\x1f\x25\x4f\xc0" "\xe8\xd4\xd8\x81\x9a\x8c\x18\x57\x4a\x17\x9d\xe1\xd7\x9d\x71\xec\xb6" "\xb4\x00\x08\x3d\xfc\xcd\xa5\x1b\xfd\x65\xb7\x27\xd5\xfc\xc1\x6e\xf0" "\x38\xed\x35\xef\x88\x30\xf7\xf8\x4f\x5b\xcd\xcc\xa7\x32\xaf\xf4\x6f" "\xe2\x6e\x9c\xa2\x78\x1e\x3c\x5c\x4c\x92\x90\x9a\x01\x58\xc7\x33\xd4" "\x89\xb1\xfd\xc0\xe7\xc2\x70\x9c\x40\x54\xac\xfd\x4e\x81\xe0\xa9\x84" "\x88\x7a\xca\x2c\xc3\xae\xac\x34\x18\x4c\x11\x26\xfb\xf6\xcc\xe9\x31" "\x8f\x3c\xb9\x46\xdb\x13\x13\x78\x85\x4b\x7b\xbd\xa4\xb5\x29\xde\xcb" "\xba\x38\x56\x08\xbc\xec\x35\x36\x58\x43\x31\xf5\x10\x1b\xed\x21\x10" "\xc5\xd8\x7f\x12\x2b\x0a\xde\x9b\xe7\xe6\x72\xea\x36\x76\xdd\x8a\xc6" "\x4b\x56\x0f\x63\xab\x65\x17\xf0\xba\xb7\x7f\xed\xef\x26\x74\x84\x08" "\x08\x63\x64\x05\x44\x56\x8d\x17\x55\x0e\x61\x11\xb2\xce\xe8\x35\x30" "\x66\xa9\x90\x93\x55\x1a\x50\x43\xb8\x09\x6c\x0d\xfc\x2d\x64\xda\x9b" "\x0b\x69\xea\xaa\x4c\xe6\x12\x8a\x86\x94\x4a\x0e\x5c\x1c\x6c\xd2\x7e" "\x82\x80\x69\xff\xab\xc0\x43\x88\x01\xfd\x99\xfa\x73\xf7\x9c\x6a\x65" "\xd5\x3e\x6c\xd8\x3e\x57\xfe\x54\x03\xee\xf1\x43\xa9\x79\xfc\x66\x4f" "\x06\x35\xa5\x75\x52\xa8\xfe\xa4\x80\xc1\xfd\x30\xa7\x85\xc4\xd7\x7f" "\x93\xe1\xd8\xec\xd8\xe0\x5e\xd5\x23\xea\xe6\xa3\x2b\xa5\xb1\x70\x67" "\x3f\xd9\xb1\x16\x1a\x58\xa6\xec\xdc\xaf\xb9\x40\x7a\x57\x00\x25\x91" "\xb3\x8b\x1b\xc3\xad\xfa\x3b\x98\x63\x66\x36\xe4\xa7\xcb\x3d\x82\x01" "\x04\xec\x00\x9d\x63\x98\x79\xc8\xe3\x8a\x0e\xe9\x96\x55\x02\xbd\x63" "\xbc\xf0\x6d\xb1\x11\x0f\x43\x5c\x1e\xa3\xe2\x97\xda\x14\x29\xb3\xe6" "\xdc\x67\x2a\xac\x09\x22\x95\xc2\x3d\x1d\x3b\x03\x52\x1d\x7c\x3f\xf0" "\xd2\xa5\x86\xbf\xa5\x22\x26\x3f\x90\x5b\x3c\x58\x02\x55\x3d\xa5\x46" "\x4d\x91\xf5\x00\x35\xcb\xa8\x61\x0a\xe1\xb8\xd7\x87\x2e\xb0\xc3\x5d" "\xe0\xdb\x14\x72\x26\x5a\x93\x0d\xdb\x81\x4c\x80\x53\xec\x99\xbd\x55" "\x5b\x83\xb4\x4f\xfe\xed\xa4\x68\xf1\x27\x98\x91\xb3\x74\x15\x2f\x66" "\x9b\xec\xcb\x46\xc4\x6c\x64\xf7\xb0\x59\xe3\xb4\xc4\xf6\xbd\x5f\xd8" "\xb5\x9d\xa5\x16\xc4\xe4\xfe\xac\x02\xec\x4d\x04\x1c\x3d\x20\x14\x64" "\x40\xf6\x7b\xfe\x25\x44\x6c\x3d\xbf\xb1\xf1\x46\x8d\xa8\x90\x02\xae" "\x66\xde\x6e\x8d\x5d\x31\x69\x7a\x62\x87\x0c\xe4\xc2\xdc\x6a\x8e\xc5" "\xfc\x86\x45\x19\x9b\xf3\xff\xb5\x62\x8d\xf7\x7b\x39\xb0\xb6\x34\xda" "\x8a\x85\x0a\x78\xff\xc8\x67\xf8\x98\x5d\xbb\xbb\xca\xef\xb0\xe6\xa3" "\xb8\x64\x5f\x87\x4c\x0b\x10\x88\x30\x37\x1f\x3c\xb7\x0c\x53\xc0\x3c" "\x38\xa6\x8f\x3c\xb7\x64\xfb\xd2\xf4\xc9\x27\xd9\x7d\x68\xe5\xa2\xad" "\x28\x28\xa5\x65\xe7\xc9\xbd\xa1\xab\x78\xbe\xde\xd9\xf4\xdc\xa3\xb0" "\xbc\xf8\x91\x6d\x31\x40\x54\x94\xe8\x09\xda\xce\xd1\x6a\x2e\x84\x57" "\xef\xd5\x47\xb7\xc9\xae\xf1\x1b\xfa\x8f\x8f\x99\x4b\xdb\x1c\x66\xaf" "\xb3\x82\x83\x28\x12\xc0\x4a\x6b\xbf\xff\x8c\x2c\x3c\x3f\x53\x6c\xc8" "\x21\xca\x9e\xd6\x1a\x72\xef\xce\x71\x3f\x50\xab\x3a\x70\xf1\xe0\x1d" "\x65\x89\xed\x42\x92\xc5\x65\xaa\xb9\xd2\x14\x8c\x60\x38\x2b\x70\xab" "\x20\x51\x78\x54\xc6\xd3\x57\xe2\x8e\xbb\x2a\xd1\x08\xcd\xb6\xc6\x81" "\x04\x08\xb7\xcd\x9b\x0f\x13\xa0\x5e\xbe\x10\xca\x20\xef\x2e\x5c\x0a" "\x79\xaf\x64\x51\x91\x40\x2a\x09\xad\xda\x37\xae\x6f\xfd\x4d\xc5\x1b" "\xc4\xeb\xd3\xfd\x5a\xf5\xda\x0e\xc8\xf0\x0e\x5d\xc9\xf5\xbc\x33\x3f" "\x6e\x1e\x91\x62\xe5\x97\x2f\xa3\xb3\x9c\x3b\xb7\x92\xe4\xb8\xf3\xae" "\x14\x7e\xcf\x28\x45\xdd\x1f\x58\xa0\xd7\x0b\x15\xed\x25\x41\x6f\xd2" "\x1b\x89\x9e\x9b\x28\xfc\x05\xb2\x83\x4a\xc3\x27\xe1\xe2\x40\x49\x89" "\xf5\xda\xc9\xc3\x82\x6c\xd6\x63\x26\xfc\x38\x56\xc6\x34\xd9\x5b\x32" "\x89\xca\xee\xe5\x1c\x96\x1a\x6d\xa5\x9d\x0a\x9e\xbf\x38\x75\x52\x6c" "\xfd\x7b\x2f\x91\x3a\x51\x5f\x6e\xc9\x91\x34\x8c\xae\xbb\xd4\xbd\xe0" "\x04\x26\x7d\xa8\x54\xd9\x0c\x67\x1a\xa7\xdf\x0e\xe5\x0f\x99\x52\xf5" "\x59\xba\x9d\x12\x2f\x2f\x71\xfc\x19\xad\xe0\x5a\x62\xb3\x43\x1a\x5d" "\x38\x4e\xaa\x6a\xa2\xaf\x52\x1c\xc1\xac\xff\xf7\xd8\x24\x8c\x33\x80" "\x08\x59\x6e\x5f\xd7\xcc\x01\xc4\xc3\xbf\x25\x1d\xdf\xc7\x5b\x16\x19" "\xc2\x5d\x63\x02\x3d\x51\x56\x96\x9a\xaf\xc2\x51\xb0\x27\x70\x8f\x43" "\xb6\xde\x52\xd1\xcd\xa1\xae\xfb\xff\xbc\x8f\x77\x49\x51\xa5\xdd\x82" "\xbb\x63\xae\x96\xf7\xa9\x6a\x32\xf7\xb8\x6e\x11\xae\x70\xf8\x63\xcf" "\xa3\x99\xca\xf5\xea\xd7\x13\x65\xbe\xdb\xfe\x01\x9c\xc6\x76\xed\x01" "\x2d\x9f\xee\xf5\xac\xcd\x98\x2d\x5e\xeb\x7f\x7e\xfb\x01\xf3\x4d\xfa" "\xe6\x6d\x4c\xdd\xdf\x12\xcd\x61\x3c\x78\xb3\x6b\x3e\xa4\x09\x2f\x59" "\x99\x01\x2c\x6d\xe4\x32\x18\x82\x8f\x4d\x59\x91\x13\x15\x99\x07\xf2" "\x9b\xb8\xe6\xc0\x4f\xdd\x6e\xd2\xcc\xb5\x07\x71\xb1\xd9\xf1\x87\x34" "\x3f\x7f\x81\x4e\xf4\x0b\xb1\xc9\xa9\x40\xa9\x9b\xdc\x7e\x87\x57\x0d" "\x6d\xf3\x86\xcb\xaf\xcf\x70\xf2\xa0\x46\x11\x9c\x96\xbd\xaf\xd8\x80" "\x77\xf6\x08\xae\x96\x0e\xdc\xa7\x16\x35\x9f\xb9\x04\x9d\xa6\x03\xb0" "\x9d\x66\xf6\x92\x18\x47\x35\x21\x4b\x34\x1f\xf9\x89\x35\x01\xed\x59" "\xd4\x04\xdb\xdf\x36\x4c\x54\x45\x17\xd1\xdb\xb9\x98\x6b\x19\x11\x52" "\xbe\xc1\xb3\x35\x6f\xea\xea\x3b\xeb\xca\x93\x83\x12\xc6\x12\xcb\x66" "\x68\x48\xd7\xda\xa2\xc2\xeb\x09\x28\x14\x6c\x3c\x30\x7f\xb4\xc8\xeb" "\xe5\x03\x2c\x63\x29\xff\xa5\x7f\x2d\xa8\x61\xd2\x46\x08\x6c\xc1\xfe" "\xe2\x7f\xfe\x0e\x7a\xfc\x30\x30\x8a\x76\x52\x73\x0e\xa9\xb9\xde\xc0" "\x84\x0b\x72\x3b\xda\xa7\x70\x80\x66\x2d\x41\xe7\x67\x1e\x98\x5d\xa7" "\x31\xac\x7f\xa9\x25\x87\x42\xb5\x0d\x14\x1e\x1e\xc4\x30\xf3\x20\x75" "\x90\xee\x04\x8a\xf4\x76\x03\x4f\xa5\x11\x47\xc6\x22\x67\x64\x4c\x08" "\x73\x1c\x6d\x60\x34\xfd\x79\xd2\x9e\x4f\xcb\x9c\xe3\x85\xee\x35\xe0" "\xbf\x4c\x17\x06\xaf\xf3\x9f\x2e\x9a\x68\xe8\x5f\x8b\x90\x1d\x5d\xf5" "\x2d\xf1\xe4\xbb\x29\x0f\x03\x21\x50\x46\x14\xda\x95\x1b\xcd\x66\xa3" "\x01\xaf\x59\x45\x7f\x60\xa7\x8f\xc2\xfb\x11\x11\xeb\x60\x3e\x42\x18" "\x74\x6a\x89\x2f\x28\x2c\xb9\x21\xc7\xf6\x05\xc5\x5f\xc8\x52\x85\xb1" "\x03\x48\x01\x4f\xbc\xbd\x2d\x3a\xe7\x5d\x7a\x51\x0a\xb4\x4f\x12\xbd" "\x18\xa6\x99\xbb\x4a\xd1\xc5\x6f\x8b\xce\x29\x4e\xcd\x82\x6d\xce\x48" "\x8d\xbc\xbe\x97\x69\x23\x5c\x23\x47\x8c\xa4\xf1\x14\x13\xd3\x9c\x15" "\x55\xd9\xb6\x5f\x2a\xf9\x73\x36\x27\x57\x1a\x65\xae\x73\x34\xdd\x93" "\xbf\x94\x24\xda\x31\xa7\x40\xb1\x70\xc5\x25\xc6\x0d\xdd\xb5\xf7\xe7" "\xfc\x82\xb6\x7c\x77\xac\x60\xaa\x41\x9d\x67\xd8\x39\xab\xae\x45", 3824); syscall(__NR_ioctl, r[1], 0xd000943e, 0x200679c0ul); break; case 11: res = syscall(__NR_dup, r[4]); if (res != -1) r[6] = res; break; case 12: syscall(__NR_sendfile, r[6], r[3], 0ul, 0x1000000201004ul); break; case 13: *(uint64_t*)0x20053bc0 = 0; *(uint64_t*)0x20053bc8 = 0; *(uint64_t*)0x20053bd0 = 0; *(uint64_t*)0x20053bd8 = 0; *(uint64_t*)0x20053be0 = 0; *(uint64_t*)0x20053be8 = 0; *(uint64_t*)0x20053bf0 = 0; *(uint64_t*)0x20053bf8 = 0; *(uint64_t*)0x20053c00 = 0; *(uint64_t*)0x20053c08 = 0; *(uint64_t*)0x20053c10 = 0; *(uint64_t*)0x20053c18 = 0; *(uint64_t*)0x20053c20 = 0; *(uint64_t*)0x20053c28 = 0; *(uint64_t*)0x20053c30 = 0; *(uint64_t*)0x20053c38 = 0; *(uint64_t*)0x20053c40 = 0; *(uint64_t*)0x20053c48 = 0; *(uint64_t*)0x20053c50 = 0; *(uint64_t*)0x20053c58 = 0; *(uint64_t*)0x20053c60 = 0; *(uint64_t*)0x20053c68 = 0; *(uint64_t*)0x20053c70 = 0; *(uint64_t*)0x20053c78 = 0; *(uint64_t*)0x20053c80 = 0; *(uint64_t*)0x20053c88 = 0; *(uint64_t*)0x20053c90 = 0; *(uint64_t*)0x20053c98 = 0; *(uint64_t*)0x20053ca0 = 0; *(uint64_t*)0x20053ca8 = 0; *(uint64_t*)0x20053cb0 = 0; *(uint64_t*)0x20053cb8 = 0; *(uint64_t*)0x20053cc0 = 0; *(uint64_t*)0x20053cc8 = 0; *(uint64_t*)0x20053cd0 = 0; *(uint64_t*)0x20053cd8 = 0; *(uint64_t*)0x20053ce0 = 0; *(uint64_t*)0x20053ce8 = 0; *(uint64_t*)0x20053cf0 = 0; *(uint64_t*)0x20053cf8 = 0; *(uint64_t*)0x20053d00 = 0; *(uint64_t*)0x20053d08 = 0; *(uint64_t*)0x20053d10 = 0; *(uint64_t*)0x20053d18 = 0; *(uint64_t*)0x20053d20 = 0; *(uint64_t*)0x20053d28 = 0; *(uint64_t*)0x20053d30 = 0; *(uint64_t*)0x20053d38 = 0; *(uint64_t*)0x20053d40 = 0; *(uint64_t*)0x20053d48 = 0; *(uint64_t*)0x20053d50 = 0; *(uint64_t*)0x20053d58 = 0; *(uint64_t*)0x20053d60 = 0; *(uint64_t*)0x20053d68 = 0; *(uint64_t*)0x20053d70 = 0; *(uint64_t*)0x20053d78 = 0; *(uint64_t*)0x20053d80 = 0; *(uint64_t*)0x20053d88 = 0; *(uint64_t*)0x20053d90 = 0; *(uint64_t*)0x20053d98 = 0; *(uint64_t*)0x20053da0 = 0; *(uint64_t*)0x20053da8 = 0; *(uint64_t*)0x20053db0 = 0; *(uint64_t*)0x20053db8 = 0; *(uint64_t*)0x20053dc0 = 0; *(uint64_t*)0x20053dc8 = 0; *(uint64_t*)0x20053dd0 = 0; *(uint64_t*)0x20053dd8 = 0; *(uint64_t*)0x20053de0 = 0; *(uint64_t*)0x20053de8 = 0; *(uint64_t*)0x20053df0 = 0; *(uint64_t*)0x20053df8 = 0; *(uint64_t*)0x20053e00 = 0; *(uint64_t*)0x20053e08 = 0; *(uint64_t*)0x20053e10 = 0; *(uint64_t*)0x20053e18 = 0; *(uint64_t*)0x20053e20 = 0; *(uint64_t*)0x20053e28 = 0; *(uint64_t*)0x20053e30 = 0; *(uint64_t*)0x20053e38 = 0; *(uint64_t*)0x20053e40 = 0; *(uint64_t*)0x20053e48 = 0; *(uint64_t*)0x20053e50 = 0; *(uint64_t*)0x20053e58 = 0; *(uint64_t*)0x20053e60 = 0; *(uint64_t*)0x20053e68 = 0; *(uint64_t*)0x20053e70 = 0; *(uint64_t*)0x20053e78 = 0; *(uint64_t*)0x20053e80 = 0; *(uint64_t*)0x20053e88 = 0; *(uint64_t*)0x20053e90 = 0; *(uint64_t*)0x20053e98 = 0; *(uint64_t*)0x20053ea0 = 0; *(uint64_t*)0x20053ea8 = 0; *(uint64_t*)0x20053eb0 = 0; *(uint64_t*)0x20053eb8 = 0; *(uint64_t*)0x20053ec0 = 0; *(uint64_t*)0x20053ec8 = 0; *(uint64_t*)0x20053ed0 = 0; *(uint64_t*)0x20053ed8 = 0; *(uint64_t*)0x20053ee0 = 0; *(uint64_t*)0x20053ee8 = 0; *(uint64_t*)0x20053ef0 = 0; *(uint64_t*)0x20053ef8 = 0; *(uint64_t*)0x20053f00 = 0; *(uint64_t*)0x20053f08 = 0; *(uint64_t*)0x20053f10 = 0; *(uint64_t*)0x20053f18 = 0; *(uint64_t*)0x20053f20 = 0; *(uint64_t*)0x20053f28 = 0; *(uint64_t*)0x20053f30 = 0; *(uint64_t*)0x20053f38 = 0; *(uint64_t*)0x20053f40 = 0; *(uint64_t*)0x20053f48 = 0; *(uint64_t*)0x20053f50 = 0; *(uint64_t*)0x20053f58 = 0; *(uint64_t*)0x20053f60 = 0; *(uint64_t*)0x20053f68 = 0; *(uint64_t*)0x20053f70 = 0; *(uint64_t*)0x20053f78 = 0; *(uint64_t*)0x20053f80 = 0; *(uint64_t*)0x20053f88 = 0; *(uint64_t*)0x20053f90 = 0; *(uint64_t*)0x20053f98 = 0; *(uint64_t*)0x20053fa0 = 0; *(uint64_t*)0x20053fa8 = 0; *(uint64_t*)0x20053fb0 = 0; *(uint64_t*)0x20053fb8 = 0; *(uint64_t*)0x20053fc0 = 0; *(uint64_t*)0x20053fc8 = 0; *(uint64_t*)0x20053fd0 = 0; *(uint64_t*)0x20053fd8 = 0; *(uint64_t*)0x20053fe0 = 0; *(uint64_t*)0x20053fe8 = 0; *(uint64_t*)0x20053ff0 = 0; *(uint64_t*)0x20053ff8 = 0; *(uint64_t*)0x20054000 = 0; *(uint64_t*)0x20054008 = 0; *(uint64_t*)0x20054010 = 0; *(uint64_t*)0x20054018 = 0; *(uint64_t*)0x20054020 = 0; *(uint64_t*)0x20054028 = 0; *(uint64_t*)0x20054030 = 0; *(uint64_t*)0x20054038 = 0; *(uint64_t*)0x20054040 = 0; *(uint64_t*)0x20054048 = 0; *(uint64_t*)0x20054050 = 0; *(uint64_t*)0x20054058 = 0; *(uint64_t*)0x20054060 = 0; *(uint64_t*)0x20054068 = 0; *(uint64_t*)0x20054070 = 0; *(uint64_t*)0x20054078 = 0; *(uint64_t*)0x20054080 = 0; *(uint64_t*)0x20054088 = 0; *(uint64_t*)0x20054090 = 0; *(uint64_t*)0x20054098 = 0; *(uint64_t*)0x200540a0 = 0; *(uint64_t*)0x200540a8 = 0; *(uint64_t*)0x200540b0 = 0; *(uint64_t*)0x200540b8 = 0; *(uint64_t*)0x200540c0 = 0; *(uint64_t*)0x200540c8 = 0; *(uint64_t*)0x200540d0 = 0; *(uint64_t*)0x200540d8 = 0; *(uint64_t*)0x200540e0 = 0; *(uint64_t*)0x200540e8 = 0; *(uint64_t*)0x200540f0 = 0; *(uint64_t*)0x200540f8 = 0; *(uint64_t*)0x20054100 = 0; *(uint64_t*)0x20054108 = 0; *(uint64_t*)0x20054110 = 0; *(uint64_t*)0x20054118 = 0; *(uint64_t*)0x20054120 = 0; *(uint64_t*)0x20054128 = 0; *(uint64_t*)0x20054130 = 0; *(uint64_t*)0x20054138 = 0; *(uint64_t*)0x20054140 = 0; *(uint64_t*)0x20054148 = 0; *(uint64_t*)0x20054150 = 0; *(uint64_t*)0x20054158 = 0; *(uint64_t*)0x20054160 = 0; *(uint64_t*)0x20054168 = 0; *(uint64_t*)0x20054170 = 0; *(uint64_t*)0x20054178 = 0; *(uint64_t*)0x20054180 = 0; *(uint64_t*)0x20054188 = 0; *(uint64_t*)0x20054190 = 0; *(uint64_t*)0x20054198 = 0; *(uint64_t*)0x200541a0 = 0; *(uint64_t*)0x200541a8 = 0; *(uint64_t*)0x200541b0 = 0; *(uint64_t*)0x200541b8 = 0; *(uint64_t*)0x200541c0 = 0; *(uint64_t*)0x200541c8 = 0; *(uint64_t*)0x200541d0 = 0; *(uint64_t*)0x200541d8 = 0; *(uint64_t*)0x200541e0 = 0; *(uint64_t*)0x200541e8 = 0; *(uint64_t*)0x200541f0 = 0; *(uint64_t*)0x200541f8 = 0; *(uint64_t*)0x20054200 = 0; *(uint64_t*)0x20054208 = 0; *(uint64_t*)0x20054210 = 0; *(uint64_t*)0x20054218 = 0; *(uint64_t*)0x20054220 = 0; *(uint64_t*)0x20054228 = 0; *(uint64_t*)0x20054230 = 0; *(uint64_t*)0x20054238 = 0; *(uint64_t*)0x20054240 = 0; *(uint64_t*)0x20054248 = 0; *(uint64_t*)0x20054250 = 0; *(uint64_t*)0x20054258 = 0; *(uint64_t*)0x20054260 = 0; *(uint64_t*)0x20054268 = 0; *(uint64_t*)0x20054270 = 0; *(uint64_t*)0x20054278 = 0; *(uint64_t*)0x20054280 = 0; *(uint64_t*)0x20054288 = 0; *(uint64_t*)0x20054290 = 0; *(uint64_t*)0x20054298 = 0; *(uint64_t*)0x200542a0 = 0; *(uint64_t*)0x200542a8 = 0; *(uint64_t*)0x200542b0 = 0; *(uint64_t*)0x200542b8 = 0; *(uint64_t*)0x200542c0 = 0; *(uint64_t*)0x200542c8 = 0; *(uint64_t*)0x200542d0 = 0; *(uint64_t*)0x200542d8 = 0; *(uint64_t*)0x200542e0 = 0; *(uint64_t*)0x200542e8 = 0; *(uint64_t*)0x200542f0 = 0; *(uint64_t*)0x200542f8 = 0; *(uint64_t*)0x20054300 = 0; *(uint64_t*)0x20054308 = 0; *(uint64_t*)0x20054310 = 0; *(uint64_t*)0x20054318 = 0; *(uint64_t*)0x20054320 = 0; *(uint64_t*)0x20054328 = 0; *(uint64_t*)0x20054330 = 0; *(uint64_t*)0x20054338 = 0; *(uint64_t*)0x20054340 = 0; *(uint64_t*)0x20054348 = 0; *(uint64_t*)0x20054350 = 0; *(uint64_t*)0x20054358 = 0; *(uint64_t*)0x20054360 = 0; *(uint64_t*)0x20054368 = 0; *(uint64_t*)0x20054370 = 0; *(uint64_t*)0x20054378 = 0; *(uint64_t*)0x20054380 = 0; *(uint64_t*)0x20054388 = 0; *(uint64_t*)0x20054390 = 0; *(uint64_t*)0x20054398 = 0; *(uint64_t*)0x200543a0 = 0; *(uint64_t*)0x200543a8 = r[5]; *(uint64_t*)0x200543b0 = 0; *(uint64_t*)0x200543b8 = 0; *(uint64_t*)0x200543c0 = 0; *(uint64_t*)0x200543c8 = 0; *(uint64_t*)0x200543d0 = 0; *(uint64_t*)0x200543d8 = 0; *(uint64_t*)0x200543e0 = 0; *(uint64_t*)0x200543e8 = 0; *(uint64_t*)0x200543f0 = 0; *(uint64_t*)0x200543f8 = 0; *(uint64_t*)0x20054400 = 0; *(uint64_t*)0x20054408 = 0; *(uint64_t*)0x20054410 = 0; *(uint64_t*)0x20054418 = 0; *(uint64_t*)0x20054420 = 0; *(uint64_t*)0x20054428 = 0; *(uint64_t*)0x20054430 = 0; *(uint64_t*)0x20054438 = 0; *(uint64_t*)0x20054440 = 0; *(uint64_t*)0x20054448 = 0; *(uint64_t*)0x20054450 = 0; *(uint64_t*)0x20054458 = 0; *(uint64_t*)0x20054460 = 0; *(uint64_t*)0x20054468 = 0; *(uint64_t*)0x20054470 = 0; *(uint64_t*)0x20054478 = 0; *(uint64_t*)0x20054480 = 0; *(uint64_t*)0x20054488 = 0; *(uint64_t*)0x20054490 = 0; *(uint64_t*)0x20054498 = 0; *(uint64_t*)0x200544a0 = 0; *(uint64_t*)0x200544a8 = 0; *(uint64_t*)0x200544b0 = 0; *(uint64_t*)0x200544b8 = 0; *(uint64_t*)0x200544c0 = 0; *(uint64_t*)0x200544c8 = 0; *(uint64_t*)0x200544d0 = 0; *(uint64_t*)0x200544d8 = 0; *(uint64_t*)0x200544e0 = 0; *(uint64_t*)0x200544e8 = 0; *(uint64_t*)0x200544f0 = 0; *(uint64_t*)0x200544f8 = 0; *(uint64_t*)0x20054500 = 0; *(uint64_t*)0x20054508 = 0; *(uint64_t*)0x20054510 = 0; *(uint64_t*)0x20054518 = 0; *(uint64_t*)0x20054520 = 0; *(uint64_t*)0x20054528 = 0; *(uint64_t*)0x20054530 = 0; *(uint64_t*)0x20054538 = 0; *(uint64_t*)0x20054540 = 0; *(uint64_t*)0x20054548 = 0; *(uint64_t*)0x20054550 = 0; *(uint64_t*)0x20054558 = 0; *(uint64_t*)0x20054560 = 0; *(uint64_t*)0x20054568 = 0; *(uint64_t*)0x20054570 = 0; *(uint64_t*)0x20054578 = 0; *(uint64_t*)0x20054580 = 0; *(uint64_t*)0x20054588 = 0; *(uint64_t*)0x20054590 = 0; *(uint64_t*)0x20054598 = 0; *(uint64_t*)0x200545a0 = 0; *(uint64_t*)0x200545a8 = 0; *(uint64_t*)0x200545b0 = 0; *(uint64_t*)0x200545b8 = 0; *(uint64_t*)0x200545c0 = 0; *(uint64_t*)0x200545c8 = 0; *(uint64_t*)0x200545d0 = 0; *(uint64_t*)0x200545d8 = 0; *(uint64_t*)0x200545e0 = 0; *(uint64_t*)0x200545e8 = 0; *(uint64_t*)0x200545f0 = 0; *(uint64_t*)0x200545f8 = 0; *(uint64_t*)0x20054600 = 0; *(uint64_t*)0x20054608 = 0; *(uint64_t*)0x20054610 = 0; *(uint64_t*)0x20054618 = 0; *(uint64_t*)0x20054620 = 0; *(uint64_t*)0x20054628 = 0; *(uint64_t*)0x20054630 = 0; *(uint64_t*)0x20054638 = 0; *(uint64_t*)0x20054640 = 0; *(uint64_t*)0x20054648 = 0; *(uint64_t*)0x20054650 = 0; *(uint64_t*)0x20054658 = 0; *(uint64_t*)0x20054660 = 0; *(uint64_t*)0x20054668 = 0; *(uint64_t*)0x20054670 = 0; *(uint64_t*)0x20054678 = 0; *(uint64_t*)0x20054680 = 0; *(uint64_t*)0x20054688 = 0; *(uint64_t*)0x20054690 = 0; *(uint64_t*)0x20054698 = 0; *(uint64_t*)0x200546a0 = 0; *(uint64_t*)0x200546a8 = 0; *(uint64_t*)0x200546b0 = 0; *(uint64_t*)0x200546b8 = 0; *(uint64_t*)0x200546c0 = 0; *(uint64_t*)0x200546c8 = 0; *(uint64_t*)0x200546d0 = 0; *(uint64_t*)0x200546d8 = 0; *(uint64_t*)0x200546e0 = 0; *(uint64_t*)0x200546e8 = 0; *(uint64_t*)0x200546f0 = 0; *(uint64_t*)0x200546f8 = 0; *(uint64_t*)0x20054700 = 0; *(uint64_t*)0x20054708 = 0; *(uint64_t*)0x20054710 = 0; *(uint64_t*)0x20054718 = 0; *(uint64_t*)0x20054720 = 0; *(uint64_t*)0x20054728 = 0; *(uint64_t*)0x20054730 = 0; *(uint64_t*)0x20054738 = 0; *(uint64_t*)0x20054740 = 0; *(uint64_t*)0x20054748 = 0; *(uint64_t*)0x20054750 = 0; *(uint64_t*)0x20054758 = 0; *(uint64_t*)0x20054760 = 0; *(uint64_t*)0x20054768 = 0; *(uint64_t*)0x20054770 = 0; *(uint64_t*)0x20054778 = 0; *(uint64_t*)0x20054780 = 0; *(uint64_t*)0x20054788 = 0; *(uint64_t*)0x20054790 = 0; *(uint64_t*)0x20054798 = 0; *(uint64_t*)0x200547a0 = 0; *(uint64_t*)0x200547a8 = 0; *(uint64_t*)0x200547b0 = 0; *(uint64_t*)0x200547b8 = 0; *(uint64_t*)0x200547c0 = 0; *(uint64_t*)0x200547c8 = 0; *(uint64_t*)0x200547d0 = 0; *(uint64_t*)0x200547d8 = 0; *(uint64_t*)0x200547e0 = 0; *(uint64_t*)0x200547e8 = 0; *(uint64_t*)0x200547f0 = 0; *(uint64_t*)0x200547f8 = 0; *(uint64_t*)0x20054800 = 0; *(uint64_t*)0x20054808 = 0; *(uint64_t*)0x20054810 = 0; *(uint64_t*)0x20054818 = 0; *(uint64_t*)0x20054820 = 0; *(uint64_t*)0x20054828 = 0; *(uint64_t*)0x20054830 = 0; *(uint64_t*)0x20054838 = 0; *(uint64_t*)0x20054840 = 0; *(uint64_t*)0x20054848 = 0; *(uint64_t*)0x20054850 = 0; *(uint64_t*)0x20054858 = 0; *(uint64_t*)0x20054860 = 0; *(uint64_t*)0x20054868 = 0; *(uint64_t*)0x20054870 = 0; *(uint64_t*)0x20054878 = 0; *(uint64_t*)0x20054880 = 0; *(uint64_t*)0x20054888 = 0; *(uint64_t*)0x20054890 = 0; *(uint64_t*)0x20054898 = 0; *(uint64_t*)0x200548a0 = 0; *(uint64_t*)0x200548a8 = 0; *(uint64_t*)0x200548b0 = 0; *(uint64_t*)0x200548b8 = 0; *(uint64_t*)0x200548c0 = 0; *(uint64_t*)0x200548c8 = 0; *(uint64_t*)0x200548d0 = 0; *(uint64_t*)0x200548d8 = 0; *(uint64_t*)0x200548e0 = 0; *(uint64_t*)0x200548e8 = 0; *(uint64_t*)0x200548f0 = 0; *(uint64_t*)0x200548f8 = 0; *(uint64_t*)0x20054900 = 0; *(uint64_t*)0x20054908 = 0; *(uint64_t*)0x20054910 = 0; *(uint64_t*)0x20054918 = 0; *(uint64_t*)0x20054920 = 0; *(uint64_t*)0x20054928 = 0; *(uint64_t*)0x20054930 = 0; *(uint64_t*)0x20054938 = 0; *(uint64_t*)0x20054940 = 0; *(uint64_t*)0x20054948 = 0; *(uint64_t*)0x20054950 = 0; *(uint64_t*)0x20054958 = 0; *(uint64_t*)0x20054960 = 0; *(uint64_t*)0x20054968 = 0; *(uint64_t*)0x20054970 = 0; *(uint64_t*)0x20054978 = 0; *(uint64_t*)0x20054980 = 0; *(uint64_t*)0x20054988 = 0; *(uint64_t*)0x20054990 = 0; *(uint64_t*)0x20054998 = 0; *(uint64_t*)0x200549a0 = 0; *(uint64_t*)0x200549a8 = 0; *(uint64_t*)0x200549b0 = 0; *(uint64_t*)0x200549b8 = 0; *(uint64_t*)0x200549c0 = 0; *(uint64_t*)0x200549c8 = 0; *(uint64_t*)0x200549d0 = 0; *(uint64_t*)0x200549d8 = 0; *(uint64_t*)0x200549e0 = 0; *(uint64_t*)0x200549e8 = 0; *(uint64_t*)0x200549f0 = 0; *(uint64_t*)0x200549f8 = 0; *(uint64_t*)0x20054a00 = 0; *(uint64_t*)0x20054a08 = 0; *(uint64_t*)0x20054a10 = 0; *(uint64_t*)0x20054a18 = 0; *(uint64_t*)0x20054a20 = 0; *(uint64_t*)0x20054a28 = 0; *(uint64_t*)0x20054a30 = 0; *(uint64_t*)0x20054a38 = 0; *(uint64_t*)0x20054a40 = 0; *(uint64_t*)0x20054a48 = 0; *(uint64_t*)0x20054a50 = 0; *(uint64_t*)0x20054a58 = 0; *(uint64_t*)0x20054a60 = 0; *(uint64_t*)0x20054a68 = 0; *(uint64_t*)0x20054a70 = 0; *(uint64_t*)0x20054a78 = 0; *(uint64_t*)0x20054a80 = 0; *(uint64_t*)0x20054a88 = 0; *(uint64_t*)0x20054a90 = 0; *(uint64_t*)0x20054a98 = 0; *(uint64_t*)0x20054aa0 = 0; *(uint64_t*)0x20054aa8 = 0; *(uint64_t*)0x20054ab0 = 0; *(uint64_t*)0x20054ab8 = 0; *(uint64_t*)0x20054ac0 = 0; *(uint64_t*)0x20054ac8 = 0; *(uint64_t*)0x20054ad0 = 0; *(uint64_t*)0x20054ad8 = 0; *(uint64_t*)0x20054ae0 = 0; *(uint64_t*)0x20054ae8 = 0; *(uint64_t*)0x20054af0 = 0; *(uint64_t*)0x20054af8 = 0; *(uint64_t*)0x20054b00 = 0; *(uint64_t*)0x20054b08 = 0; *(uint64_t*)0x20054b10 = 0; *(uint64_t*)0x20054b18 = 0; *(uint64_t*)0x20054b20 = 0; *(uint64_t*)0x20054b28 = 0; *(uint64_t*)0x20054b30 = 0; *(uint64_t*)0x20054b38 = 0; *(uint64_t*)0x20054b40 = 0; *(uint64_t*)0x20054b48 = 0; *(uint64_t*)0x20054b50 = 0; *(uint64_t*)0x20054b58 = 0; *(uint64_t*)0x20054b60 = 0; *(uint64_t*)0x20054b68 = 0; *(uint64_t*)0x20054b70 = 0; *(uint64_t*)0x20054b78 = 0; *(uint64_t*)0x20054b80 = 0; *(uint64_t*)0x20054b88 = 0; *(uint64_t*)0x20054b90 = 0; *(uint64_t*)0x20054b98 = 0; *(uint64_t*)0x20054ba0 = 0; *(uint64_t*)0x20054ba8 = 0; *(uint64_t*)0x20054bb0 = 0; *(uint8_t*)0x20054bb8 = 0; memcpy((void*)0x20054bb9, "\xce\x38\x3f\xe1\x63\x6d\xe1", 7); syscall(__NR_ioctl, -1, 0xd000943d, 0x20053bc0ul); break; case 14: memcpy((void*)0x20000180, "msdos\000", 6); memcpy((void*)0x20000100, ".\000", 2); memcpy( (void*)0x20003600, "\x14\x27\x0e\x2d\x25\xcc\xcf\xf0\x78\xb9\x14\x0e\x8a\x1e\x19\xf3\xbc" "\xc3\xbd\x09\x96\x8d\xd1\x91\x1a\xce\xf2\x43\x21\xd7\x64\xd9\xe1\x17" "\xda\x79\x06\x3a\x62\x4c\x2f\xf5\x80\xea\x5f\xa8\xef\xfb\xd5\x3a\xcf" "\xb0\xf8\x70\xbc\x1e\x49\xd0\x1a\x5b\x7f\xf5\x51\x50\xd2\xbf\x3b\x04" "\x28\x58\xc5\x32\x5c\x2b\x56\x9b\x32\x0c\xd4\x4e\x49\xe2\x46\xcc\x1e" "\x41\xf0\x4d\x2e\x49\x42\xdd\xed\x5a\xa4\x75\x0b\x7c\xf2\x6f\x85\x6b" "\xf2\x3c\xb3\x79\x53\x1e\xba\xe1\x77\x4a\xf8\xa4\x95\x09\x2c\x89\x04" "\x20\x5d\xb1\x90\x36\x68\x75\xaa\x90\xaf\xf0\xd1\x1b\xf4\x4f\x06\x4c" "\x23\x39\x0e\x88\x56\x2d\x04\x1e\x50\x53\x62\xf5\xbf\xb0\x66\x5c\x3f" "\xaf\xda\x90\x9f\x59\xad\x28\x6e\xe9\x4d\x2e\x26\xd2\x79\x21\xef\x7e" "\xb3\xf5\x20\x97\xbd\x87\xd5\xaa\x09\x8d\xc5\xb8\x1e\xe3\x4c\xbf\x59" "\xbf\xa7\x65\xc1\xc9\x6e\x7f\x9b\x57\xcb\x14\x43\xf3\xdc\xee\xa4\x4c" "\x96\x3e\x0c\x93\x47\x54\x5e\x4f\xf3\x53\xbf\x8b\x90\x23\xcf\x81\xd7" "\x86\x73\xa0\xf6\x36\x3e\x5c\xc2\xb0\xd5\x24\xd2\x09\x00\x8f\xc2\x8a" "\x67\x67\xae\x80\x4a\x71\x67\xba\xfd\xb1\xde\xc6\x7c\xac\x46\x56\x1c" "\x8f\x89\x17\x4c\xfb\x27\xd0\x2e\x60\x01\x3c\x53\x35\x97\x0a\x6c\x67" "\xe2\x9b\x7e\xae\x18\x0a\xb6\xca\xb2\xee\x6b\x39\xdd\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00", 296); sprintf((char*)0x20003728, "%020llu", (long long)-1); *(uint32_t*)0x2000373c = -1; *(uint64_t*)0x20003740 = -1; sprintf((char*)0x20003748, "%023llo", (long long)-1); sprintf((char*)0x2000375f, "%020llu", (long long)-1); memcpy( (void*)0x20003773, "\x6c\x62\x5a\xe8\x7e\xc6\xa2\xb7\x07\x38\xc0\xc2\x9e\xf3\xcb\x48\x7e" "\x1f\xd7\x90\x61\x1d\x1b\x8a\xff\x2a\xa4\x4f\xe4\xbd\xd1\x93\x3c\x0b" "\x35\x5e\xbb\x53\xe2\x75\xcc\xcb\xfc\x1e\x73\x1e\x25\x25\xb4\x0a\x8e" "\x2f\xc4\x96\x45\x61\x6f\x66\xaf\x80\xdf\x6d\xc5\xdf\x9a\xee\x17\x91" "\x74\xb1\x98\xd2\xae\xe6\x92\xc0\x7e\x98\x92\xb5\xe2\x1d\xa6\xd0\xb3" "\x23\xef\xd0\x61\xb7\x0b\x78\x39\x43\xaa\x92\xfc\xcf\x24\xbf\x92\x6e" "\x9c\x2d\x16\x14\x53\xae\xe6\x47\x57\xe6\xe2\xd2\x6d\xe0\x78\x8d\x19" "\xa4\xf0\x65\x47\x79\x7c\xfc\x14\x73\x95\x4c\x3d\x7e\xc3\xa4\x5f\x3b" "\x4e\x90\x86\x19\xa1\x0a\x2f\x92\xf4\x6e\x7e\x89\x93\xc3\x3e\xe8\x06" "\xe2\x94\x34\x48\x0b\x75\x57\xbe\xe7\x74\xc8\xf9\x2a\x75\x9a\x76\x78" "\x58\xe7\x03\xca\xb5\x86\x0b\xdd\x49\x44\x5d\x2e\x33\x73\x0a\xdb\x6a" "\x52\xe0\x78\x8a\xa2\x4b\x42\x67\xb4\x17\xd2\x58\x50\x22\xd6\x96\xdd" "\x4a\x70\xb3\x0a\xce\x66\xcb\xa3\x48\x6c\x8d\xf5\xcb\xf4\x37\xd2\xed" "\x22\x66\x55\x8f\xab\xf1\xa3\xf8\x83\x10\x32\xa9\x15\xa1\xeb\xc0\xa0" "\xc6\x4e\x6c\x8b\xb0\x3d\xcd", 245); sprintf((char*)0x20003868, "0x%016llx", (long long)-1); sprintf((char*)0x2000387a, "0x%016llx", (long long)-1); sprintf((char*)0x2000388c, "%023llo", (long long)-1); syz_mount_image(0x20000180, 0x20000100, 0x1a404ac, 0x20003600, 1, 0, 0x20000000); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_usb(); setup_802154(); use_temporary_dir(); do_sandbox_none(); return 0; }