// https://syzkaller.appspot.com/bug?id=8229b95c46a59cd18267cf2f832e1da7d1d30f4f // 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 #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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 int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } 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_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } 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 int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static struct nlmsg nlmsg; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } 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, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { 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); if (getppid() == 1) exit(1); 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); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_netdevices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:") || !write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 1; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x800000 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 31 33} (length 0xa) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 // 69 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x0 (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 36} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // resize_size: fs_opt["resize", fmt[hex, int32]] { // name: buffer: {72 65 73 69 7a 65} (length 0x6) // eq: const = 0x3d (1 bytes) // val: int32 = 0x87 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x11 (1 bytes) // size: len = 0x61e3 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61e3) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000040, "./bus\000", 6)); NONFAILING(memcpy((void*)0x2000000000c0, "noquota", 7)); NONFAILING(*(uint8_t*)0x2000000000c7 = 0x2c); NONFAILING(memcpy((void*)0x2000000000c8, "iocharset", 9)); NONFAILING(*(uint8_t*)0x2000000000d1 = 0x3d); NONFAILING(memcpy((void*)0x2000000000d2, "iso8859-13", 10)); NONFAILING(*(uint8_t*)0x2000000000dc = 0x2c); NONFAILING(memcpy((void*)0x2000000000dd, "errors=continue", 15)); NONFAILING(*(uint8_t*)0x2000000000ec = 0x2c); NONFAILING(memcpy((void*)0x2000000000ed, "integrity", 9)); NONFAILING(*(uint8_t*)0x2000000000f6 = 0x2c); NONFAILING(memcpy((void*)0x2000000000f7, "integrity", 9)); NONFAILING(*(uint8_t*)0x200000000100 = 0x2c); NONFAILING(memcpy((void*)0x200000000101, "nodiscard", 9)); NONFAILING(*(uint8_t*)0x20000000010a = 0x2c); NONFAILING(memcpy((void*)0x20000000010b, "nointegrity", 11)); NONFAILING(*(uint8_t*)0x200000000116 = 0); NONFAILING(memcpy((void*)0x200000000117, "grpquota", 8)); NONFAILING(*(uint8_t*)0x20000000011f = 0x2c); NONFAILING(memcpy((void*)0x200000000120, "grpquota", 8)); NONFAILING(*(uint8_t*)0x200000000128 = 0x2c); NONFAILING(memcpy((void*)0x200000000129, "errors=remount-ro", 17)); NONFAILING(*(uint8_t*)0x20000000013a = 0x2c); NONFAILING(memcpy((void*)0x20000000013b, "iocharset", 9)); NONFAILING(*(uint8_t*)0x200000000144 = 0x3d); NONFAILING(memcpy((void*)0x200000000145, "iso8859-6", 9)); NONFAILING(*(uint8_t*)0x20000000014e = 0x2c); NONFAILING(memcpy((void*)0x20000000014f, "resize", 6)); NONFAILING(*(uint8_t*)0x200000000155 = 0x3d); NONFAILING(sprintf((char*)0x200000000156, "0x%016llx", (long long)0x87)); NONFAILING(*(uint8_t*)0x200000000168 = 0x2c); NONFAILING(*(uint8_t*)0x200000000169 = 0); NONFAILING(memcpy( (void*)0x200000000200, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x67\xfd\x07\xf0\xcf\xfe\xf4\x8f\x7e\xdb" "\x5a\x3d\x54\xfd\x46\x15\x72\xd3\x42\x29\xa5\xf9\x59\x42\xa0\x40\xdb" "\x03\x20\x21\xa1\x1e\x50\xae\x28\x91\xeb\x56\x11\x29\xa0\x24\xa0\xb4" "\xb2\x88\x2b\x5f\x38\x70\xe2\x2f\x00\x21\x71\x44\x88\x23\xe2\xc0\x1f" "\xd0\x03\x57\x6e\x9c\x38\x11\xc9\x46\x02\xf5\xc4\xa0\xb1\x9f\x27\x19" "\x6f\x76\xb3\x0e\x89\x77\xd6\x7e\x5e\x2f\xc9\x99\xfd\xcc\x33\xe3\x7d" "\xc6\xef\x9d\xfd\x91\x99\xd9\x27\x00\x00\x00\x00\x00\x00\x00\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\xf8\xce\xb7\xbe\x77\xb6\x13\x11\x97\x7f\x9a" "\x66\xac\x44\xfc\x5f\xf4\x22\xba\x11\x4b\x75\xbd\x1a\x11\x4b\xab\x2b" "\x79\xf9\x7e\x44\x3c\x17\xbb\xcd\xf1\x6c\x44\x0c\x16\x22\xea\xf5\x77" "\xff\x79\x3a\xe2\xf5\x88\xf8\xe4\xa9\x88\xed\x9d\x8d\xb5\x7a\xf6\xb9" "\x03\xf6\xe3\x9b\xbf\xff\xeb\x6f\xbe\xff\xc4\x3b\x7f\xf9\xdd\xe0\xf4" "\xbf\xff\x70\xb3\xf7\xc6\xa4\xe5\x6e\xdd\xfa\xc5\xbf\xfe\x78\xfb\xd1" "\xb6\x19\x00\x00\x00\x4a\x53\x55\x55\xd5\x49\x1f\xf3\x4f\xa4\xcf\xf7" "\xdd\xb6\x3b\x05\x00\xcc\x44\x7e\xfd\xaf\x92\x3c\xff\xd8\xd7\xbf\xfc" "\xfb\x3b\x7f\x9a\xa7\xfe\xa8\xd5\x6a\xb5\x5a\x3d\x83\xba\xa9\x1a\xef" "\x76\xb3\x88\x88\xcd\xe6\x3a\xf5\x7b\x06\x87\xe3\x01\xe0\x88\xd9\x8c" "\x4f\xdb\xee\x02\x2d\x92\x7f\xd1\xfa\x11\xf1\x44\xdb\x9d\x00\xe6\x5a" "\xa7\xed\x0e\x70\x28\xb6\x77\x36\xd6\x3a\x29\xdf\x4e\xf3\xf5\x60\x75" "\xaf\x3d\x9f\x0b\xb2\x2f\xff\xcd\xce\xdd\xeb\x3b\x26\x4d\xa7\x19\x3d" "\xc7\x64\x56\x8f\xaf\xad\xe8\xc5\x33\x13\xfa\xb3\x34\xa3\x3e\xcc\x93" "\x9c\x7f\x77\x34\xff\xcb\x7b\xed\xc3\xb4\xdc\x61\xe7\x3f\x2b\x93\xf2" "\x1f\xee\x5d\xfa\x54\x9c\x9c\x7f\x6f\x34\xff\x11\xc7\x27\xff\xee\xd8" "\xfc\x4b\x95\xf3\xef\x3f\x54\xfe\x3d\xf9\x03\x00\x00\x00\x00\xc0\x1c" "\xcb\xff\xff\xbf\xd2\xf2\xf1\xdf\x85\xa9\x6b\xf4\x0f\xf2\x6b\xa7\x7a" "\xd0\xf1\xdf\xd5\xc7\x72\x0f\x00\x00\x00\x00\x00\x00\x00\x30\x7b\x8f" "\x3a\xfe\xdf\x5d\xc6\xff\x03\x00\x00\x80\xb9\x55\x7f\x56\xaf\xfd\xea" "\xa9\x7b\xf3\x26\x7d\x17\x5b\x3d\xff\x52\x27\xe2\xc9\x91\xe5\x81\xc2" "\xa4\x8b\x65\x96\xdb\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x94\xa4\xbf\x77\x0e\xef\xa5\x4e\xc4\x20\x22\x9e\x5c\x5e\xae\xaa\xaa" "\xfe\x69\x1a\xad\x1f\xd6\xa3\xae\x7f\xd4\x95\xbe\xfd\x50\xb2\xb6\x9f" "\xe4\x01\x00\x60\xcf\x27\x4f\x8d\x5c\xcb\xdf\x89\x58\x8c\x88\x4b\xe9" "\xbb\xfe\x06\xcb\xcb\xcb\x55\xb5\xb8\xb4\x5c\x2d\x57\x4b\x0b\xf9\xfd" "\xec\x70\x61\xb1\x5a\x6a\x7c\xae\xcd\xd3\x7a\xde\xc2\xf0\x00\x6f\x88" "\xfb\xc3\xaa\xfe\x65\x8b\x8d\xf5\x9a\xa6\x7d\x5e\x9e\xd6\x3e\xfa\xfb" "\xea\xfb\x1a\x56\xbd\x03\x74\xec\x31\x19\xa4\xbf\xe6\x84\xe6\x96\xc2" "\x06\x80\x64\xef\xd5\x68\xdb\x2b\xd2\x31\x53\x55\x4f\x4f\x7a\xf3\x01" "\xfb\xd8\xff\x8f\x1f\xfb\x3f\x07\xd1\xf6\xe3\x14\x00\x00\x00\x38\x7c" "\x55\x55\x55\x9d\xf4\x75\xde\x27\xd2\x31\xff\x6e\xdb\x9d\x02\x00\x66" "\x22\xbf\xfe\x8f\x1e\x17\x50\xab\xd5\x6a\xf5\x51\xae\x17\xe6\xac\x3f" "\xea\x79\xa9\x9b\xaa\xf1\x6e\x37\x8b\x88\xd8\x6c\xae\x53\xbf\x67\x30" "\x1c\x3f\x00\x1c\x31\x9b\xf1\x69\xdb\x5d\xa0\x45\xf2\x2f\x5a\x3f\x22" "\x9e\x6b\xbb\x13\xc0\x5c\xeb\xb4\xdd\x01\x0e\xc5\xf6\xce\xc6\x5a\x27" "\xe5\xdb\x69\xbe\x1e\xa4\xf1\xdd\xf3\xb9\x20\xfb\xf2\xdf\xec\xec\xae" "\x97\xd7\x1f\x37\x9d\x66\xf4\x1c\x93\x59\x3d\xbe\xb6\xa2\x17\xcf\x4c" "\xe8\xcf\xb3\x33\xea\xc3\x3c\xc9\xf9\x77\x47\xf3\xbf\xbc\xd7\x3e\x4c" "\xcb\x1d\x76\xfe\xb3\x32\x29\xff\x7a\x3b\x57\x5a\xe8\x4f\xdb\x72\xfe" "\xbd\xd1\xfc\x47\x1c\x9f\xfc\xbb\x63\xf3\x2f\x55\xce\xbf\xff\x50\xf9" "\xf7\xe4\x0f\x00\x00\x00\x00\x00\x73\x2c\xff\xff\xff\x8a\xe3\xbf\x79" "\x93\x01\x00\x00\x00\x00\x00\x00\xe0\xc8\xd9\xde\xd9\x58\xcb\xd7\xbd" "\xe6\xe3\xff\xcf\x8f\x59\xce\xf5\x9f\xc7\x53\xce\xbf\x23\xff\x22\xe5" "\xfc\xbb\x23\xf9\x7f\x7e\x64\xb9\x5e\xe3\xf6\x9d\xb7\xef\xe5\xff\xcf" "\x9d\x8d\xb5\xdf\xde\xfc\xc7\xff\xe7\xe9\x41\xf3\x5f\xc8\x37\x3a\xe9" "\x91\xd5\x49\x8f\x88\x4e\xba\xa7\x4e\x3f\x4d\x1f\x65\xeb\xee\xb7\x35" "\xe8\x0d\xeb\x7b\x1a\x74\xba\xbd\x7e\x3a\xe7\xa7\x1a\xbc\x17\x57\xe3" "\x5a\xac\xc7\x99\x7d\xcb\x76\xd3\xdf\xe3\x5e\xfb\xd9\x7d\xed\x75\x4f" "\x07\xfb\xda\xcf\xed\x6b\xef\xdf\xd7\x7e\x7e\x5f\xfb\x20\x7d\xef\x40" "\xb5\x94\xdb\x4f\xc5\x5a\xfc\x28\xae\xc5\xbb\xbb\xed\x75\xdb\xc2\x94" "\xed\x5f\x9c\xd2\x5e\x4d\x69\xcf\xf9\xf7\xec\xff\x45\xca\xf9\xf7\x1b" "\x3f\x75\xfe\xcb\xa9\xbd\x33\x32\xad\xdd\xf9\xb8\x7b\xdf\x7e\xdf\x9c" "\x8e\xbb\x9f\xb7\xae\x7e\xe6\xe7\x67\x0e\x7f\x73\xa6\xda\x8a\xde\xdd" "\x6d\x6b\xaa\xb7\xef\x64\x0b\xfd\xd9\xfd\x9b\x3c\x31\x8c\x9f\xdc\x58" "\xbf\x7e\xea\xd6\x95\x9b\x37\xaf\x9f\x8d\x34\xd9\x37\xf7\x5c\xa4\xc9" "\x63\x96\xf3\x1f\xec\xfe\x2c\xdc\x7b\xfe\x7f\x71\xaf\x3d\x3f\xef\x37" "\xf7\xd7\x3b\x1f\x0f\x1f\x3a\xff\x79\xb1\x15\xfd\x89\xf9\xbf\xd8\xb8" "\x5d\x6f\xef\x2b\x33\xee\x5b\x1b\x72\xfe\xc3\xf4\x93\xf3\x7f\x37\xb5" "\x8f\xdf\xff\x8f\x72\xfe\x93\xf7\xff\x57\x5b\xe8\x0f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x48\x55\x55\xbb\x97\x88\xbe\x15" "\x11\x17\xd2\xf5\x3f\x6d\x5d\x9b\x09\x00\xcc\x56\x7e\xfd\xaf\x92\x3c" "\x5f\x7d\xa8\xf5\x77\x9f\x7f\xf9\xdb\xbb\xb3\xe7\xa4\x3f\x6a\xb5\x5a" "\xad\x2e\xa4\x6e\xaa\xc6\x7b\xb3\x59\x44\xc4\x9f\x9b\xeb\xd4\xef\x19" "\x7e\x36\xee\x97\x01\x00\xf3\xec\x3f\x11\xf1\xb7\xb6\x3b\x41\x6b\xe4" "\x5f\xb0\xfc\x7d\x7f\xf5\xf4\xa5\xb6\x3b\x03\xcc\xd4\x8d\x0f\x3f\xfa" "\xc1\x95\x6b\xd7\xd6\xaf\xdf\x68\xbb\x27\x00\x00\x00\x00\x00\x00\x00" "\xc0\xff\x2a\x8f\xff\xb9\xda\x18\xff\xf9\xa5\x88\x58\x19\x59\x6e\xdf" "\xf8\xaf\x6f\xc7\xea\xa3\x8e\xff\xd9\xcf\x37\xee\x0e\x30\xfa\x98\x07" "\xfa\x9e\x60\xab\x3b\xec\x75\x1b\xc3\x8d\xbf\x10\xbb\xe3\x73\x9f\x9a" "\x34\xfe\xf7\xc9\x78\xf0\xf8\xdf\xfd\x29\xf7\x37\x98\xd2\x3e\x9c\xd2" "\xbe\x30\xa5\x7d\x71\x4a\xfb\xd8\x0b\x3d\x1a\x72\xfe\x2f\x34\xc6\x3b" "\xaf\xf3\x3f\x31\x32\xfc\x7a\x09\xe3\xbf\x8e\x8e\x79\x5f\x82\x9c\xff" "\xc9\xc6\xe3\xb9\xce\xff\xe5\x91\xe5\x9a\xf9\x57\xbf\x9e\xbb\xfc\x37" "\x0f\xba\xe0\x56\x74\xf7\xe5\x7f\xfa\xe6\x07\x3f\x3e\x7d\xe3\xc3\x8f" "\x5e\xbb\xfa\xc1\x95\xf7\xd7\xdf\x5f\xff\xe1\xf9\xb3\x67\xcf\x9c\xbf" "\x70\xe1\xe2\xc5\x8b\xa7\xdf\xbb\x7a\x6d\xfd\xcc\xde\xbf\x87\xd3\xeb" "\x39\x90\xf3\xcf\x63\x5f\x3b\x0f\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92" "\xf3\xff\x6c\xaa\xe5\x5f\x96\x9c\xff\xe7\x52\x2d\xff\xb2\xe4\xfc\xf3" "\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\x57\x52\x2d" "\xff\xb2\xe4\xfc\xbf\x90\x6a\xf9\x97\x25\xe7\xff\x6a\xaa\xe5\x5f\x96" "\x9c\xff\x17\x53\x2d\xff\xb2\xe4\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\x3f" "\x95\x6a\xf9\x97\x65\x7b\x67\x63\xf7\x10\xe4\xe9\x54\x1f\x20\x7f\x5f" "\x0f\x7f\x8c\xe4\xfd\x3f\x1f\xe1\xb2\xff\x97\x25\xe7\x9f\xcf\x6c\x90" "\x7f\x59\x72\xfe\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9" "\xf9\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\xa5\x54\xcb\xbf\x2c\x39\xff\x0b" "\xa9\x96\x7f\x59\x72\xfe\x5f\x4e\xb5\xfc\xcb\x92\xf3\xbf\x98\x6a\xf9" "\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe\x65\xc9" "\xf9\xbf\x91\x6a\xf9\x97\x25\xe7\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf" "\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\xcd\x54\xcb" "\xbf\x2c\xf7\xbe\xff\xdf\x0d\x37\xdc\x70\x23\xdf\x68\xfb\x99\x09\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x35\x8b\xd3\x89\xdb\xde\x46" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xbf\xec" "\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00\x00" "\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x0a\x7b\xf7\x1a\x23\xd7\x59\xdf\x0f\xfc\xcc\x7a\x77" "\xbd\x76\x02\x31\x10\xf2\x77\xf2\x37\xb0\x49\x4c\x08\xc9\x92\x5d\xdb" "\x89\x2f\xb4\x29\x26\x5c\x1b\x6e\x05\x12\x0a\xbd\xe0\xb8\xde\xb5\x59" "\xf0\x0d\xaf\x5d\x02\x45\xb2\x69\xa0\x44\xc2\xa8\xa8\xa2\x6a\x2a\xf5" "\x02\x08\xb5\x79\x53\x11\x55\xbc\x80\x8a\xa2\xbc\xa8\x7a\x79\x55\xda" "\x17\xf4\x4d\x45\x55\x09\xa9\x51\x15\x50\x40\x42\xea\x95\xad\xe6\x9c" "\xe7\x79\x76\x66\x76\x76\x66\x9c\x1d\xaf\x67\xcf\xf3\xf9\x48\xf6\x6f" "\x67\xe6\xcc\x9c\x67\xce\x3c\xe7\xcc\xfc\xd6\xfe\xce\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd5\xad\x6f\x58" "\xf8\x6c\xa3\x28\x8a\xe6\x9f\xf2\xaf\x1d\x45\x71\x7d\xf3\xe7\x6d\xd3" "\x3b\xca\xeb\x5e\x7b\xad\x47\x08\x00\x00\x00\xac\xd7\xff\x96\x7f\x3f" "\x77\x43\xba\xe2\xf0\x00\x77\x6a\x59\xe6\x6f\x5e\xfe\xf7\x5f\x5f\x5e" "\x5e\x5e\x2e\xde\xbf\xe5\x77\x27\xbe\xb8\xbc\x9c\x6e\x98\x2e\x8a\x89" "\xad\x45\x51\xde\x16\x3d\xf5\xaf\x1f\x68\xb4\x2e\x13\x3c\x56\x4c\x35" "\xc6\x5a\x2e\x8f\xf5\x59\xfd\x96\x3e\xb7\x8f\xf7\xb9\x7d\xa2\xcf\xed" "\x93\x7d\x6e\xdf\xda\xe7\xf6\xa9\x3e\xb7\xaf\xda\x00\xab\x6c\xab\x7e" "\x1f\x53\x3e\xd8\xee\xf2\xc7\x1d\xd5\x26\x2d\x6e\x2c\x26\xca\xdb\x76" "\x77\xb9\xd7\x63\x8d\xad\x63\x63\xf1\x77\x39\xa5\x46\x79\x9f\xe5\x89" "\xe3\xc5\x62\x71\xb2\x58\x28\xe6\xda\x96\xaf\x96\x6d\x94\xcb\x7f\xeb" "\xd6\xe6\xba\xde\x5a\xc4\x75\x8d\xb5\xac\x6b\x57\x73\x86\xfc\xe8\x93" "\xc7\xe2\x18\x1a\x61\x1b\xef\x6e\x5b\xd7\xca\x63\x46\x3f\x78\x7d\x31" "\xfd\xe3\x1f\x7d\xf2\xd8\x9f\x9c\x7f\xf6\xe6\x6e\xb5\xef\x66\x68\x7b" "\xbc\x6a\x9c\x77\xde\xd6\x1c\xe7\xa7\xc3\x35\xd5\x58\x1b\xc5\xd6\xb4" "\x4d\xe2\x38\xc7\x5a\xc6\xb9\xab\xcb\x6b\xb2\xa5\x6d\x9c\x8d\xf2\x7e" "\xcd\x9f\x3b\xc7\xf9\xdc\x80\xe3\xdc\xb2\x32\xcc\x0d\xd5\xf9\x9a\x4f" "\x15\x63\xe5\xcf\xdf\x29\xb7\xd3\x78\xeb\xaf\xf5\xd2\x76\xda\x15\xae" "\xfb\x8f\xdb\x8b\xa2\xb8\xb4\x32\xec\xce\x65\x56\xad\xab\x18\x2b\xb6" "\xb7\x5d\x33\xb6\xf2\xfa\x4c\x55\x33\xb2\xf9\x18\xcd\xa9\xf4\xe2\x62" "\xfc\x8a\xe6\xe9\xad\x03\xcc\xd3\x66\x9d\xdf\xdd\x3e\x4f\x3b\xf7\x89" "\xf8\xfa\xdf\x1a\xee\x37\xbe\xc6\x18\x5a\x5f\xa6\x1f\x7c\x6a\x72\xd5" "\xeb\x7e\xa5\xf3\x34\x6a\x3e\xeb\xb5\xf6\x95\xce\x39\x38\xec\x7d\x65" "\x54\xe6\x60\x9c\x17\xdf\x29\x9f\xf4\xe3\x5d\xe7\xe0\xee\xf0\xfc\x3f" "\x79\xc7\xda\x73\xb0\xeb\xdc\xe9\x32\x07\xd3\xf3\x6e\x99\x83\xb7\xf5" "\x9b\x83\x63\x93\x5b\xca\x31\xa7\x17\xa1\x51\xde\x67\x65\x0e\xee\x69" "\x5b\x7e\x4b\xb9\xa6\x46\x59\x9f\xb9\xa3\xf7\x1c\x9c\x3d\x7f\xea\xec" "\xec\xd2\xc7\x3f\xf1\x9a\xc5\x53\x47\x4f\x2c\x9c\x58\x38\xbd\x6f\xcf" "\x9e\xb9\x7d\xfb\xf7\x1f\x3c\x78\x70\xf6\xf8\xe2\xc9\x85\xb9\xea\xef" "\xe7\xb9\xb5\x47\xdf\xf6\x62\x2c\xed\x03\xb7\x85\x6d\x17\xf7\x81\x57" "\x75\x2c\xdb\x3a\x55\x97\xbf\x3c\xbc\xfd\x70\xaa\xc7\x7e\xb8\xa3\x63" "\xd9\x61\xef\x87\xe3\x9d\x4f\xae\xb1\x31\x3b\xe4\xea\x39\x5d\xed\x1b" "\x0f\x35\x37\xfa\xd4\xe5\xb1\x62\x8d\x7d\xac\x7c\x7d\xee\x5a\xff\x7e" "\x98\x9e\x77\xcb\x7e\x38\xde\xb2\x1f\x76\x7d\x4f\xe9\xb2\x1f\x8e\x0f" "\xb0\x1f\x36\x97\x39\x7b\xd7\x60\x9f\x59\xc6\x5b\xfe\x74\x1b\xc3\xd5" "\x7a\x2f\xd8\xd1\x32\x07\x3b\x3f\x8f\x74\xce\xc1\x61\x7f\x1e\x19\x95" "\x39\x38\x15\xe6\xc5\x3f\xdf\xb5\xf6\x7b\xc1\xae\x30\xde\xc7\x67\xae" "\xf4\xf3\xc8\x96\x55\x73\x30\x3d\xdd\x70\xec\x69\x5e\x93\x3e\xef\x4f" "\x1d\x2c\x4b\xb7\x79\x79\x4b\xf3\x86\xeb\x26\x8b\x0b\x4b\x0b\xe7\xee" "\x79\xf4\xe8\xf9\xf3\xe7\xf6\x14\xa1\x6c\x88\x97\xb4\xcc\x95\xce\xf9" "\xba\xbd\xe5\x39\x15\xab\xe6\xeb\xd8\x15\xcf\xd7\xc3\x8b\x2f\x7f\xfc" "\x96\x2e\xd7\xef\x08\xdb\x6a\xea\x35\xcd\xbf\xa6\xd6\x7c\xad\x9a\xcb" "\xdc\x7b\x4f\xef\xd7\xaa\x7c\x77\xeb\xbe\x3d\xdb\xae\xdd\x5b\x84\x32" "\x14\xe3\x1b\xb4\x3d\x27\x56\x6d\xcf\x6e\xef\xe6\xcd\xed\x99\x7a\xc9" "\x1e\xdb\xb3\xb9\xcc\xa7\x67\xd7\xff\x59\x3c\xf5\xa5\x2d\xc7\xdf\x89" "\x35\x8e\xbf\xb1\xef\xff\x69\xb5\xbe\xf4\x50\x8f\x6d\x99\x18\xaf\xf6" "\xdf\x2d\x69\xeb\x4c\xb4\x1d\x8f\xf7\xae\xda\xe2\x5b\xca\x91\x16\xc5" "\x73\xb3\x83\x1d\x8f\x27\xc2\x9f\x8d\x3e\x1e\xdf\xd8\xe3\x78\xbc\xb3" "\x63\xd9\x61\x1f\x8f\x27\x3a\x9f\x5c\x3c\x1e\x37\xfa\xfd\xb6\x63\x7d" "\x3a\x5f\xcf\xa9\x30\x4f\x4e\xce\xf5\x3e\x1e\x37\x97\xd9\xb9\xf7\x4a" "\xe7\xe4\x78\xcf\xe3\xf1\xed\xa1\x36\xc2\xf6\x7f\x75\xe8\x14\x52\x5f" "\xd4\x32\x77\xd6\x9a\xb7\x69\x5d\xe3\xe3\x13\xe1\x79\x8d\xc7\x35\xb4" "\xcf\xd3\x7d\x6d\xcb\x4f\x84\xde\xac\xb9\xae\x27\xf7\x3e\xbf\x79\x7a" "\xe7\xed\xd5\x63\x6d\x49\xcf\x6e\xc5\x46\xcd\xd3\xe9\x8e\x65\x87\x3d" "\x4f\xd3\xf1\x6a\xad\x79\xda\xe8\xf7\xdb\xb7\xe7\xa7\xf3\xf5\x9c\x0a" "\xf3\xe2\xc6\x7d\xbd\xe7\x69\x73\x99\xa7\xef\x5d\xff\xb1\x73\x5b\xfc" "\xb1\xe5\xd8\x39\xd9\x6f\x0e\x4e\x6c\x99\x6c\x8e\x79\x22\x4d\xc2\xea" "\x78\xbf\xbc\x2d\xce\xc1\x7b\x8a\x63\xc5\x99\xe2\x64\x31\x5f\xde\x3a" "\x59\xce\xa7\x46\xb9\xae\x99\xfb\x06\x9b\x83\x93\xe1\xcf\x46\x1f\x2b" "\x77\xf6\x98\x83\x77\x76\x2c\x3b\xec\x39\x98\xde\xc7\xd6\x9a\x7b\x8d" "\xf1\xd5\x4f\x7e\x08\x3a\x5f\xcf\xa9\x30\x2f\x9e\xb8\xaf\xf7\x1c\x6c" "\x2e\xf3\xc6\x03\xc3\xfd\xec\x7a\x67\xb8\x26\x2d\xd3\xf2\xd9\xb5\xf3" "\xf7\x6b\x6b\xfd\xce\xeb\x96\x8e\xcd\x74\x35\x7f\xe7\xd5\x1c\xe7\x5f" "\x1d\xe8\xfd\xbb\xd9\xe6\x32\x27\x0f\x5e\x69\x9f\xd9\x7b\x3b\xdd\x1d" "\xae\xb9\xae\xcb\x76\xea\xdc\x7f\xe3\x76\xba\xd4\xb1\x4f\xcd\x17\x1b" "\xb3\x9d\x76\x86\x71\x3e\x7b\x70\xed\xed\xd4\x1c\x4f\x73\x99\x2f\x1e" "\x1a\x70\x3e\x1d\x2e\x8a\xe2\xe2\x47\x1f\x28\x7f\xdf\x1b\xfe\x7d\xe5" "\xcf\x2f\x7c\xf7\xeb\x6d\xff\xee\xd2\xed\xdf\x74\x2e\x7e\xf4\x81\x1f" "\xbe\xe0\xf8\x5f\x5f\xc9\xf8\x01\xd8\xfc\x7e\x5a\x95\xed\xd5\x7b\x5d" "\xcb\xbf\x4c\x0d\xf2\xef\xff\x00\x00\x00\xc0\xa6\x10\xfb\xfe\xb1\x50" "\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xe3\xff\x0a\x4f\xf4\xff\x00" "\x00\x00\x30\xf2\xde\xd9\xef\xcb\xeb\x82\xd8\xf7\x8f\x87\x9a\x64\xd2" "\xff\xef\x7c\xe3\xb3\x8b\x3f\xbd\x58\xa4\x64\xfe\x72\x10\x6f\x4f\x9b" "\xe1\xc1\x6a\xb9\x98\x71\x9d\x0b\x97\xa7\x97\x57\x34\xaf\x7f\xe0\xab" "\x0b\x3f\xf9\x8b\x8b\x83\xad\x7b\xac\x28\x8a\xff\x79\xf0\x37\xba\x2e" "\xbf\xf3\xc1\x38\xae\xca\x74\x18\xe7\x53\x6f\x6a\xbf\x7e\xf5\x1d\x2f" "\x0e\xb4\xfe\x47\x1e\x5e\x59\xae\x35\xbf\xfe\xa5\xf0\xf8\xf1\xf9\x0c" "\x3a\x0d\xba\x45\x70\xe7\x8a\xa2\xf8\xd6\x0d\x9f\x2f\xd7\x33\xfd\x81" "\xcb\x65\x7d\xfa\xc1\x47\xca\xfa\x9e\x4b\x8f\x3f\xd6\x5c\xe6\xb9\x43" "\xd5\xe5\x78\xff\x67\x5e\x52\x2d\xff\x87\x21\xfc\x7b\xf8\xf8\xd1\xb6" "\xfb\x3f\x13\xb6\xc3\xf7\x43\x9d\x7b\x5b\xf7\xed\x11\xef\xf7\xb5\xcb" "\xaf\xde\x75\xe0\x7d\x2b\xeb\x8b\xf7\x6b\xdc\xf6\xc2\xf2\x69\x3f\xf1" "\xc1\xea\x71\xe3\x37\x86\x7c\xe1\xb1\x6a\xf9\xb8\x9d\xd7\x1a\xff\x5f" "\x7e\xee\xc9\xaf\x35\x97\x7f\xf4\x95\xdd\xc7\x7f\x71\xac\xfb\xf8\x9f" "\x0c\x8f\xfb\xd5\x50\xff\xf3\x65\xd5\xf2\xad\xaf\x41\xf3\x72\xbc\xdf" "\x67\xc2\xf8\xe3\xfa\xe2\xfd\xee\xf9\xca\xb7\xbb\x8e\xff\xa9\xcf\x56" "\xcb\x9f\x7d\x73\xb5\xdc\x23\xa1\xc6\xf5\xdf\x19\x2e\xef\x7e\xf3\xb3" "\x8b\xad\xdb\xeb\xd1\xc6\xd1\xb6\xe7\x55\xbc\xa5\x5a\x2e\xae\x7f\xee" "\xbb\xbf\x5d\xde\x1e\x1f\x2f\x3e\x7e\xe7\xf8\xa7\x8e\x5c\x6e\xdb\x1e" "\x9d\xf3\xe3\xe9\x7f\xac\x1e\x67\xb6\x63\xf9\x78\x7d\x5c\x4f\xf4\xcd" "\x8e\xf5\x37\x1f\xa7\x75\x7e\xc6\xf5\x3f\xf9\x5b\x8f\xb4\x6d\xe7\x7e" "\xeb\x7f\xea\x3d\xcf\xbc\xac\xf9\xb8\x9d\xeb\xbf\xbb\x63\xb9\xb3\x1f" "\xbd\xab\x5c\xff\xca\xe3\xb5\x7f\x63\xd3\x1f\x7d\xe6\xf3\x5d\xd7\x17" "\xc7\x73\xf8\xcf\xce\xb6\x3d\x9f\xc3\xef\x0e\xfb\x71\x58\xff\x13\x1f" "\x0c\xf3\x31\xdc\xfe\x5f\x4f\x55\x8f\xd7\xf9\xed\x0a\x8f\xbc\xbb\xfd" "\xf8\x13\x97\xff\xd2\x8e\x8b\x6d\xcf\x27\x7a\xeb\x8f\xab\xf5\x3f\xf5" "\xba\x13\x65\xfd\xb7\xe9\x9f\xfc\xfe\x75\xd7\xbf\xe0\x85\x97\x5e\xd1" "\xdc\x76\x45\xf1\x9d\xf7\x56\x8f\xd7\x6f\xfd\x27\xfe\xf8\x4c\xdb\xf8" "\xbf\x7c\x53\xb5\x3d\xe2\xed\x31\xa3\x9f\xd6\xdf\xe7\x4b\x4d\xe3\xfa" "\xcf\x7d\x6c\xe6\xf4\x99\xa5\x0b\x8b\xf3\x2d\x5b\xb5\xfc\xee\x9c\xb7" "\x57\xe3\xd9\x3a\xb5\x6d\x7b\x73\xbc\x37\x84\x63\x6b\xe7\xe5\x23\x67" "\xce\x7f\x68\xe1\xdc\xf4\xdc\xf4\x5c\x51\x4c\xd7\xf7\x2b\xf4\x9e\xb7" "\xaf\x84\xfa\xc3\xaa\x5c\xba\xd2\xfb\xdf\xf5\x70\x78\x3d\x6f\xf9\xbd" "\x6f\x6d\xbf\xe3\x1f\x3e\x17\xaf\xff\xa7\x87\xaa\xeb\x2f\xbf\xad\x7a" "\xdf\x7a\x55\x58\xee\x0b\xe1\xfa\x1d\xd5\xeb\xb7\xdc\x58\xe7\xfa\x9f" "\xb8\xf5\xa6\x72\x26\x35\x9e\xae\x2e\xb7\xe5\xd8\x87\x60\xd7\xee\x7f" "\x3f\x38\xd0\x82\xe1\xf9\x77\x7e\x2e\x88\xf3\xfd\xec\x4b\x3f\x54\x6e" "\x87\xe6\x6d\xe5\xfb\x46\xdc\xaf\xd7\x39\xfe\xef\xcd\x57\x8f\xf3\x8d" "\xb0\x5d\x97\xc3\x37\x33\xdf\x76\xd3\xca\xfa\x5a\x97\x8f\xdf\x8d\x70" "\xf9\xbd\xd5\xfe\xbe\xee\xed\x17\x0e\x73\xf1\x75\xfd\xd3\xf0\x7a\xbf" "\xe3\xfb\xd5\xe3\xc7\x71\xc5\xe7\xfb\xbd\xf0\x39\xe6\xdb\x3b\xdb\x8f" "\x77\x71\x7e\x7c\xe3\xe2\x58\xe7\xe3\x97\xdf\xe2\x71\x29\x1c\x4f\x8a" "\x4b\xd5\xed\x71\xa9\xb8\xbd\x2f\x3f\x77\x53\xd7\xe1\xc5\xef\x21\x29" "\x2e\xdd\x5c\x5e\xfe\x9d\xf4\x38\x37\x5f\xd1\xd3\x5c\xcb\xd2\xc7\x97" "\x66\x4f\x2e\x9e\xbe\xf0\xe8\xec\xf9\x85\xa5\xf3\xb3\x4b\x1f\xff\xc4" "\x91\x53\x67\x2e\x9c\x3e\x7f\xa4\xfc\x2e\xcf\x23\x1f\xee\x77\xff\x95" "\xe3\xd3\xf6\xf2\xf8\x34\xbf\xb0\xff\xde\x62\x6e\x5b\x51\x14\x67\x8a" "\xb9\x0d\x38\x60\x5d\x9d\xf1\x37\x7f\x1a\x6c\xfc\x67\x1f\x3e\x36\x7f" "\x60\xee\x8e\xf9\x85\xe3\x47\x2f\x1c\x3f\xff\xf0\xd9\x85\x73\x27\x8e" "\x2d\x2d\x1d\x5b\x98\x5f\xba\xe3\xe8\xf1\xe3\x0b\x1f\xeb\x77\xff\xc5" "\xf9\xfb\xf7\xec\x3d\xb4\xef\xc0\xde\x99\x13\x8b\xf3\xf7\x1f\x3c\x74" "\x68\xdf\xa1\x99\xc5\xd3\x67\x9a\xc3\xa8\x06\xd5\xc7\xfe\xb9\x8f\xcc" "\x9c\x3e\x77\xa4\xbc\xcb\xd2\xfd\xf7\x1e\xda\x73\xdf\x7d\xf7\xce\xcd" "\x9c\x3a\x33\xbf\x70\xff\x81\xb9\xb9\x99\x0b\xfd\xee\x5f\xbe\x37\xcd" "\x34\xef\xfd\xeb\x33\xe7\x16\x4e\x1e\x3d\xbf\x78\x6a\x61\x66\x69\xf1" "\x13\x0b\xf7\xef\x39\xb4\x7f\xff\xde\xbe\xdf\x06\x78\xea\xec\xf1\xa5" "\xe9\xd9\x73\x17\x4e\xcf\x5e\x58\x5a\x38\x37\x5b\x3d\x97\xe9\xf3\xe5" "\xd5\xcd\xf7\xbe\x7e\xf7\xa7\x9e\x96\xfe\xa5\xfa\x3c\xdb\xa9\x51\x7d" "\x11\x5f\xf1\xae\xbb\xf7\xa7\xef\x67\x6d\xfa\xea\xa7\xd6\x7c\xa8\x6a" "\x91\x8e\x2f\x10\x7d\x36\x7c\x17\xcd\xdf\xbd\xe8\xec\xc1\x41\x2e\xc7" "\xbe\x7f\x22\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\xc9\x50" "\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xb7\x86\x9a\xe8\xff\x01\x00" "\x00\xa0\x36\x62\xdf\x3f\x15\x6a\x92\x49\xff\x2f\xff\x2f\xff\x2f\xff" "\x2f\xff\x5f\xf7\xfc\x7f\xcc\xcf\x5f\xf5\xfc\x7f\x1f\xf2\xff\x1b\xe3" "\x1a\xe7\xff\xd7\xbd\x7e\xf9\x7f\xf9\xff\xfa\xe5\xff\x07\xcf\xcf\x6f" "\xf6\xf1\xcb\xff\xcb\xff\xb3\xda\xa8\xe5\xff\x63\xdf\xbf\xad\x28\xb2" "\xec\xff\x01\x00\x00\x20\x07\xb1\xef\xdf\x1e\x6a\xa2\xff\x07\x00\x00" "\x80\xda\x88\x7d\xff\x75\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7" "\x5f\x1f\x6a\x92\x49\xff\x2f\xff\x3f\x50\xfe\x7f\x6f\xbf\xc0\x95\xfc" "\x7f\xfb\xf8\xe5\xff\xbb\xcf\x0f\xf9\xff\x6b\x90\xff\x8f\x2f\x8e\xfc" "\x7f\x36\xae\x38\x7f\xff\xbe\x87\xda\x2e\xca\xff\x07\xa3\x99\xff\x9f" "\x94\xff\x97\xff\x1f\xe5\xf1\xcb\xff\xcb\xff\xd3\x69\x62\xcd\x5b\xae" "\x55\xfe\x3f\xf6\xfd\x2f\x08\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4" "\xbe\xff\x85\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xdf\x10\x6a" "\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\x8e\x50\x93\x4c\xfa\x7f\xf9" "\x7f\xe7\xff\x97\xff\x97\xff\xef\x95\xff\xff\xe6\xd6\xd6\x47\xda\x84" "\xf9\xff\xf5\x9e\xff\xbf\x65\x30\xf2\xff\x9b\x83\xf3\xff\xf7\xb6\xc9" "\xf3\xff\x23\x7c\xfe\xff\x29\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xba\x18" "\xb5\xf3\xff\xc7\xbe\xff\x45\xa1\x26\x99\xf4\xff\x00\x00\x00\x90\x83" "\xd8\xf7\xbf\x38\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x97\x84" "\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\x7f\x63\xa8\x49\x26\xfd\xbf" "\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xff\xc6\x9d\xff\x7f\xbc\xd8\x74\xf9\x7f" "\xe7\xff\xdf\x74\xe4\xff\x7b\x93\xff\xef\xa3\x25\xff\xdf\x5c\xb7\xf3" "\xff\xcb\xff\xcb\xff\xaf\x95\xff\x9f\x78\x53\xe7\xfd\xe5\xff\xe9\x66" "\xd4\xf2\xff\xb1\xef\x7f\x69\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20" "\xf6\xfd\x37\x85\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\xff\xff\x42" "\x4d\xf4\xff\x00\x00\x00\x50\x1b\xb1\xef\xdf\x19\x6a\x92\x49\xff\x2f" "\xff\x2f\xff\x2f\xff\x2f\xff\xbf\x71\xf9\xff\x4d\x78\xfe\x7f\xf9\xff" "\x4d\x47\xfe\xbf\x37\xf9\xff\x3e\x9e\xf7\xf9\xff\xe5\xff\x0b\xf9\xff" "\xbc\xf2\xff\x5d\x3e\xfc\xca\xff\xd3\xcd\xa8\xe5\xff\x63\xdf\x7f\x73" "\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\xb7\x84\x9a\xe8\xff" "\x01\x00\x00\xa0\x36\x62\xdf\xff\xff\x43\x4d\xf4\xff\x00\x00\x00\x50" "\x1b\xb1\xef\xdf\x15\x6a\x92\x49\xff\x2f\xff\x2f\xff\x2f\xff\x9f\x57" "\xfe\xff\xee\x49\xf9\x7f\xf9\xff\x7a\x93\xff\xef\x4d\xfe\xbf\x0f\xf9" "\x7f\xf9\x7f\xf9\xff\x01\xcf\xff\xbf\x9a\xfc\x3f\xdd\x8c\x5a\xfe\x3f" "\xf6\xfd\x2f\x0b\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4\xbe\xff\xe5" "\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xbf\x22\xd4\x44\xff\x0f" "\x00\x00\x00\xb5\x11\xfb\xfe\xe9\x50\x93\x4c\xfa\xff\xac\xf2\xff\xff" "\xbd\x32\x50\xf9\x7f\xf9\xff\xd6\xed\x95\x53\xfe\xbf\xc6\xe7\xff\x8f" "\xd3\x40\xfe\x3f\x6b\x2b\x47\x13\xf9\xff\xee\x46\x27\xff\xdf\xb9\xa7" "\x57\xe4\xff\xe5\xff\x37\xf3\xf8\xe5\xff\xe5\xff\x59\x6d\xd4\xf2\xff" "\xb1\xef\xbf\x35\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\xdb" "\x42\x4d\xf4\xff\x00\x00\x00\x50\x1b\xb1\xef\xbf\x3d\xd4\x44\xff\x0f" "\x00\x00\x00\xb5\x11\xfb\xfe\xdd\xa1\x26\x99\xf4\xff\x59\xe5\xff\x5b" "\xc8\xff\xcb\xff\xb7\x6e\x2f\xf9\xff\x5a\xe4\xff\x13\xf9\xff\xbc\x39" "\xff\x7f\x17\x2d\x3b\xe9\xe8\xe4\xff\xbb\xcb\x28\xff\xbf\xad\xbc\x2c" "\xff\x3f\x54\xd7\x7a\xfc\xf5\xc8\xff\xc7\x4f\xbf\xf2\xff\xf4\x75\x7c" "\x90\x85\x46\x2d\xff\x1f\xfb\xfe\x57\x86\x9a\x64\xd2\xff\x03\x00\x00" "\x40\x0e\x62\xdf\x7f\x47\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd" "\xaf\x0a\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff\xce\x50\x93\x4c" "\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xee\xeb\xdf\xb0\xfc" "\xff\x44\xf8\x41\xfe\x7f\x28\xe4\xff\x7b\x93\xff\xef\xc3\xf9\xff\xe5" "\xff\xb3\xcf\xff\x3b\xff\x3f\xc3\x35\x6a\xf9\xff\xd8\xf7\xbf\x3a\xd4" "\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\xbb\x42\x4d\xf4\xff\x00" "\x00\x00\x50\x1b\xf1\xff\x6f\x56\xff\xef\x55\xff\x0f\x00\x00\x00\x75" "\x14\xfb\xfe\x99\x50\x93\x4c\xfa\x7f\xf9\x7f\xf9\xff\x9c\xf2\xff\x0d" "\xf9\x7f\xf9\xff\x51\xcc\xff\x3b\xff\xff\x50\xc9\xff\xf7\x26\xff\xdf" "\x87\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x43\x35\x6a\xf9\xff\xd8\xf7\xbf" "\x26\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x7b\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x1b\xb1\xef\x9f\x0d\x35\xd1\xff\x03\x00\x00\x40" "\x6d\xc4\xbe\x7f\x2e\xd4\x24\x93\xfe\x5f\xfe\x5f\xfe\x3f\xa7\xfc\xbf" "\xf3\xff\xcb\xff\xcb\xff\xd7\x9f\xfc\x7f\x6f\xf2\xff\x7d\xc8\xff\xcb" "\xff\xd7\x2d\xff\x5f\x14\xf2\xff\x5c\x53\xa3\x96\xff\x8f\x7d\xff\x9e" "\x50\x93\x4c\xfa\x7f\x00\x00\x00\xa8\x85\x1d\xbd\x6f\x8e\x7d\xff\xde" "\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xf7\x85\x9a\xe8\xff\x01" "\x00\x00\xa0\x36\x62\xdf\x7f\x6f\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc\xff" "\x90\xf3\xff\x7f\x20\xff\x2f\xff\x2f\xff\xdf\x9d\xfc\xff\xc6\x90\xff" "\xef\x4d\xfe\xbf\x0f\xf9\x7f\xf9\xff\xd1\xca\xff\xc7\x8f\x38\xce\xff" "\xcf\xa6\x35\x6a\xf9\xff\xd8\xf7\xdf\x17\x6a\x92\x49\xff\x0f\x00\x00" "\x00\x39\x88\x7d\xff\xfe\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb" "\x0f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\x7f\x30\xd4\x24\x93" "\xfe\x5f\xfe\xbf\x26\xf9\xff\xdf\xfc\xdb\xb6\x75\x3b\xff\xbf\xfc\x7f" "\xaf\xf5\x0f\x27\xff\xbf\x4d\xfe\x3f\x54\xf9\xff\xd1\x22\xff\xdf\x9b" "\xfc\x7f\x1f\xf2\xff\xf2\xff\xa3\x95\xff\x5f\xff\xf9\xff\xe5\xff\xb9" "\xc6\x46\x2d\xff\x1f\xfb\xfe\x43\xa1\x26\x99\xf4\xff\x00\x00\x00\x90" "\x83\xd8\xf7\xbf\x36\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x9f" "\x09\x35\xd1\xff\x03\x00\x00\x40\x6d\x94\x7d\xff\xc4\x54\xf1\xb3\xe5" "\xa5\xfc\xfa\x7f\xf9\xff\x9a\xe4\xff\x3b\xc8\xff\xcb\xff\xf7\x5a\xbf" "\xf3\xff\xcb\xff\xd7\x99\xfc\x7f\x6f\xeb\xcf\xff\xc7\x08\xb3\xfc\xbf" "\xfc\xff\x6a\xf2\xff\xf2\xff\xf2\xff\x74\xba\xfa\xf9\xff\xf8\xd3\x60" "\xf9\xff\xd8\xf7\xdf\x1f\x6a\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d" "\xff\xcf\x85\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\xff\xba\x50\x13" "\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\x0f\x87\x9a\x64\xd2\xff\xcb\xff" "\xcb\xff\xcb\xff\xcb\xff\x5f\x9d\xfc\xff\xeb\x8a\x4e\xa3\x98\xff\x6f" "\x4e\x1e\xf9\xff\x7a\x91\xff\xef\xcd\xf9\xff\xfb\x90\xff\x97\xff\x97" "\xff\x97\xff\x67\xa8\x46\xed\xfc\xff\xb1\xef\x7f\x7d\xa8\x49\x26\xfd" "\x3f\x00\x00\x00\xe4\x20\xf6\xfd\x0f\x84\x9a\xe8\xff\x01\x00\x00\xa0" "\x36\x62\xdf\xff\x86\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xdf" "\x18\x6a\x92\x49\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x35\xff\x5f\x3e\xa4" "\xfc\xbf\xf3\xff\xcb\xff\x6f\x3e\xf2\xff\xbd\xc9\xff\xf7\x21\xff\x2f" "\xff\x2f\xff\x2f\xff\xcf\x50\x8d\x5a\xfe\x3f\xf6\xfd\x6f\x0a\x35\xc9" "\xa4\xff\x07\x00\x00\x80\x1c\xc4\xbe\xff\xcd\xa1\x26\xfa\x7f\x00\x00" "\x00\xa8\x8d\xd8\xf7\xbf\x25\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb" "\xfe\xb7\x86\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xcb\xff\x3b\xff\xbf\xfc" "\x7f\xf7\xf5\xcb\xff\x6f\x4e\xf2\xff\xbd\xc9\xff\xf7\x21\xff\x2f\xff" "\x2f\xff\x2f\xff\xcf\x50\x8d\x5a\xfe\x3f\xf6\xfd\x3f\x1f\x6a\xb2\xaa" "\xf1\x9b\xb8\x82\x67\x09\x00\x00\x00\x8c\x92\xd8\xf7\x3f\x18\x6a\x92" "\xc9\xbf\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\xb6\x50\x13\xfd\x3f\x00" "\x00\x00\xd4\x46\xec\xfb\xdf\x1e\x6a\x92\x49\xff\x2f\xff\x5f\xa3\xfc" "\x7f\xcb\x20\xe4\xff\xe5\xff\x7b\xad\x5f\xfe\x5f\xfe\xbf\xce\x6a\x9c" "\xff\x1f\xf0\xdd\xb5\x37\xf9\xff\x3e\xe4\xff\xe5\xff\xe5\xff\xe5\xff" "\x19\xaa\x51\xcb\xff\xc7\xbe\xff\x1d\xa1\x26\x99\xf4\xff\x00\x00\x00" "\x90\x83\xd8\xf7\xbf\x33\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe" "\x77\x85\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\xff\x0b\xa1\x26\x99" "\xf4\xff\xf2\xff\x35\xca\xff\xb7\x90\xff\x97\xff\xef\xb5\xfe\x7c\xf3" "\xff\x93\xf2\xff\x19\xa8\x71\xfe\x7f\x28\xe4\xff\xfb\x90\xff\x97\xff" "\x97\xff\x97\xff\x67\xa8\x46\x2d\xff\x1f\xfb\xfe\x77\x87\x9a\x64\xd2" "\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\x9e\x50\x13\xfd\x3f\x00\x00\x00" "\xd4\x46\xec\xfb\xdf\x1b\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff" "\x43\xa1\x26\x99\xf4\xff\x23\x9c\xff\x1f\x6f\xbd\x2c\xff\x3f\xd4\xfc" "\x7f\x7a\xca\xf2\xff\x15\xf9\xff\x5c\xf2\xff\xce\xff\x9f\x03\xf9\xff" "\xde\xe4\xff\xfb\xa8\x67\xfe\x7f\xf7\x8e\x01\x9f\xfe\xb5\xce\xcf\xaf" "\xd7\xb5\x1e\xbf\xfc\xbf\xfc\x3f\xab\x8d\x5a\xfe\x3f\xf6\xfd\x0f\x87" "\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\xbe\x50\x13\xfd\x3f" "\x00\x00\x00\xd4\x46\xec\xfb\x7f\x31\xd4\x44\xff\x0f\x00\x00\x00\xb5" "\x11\xfb\xfe\xf7\x87\x9a\x64\xd2\xff\x8f\x70\xfe\xdf\xf9\xff\x9d\xff" "\xbf\x06\xf9\xff\xf1\xb6\xf9\x31\x50\xfe\xbf\xe5\xee\xf2\xff\x95\x81" "\xf3\xff\x8d\x30\x13\xe4\xff\xb3\x26\xff\xdf\x9b\xfc\x7f\x1f\xf5\xcc" "\xff\x0f\xec\x5a\xe7\xe7\x37\xfb\xf8\xaf\x7a\xfe\x3f\xcc\xe6\x6d\x6b" "\xdc\x7f\x43\xf2\xff\x9d\x6f\xd2\x2d\xe4\xff\xe9\x66\xd4\xf2\xff\xb1" "\xef\xff\x40\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\xbf\x14" "\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\x2f\x87\x9a\xe8\xff\x01" "\x00\x00\xa0\x36\x62\xdf\xff\x2b\xa1\x26\x99\xf4\xff\xf2\xff\xf2\xff" "\xf2\xff\xce\xff\x5f\x9b\xfc\x7f\xe0\xfc\xff\x79\x93\xff\xef\x4d\xfe" "\xbf\x8f\x51\xcc\xff\xb7\x84\xbd\xe5\xff\x47\x7b\xfc\xce\xff\x2f\xff" "\xcf\x6a\xa3\x96\xff\x8f\x7d\xff\xaf\x86\x9a\x64\xd2\xff\x03\x00\x00" "\x40\x0e\x62\xdf\xff\xc1\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb" "\x8f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\xff\x48\xa8\xc9\x26" "\xef\xff\xa7\x06\x5c\x4e\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xfb" "\xfa\xe5\xff\x37\x27\xf9\xff\xde\xe4\xff\xfb\x18\xc5\xfc\x7f\x0b\xf9" "\xff\xd1\x1e\xff\xe6\xc9\xff\x4f\x77\xbd\xbf\xfc\x3f\x57\xc3\xa8\xe5" "\xff\x63\xdf\x7f\x34\xd4\x64\x93\xf7\xff\x00\x00\x00\xc0\x8a\xd8\xf7" "\xff\x5a\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\xc7\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x1b\xb1\xef\x9f\x0f\x35\xc9\xa4\xff\x97\xff\x97" "\xff\x97\xff\x97\xff\x97\xff\xef\xbe\x7e\xf9\xff\xcd\x49\xfe\xbf\x37" "\xf9\xff\x3e\xe4\xff\xe5\xff\xb3\xc8\xff\x77\x27\xff\xcf\xd5\x30\x6a" "\xf9\xff\xd8\xf7\x2f\x84\x9a\x64\xd2\xff\x03\x00\x00\x40\x8d\xa5\x5f" "\x07\xc7\xbe\xff\x78\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\x27" "\x42\x4d\xf4\xff\x00\x00\x00\x50\x1b\xb1\xef\xff\x50\xa8\x49\x26\xfd" "\xbf\xfc\xbf\xfc\xbf\xfc\xff\xb5\xc8\xff\x8f\xb7\x2d\x5f\x5d\xff\xa5" "\xeb\xe5\xff\xe5\xff\xe5\xff\xd7\x4f\xfe\xbf\x37\xf9\xff\x3e\xe4\xff" "\xe5\xff\xe5\xff\xe5\xff\x19\xaa\x51\xcb\xff\xc7\xbe\x7f\x31\xd4\x24" "\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x0f\x87\x9a\xe8\xff\x01\x00" "\x00\xa0\x36\x62\xdf\xff\x91\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec" "\xfb\x4f\x86\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xe7\x9e\xff\x6f\x14\xc5" "\x25\xe7\xff\x97\xff\xef\xb6\x7e\xf9\xff\xcd\x49\xfe\xbf\x37\xf9\xff" "\x3e\xe4\xff\xe5\xff\xe5\xff\xe5\xff\x19\xaa\x51\xcb\xff\xc7\xbe\xff" "\x54\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\xe0\xff\xd8\xbb\x8f\x18\xcb" "\xae\x6a\x8f\xc3\xd7\x7e\xed\xee\x6a\xbd\x01\x4c\x19\x19\x31\x04\x21" "\x31\x84\x11\x23\x24\x86\x9e\x32\x43\x62\x4c\x36\x39\x9a\x9c\xc1\x64" "\x8c\x49\x26\xe7\x9c\x93\xc1\x64\x4c\xb6\xc9\xc1\xe4\x9c\xb3\x41\x6a" "\xe4\xea\xb5\x96\xbb\xba\x6e\x9f\x5b\xd5\x75\x5c\xb5\xcf\xde\xdf\x37" "\x59\xb8\xed\xee\x7b\x9f\xc3\x7b\xfa\x3f\xeb\xc7\xce\xdd\x7f\x9f\xb8" "\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xbf\x6f\xdc\x62\xff\x03\x00\x00" "\x40\x37\x72\xf7\xdf\x2f\x6e\x19\x64\xff\xeb\xff\xf5\xff\x6d\xf7\xff" "\x5b\x9d\xbe\xff\xbf\xf3\x8f\xd7\xff\x9f\xa6\xff\xd7\xff\xcf\x61\x57" "\x7f\x7f\x6c\x7f\x3f\xff\x9c\xfd\xff\x9d\xee\x7c\xe9\x3d\xf5\xff\xfa" "\x7f\xfd\xff\x24\xfd\xbf\xfe\x5f\xff\xcf\xd9\x5a\xeb\xff\x73\xf7\xdf" "\x3f\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\x3f\x20\x6e\xb1\xff" "\x01\x00\x00\xa0\x1b\xb9\xfb\x1f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8d" "\xdc\xfd\x97\xc6\x2d\x83\xec\xff\x3d\xf4\xff\xa7\xcb\x49\xfd\xff\x24" "\xfd\xff\xce\xef\xbf\xa4\xf7\xff\x57\xfa\xff\x9d\xfd\xff\xd5\xfa\x7f" "\xfd\xff\xb2\x79\xff\x7f\x9a\xfe\x7f\x03\xfd\xbf\xfe\x7f\xa6\xfe\xff" "\xa6\xbf\x56\xfa\x7f\xfd\x3f\xed\xf5\xff\xb9\xfb\x1f\x14\xb7\x0c\xb2" "\xff\x01\x00\x00\x60\x04\xb9\xfb\x1f\x1c\xb7\xd8\xff\x00\x00\x00\xd0" "\x8d\xdc\xfd\x0f\x89\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x87\xc6" "\x2d\x83\xec\x7f\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xef\xff\xaf\xff\x7c" "\xfd\xff\x32\xe9\xff\xa7\xe9\xff\x37\xd0\xff\xeb\xff\xbd\xff\xaf\xff" "\x67\x56\xad\xf5\xff\xb9\xfb\x1f\x16\xb7\x0c\xb2\xff\x01\x00\x00\x60" "\x04\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x8f\x88" "\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x47\xc6\x2d\x83\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\xfc\x89\xfe\x7f\xfb\x4f\x84" "\xfe\xbf\x4d\x57\xad\x6e\xfe\xdf\x09\xfa\xff\xdd\xf4\xff\x1b\x6c\xe8" "\xff\x57\x2b\xfd\xff\x14\xfd\xbf\xfe\x5f\xff\xcf\xd9\x5a\xeb\xff\x73" "\xf7\x3f\x2a\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\x3f\x3a\x6e" "\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x1f\x13\xb7\xd8\xff\x00\x00\x00" "\xd0\x8d\xdc\xfd\x8f\x8d\x5b\x06\xd9\xff\xfa\xff\xfe\xfb\xff\xe3\x2b" "\xfd\xbf\xfe\x7f\xe7\xe7\xeb\xff\xbd\xff\xdf\x33\xef\xff\x4f\x3b\x78" "\xff\x7f\xfb\x5b\xdf\xfb\x5e\xe3\xf6\xff\xde\xff\x9f\xa6\xff\xd7\xff" "\xeb\xff\x39\x5b\x6b\xfd\x7f\xee\xfe\xcb\xe2\x96\x41\xf6\x3f\x00\x00" "\x00\x8c\x20\x77\xff\xe3\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff" "\xf1\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x84\xb8\x65\x90\xfd" "\xaf\xff\xef\xbf\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\x89\xfe\x7f" "\x9a\xf7\xff\x37\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x66\xd5\x5a\xff\x9f" "\xbb\xff\x89\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\x49\x71" "\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xe4\xb8\xc5\xfe\x07\x00\x00" "\x80\x6e\xe4\xee\x7f\x4a\xdc\x32\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\x96\xfa\xff\xad\xd5\x6e\xfa\x7f\xfd\xff\x7e\x8c\xd0\xff\x5f\xbc" "\xdf\x5f\xf4\x0c\xfa\xff\x0d\x7a\xe9\xff\xcf\xf3\xbf\x35\xe2\xa8\xfb" "\xf9\x83\x3a\xea\xef\xdf\x7d\xff\x7f\x7c\xfa\xe7\xeb\xff\x59\xa7\xb5" "\xfe\x3f\x77\xff\x53\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff" "\xd3\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xe9\x71\x8b\xfd\x0f" "\x00\x00\x00\xdd\xc8\xdd\xff\x8c\xb8\x65\x90\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x2d\xf5\xff\xde\xff\xd7\xff\x1f\xd4\x08\xfd\xff\x41\xe8" "\xff\x37\xe8\xa5\xff\x3f\x4f\x47\xdd\xcf\x2f\xfd\xfb\x77\xdf\xff\x6f" "\xa0\xff\x67\x9d\xd6\xfa\xff\xdc\xfd\xcf\x8c\x5b\x06\xd9\xff\x00\x00" "\x00\x30\x82\xdc\xfd\xcf\x8a\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe" "\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x73\xe2\x96\x41\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\x7f\xbe\xfe\x7f\x99\xf4" "\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xb3\x6a\xad\xff" "\xcf\xdd\x7f\x79\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\x7f\x6e" "\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x3f\x2f\x6e\xd9\xde\xff\x77" "\x3b\xa2\x6f\x05\x00\x00\x00\xcc\x29\x77\xff\xf3\xe3\x96\x41\xfe\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\x7f\xbe\xfe\x7f\x99\xf4" "\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xb3\x6a\xa8\xff" "\x3f\xe3\x67\x6d\xad\x5e\x10\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9" "\xfb\x5f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x2f\x8a\x5b\xec" "\x7f\x00\x00\x00\x58\x80\xbd\x15\x5f\xb9\xfb\x5f\x1c\xb7\x0c\xb2\xff" "\xf5\xff\xcd\xf4\xff\xdb\x39\x5f\x5b\xfd\xff\x85\x07\xec\xff\x4f\xae" "\x56\xab\x5d\xfd\xff\x25\xf1\x87\xea\xff\x3b\xef\xff\x4f\x9e\xf1\xd7" "\x33\xe9\xff\xf5\xff\x87\x41\xff\x3f\x4d\xff\xbf\x81\xfe\x5f\xff\xaf" "\xff\xd7\xff\x33\xab\x86\xfa\xff\xed\xdf\xce\xdd\xff\x92\xb8\x65\x90" "\xfd\x0f\x00\x00\x00\x23\xc8\xdd\x7f\x45\xdc\x62\xff\x03\x00\x00\x40" "\x37\x72\xf7\xbf\x34\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xaf\xbc" "\x78\x35\xe4\xfe\xd7\xff\x37\xd3\xff\x6f\x6b\xab\xff\x6f\xe2\xfd\xff" "\x95\xfe\x7f\x99\xfd\xbf\xf7\xff\x77\xd3\xff\x1f\x0e\xfd\xff\x34\xfd" "\xff\x06\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xac\x5a\xeb\xff\xaf\xdc\xfe" "\x59\x5b\xab\x97\xc5\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x97" "\xc7\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x2b\xe2\x16\xfb\x1f\x00" "\x00\x00\x16\xea\xf2\x5d\x3f\x92\xbb\xff\x95\x71\xcb\x20\xfb\x5f\xff" "\x3f\x6f\xff\x7f\xfc\x8c\x1f\xd3\xff\xcf\xd2\xff\x7b\xff\x5f\xff\xaf" "\xff\xd7\xff\xef\x8b\xfe\x7f\x9a\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\x56\xad\xf5\xff\xb9\xfb\x5f\x15\xb7\x0c\xb2\xff\x01\x00\x00" "\x60\x04\xb9\xfb\xaf\x8a\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x57" "\xc7\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x6b\xe2\x96\x41\xf6\xbf" "\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff\xba\xfe\xff\xfa\x2b\x4e\xff\x67\xfd" "\xff\xcd\xbf\xae\xfe\x7f\x19\xf4\xff\xd3\xf4\xff\x1b\xe8\xff\xf5\xff" "\x47\xdb\xff\x9f\xb8\xf9\x3f\xea\xff\xe9\x43\x6b\xfd\x7f\xee\xfe\xd7" "\xc6\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\xd7\xc5\x2d\xf6\x3f" "\x00\x00\x00\x74\x23\x77\xff\xeb\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91" "\xbb\xff\x0d\x71\xcb\x20\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xbd\xff" "\xbf\xfe\xf3\xf5\xff\xcb\xa4\xff\x9f\xa6\xff\xdf\x40\xff\xaf\xff\xf7" "\xfe\xbf\xfe\x9f\x59\xb5\xd6\xff\xe7\xee\x7f\x63\xdc\x32\xc8\xfe\x07" "\x00\x00\x80\x11\xe4\xee\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x37\x72" "\xf7\xbf\x39\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xdf\x12\xb7\x0c" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xf3\x67\xee\xff" "\x6f\x5c\xed\xbd\xff\xbf\x68\xa5\xff\x3f\x6f\xfa\xff\x69\x07\xed\xff" "\x2f\xd3\xff\xeb\xff\x27\x0c\xd7\xff\x5f\x72\x97\x1d\xbf\xa9\xff\xd7" "\xff\xb3\x5b\x6b\xfd\x7f\xee\xfe\xb7\xc6\x2d\x83\xec\x7f\x00\x00\x00" "\x18\x41\xee\xfe\xb7\xc5\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\xdb" "\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x1d\x71\xd3\xb1\x41\xf6" "\xbf\xfe\x5f\xff\xaf\xff\x5f\x40\xff\x7f\xea\xff\x56\x2b\xfd\xff\xd2" "\xfb\x7f\xef\xff\x1f\x12\xfd\xff\x34\xef\xff\x6f\xa0\xff\xd7\xff\x7b" "\xff\x5f\xff\xcf\xac\x5a\xeb\xff\x73\xf7\xbf\x33\x6e\x19\x64\xff\x03" "\x00\x00\xc0\x08\x72\xf7\xbf\x2b\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9" "\xfb\xdf\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xef\x89\x5b\x06" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x01\xfd\xbf\xf7\xff\xf5\xff\xfa\xff" "\x3d\xd3\xff\x4f\xd3\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xcc\xaa" "\xb5\xfe\x3f\x77\xff\x7b\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77" "\xff\xfb\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xfd\x71\x8b\xfd" "\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x81\xb8\x65\x90\xfd\x7f\xd4\xfd\xff" "\xb1\xe8\xbd\x77\x7d\x2f\xfd\xff\x36\xfd\xbf\xfe\xff\x30\xfa\xff\x13" "\xcd\xf5\xff\x5b\x3b\x7e\x3d\xfd\xbf\xfe\x7f\x3f\xf4\xff\xd3\xf4\xff" "\x1b\x34\xd1\xff\x1f\x5f\xe9\xff\x1b\xf9\xfe\x5b\xd7\x8e\xd8\xff\x5f" "\xae\xff\x67\x4e\xad\xf5\xff\xb9\xfb\x3f\x18\xb7\x0c\xb2\xff\x01\x00" "\x00\x60\x04\xb9\xfb\x3f\x14\xb7\xfe\x5f\xb7\xf6\x3f\x00\x00\x00\x74" "\x23\x77\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x23\x71" "\xcb\x20\xfb\xff\xa8\xfb\x7f\xef\xff\xeb\xff\xf5\xff\x47\xdf\xff\x7b" "\xff\x7f\xfd\xe7\xeb\xff\x97\x49\xff\x3f\x6d\xc4\xfe\xff\xe2\xfd\x7c" "\x81\x26\xfa\x7f\xef\xff\x2f\xf5\xfb\x77\xd2\xff\x7b\xff\x9f\x59\xb5" "\xd6\xff\xe7\xee\xff\x68\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee" "\xff\x58\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x7f\x3c\x6e\xb1\xff" "\x01\x00\x00\xa0\x1b\xb9\xfb\xaf\x8e\x5b\x06\xd9\xff\xfa\x7f\xfd\xff" "\x7e\xfb\xff\x13\x67\x7c\x8e\xfe\x5f\xff\xaf\xff\xd7\xff\xb7\x46\xff" "\x3f\xed\x70\xfa\xff\x93\x4d\xf5\xff\xfb\xf9\x7c\xfd\xff\xfc\xfd\xfc" "\x05\xf1\x4f\x81\xfe\x5f\xff\xbf\xe9\xe7\xd3\xa7\xd6\xfa\xff\xdc\xfd" "\x9f\x88\x5b\x06\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\x9f\x8c\x5b\xec" "\x7f\x00\x00\x00\xe8\x46\xee\xfe\x6b\xe2\x16\xfb\x1f\x00\x00\x00\x16" "\xe9\xd8\x9a\x1f\xcb\xdd\xff\xa9\xb8\x65\x90\xfd\xaf\xff\xd7\xff\x7b" "\xff\x5f\xff\xaf\xff\x5f\xff\xf9\xfa\xff\x65\xd2\xff\x4f\x6b\xfc\xfd" "\xff\x1b\x56\xab\x95\xfe\x7f\x51\xfd\xff\x6d\x77\xfc\xd6\xd2\xde\xff" "\x3f\xfb\xff\x7e\xe9\xff\xf5\xff\xcc\xaf\xb5\xfe\x3f\x77\xff\xa7\xe3" "\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x67\xe2\x16\xfb\x1f\x00" "\x00\x00\xba\x91\xbb\xff\xb3\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd" "\xff\xb9\xb8\x65\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf7\xd1\xff\xdf\xf1" "\xba\x53\xa7\xf4\xff\x45\xff\x7f\x9a\xfe\xbf\x2d\xfa\xff\x69\x8d\xf7" "\xff\xde\xff\x5f\x5c\xff\xbf\xd3\xd2\xfa\xff\xb9\xbf\xbf\xfe\x5f\xff" "\xcf\x6e\xad\xf5\xff\xb9\xfb\x3f\x1f\xb7\x0c\xb2\xff\x01\x00\x00\x60" "\x04\xb9\xfb\xbf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x5f\x8c" "\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x6b\xe3\x96\x41\xf6\xbf\xfe" "\x5f\xff\xaf\xff\xf7\xfe\xbf\xfe\x7f\xfd\xe7\xeb\xff\x97\x49\xff\x3f" "\x4d\xff\xbf\x81\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xab\xd6\xfa\xff\xdc" "\xfd\x5f\x8a\x5b\x06\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\x5f\x8e\x5b" "\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xaf\xc4\x2d\xf6\x3f\x00\x00\x00" "\x74\x23\x77\xff\x57\xe3\x96\x41\xf6\xbf\xfe\x5f\xff\xbf\x8c\xfe\xff" "\xd4\xf6\xbb\xfb\xfa\x7f\xfd\xff\x4a\xff\xaf\xff\xdf\x40\xff\x3f\xad" "\xab\xfe\xff\x94\xfe\x5f\xff\xdf\xd6\xf7\xd7\xff\xeb\xff\xd9\xad\xb5" "\xfe\x3f\x77\xff\xd7\xe2\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff" "\xd7\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x1b\x71\x8b\xfd\x0f" "\x00\x00\x00\xdd\xc8\xdd\x7f\x5d\xdc\x32\xc8\xfe\xd7\xff\x37\xd0\xff" "\x6f\xe9\xff\xbd\xff\xaf\xff\x5f\xe9\xff\xf5\xff\x33\xd1\xff\x4f\xeb" "\xaa\xff\xf7\xfe\xff\xde\xfa\xff\xad\xbd\xff\x8f\xbf\xae\x9f\x3f\xb5" "\xd2\xff\xeb\xff\xf5\xff\x9c\xbf\xd6\xfa\xff\xdc\xfd\xd7\xc7\x2d\x83" "\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x74\x23\x77\xff\xb7\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xdb" "\x71\xcb\x20\xfb\x5f\xff\x7f\x78\xfd\xff\x4d\x7f\xee\x46\x79\xff\xff" "\xe4\x6a\xfd\xf7\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x5b\x5a\x8f\xfd\xff" "\x05\xe7\xf1\xeb\x9c\x8b\xfe\x7f\x83\x1e\xfb\xff\x7d\x38\xea\x7e\x7e" "\xe9\xdf\x5f\xff\xaf\xff\x67\xb7\xd6\xfa\xff\xdc\xfd\xdf\x89\x5b\x06" "\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00" "\xe8\x46\xee\xfe\xef\xc5\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\xf7" "\xe3\x96\x41\xf6\xbf\xfe\xbf\x81\xf7\xff\xf7\xd0\xff\x1f\x5f\x58\xff" "\xef\xfd\xff\xf5\x7f\x7f\xe8\xff\x9b\xee\xff\x2f\xd4\xff\xf7\xa1\xc7" "\xfe\x7f\xbf\xbf\xc6\x14\xfd\xff\x06\xfa\x7f\xfd\xbf\xfe\x7f\xa6\xfe" "\x3f\xff\x6e\xd6\xff\x8f\xae\xb5\xfe\x3f\x77\xff\x0f\xe2\x96\x41\xf6" "\x3f\x00\x00\x00\x8c\x20\x77\xff\x0f\xe3\x16\xfb\x1f\x00\x00\x00\xba" "\x91\xbb\xff\x47\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\x7f\x43\xdc" "\x72\xc6\xfe\x5f\xd7\x76\xf7\x42\xff\xbf\x8c\xfe\x7f\x69\xef\xff\xeb" "\xff\xd7\xff\xfd\xa1\xff\x6f\xba\xff\x3f\xeb\xf3\x2f\xd4\xff\x2f\x94" "\xfe\x7f\xda\x5e\xfb\xff\x13\xab\x83\xf5\xff\x69\xee\xfe\xff\x02\xfd" "\xbf\xfe\xbf\xe1\xef\xaf\xff\xf7\xfe\x3f\xbb\xb5\xd6\xff\xe7\xee\xff" "\x71\xdc\xe2\xdf\xff\x03\x00\x00\x40\xb3\x4e\x9e\xe3\xc7\x2f\x3a\xc7" "\x8f\xe7\xee\xff\x49\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x34" "\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x7f\x16\xb7\x74\xb5\xff\xef" "\x70\xce\xdf\xa3\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\x9f\xaf\xff" "\x5f\x26\xfd\xff\x34\xef\xff\x6f\xa0\xff\x9f\xa3\x9f\xbf\xab\xfe\xbf" "\x8f\xfe\x7f\xb5\xd2\xff\x73\x70\xad\xf5\xff\xb9\xfb\x7f\x1e\xb7\x74" "\xb5\xff\x01\x00\x00\x60\x6c\xb9\xfb\x7f\x11\xb7\xd8\xff\x00\x00\x00" "\xd0\x8d\xdc\xfd\xbf\x8c\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x5f" "\xc5\x2d\x83\xec\x7f\xfd\xbf\xfe\xff\x80\xfd\xff\x76\x9a\xa9\xff\x3f" "\xed\xb0\xfa\xff\xdb\xdc\xee\xf4\xef\xd7\xff\xeb\xff\xf5\xff\xbb\xe9" "\xff\xa7\xe9\xff\x37\xd0\xff\x7b\xff\x5f\xff\xef\xfd\x7f\x66\xd5\x5a" "\xff\x9f\xbb\xff\xd7\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff" "\x37\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xdb\xb8\xc5\xfe\x07" "\x00\x00\x80\x6e\xe4\xee\xff\x5d\xdc\x32\xc8\xfe\x3f\xb2\xfe\x3f\xfe" "\x54\xeb\xff\x17\xdf\xff\x7b\xff\xdf\xfb\xff\xfa\x7f\xfd\x7f\x53\xf4" "\xff\xd3\xf4\xff\x1b\x9c\x47\xff\x7f\x7c\xa5\xff\x4f\xfa\x7f\xfd\xbf" "\xfe\x9f\xb3\xb5\xd6\xff\xe7\xee\xff\x7d\xdc\x32\xc8\xfe\x07\x00\x00" "\x80\x11\xe4\xee\xff\x43\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff" "\x31\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xff\x14\xb7\x0c\xb2\xff" "\xbd\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x3f\x5f\xff\xbf\x4c\xfa" "\xff\x69\xfa\xff\xf5\xea\x2f\x94\xf7\xff\xf5\xff\xfa\x7f\xfd\x3f\xb3" "\x6a\xad\xff\xcf\xdd\xff\xe7\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8" "\xdd\xff\x97\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x6b\xdc\x62" "\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x2d\x6e\x19\x64\xff\xeb\xff\xf5" "\xff\x87\xda\xff\xaf\x56\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x8b\xd2\xff" "\x4f\x3b\xca\xfe\xff\x1e\xb7\xda\xfc\xb1\x4b\x7c\xff\xbf\xb3\xfe\x3f" "\xbf\x82\xfe\x5f\xff\xaf\xff\x67\x16\xad\xf5\xff\xb9\xfb\xff\x1e\xb7" "\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\xff\x11\xb7\xd8\xff\x00\x00" "\x00\xd0\x8d\xdc\xfd\xff\x8c\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe" "\x7f\xc5\x2d\x83\xec\x7f\xfd\xff\xd1\xf5\xff\xff\x3f\x62\xff\xef\xfd" "\x7f\xfd\xbf\xfe\x5f\xff\x7f\x0b\xd3\xff\x4f\xf3\xfe\xff\x06\xfa\xff" "\xb1\xde\xff\x3f\x3e\xef\xf7\x1f\xb7\xff\xbf\xfb\xf6\x3f\x69\xfa\x7f" "\xd6\x69\xad\xff\xcf\xdd\xff\xef\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23" "\xc8\xdd\x7f\x63\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x27\x6e" "\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xff\x1b\xb7\x0c\xb2\xff\xf5\xff" "\xde\xff\xef\xa7\xff\xbf\x46\xff\xaf\xff\xdf\xa6\xff\x1f\x9b\xfe\x7f" "\x9a\xfe\x7f\x03\xfd\xff\x58\xfd\xff\xcc\xdf\x7f\xdc\xfe\xff\x34\xfd" "\x3f\xeb\xb4\xd6\xff\xe7\xee\xff\x5f\x00\x00\x00\xff\xff\x74\x7f\x5c" "\xe1", 25059)); NONFAILING(syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x2000000000c0, /*chdir=*/0x11, /*size=*/0x61e3, /*img=*/0x200000000200)); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", reason); if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }