// https://syzkaller.appspot.com/bug?id=ef0fa4c7084a1a7f971f3d5055106ab7cb01d0e0 // 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 static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { 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; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return ((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name) { 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); 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) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } 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); (void)err; } 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)); (void)err; } 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)); (void)err; } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); (void)err; } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 240; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE \ { \ 0x08, 0x02, 0x11, 0x00, 0x00, 0x00 \ } #define WIFI_IBSS_BSSID \ { \ 0x50, 0x50, 0x50, 0x50, 0x50, 0x50 \ } #define WIFI_IBSS_SSID \ { \ 0x10, 0x10, 0x10, 0x10, 0x10, 0x10 \ } #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send(nlmsg, sock); if (err < 0) { return -1; } return 0; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send(nlmsg, sock); if (err < 0) { return -1; } return 0; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { return -1; } return 0; } static void initialize_wifi_devices(void) { uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) { return; } int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM"); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211"); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP); if (ret < 0) exit(1); } close(sock); } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN || errno == EBADFD) return -1; exit(1); } return rv; } static void flush_tun() { char data[1000]; while (read_tun(&data[0], sizeof(data)) != -1) { } } #define MAX_FDS 30 struct fs_image_segment { void* data; uintptr_t size; uintptr_t offset; }; #define IMAGE_MAX_SEGMENTS 4096 #define IMAGE_MAX_SIZE (129 << 20) #define sys_memfd_create 319 static unsigned long fs_image_segment_check(unsigned long size, unsigned long nsegs, struct fs_image_segment* segs) { if (nsegs > IMAGE_MAX_SEGMENTS) nsegs = IMAGE_MAX_SEGMENTS; for (size_t i = 0; i < nsegs; i++) { if (segs[i].size > IMAGE_MAX_SIZE) segs[i].size = IMAGE_MAX_SIZE; segs[i].offset %= IMAGE_MAX_SIZE; if (segs[i].offset > IMAGE_MAX_SIZE - segs[i].size) segs[i].offset = IMAGE_MAX_SIZE - segs[i].size; if (size < segs[i].offset + segs[i].offset) size = segs[i].offset + segs[i].offset; } if (size > IMAGE_MAX_SIZE) size = IMAGE_MAX_SIZE; return size; } static int setup_loop_device(long unsigned size, long unsigned nsegs, struct fs_image_segment* segs, const char* loopname, int* memfd_p, int* loopfd_p) { int err = 0, loopfd = -1; size = fs_image_segment_check(size, nsegs, segs); int memfd = syscall(sys_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (ftruncate(memfd, size)) { err = errno; goto error_close_memfd; } for (size_t i = 0; i < nsegs; i++) { if (pwrite(memfd, segs[i].data, segs[i].size, segs[i].offset) < 0) { } } 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; } } *memfd_p = memfd; *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile unsigned long size, volatile unsigned long nsegs, volatile long segments, volatile long flags, volatile long optsarg) { struct fs_image_segment* segs = (struct fs_image_segment*)segments; int res = -1, err = 0, loopfd = -1, memfd = -1, need_loop_device = !!segs; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(size, nsegs, segs, loopname, &memfd, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); close(memfd); } errno = err; return res; } static void setup_cgroups() { if (mkdir("/syzcgroup", 0777)) { } if (mkdir("/syzcgroup/unified", 0777)) { } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { } if (chmod("/syzcgroup/unified", 0777)) { } write_file("/syzcgroup/unified/cgroup.subtree_control", "+cpu +memory +io +pids +rdma"); if (mkdir("/syzcgroup/cpu", 0777)) { } if (mount("none", "/syzcgroup/cpu", "cgroup", 0, "cpuset,cpuacct,perf_event,hugetlb")) { } write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); if (chmod("/syzcgroup/cpu", 0777)) { } if (mkdir("/syzcgroup/net", 0777)) { } if (mount("none", "/syzcgroup/net", "cgroup", 0, "net_cls,net_prio,devices,freezer")) { } if (chmod("/syzcgroup/net", 0777)) { } } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/memory.low", cgroupdir); write_file(file, "%d", 298 << 20); snprintf(file, sizeof(file), "%s/memory.high", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.max", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } setup_cgroups(); } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } initialize_tun(); initialize_wifi_devices(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH)) 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 setup_loop() { setup_cgroups_loop(); } 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(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); flush_tun(); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } #define KMEMLEAK_FILE "/sys/kernel/debug/kmemleak" static void setup_leak() { if (!write_file(KMEMLEAK_FILE, "scan")) exit(1); sleep(5); if (!write_file(KMEMLEAK_FILE, "scan")) exit(1); if (!write_file(KMEMLEAK_FILE, "clear")) exit(1); } static void check_leaks(void) { int fd = open(KMEMLEAK_FILE, O_RDWR); if (fd == -1) exit(1); uint64_t start = current_time_ms(); if (write(fd, "scan", 4) != 4) exit(1); sleep(1); while (current_time_ms() - start < 4 * 1000) sleep(1); if (write(fd, "scan", 4) != 4) exit(1); static char buf[128 << 10]; ssize_t n = read(fd, buf, sizeof(buf) - 1); if (n < 0) exit(1); int nleaks = 0; if (n != 0) { sleep(1); if (write(fd, "scan", 4) != 4) exit(1); if (lseek(fd, 0, SEEK_SET) < 0) exit(1); n = read(fd, buf, sizeof(buf) - 1); if (n < 0) exit(1); buf[n] = 0; char* pos = buf; char* end = buf + n; while (pos < end) { char* next = strstr(pos + 1, "unreferenced object"); if (!next) next = end; char prev = *next; *next = 0; fprintf(stderr, "BUG: memory leak\n%s\n", pos); *next = prev; pos = next; nleaks++; } } if (write(fd, "clear", 5) != 5) exit(1); close(fd); if (nleaks) exit(1); } static void setup_usb() { if (chmod("/dev/raw-gadget", 0666)) exit(1); } static void setup_sysctl() { static struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_enable", "1"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; int collide = 0; again: 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); if (collide && (call % 2) == 0) break; event_timedwait(&th->done, 45 + (call == 0 ? 50 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); if (!collide) { collide = 1; goto again; } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5 * 1000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); check_leaks(); } } void execute_call(int call) { switch (call) { case 0: memcpy((void*)0x20000000, "btrfs\000", 6); memcpy((void*)0x20000100, "./file0\000", 8); *(uint64_t*)0x20000200 = 0; *(uint64_t*)0x20000208 = 0; *(uint64_t*)0x20000210 = 0x10000; *(uint64_t*)0x20000218 = 0x20010200; memcpy((void*)0x20010200, "\000\000\000\000\000\000\000\000\000\000\000\a" "\000\000\000\000\000\000\000\a\000\000\000\000" "\000\000\000\000\000\000\000\000", 32); *(uint64_t*)0x20000220 = 0x20; *(uint64_t*)0x20000228 = 0x10220; *(uint64_t*)0x20000230 = 0x20010300; memcpy((void*)0x20010300, "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\xe4\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc9\xc2\x2f\xf9" "\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\xc9\xc2\x2f\xf9" "\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc9\xc2\x2f" "\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\xc9\xc2\x2f" "\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 256); *(uint64_t*)0x20000238 = 0x100; *(uint64_t*)0x20000240 = 0x10320; *(uint64_t*)0x20000248 = 0; *(uint64_t*)0x20000250 = 0; *(uint64_t*)0x20000258 = 0x10b20; *(uint64_t*)0x20000260 = 0x20010700; memcpy((void*)0x20010700, "\x6e\x39\xa1\x63\xa3\x06\x69\x59\x38\xaf\x91\xb9\xfa\x1d\xde\x93" "\x8a\x45\xa7\x19\xce\x7e\xca\x6a\x38\xc6\xab\xcd\x5e\xa7\x8f\x14" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\x04\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xd8\x01\x00" "\x00\x00\x00\x00\x00\x00\x39\x3f\x00\x00\x62\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\xe4\x00\x00\x10\x00\x00\x00\x00\x00\xe9" "\x3e\x00\x00\x50\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4" "\x00\x00\x50\x00\x00\x00\x00\x00\x99\x3e\x00\x00\x50\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x00\x00\x00\x00" "\x00\x49\x3e\x00\x00\x50\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20000268 = 0xe0; *(uint64_t*)0x20000270 = 0x100000; *(uint64_t*)0x20000278 = 0x20010800; memcpy( (void*)0x20010800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x01\x00\x00\x10\x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49" "\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x80\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x04" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10" "\x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50" "\x00\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95" "\x25\xb2\x9b\x71\x00\x00\x40\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x01\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00" "\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00" "\x40\x01\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc9\xc2\x2f" "\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\xeb\x07\xba\xcf" "\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad\x21\xa2\x65\xa1\xd8" "\x62\x5d\x55\xad\xcb\x4b\xb8\x0d\x5f\x9c\x14\xfe\xe1\x5c\x87\xae\x2c" "\x1e\x71\x5c\x32\xd6\x99\x31\x3d\x82\xe4\xeb\x07\xba\xcf\xd1\xd8\x47" "\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad\x00\x40\x10\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2" "\xf4\x43\xd9\x53\x83\x14\xe1\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00" "\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x83\x3f\x00\x00\x18\x00" "\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\xb0\x01\x00\x00\x00\x00\x00" "\x00\x00\x83\x3f\x00\x00\x00\x00\x00\x00\x00\x40\x10\x00\x00\x00\x00" "\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x3f\x00\x00\x18\x00\x00" "\x00\x00\x40\x10\x00\x00\x00\x00\x00\xb0\x02\x00\x00\x00\x00\x00\x00" "\x00\x6b\x3f\x00\x00\x00\x00\x00\x00\x00\x80\x10\x00\x00\x00\x00\x00" "\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x53\x3f\x00\x00\x18\x00\x00\x00" "\x00\x80\x10\x00\x00\x00\x00\x00\xb0\x03\x00\x00\x00\x00\x00\x00\x00" "\x53\x3f\x00\x00\x00\x00\x00\x00\x00\xc0\x10\x00\x00\x00\x00\x00\xa9" "\x00\x00\x00\x00\x00\x00\x00\x00\x3b\x3f\x00\x00\x18\x00\x00\x00\x00" "\xc0\x10\x00\x00\x00\x00\x00\xb0\x04\x00\x00\x00\x00\x00\x00\x00\x3b" "\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00\x00\x00\x00\x00\xa9\x00" "\x00\x00\x00\x00\x00\x00\x00\x23\x3f\x00\x00\x18\x00\x00\x00\x00\x00" "\x11\x00\x00\x00\x00\x00\xb0\x05\x00\x00\x00\x00\x00\x00\x00\x23\x3f" "\x00\x00\x00\x00\x00\x00\x00\x40\x11\x00\x00\x00\x00\x00\xa9\x00\x00" "\x00\x00\x00\x00\x00\x00\x0b\x3f\x00\x00\x18\x00\x00\x00\x00\x40\x11" "\x00\x00\x00\x00\x00\xb0\x07\x00\x00\x00\x00\x00\x00\x00\x0b\x3f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00", 768); *(uint64_t*)0x20000280 = 0x300; *(uint64_t*)0x20000288 = 0x103ea0; *(uint64_t*)0x20000290 = 0; *(uint64_t*)0x20000298 = 0; *(uint64_t*)0x200002a0 = 0x107f60; *(uint64_t*)0x200002a8 = 0x20010d00; memcpy((void*)0x20010d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x01\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\xc9\xc2" "\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00" "\x40\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x7d\xeb\x4e\x16\x46\xb2\x79\x98\xd0\x53\xd5\x3f\x3b\xdf\x14\x8b" "\x03\xdd\x61\xce\x39\x8b\x8b\xbd\x6f\xed\xf9\x6b\xf0\xb6\xdc\xb9" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\xc0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00" "\x10\x00\x00\x00\x00\x00\x6b\x3f\x00\x00\x30\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x200002b0 = 0x140; *(uint64_t*)0x200002b8 = 0x10bf40; *(uint64_t*)0x200002c0 = 0x20010f00; *(uint64_t*)0x200002c8 = 0; *(uint64_t*)0x200002d0 = 0x10ffc0; *(uint64_t*)0x200002d8 = 0x20011000; memcpy((void*)0x20011000, "\x64\xf4\x7f\x9a\x6b\x22\xea\x18\xc2\xcf\x12\x66\x5d\x49\xe4\x48" "\x05\xa2\x56\x4f\xb5\xf8\x80\x85\x80\xb2\xef\x2f\xd4\x73\xac\xaa" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x40\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x01\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200002e0 = 0x60; *(uint64_t*)0x200002e8 = 0x114000; *(uint64_t*)0x200002f0 = 0x20011100; *(uint64_t*)0x200002f8 = 0; *(uint64_t*)0x20000300 = 0x118000; *(uint64_t*)0x20000308 = 0x20011300; memcpy((void*)0x20011300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x01\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00" "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x03\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x04" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0" "\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x40\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x3a\x85\xc2\xb6\xe0\x39\x7f\x50\x2e\x30\xe8\x0a\xbb\x7f\xdd\xf7" "\xe4\xa8\x7d\x3e\x3a\xb5\xc7\xfa\x3e\x4f\xc1\x6e\x31\xbb\xbd\xf6" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\xc0\x11\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x02\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00" "\x10\x00\x00\x00\x00\x00\x6b\x3f\x00\x00\x30\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x00\x00\x00\x00\x00\x3b" "\x3f\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 416); *(uint64_t*)0x20000310 = 0x1a0; *(uint64_t*)0x20000318 = 0x11bf00; *(uint64_t*)0x20000320 = 0x20011500; *(uint64_t*)0x20000328 = 0; *(uint64_t*)0x20000330 = 0x11ffa0; *(uint64_t*)0x20000338 = 0x20011700; memcpy((void*)0x20011700, "\x80\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00\x01\x00\x01\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x50\x00\x00\x00\x00\x00\xc9\xc2" "\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00" "\x40\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x01\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\xc9\xc2" "\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00" "\xc0\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad", 256); *(uint64_t*)0x20000340 = 0x100; *(uint64_t*)0x20000348 = 0x123f00; *(uint64_t*)0x20000350 = 0; *(uint64_t*)0x20000358 = 0; *(uint64_t*)0x20000360 = 0x500000; *(uint64_t*)0x20000368 = 0x20011900; memcpy((void*)0x20011900, "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000370 = 0x40; *(uint64_t*)0x20000378 = 0x503920; *(uint64_t*)0x20000380 = 0x20011a00; memcpy((void*)0x20011a00, "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00", 64); *(uint64_t*)0x20000388 = 0x40; *(uint64_t*)0x20000390 = 0x5039c0; *(uint64_t*)0x20000398 = 0x20011b00; memcpy((void*)0x20011b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed" "\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200003a0 = 0x60; *(uint64_t*)0x200003a8 = 0x503ac0; *(uint64_t*)0x200003b0 = 0x20011c00; memcpy((void*)0x20011c00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde" "\x8d\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x200003b8 = 0xa0; *(uint64_t*)0x200003c0 = 0x503b60; *(uint64_t*)0x200003c8 = 0x20011d00; memcpy((void*)0x20011d00, "\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 32); *(uint64_t*)0x200003d0 = 0x20; *(uint64_t*)0x200003d8 = 0x503c20; *(uint64_t*)0x200003e0 = 0x20011e00; memcpy((void*)0x20011e00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200003e8 = 0x60; *(uint64_t*)0x200003f0 = 0x503c80; *(uint64_t*)0x200003f8 = 0; *(uint64_t*)0x20000400 = 0; *(uint64_t*)0x20000408 = 0x503d20; *(uint64_t*)0x20000410 = 0; *(uint64_t*)0x20000418 = 0; *(uint64_t*)0x20000420 = 0x503e40; *(uint64_t*)0x20000428 = 0x20012100; memcpy((void*)0x20012100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x11\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000430 = 0x60; *(uint64_t*)0x20000438 = 0x503ee0; *(uint64_t*)0x20000440 = 0; *(uint64_t*)0x20000448 = 0; *(uint64_t*)0x20000450 = 0x504000; *(uint64_t*)0x20000458 = 0; *(uint64_t*)0x20000460 = 0; *(uint64_t*)0x20000468 = 0x507f60; *(uint64_t*)0x20000470 = 0; *(uint64_t*)0x20000478 = 0; *(uint64_t*)0x20000480 = 0x50bee0; *(uint64_t*)0x20000488 = 0x20012900; memcpy((void*)0x20012900, "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000490 = 0x40; *(uint64_t*)0x20000498 = 0x50f840; *(uint64_t*)0x200004a0 = 0x20012a00; memcpy((void*)0x20012a00, "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200004a8 = 0x40; *(uint64_t*)0x200004b0 = 0x50f8e0; *(uint64_t*)0x200004b8 = 0x20012b00; *(uint64_t*)0x200004c0 = 0; *(uint64_t*)0x200004c8 = 0x50f9e0; *(uint64_t*)0x200004d0 = 0x20012d00; memcpy((void*)0x20012d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x51\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde\x8d" "\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x200004d8 = 0x80; *(uint64_t*)0x200004e0 = 0x50fb60; *(uint64_t*)0x200004e8 = 0x20012e00; memcpy((void*)0x20012e00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200004f0 = 0x40; *(uint64_t*)0x200004f8 = 0x50fc00; *(uint64_t*)0x20000500 = 0; *(uint64_t*)0x20000508 = 0; *(uint64_t*)0x20000510 = 0x50fc80; *(uint64_t*)0x20000518 = 0x20013000; memcpy((void*)0x20013000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x50\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000520 = 0x80; *(uint64_t*)0x20000528 = 0x50fd20; *(uint64_t*)0x20000530 = 0x20013100; memcpy((void*)0x20013100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00", 64); *(uint64_t*)0x20000538 = 0x40; *(uint64_t*)0x20000540 = 0x50fe40; *(uint64_t*)0x20000548 = 0x20013200; memcpy((void*)0x20013200, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x50\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000550 = 0x60; *(uint64_t*)0x20000558 = 0x50fee0; *(uint64_t*)0x20000560 = 0; *(uint64_t*)0x20000568 = 0; *(uint64_t*)0x20000570 = 0x510000; *(uint64_t*)0x20000578 = 0x20013400; memcpy((void*)0x20013400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e" "\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00", 192); *(uint64_t*)0x20000580 = 0xc0; *(uint64_t*)0x20000588 = 0x513f40; *(uint64_t*)0x20000590 = 0x20013500; memcpy((void*)0x20013500, "\x6f\x2c\xee\x47\x86\xe0\x08\xae\x4d\xe1\x4a\xd6\x0d\xf5\xcf\x66" "\x74\xf2\xad\x94\x65\xf1\x27\x69\x59\xa8\x45\x27\x17\xbc\xca\x4f" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x00\x50\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xd8\x01\x00" "\x00\x00\x00\x00\x00\x00\x39\x3f\x00\x00\x62\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\xe4\x00\x00\x10\x00\x00\x00\x00\x00\xe9" "\x3e\x00\x00\x50\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4" "\x00\x00\x50\x00\x00\x00\x00\x00\x99\x3e\x00\x00\x50\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x00\x00\x00\x00" "\x00\x49\x3e\x00\x00\x50\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\xe4\x00\x00\x50\x01\x00\x00\x00\x00\xd9\x3d\x00\x00\x70\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x01\x00" "\x00\x00\x00\x69\x3d\x00\x00\x70\x00\x00\x00\x00\x00\x00\x00\x00", 256); *(uint64_t*)0x20000598 = 0x100; *(uint64_t*)0x200005a0 = 0x1500000; *(uint64_t*)0x200005a8 = 0x20013600; memcpy( (void*)0x20013600, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x50\x02\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49" "\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x50\x04\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82" "\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x80\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x22\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00" "\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00" "\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2" "\x9b\x71\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00" "\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71" "\x00\x00\x80\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00\x01\x00\x01\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\xc9\xc2\x2f\xf9" "\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x80\x00\x00" "\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01" "\x00\x00\x10\x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x50\x00\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82" "\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x40\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x02\x00\x00" "\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00" "\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00" "\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2" "\x9b\x71\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00" "\x00\x00\x00\x40\x06\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00" "\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\xeb" "\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad\x75\xbc" "\x60\x56\x24\x37\x65\x7e\xe0\xf6\x73\x86\x88\x6f\x69\x4e\x54\x0e\xda" "\x11\x29\x6e\x8f\x6b\x6f\xd4\x12\x56\x44\x2b\x54\x74\xeb\x07\xba\xcf" "\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad\x00\x40\x50\x01\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc\x2c" "\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x05\x00\x00\x00\x00\x00\x00" "\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\xd8\x01\x00\x00\x00\x00\x00\x00\x00\x39\x3f\x00" "\x00\x62\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0" "\x00\x00\x00\x00\x00\xe9\x3e\x00\x00\x50\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\xe4\x00\x00\x50\x01\x00\x00\x00\x00\x79\x3e\x00\x00" "\x70\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x01" "\x00\x00\x00\x00\x09\x3e\x00\x00\x70\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\xe4\x00\x00\xd0\x01\x00\x00\x00\x00\x09\x3e\x00\x00\x70" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x01\x00" "\x00\x00\x00\xb9\x3d\x00\x00\x70\x00\x00\x00\x00\x00\x00\x00\x00", 832); *(uint64_t*)0x200005b0 = 0x340; *(uint64_t*)0x200005b8 = 0x1503dc0; *(uint64_t*)0x200005c0 = 0; *(uint64_t*)0x200005c8 = 0; *(uint64_t*)0x200005d0 = 0x1507dc0; *(uint64_t*)0x200005d8 = 0; *(uint64_t*)0x200005e0 = 0; *(uint64_t*)0x200005e8 = 0x1d00000; *(uint64_t*)0x200005f0 = 0x20013e00; *(uint64_t*)0x200005f8 = 0; *(uint64_t*)0x20000600 = 0x1d03dc0; *(uint64_t*)0x20000608 = 0x20014200; memcpy( (void*)0x20014200, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x50\x02\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49" "\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x00\x02\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x24" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10" "\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50" "\x02\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95" "\x25\xb2\x9b\x71\x00\x00\x00\x02\x00\x00\x00\x00\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x02\x00\x00\x00\x00" "\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x04\x00\x00\x00\x00\xc9\xc2" "\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x80" "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49" "\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd0\x01\x00\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82" "\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x80\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00" "\x01\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x00\x00" "\x00\x00\x00\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2" "\x9b\x71\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00" "\x00\x00\x00\x80\x05\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00" "\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc9\xc2\x2f\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\xeb" "\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad", 576); *(uint64_t*)0x20000610 = 0x240; *(uint64_t*)0x20000618 = 0x1d07dc0; *(uint64_t*)0x20000620 = 0x20014500; *(uint64_t*)0x20000628 = 0; *(uint64_t*)0x20000630 = 0x2500000; *(uint64_t*)0x20000638 = 0x20014600; memcpy( (void*)0x20014600, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed" "\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00" "\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc" "\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00" "\x00\x00\x00\x00\x00\x9b\xd8\x1d\x46\xc0\x15\x2c\x54\x9f\x6d\x7e\x2c" "\x5a\x96\x8a\x39\x00\x5f\x9b\x7b\x88\xa5\xe9\x40\xba\x30\x41\xe6\x46" "\x6a\xa5\x46\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0" "\x61\xad\x00\x40\xd0\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x06\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x1b" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef\x3e\x00\x00\x0c" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\x4b\xae\x79\x04\x00" "\x00\x00\x00\xcc\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x54\x6b\x82\x6b\x11\x00\x00\x00\x00\xa5\x3e\x00\x00\x27\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\xbf\x5d\x29\x17\x00\x00" "\x00\x00\x82\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x54\xbc\xde\x42\xe5\x00\x00\x00\x00\x5f\x3e\x00\x00\x23\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\x48\x2d\x12\xf6\x00\x00\x00" "\x00\x3c\x3e\x00\x00\x23\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x3d\x00\x00\xa0\x00\x00\x00" "\x01\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00" "\x8d\x3d\x00\x00\x0f\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00\x54" "\x4b\xae\x79\x04\x00\x00\x00\x00\x6a\x3d\x00\x00\x23\x00\x00\x00\x01" "\x01\x00\x00\x00\x00\x00\x00\x54\x48\x2d\x12\xf6\x00\x00\x00\x00\x47" "\x3d\x00\x00\x23\x00\x00\x00\x02\x01\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\xa7\x3c\x00\x00\xa0\x00\x00\x00\x02\x01" "\x00\x00\x00\x00\x00\x00\x0c\x01\x01\x00\x00\x00\x00\x00\x00\x98\x3c" "\x00\x00\x0f\x00\x00\x00\x02\x01\x00\x00\x00\x00\x00\x00\x6c\x00\x00" "\x00\x00\x00\x00\x00\x00\x69\x38\x00\x00\x2f\x04\x00\x00\x03\x01\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xc9\x37\x00" "\x00\xa0\x00\x00\x00\x03\x01\x00\x00\x00\x00\x00\x00\x0c\x01\x01\x00" "\x00\x00\x00\x00\x00\xba\x37\x00\x00\x0f\x00\x00\x00\x03\x01\x00\x00" "\x00\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x37\x00\x00" "\x3b\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\xdf\x36\x00\x00\xa0\x00\x00\x00\x04\x01\x00\x00\x00" "\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xd0\x36\x00\x00\x0f" "\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x18\x22\xa8\xf1\x26\x00" "\x00\x00\x00\xa1\x36\x00\x00\x2f\x00\x00\x00\x04\x01\x00\x00\x00\x00" "\x00\x00\x18\xd6\x5b\xa1\x35\x00\x00\x00\x00\x72\x36\x00\x00\x2f\x00" "\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x00" "\x00\x00\x53\x36\x00\x00\x1f\x00\x00\x00\x05\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x35\x00\x00\xa0\x00\x00" "\x00\x05\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00" "\x00\x95\x35\x00\x00\x1e\x00\x00\x00\x06\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\xf5\x34\x00\x00\xa0\x00\x00\x00" "\x06\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00" "\xe2\x34\x00\x00\x13\x00\x00\x00\x06\x01\x00\x00\x00\x00\x00\x00\x6c" "\x00\x00\x00\x00\x00\x00\x00\x00\x69\x34\x00\x00\x79\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00", 992); *(uint64_t*)0x20000640 = 0x3e0; *(uint64_t*)0x20000648 = 0x2503f40; *(uint64_t*)0x20000650 = 0; *(uint64_t*)0x20000658 = 0; *(uint64_t*)0x20000660 = 0x25074c0; *(uint64_t*)0x20000668 = 0x20015900; memcpy( (void*)0x20015900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x64" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x06\x00\x00\x00\x00\x00\x00" "\x00\x09\x00\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64\x06\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x81\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x06\x00\x00\x00\x00\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\xd0\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c" "\x65\x32\x05\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x33" "\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00" "\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x06\x00\x00\x00\x00\x00\x00\x00\x0a\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x0b\x00\x08" "\x75\x73\x65\x72\x2e\x78\x61\x74\x74\x72\x31\x78\x61\x74\x74\x72\x31" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x0b\x00\x08\x75\x73\x65\x72" "\x2e\x78\x61\x74\x74\x72\x32\x78\x61\x74\x74\x72\x32\x03\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x31\x06\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x81\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55" "\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00" "\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85" "\x24\x06\x00\x00\x00\x00\x00\x00\x00\x26\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x2f\x74\x6d\x70\x2f\x73\x79\x7a\x2d\x69\x6d\x61" "\x67\x65\x67\x65\x6e\x34\x36\x35\x33\x38\x39\x37\x32\x39\x2f\x66\x69" "\x6c\x65\x30\x2f\x66\x69\x6c\x65\x30\x03\x00\x00\x00\x00\x00\x00\x00" "\x05\x00\x66\x69\x6c\x65\x31\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xff\xa1\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x06\x00\x00" "\x00\x00\x00\x00\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x02\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x30\x06\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x81\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x03\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x07\x66\x69" "\x6c\x65\x31\x02\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66" "\x69\x6c\x65\x30\x02\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c" "\x65\x30\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x04\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x31\x05\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x32\x05\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x33\x06\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x09\x00\x01\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64" "\x01\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x02\x66\x69\x6c\x65" "\x30\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00" "\x00\x00\x00\x84\xa2\xae\xa3\x0c\xbf\x5c\x82\x1d\x07\x01\x47\x3b\xad" "\x8a\xf8\x04\xcc\x4c\x6a\xf9\x79\xad\x77\x94\x47\xc2\x6e\x21\x98\x7c" "\x33\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\xc0\xd0\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x7f" "\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x06\x00" "\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\xf6\xff\xff\xff\xff\xff\xff\xff\x80\x00\x00\xd0\x00\x00\x00" "\x00\x00\x3b\x3f\x00\x00\x60\x00\x00\x00\x00\x00", 3072); *(uint64_t*)0x20000670 = 0xc00; *(uint64_t*)0x20000678 = 0x250b480; *(uint64_t*)0x20000680 = 0x20016500; memcpy((void*)0x20016500, "\x68\x6e\xde\x92\x88\xc3\x91\xe7\xe0\x50\x26\xe5\x6f\x2f\x91\xbf" "\xd8\x79\x98\x7a\x04\x0e\xa9\x84\x45\xda\xbc\x76\xf5\x5b\x8e\x5f" "\x68\x6e\xde\x92\x88\xc3\x91\xe7\xe0\x50\x26\xe5\x6f\x2f\x91\xbf" "\xd8\x79\x98\x7a\x04\x0e\xa9\x84\x45\xda\xbc\x76\xf5\x5b\x8e\x5f" "\x68\x6e\xde\x92\x88\xc3\x91\xe7\xe0\x50\x26\xe5\x6f\x2f\x91\xbf" "\xd8\x79\x98\x7a\x04\x0e\xa9\x84\x45\xda\xbc\x76\xf5\x5b\x8e\x5f" "\x42\x44\x24\x29\x76\x3d\x9c\x2f\xb0\xfa\x64\xab\x77\xaf\x58\xeb" "\x21\x1e\x28\x14\x16\x4a\x95\x3e\x5d\xfa\xc9\x7b\x05\xe3\xad\x85" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x00\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00", 192); *(uint64_t*)0x20000688 = 0xc0; *(uint64_t*)0x20000690 = 0x250ffa0; *(uint64_t*)0x20000698 = 0x20016600; memcpy((void*)0x20016600, "\xd2\x2b\xfa\x6b\x70\x13\xbc\xa9\xcb\x4f\xf3\xd7\xbb\x48\x35\x40" "\x04\x0e\x38\x79\x22\x16\xca\x87\xb0\x14\x39\x0b\xf4\x43\x14\x19" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x40\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\xf7\xff\xff\xff\xff\xff\xff\xff" "\x02\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef" "\x3e\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x200006a0 = 0xa0; *(uint64_t*)0x200006a8 = 0x2514000; *(uint64_t*)0x200006b0 = 0x20016700; memcpy((void*)0x20016700, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xeb\x6a\x42\xd5\x68\x6d\xa4\xf8\x0e\xb9\x6d\x10\x3f\x00\x06\xa4" "\xa7\xc8\xa0\x22\x25\x78\x4d\x36\x78\x75\xcc\x8a\x73\x0b\x47\x65" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x80\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xfb\xac\x5a" "\xb1\x38\xf9\xde\x8d\x3d\x93\x3f\x00\x00\x08\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x200006b8 = 0x140; *(uint64_t*)0x200006c0 = 0x2517f40; *(uint64_t*)0x200006c8 = 0x20016900; *(uint64_t*)0x200006d0 = 0; *(uint64_t*)0x200006d8 = 0x251bfe0; *(uint64_t*)0x200006e0 = 0x20016b00; memcpy( (void*)0x20016b00, "\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\xb0\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00" "\x00\x00\x00\xb0\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xb0\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00" "\x00\xb0\x09\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xb0\xf7\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00" "\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00" "\x00\x00\x00\x00\x00\xb0\x05\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\xb0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x48\x18\xe8\xe7\xea\x4c\xe8" "\x3f\x79\x72\x7b\xff\x58\x78\x10\x70\xdc\x63\xef\x1f\xe9\xc1\x46\x04" "\xbb\xb3\x37\x52\x91\x91\x2a\x37\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5" "\x3c\x89\xbe\x98\xb0\x61\xad\x00\x00\xd2\x01\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43" "\xd9\x53\x83\x14\xe1\x05\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\xcc\x00\x00\xd0\x00\x00\x00\x00\x00\x6b\x3f\x00\x00\x30\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x01\x00\x00\x00\x00" "\x3b\x3f\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc" "\x00\x00\xd0\x01\x00\x00\x00\x00\x0b\x3f\x00\x00\x30\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x02\x00\x00\x00\x00\xdb" "\x3e\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00" "\x00\x50\x04\x00\x00\x00\x00\xab\x3e\x00\x00\x30\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x04\x00\x00\x00\x00\xab\x3e" "\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00" "\x50\x04\x00\x00\x00\x00\x7b\x3e\x00\x00\x30\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 672); *(uint64_t*)0x200006e8 = 0x2a0; *(uint64_t*)0x200006f0 = 0x251fe80; *(uint64_t*)0x200006f8 = 0; *(uint64_t*)0x20000700 = 0; *(uint64_t*)0x20000708 = 0x2523ea0; *(uint64_t*)0x20000710 = 0x20017100; memcpy((void*)0x20017100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x40\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000718 = 0x80; *(uint64_t*)0x20000720 = 0x2527560; *(uint64_t*)0x20000728 = 0x20017200; *(uint64_t*)0x20000730 = 0; *(uint64_t*)0x20000738 = 0x2527720; *(uint64_t*)0x20000740 = 0x20017300; memcpy((void*)0x20017300, "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000748 = 0x40; *(uint64_t*)0x20000750 = 0x2527840; *(uint64_t*)0x20000758 = 0x20017400; memcpy((void*)0x20017400, "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000760 = 0x60; *(uint64_t*)0x20000768 = 0x25278e0; *(uint64_t*)0x20000770 = 0x20017500; memcpy((void*)0x20017500, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00" "\x00\x84\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x07\x00\x02\x64\x65\x66\x61\x75\x6c\x74\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00" "\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc" "\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41", 288); *(uint64_t*)0x20000778 = 0x120; *(uint64_t*)0x20000780 = 0x25279e0; *(uint64_t*)0x20000788 = 0x20017700; memcpy((void*)0x20017700, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00" "\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde\x8d" "\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000790 = 0x80; *(uint64_t*)0x20000798 = 0x2527b60; *(uint64_t*)0x200007a0 = 0x20017800; memcpy((void*)0x20017800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200007a8 = 0x40; *(uint64_t*)0x200007b0 = 0x2527c00; *(uint64_t*)0x200007b8 = 0x20017900; memcpy((void*)0x20017900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x64\x65\x66\x61\x75" "\x6c\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200007c0 = 0x60; *(uint64_t*)0x200007c8 = 0x2527c80; *(uint64_t*)0x200007d0 = 0x20017a00; memcpy((void*)0x20017a00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd2\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x200007d8 = 0x80; *(uint64_t*)0x200007e0 = 0x2527d20; *(uint64_t*)0x200007e8 = 0x20017b00; memcpy((void*)0x20017b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00", 64); *(uint64_t*)0x200007f0 = 0x40; *(uint64_t*)0x200007f8 = 0x2527e40; *(uint64_t*)0x20000800 = 0x20017c00; *(uint64_t*)0x20000808 = 0; *(uint64_t*)0x20000810 = 0x2527ee0; *(uint64_t*)0x20000818 = 0x20017d00; memcpy((void*)0x20017d00, "\xe0\xd9\x33\xee\x90\x5b\x06\xe6\x55\x97\x52\xb7\x74\x76\x43\xed" "\xda\x8b\x59\x76\x5b\x9a\x71\x74\xd0\x28\x41\xb4\x07\x52\xd8\xea" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x80\xd2\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x06\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x0c\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\xa8\x00\x30" "\x00\x00\x00\x00\x00\x00\x66\x3f\x00\x00\x35\x00\x00\x00\x00\x00" "\xd0\x00\x00\x00\x00\x00\xc0\x00\x00\x80\x00\x00\x00\x00\x00\x4e" "\x3f\x00\x00\x18\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc0" "\x00\x00\x80\x00\x00\x00\x00\x00\x36\x3f\x00\x00\x18\x00\x00\x00" "\x00\x40\x50\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00" "\x00\x15\x3f\x00\x00\x21\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00" "\x00\xc0\x00\x00\x00\x02\x00\x00\x00\x00\xfd\x3e\x00\x00\x18\x00" "\x00\x00\x00\xc0\xd0\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00" "\x00\x00\x00\xdc\x3e\x00\x00\x21\x00\x00\x00\x00\x40\xd1\x01\x00" "\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\xbb\x3e\x00\x00" "\x21\x00\x00\x00\x00\x80\xd1\x01\x00\x00\x00\x00\xa9\x00\x00\x00" "\x00\x00\x00\x00\x00\x9a\x3e\x00\x00\x21\x00\x00\x00\x00\x80\xd2" "\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x79\x3e" "\x00\x00\x21\x00\x00\x00\x00\xc0\xd2\x01\x00\x00\x00\x00\xa9\x00" "\x00\x00\x00\x00\x00\x00\x00\x58\x3e\x00\x00\x21\x00\x00\x00\x00" "\x00\xd3\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00" "\x37\x3e\x00\x00\x21\x00\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00" "\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x16\x3e\x00\x00\x21\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 416); *(uint64_t*)0x20000820 = 0x1a0; *(uint64_t*)0x20000828 = 0x2528000; *(uint64_t*)0x20000830 = 0x20017f00; *(uint64_t*)0x20000838 = 0; *(uint64_t*)0x20000840 = 0x252be60; *(uint64_t*)0x20000848 = 0; *(uint64_t*)0x20000850 = 0; *(uint64_t*)0x20000858 = 0x252f3a0; *(uint64_t*)0x20000860 = 0; *(uint64_t*)0x20000868 = 0; *(uint64_t*)0x20000870 = 0x2533560; *(uint64_t*)0x20000878 = 0; *(uint64_t*)0x20000880 = 0; *(uint64_t*)0x20000888 = 0x2533720; *(uint64_t*)0x20000890 = 0; *(uint64_t*)0x20000898 = 0; *(uint64_t*)0x200008a0 = 0x2533840; *(uint64_t*)0x200008a8 = 0; *(uint64_t*)0x200008b0 = 0; *(uint64_t*)0x200008b8 = 0x25338e0; *(uint64_t*)0x200008c0 = 0; *(uint64_t*)0x200008c8 = 0; *(uint64_t*)0x200008d0 = 0x25339e0; *(uint64_t*)0x200008d8 = 0x20019900; *(uint64_t*)0x200008e0 = 0; *(uint64_t*)0x200008e8 = 0x2533b60; *(uint64_t*)0x200008f0 = 0x20019a00; *(uint64_t*)0x200008f8 = 0; *(uint64_t*)0x20000900 = 0x2533c80; *(uint64_t*)0x20000908 = 0x20019b00; memcpy((void*)0x20019b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000910 = 0x80; *(uint64_t*)0x20000918 = 0x2533d20; *(uint64_t*)0x20000920 = 0x20019c00; *(uint64_t*)0x20000928 = 0; *(uint64_t*)0x20000930 = 0x2533e40; *(uint64_t*)0x20000938 = 0x20019d00; memcpy((void*)0x20019d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd2\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000940 = 0x60; *(uint64_t*)0x20000948 = 0x2533ee0; *(uint64_t*)0x20000950 = 0x20019e00; memcpy((void*)0x20019e00, "\x26\xc5\x5d\xbe\x3b\xe0\x3b\x09\xa5\x0a\x7c\x1d\xd0\x48\x56\xd9" "\x50\xe2\x46\x17\xb8\xc2\xd4\x32\xa0\x7e\xee\xc4\x52\x8c\x80\xc7" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x40\xd3\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x06\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\x01\x00" "\x00\x00\x00\x00\x00\x00\x73\x3f\x00\x00\x28\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xcc\x00\x00\xd0\x00\x00\x00\x00\x00\x43" "\x3f\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc" "\x00\x00\x50\x01\x00\x00\x00\x00\x13\x3f\x00\x00\x30\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\xd0\x01\x00\x00\x00" "\x00\xe3\x3e\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\xcc\x00\x00\x50\x02\x00\x00\x00\x00\xb3\x3e\x00\x00\x30\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x04\x00" "\x00\x00\x00\x83\x3e\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00", 256); *(uint64_t*)0x20000958 = 0x100; *(uint64_t*)0x20000960 = 0x2534000; *(uint64_t*)0x20000968 = 0x20019f00; *(uint64_t*)0x20000970 = 0; *(uint64_t*)0x20000978 = 0x2537ee0; *(uint64_t*)0x20000980 = 0x2001a200; memcpy((void*)0x2001a200, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x40\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000988 = 0x80; *(uint64_t*)0x20000990 = 0x253b560; *(uint64_t*)0x20000998 = 0x2001a300; memcpy((void*)0x2001a300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd1\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200009a0 = 0x60; *(uint64_t*)0x200009a8 = 0x253b720; *(uint64_t*)0x200009b0 = 0x2001a400; *(uint64_t*)0x200009b8 = 0; *(uint64_t*)0x200009c0 = 0x253b840; *(uint64_t*)0x200009c8 = 0x2001a500; *(uint64_t*)0x200009d0 = 0; *(uint64_t*)0x200009d8 = 0x253b8e0; *(uint64_t*)0x200009e0 = 0; *(uint64_t*)0x200009e8 = 0; *(uint64_t*)0x200009f0 = 0x253b9e0; *(uint64_t*)0x200009f8 = 0x2001a800; memcpy((void*)0x2001a800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc0\xd2\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde\x8d" "\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x7c\x33\xd9\x24\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20000a00 = 0xe0; *(uint64_t*)0x20000a08 = 0x253bb60; *(uint64_t*)0x20000a10 = 0x2001a900; *(uint64_t*)0x20000a18 = 0; *(uint64_t*)0x20000a20 = 0x253bc80; *(uint64_t*)0x20000a28 = 0x2001aa00; memcpy((void*)0x2001aa00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000a30 = 0x80; *(uint64_t*)0x20000a38 = 0x253bd20; *(uint64_t*)0x20000a40 = 0; *(uint64_t*)0x20000a48 = 0; *(uint64_t*)0x20000a50 = 0x253be40; *(uint64_t*)0x20000a58 = 0; *(uint64_t*)0x20000a60 = 0; *(uint64_t*)0x20000a68 = 0x253bee0; *(uint64_t*)0x20000a70 = 0x2001ad00; memcpy((void*)0x2001ad00, "\x15\x7b\xf0\xe8\x2a\xce\xcd\x02\xd5\xa6\x9e\x9d\x74\xe2\xf5\x7f" "\x06\xe6\x86\x89\x3d\xde\x64\x2a\xe8\x3b\xbc\x7a\x45\x20\x51\xbf" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\xc0\xd3\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x07\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x0c\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\xa8\x00\x30" "\x00\x00\x00\x00\x00\x00\x66\x3f\x00\x00\x35\x00\x00\x00\x00\x00" "\xd0\x00\x00\x00\x00\x00\xc0\x00\x00\x80\x00\x00\x00\x00\x00\x4e" "\x3f\x00\x00\x18\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc0" "\x00\x00\x80\x00\x00\x00\x00\x00\x36\x3f\x00\x00\x18\x00\x00\x00" "\x00\x40\x50\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00" "\x00\x15\x3f\x00\x00\x21\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00" "\x00\xc0\x00\x00\x00\x02\x00\x00\x00\x00\xfd\x3e\x00\x00\x18\x00" "\x00\x00\x00\xc0\xd0\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00" "\x00\x00\x00\xdc\x3e\x00\x00\x21\x00\x00\x00\x00\x40\xd1\x01\x00" "\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\xbb\x3e\x00\x00" "\x21\x00\x00\x00\x00\x80\xd1\x01\x00\x00\x00\x00\xa9\x00\x00\x00" "\x00\x00\x00\x00\x00\x9a\x3e\x00\x00\x21\x00\x00\x00\x00\xc0\xd2" "\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x79\x3e" "\x00\x00\x21\x00\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\xa9\x00" "\x00\x00\x00\x00\x00\x00\x00\x58\x3e\x00\x00\x21\x00\x00\x00\x00" "\x80\xd3\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00" "\x37\x3e\x00\x00\x21\x00\x00\x00\x00\xc0\xd3\x01\x00\x00\x00\x00" "\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x16\x3e\x00\x00\x21\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 416); *(uint64_t*)0x20000a78 = 0x1a0; *(uint64_t*)0x20000a80 = 0x253c000; *(uint64_t*)0x20000a88 = 0x2001af00; memcpy((void*)0x2001af00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00" "\x00\x00\x00\xb0\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\xb0\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00" "\x00\x00\x00\x00\x00\xb0\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xb0\x05\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\x00\x00\x00\xb0\x09\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\xb0\xf7\xff\xff\xff\xff\xff\xff" "\xff\x01\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x07\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xb0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00" "\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\xb2\x05\x00\x00\x00\x00\x00\x00\x00\x05\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00", 416); *(uint64_t*)0x20000a90 = 0x1a0; *(uint64_t*)0x20000a98 = 0x253fe60; *(uint64_t*)0x20000aa0 = 0x2001b100; *(uint64_t*)0x20000aa8 = 0; *(uint64_t*)0x20000ab0 = 0x4000000; *(uint64_t*)0x20000ab8 = 0; *(uint64_t*)0x20000ac0 = 0; *(uint64_t*)0x20000ac8 = 0x4000220; *(uint64_t*)0x20000ad0 = 0x2001b400; memcpy((void*)0x2001b400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\xe4\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc9\xc2\x2f\xf9" "\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\xc9\xc2\x2f\xf9" "\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc9\xc2\x2f" "\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\xc9\xc2\x2f" "\xf9\x67\x0f\x49\xa7\x82\xe8\x98\x95\x25\xb2\x9b\x71\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 256); *(uint64_t*)0x20000ad8 = 0x100; *(uint64_t*)0x20000ae0 = 0x4000320; *(uint64_t*)0x20000ae8 = 0; *(uint64_t*)0x20000af0 = 0; *(uint64_t*)0x20000af8 = 0x4000b20; *(uint64_t*)0x20000b00 = 0x2001b800; memcpy((void*)0x2001b800, "\x3c\x4c\x78\x6a\xa4\xdc\x0a\x03\x74\x58\x3b\x5c\x8a\x95\x6d\xd0" "\x22\x7f\xee\x92\xe2\x92\x59\x36\x0a\x8b\xab\x07\x94\x19\x9f\x20" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x00\xd0\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef" "\x3e\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x20000b08 = 0xa0; *(uint64_t*)0x20000b10 = 0x4500000; *(uint64_t*)0x20000b18 = 0x2001b900; memcpy( (void*)0x2001b900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed" "\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00" "\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc" "\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00" "\x00\x00\x00\x00\x00\x9b\xd8\x1d\x46\xc0\x15\x2c\x54\x9f\x6d\x7e\x2c" "\x5a\x96\x8a\x39\x00\x5f\x9b\x7b\x88\xa5\xe9\x40\xba\x30\x41\xe6\x46" "\x6a\xa5\x46\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0" "\x61\xad\x00\x40\xd0\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x06\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x1b" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef\x3e\x00\x00\x0c" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\x4b\xae\x79\x04\x00" "\x00\x00\x00\xcc\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x54\x6b\x82\x6b\x11\x00\x00\x00\x00\xa5\x3e\x00\x00\x27\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\xbf\x5d\x29\x17\x00\x00" "\x00\x00\x82\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x54\xbc\xde\x42\xe5\x00\x00\x00\x00\x5f\x3e\x00\x00\x23\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\x48\x2d\x12\xf6\x00\x00\x00" "\x00\x3c\x3e\x00\x00\x23\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x3d\x00\x00\xa0\x00\x00\x00" "\x01\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00" "\x8d\x3d\x00\x00\x0f\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00\x54" "\x4b\xae\x79\x04\x00\x00\x00\x00\x6a\x3d\x00\x00\x23\x00\x00\x00\x01" "\x01\x00\x00\x00\x00\x00\x00\x54\x48\x2d\x12\xf6\x00\x00\x00\x00\x47" "\x3d\x00\x00\x23\x00\x00\x00\x02\x01\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\xa7\x3c\x00\x00\xa0\x00\x00\x00\x02\x01" "\x00\x00\x00\x00\x00\x00\x0c\x01\x01\x00\x00\x00\x00\x00\x00\x98\x3c" "\x00\x00\x0f\x00\x00\x00\x02\x01\x00\x00\x00\x00\x00\x00\x6c\x00\x00" "\x00\x00\x00\x00\x00\x00\x69\x38\x00\x00\x2f\x04\x00\x00\x03\x01\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xc9\x37\x00" "\x00\xa0\x00\x00\x00\x03\x01\x00\x00\x00\x00\x00\x00\x0c\x01\x01\x00" "\x00\x00\x00\x00\x00\xba\x37\x00\x00\x0f\x00\x00\x00\x03\x01\x00\x00" "\x00\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x37\x00\x00" "\x3b\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\xdf\x36\x00\x00\xa0\x00\x00\x00\x04\x01\x00\x00\x00" "\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xd0\x36\x00\x00\x0f" "\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x18\x22\xa8\xf1\x26\x00" "\x00\x00\x00\xa1\x36\x00\x00\x2f\x00\x00\x00\x04\x01\x00\x00\x00\x00" "\x00\x00\x18\xd6\x5b\xa1\x35\x00\x00\x00\x00\x72\x36\x00\x00\x2f\x00" "\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x00" "\x00\x00\x53\x36\x00\x00\x1f\x00\x00\x00\x05\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xb3\x35\x00\x00\xa0\x00\x00" "\x00\x05\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00" "\x00\x95\x35\x00\x00\x1e\x00\x00\x00\x06\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\xf5\x34\x00\x00\xa0\x00\x00\x00" "\x06\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00" "\xe2\x34\x00\x00\x13\x00\x00\x00\x06\x01\x00\x00\x00\x00\x00\x00\x6c" "\x00\x00\x00\x00\x00\x00\x00\x00\x69\x34\x00\x00\x79\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00", 992); *(uint64_t*)0x20000b20 = 0x3e0; *(uint64_t*)0x20000b28 = 0x4503f40; *(uint64_t*)0x20000b30 = 0x2001bd00; *(uint64_t*)0x20000b38 = 0; *(uint64_t*)0x20000b40 = 0x45074c0; *(uint64_t*)0x20000b48 = 0x2001cc00; memcpy( (void*)0x2001cc00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x64" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x06\x00\x00\x00\x00\x00\x00" "\x00\x09\x00\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64\x06\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x81\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x06\x00\x00\x00\x00\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\xd0\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c" "\x65\x32\x05\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x33" "\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00" "\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x06\x00\x00\x00\x00\x00\x00\x00\x0a\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x0b\x00\x08" "\x75\x73\x65\x72\x2e\x78\x61\x74\x74\x72\x31\x78\x61\x74\x74\x72\x31" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x0b\x00\x08\x75\x73\x65\x72" "\x2e\x78\x61\x74\x74\x72\x32\x78\x61\x74\x74\x72\x32\x03\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x31\x06\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x81\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55" "\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00" "\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85" "\x24\x06\x00\x00\x00\x00\x00\x00\x00\x26\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x2f\x74\x6d\x70\x2f\x73\x79\x7a\x2d\x69\x6d\x61" "\x67\x65\x67\x65\x6e\x34\x36\x35\x33\x38\x39\x37\x32\x39\x2f\x66\x69" "\x6c\x65\x30\x2f\x66\x69\x6c\x65\x30\x03\x00\x00\x00\x00\x00\x00\x00" "\x05\x00\x66\x69\x6c\x65\x31\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xff\xa1\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x06\x00\x00" "\x00\x00\x00\x00\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x02\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x30\x06\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x81\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x03\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x07\x66\x69" "\x6c\x65\x31\x02\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66" "\x69\x6c\x65\x30\x02\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c" "\x65\x30\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00" "\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53" "\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x04\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x31\x05\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x32\x05\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x33\x06\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x09\x00\x01\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64" "\x01\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x02\x66\x69\x6c\x65" "\x30\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00" "\x00\x00\x00\x84\xa2\xae\xa3\x0c\xbf\x5c\x82\x1d\x07\x01\x47\x3b\xad" "\x8a\xf8\x04\xcc\x4c\x6a\xf9\x79\xad\x77\x94\x47\xc2\x6e\x21\x98\x7c" "\x33\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\xc0\xd0\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x7f" "\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x06\x00" "\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\xf6\xff\xff\xff\xff\xff\xff\xff\x80\x00\x00\xd0\x00\x00\x00" "\x00\x00\x3b\x3f\x00\x00\x60\x00\x00\x00\x00\x00", 3072); *(uint64_t*)0x20000b50 = 0xc00; *(uint64_t*)0x20000b58 = 0x450b480; *(uint64_t*)0x20000b60 = 0x2001d800; memcpy((void*)0x2001d800, "\x68\x6e\xde\x92\x88\xc3\x91\xe7\xe0\x50\x26\xe5\x6f\x2f\x91\xbf" "\xd8\x79\x98\x7a\x04\x0e\xa9\x84\x45\xda\xbc\x76\xf5\x5b\x8e\x5f" "\x68\x6e\xde\x92\x88\xc3\x91\xe7\xe0\x50\x26\xe5\x6f\x2f\x91\xbf" "\xd8\x79\x98\x7a\x04\x0e\xa9\x84\x45\xda\xbc\x76\xf5\x5b\x8e\x5f" "\x68\x6e\xde\x92\x88\xc3\x91\xe7\xe0\x50\x26\xe5\x6f\x2f\x91\xbf" "\xd8\x79\x98\x7a\x04\x0e\xa9\x84\x45\xda\xbc\x76\xf5\x5b\x8e\x5f" "\x42\x44\x24\x29\x76\x3d\x9c\x2f\xb0\xfa\x64\xab\x77\xaf\x58\xeb" "\x21\x1e\x28\x14\x16\x4a\x95\x3e\x5d\xfa\xc9\x7b\x05\xe3\xad\x85" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x00\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00", 192); *(uint64_t*)0x20000b68 = 0xc0; *(uint64_t*)0x20000b70 = 0x450ffa0; *(uint64_t*)0x20000b78 = 0x2001d900; memcpy((void*)0x2001d900, "\xd2\x2b\xfa\x6b\x70\x13\xbc\xa9\xcb\x4f\xf3\xd7\xbb\x48\x35\x40" "\x04\x0e\x38\x79\x22\x16\xca\x87\xb0\x14\x39\x0b\xf4\x43\x14\x19" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x40\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\xf7\xff\xff\xff\xff\xff\xff\xff" "\x02\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef" "\x3e\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x20000b80 = 0xa0; *(uint64_t*)0x20000b88 = 0x4514000; *(uint64_t*)0x20000b90 = 0x2001da00; memcpy((void*)0x2001da00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xeb\x6a\x42\xd5\x68\x6d\xa4\xf8\x0e\xb9\x6d\x10\x3f\x00\x06\xa4" "\xa7\xc8\xa0\x22\x25\x78\x4d\x36\x78\x75\xcc\x8a\x73\x0b\x47\x65" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x80\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x04\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xfb\xac\x5a" "\xb1\x38\xf9\xde\x8d\x3d\x93\x3f\x00\x00\x08\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x20000b98 = 0x140; *(uint64_t*)0x20000ba0 = 0x4517f40; *(uint64_t*)0x20000ba8 = 0x2001dc00; memcpy((void*)0x2001dc00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00" "\xee\x2b\xfb\x2c\x99\xc0\x33\x6a\x53\xac\x55\x2c\x0e\x2f\x67\xf4" "\xe1\x18\xbd\x81\xcd\x3e\x84\x8e\xe3\xed\xe5\x00\xb3\x3c\xd3\x34" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\xc0\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x0b\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\xc0\x00\x00" "\x80\x00\x00\x00\x00\x00\x83\x3f\x00\x00\x18\x00\x00\x00\x00\x00" "\x50\x01\x00\x00\x00\x00\xc0\x00\x00\x80\x00\x00\x00\x00\x00\x6b" "\x3f\x00\x00\x18\x00\x00\x00\x00\x40\x50\x01\x00\x00\x00\x00\xa9" "\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x3f\x00\x00\x21\x00\x00\x00" "\x00\x00\xd0\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00" "\x00\x29\x3f\x00\x00\x21\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00" "\x00\xc0\x00\x00\x00\x02\x00\x00\x00\x00\x11\x3f\x00\x00\x18\x00" "\x00\x00\x00\x00\xd1\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00" "\x00\x00\x00\xf0\x3e\x00\x00\x21\x00\x00\x00\x00\x40\xd1\x01\x00" "\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\xcf\x3e\x00\x00" "\x21\x00\x00\x00\x00\x80\xd1\x01\x00\x00\x00\x00\xa9\x00\x00\x00" "\x00\x00\x00\x00\x00\xae\x3e\x00\x00\x21\x00\x00\x00\x00\xc0\xd1" "\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x8d\x3e" "\x00\x00\x21\x00\x00\x00\x00\x00\xd2\x01\x00\x00\x00\x00\xa9\x00" "\x00\x00\x00\x00\x00\x00\x00\x6c\x3e\x00\x00\x21\x00\x00\x00\x00" "\x40\xd2\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00" "\x4b\x3e\x00\x00\x21\x00\x00\x00\x00\x80\xd1\x01\x00\x00\x00\x00" "\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x4b\x3e\x00\x00\x21\x00\x00" "\x00\x00\x80\xd1\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00" "\x00\x00\x33\x3e\x00\x00\x21\x00\x00\x00\x00\x00\x50\x00\x00\x00" "\x00\x00\xc0\x00\x00\x80\x00\x00\x00\x00\x00\xf3\x3e\x00\x00\x18", 480); *(uint64_t*)0x20000bb0 = 0x1e0; *(uint64_t*)0x20000bb8 = 0x451bfe0; *(uint64_t*)0x20000bc0 = 0x2001de00; memcpy( (void*)0x2001de00, "\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\xb0\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00" "\x00\x00\x00\xb0\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xb0\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00" "\x00\xb0\x09\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xb0\xf7\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00" "\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00" "\x00\x00\x00\x00\x00\xb0\x05\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\xb0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x48\x18\xe8\xe7\xea\x4c\xe8" "\x3f\x79\x72\x7b\xff\x58\x78\x10\x70\xdc\x63\xef\x1f\xe9\xc1\x46\x04" "\xbb\xb3\x37\x52\x91\x91\x2a\x37\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5" "\x3c\x89\xbe\x98\xb0\x61\xad\x00\x00\xd2\x01\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43" "\xd9\x53\x83\x14\xe1\x05\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\xcc\x00\x00\xd0\x00\x00\x00\x00\x00\x6b\x3f\x00\x00\x30\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x01\x00\x00\x00\x00" "\x3b\x3f\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc" "\x00\x00\xd0\x01\x00\x00\x00\x00\x0b\x3f\x00\x00\x30\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x02\x00\x00\x00\x00\xdb" "\x3e\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00" "\x00\x50\x04\x00\x00\x00\x00\xab\x3e\x00\x00\x30\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x04\x00\x00\x00\x00\xab\x3e" "\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00" "\x50\x04\x00\x00\x00\x00\x7b\x3e\x00\x00\x30\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 672); *(uint64_t*)0x20000bc8 = 0x2a0; *(uint64_t*)0x20000bd0 = 0x451fe80; *(uint64_t*)0x20000bd8 = 0x2001e100; memcpy( (void*)0x2001e100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x7f\x64\xee" "\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x7f\x64\xee\x8e\xdc\x2c" "\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00" "\x00\x00\x00\x02\x00\x00\x00\x00\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2" "\xf4\x43\xd9\x53\x83\x14\xe1\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9" "\x53\x83\x14\xe1\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00" "\x00\x00\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14" "\xe1\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x7f" "\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0" "\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x7f\x64\xee\x8e" "\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x24\x9d\xff\x43\x84" "\x67\x53\x22\x78\xfc\xf4\x04\xad\xac\x87\x6e\xb3\xb8\x84\x01\xa6\x23" "\xd8\x34\x60\x2e\x22\x7b\xe4\xa9\x0f\x89\xeb\x07\xba\xcf\xd1\xd8\x47" "\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad\x00\x40\xd2\x01\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2" "\xf4\x43\xd9\x53\x83\x14\xe1\x05\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\xe4\x3d\x00\x00\xb7\x01" "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00" "\x00\x00\x2d\x3c\x00\x00\xb7\x01\x00\x00\x05\x00\x00\x00\x00\x00\x00" "\x00\x0c\x06\x00\x00\x00\x00\x00\x00\x00\x1c\x3c\x00\x00\x11\x00\x00" "\x00\x05\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00" "\x00\x65\x3a\x00\x00\xb7\x01\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\xc5\x39\x00\x00\xa0\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x0c\x06\x00\x00\x00\x00\x00\x00\x00" "\xb9\x39\x00\x00\x0c\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x54" "\xd2\xc2\xbf\x8d\x00\x00\x00\x00\x94\x39\x00\x00\x25\x00\x00\x00\x07" "\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\xdd" "\x37\x00\x00\xb7\x01\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x84\x00" "\x00\x00\x00\x00\x00\x00\x00\x26\x36\x00\x00\xb7\x01\x00\x00\xf7\xff" "\xff\xff\xff\xff\xff\xff\x84\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x34" "\x00\x00\xb7\x01\x00\x00\x00", 704); *(uint64_t*)0x20000be0 = 0x2c0; *(uint64_t*)0x20000be8 = 0x4523ea0; *(uint64_t*)0x20000bf0 = 0; *(uint64_t*)0x20000bf8 = 0; *(uint64_t*)0x20000c00 = 0x4527560; *(uint64_t*)0x20000c08 = 0x2001e500; memcpy((void*)0x2001e500, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd1\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000c10 = 0x60; *(uint64_t*)0x20000c18 = 0x4527720; *(uint64_t*)0x20000c20 = 0x2001e600; memcpy((void*)0x2001e600, "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000c28 = 0x40; *(uint64_t*)0x20000c30 = 0x4527840; *(uint64_t*)0x20000c38 = 0x2001e700; memcpy((void*)0x2001e700, "\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000c40 = 0x60; *(uint64_t*)0x20000c48 = 0x45278e0; *(uint64_t*)0x20000c50 = 0x2001e800; *(uint64_t*)0x20000c58 = 0; *(uint64_t*)0x20000c60 = 0x45279e0; *(uint64_t*)0x20000c68 = 0x2001ea00; memcpy((void*)0x2001ea00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00" "\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde\x8d" "\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000c70 = 0x80; *(uint64_t*)0x20000c78 = 0x4527b60; *(uint64_t*)0x20000c80 = 0x2001eb00; *(uint64_t*)0x20000c88 = 0; *(uint64_t*)0x20000c90 = 0x4527c00; *(uint64_t*)0x20000c98 = 0x2001ec00; memcpy((void*)0x2001ec00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x64\x65\x66\x61\x75" "\x6c\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000ca0 = 0x60; *(uint64_t*)0x20000ca8 = 0x4527c80; *(uint64_t*)0x20000cb0 = 0x2001ed00; memcpy((void*)0x2001ed00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xd2\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000cb8 = 0x80; *(uint64_t*)0x20000cc0 = 0x4527d20; *(uint64_t*)0x20000cc8 = 0x2001ee00; memcpy((void*)0x2001ee00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00", 64); *(uint64_t*)0x20000cd0 = 0x40; *(uint64_t*)0x20000cd8 = 0x4527e40; *(uint64_t*)0x20000ce0 = 0x2001ef00; memcpy((void*)0x2001ef00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd1\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000ce8 = 0x60; *(uint64_t*)0x20000cf0 = 0x4527ee0; *(uint64_t*)0x20000cf8 = 0x2001f000; *(uint64_t*)0x20000d00 = 0; *(uint64_t*)0x20000d08 = 0x4528000; *(uint64_t*)0x20000d10 = 0x2001f200; memcpy( (void*)0x2001f200, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xb0\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0" "\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x06" "\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x05" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x02\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00" "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x09\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\xf7\xff\xff\xff" "\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x07\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xb0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00" "\x30\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb2\x05\x00\x00" "\x00\x00\x00\x00\x00\x05\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x36\x2f\x4a\x40\x4a\x02\x3b\x1a\x27" "\xee\x77\x61\xc1\x53\xee\xb2\x72\xdd\x6d\x05\x2f\x28\x92\x1b\xfa\x80" "\x4e\xd3\xf3\xc1\x49\x1e\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89" "\xbe\x98\xb0\x61\xad\x00\xc0\xd2\x01\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53" "\x83\x14\xe1\x06\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00" "\x00\x00\x23\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef\x3e" "\x00\x00\x0c\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\x4b\xae" "\x79\x04\x00\x00\x00\x00\xcc\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x54\x6b\x82\x6b\x11\x00\x00\x00\x00\xa5\x3e\x00" "\x00\x27\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\xbf\x5d\x29" "\x17\x00\x00\x00\x00\x82\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x54\xbc\xde\x42\xe5\x00\x00\x00\x00\x5f\x3e\x00\x00" "\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x54\x48\x2d\x12\xf6" "\x00\x00\x00\x00\x3c\x3e\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x60\x02\x00\x00\x00\x00\x00\x00\x00\x19\x3e\x00\x00\x23" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x60\x03\x00\x00\x00\x00" "\x00\x00\x00\xf6\x3d\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x60\x04\x00\x00\x00\x00\x00\x00\x00\xd3\x3d\x00\x00\x23\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x60\x05\x00\x00\x00\x00\x00" "\x00\x00\xb0\x3d\x00\x00\x23\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x60\x06\x00\x00\x00\x00\x00\x00\x00\x89\x3d\x00\x00\x27\x00\x00" "\x00\x01\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\xe9\x3c\x00\x00\xa0\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00" "\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xda\x3c\x00\x00\x0f\x00\x00\x00" "\x01\x01\x00\x00\x00\x00\x00\x00\x54\x4b\xae\x79\x04\x00\x00\x00\x00" "\xb7\x3c\x00\x00\x23\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00\x54" "\x48\x2d\x12\xf6\x00\x00\x00\x00\x94\x3c\x00\x00\x23\x00\x00\x00\x01" "\x01\x00\x00\x00\x00\x00\x00\x60\x02\x00\x00\x00\x00\x00\x00\x00\x71" "\x3c\x00\x00\x23\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00\x60\x03" "\x00\x00\x00\x00\x00\x00\x00\x4e\x3c\x00\x00\x23\x00\x00\x00\x02\x01" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xae\x3b" "\x00\x00\xa0\x00\x00\x00\x02\x01\x00\x00\x00\x00\x00\x00\x0c\x01\x01" "\x00\x00\x00\x00\x00\x00\x9f\x3b\x00\x00\x0f\x00\x00\x00\x02\x01\x00" "\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x70\x37\x00" "\x00\x2f\x04\x00\x00\x03\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\xd0\x36\x00\x00\xa0\x00\x00\x00\x03\x01\x00\x00" "\x00\x00\x00\x00\x0c\x01\x01\x00\x00\x00\x00\x00\x00\xc1\x36\x00\x00" "\x0f\x00\x00\x00\x03\x01\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x00" "\x00\x00\x00\x00\x86\x36\x00\x00\x3b\x00\x00\x00\x04\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xe6\x35\x00\x00\xa0" "\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00" "\x00\x00\x00\xd7\x35\x00\x00\x0f\x00\x00\x00\x04\x01\x00\x00\x00\x00" "\x00\x00\x18\x22\xa8\xf1\x26\x00\x00\x00\x00\xa8\x35\x00\x00\x2f\x00" "\x00\x00\x04\x01\x00\x00\x00\x00\x00\x00\x18\xd6\x5b\xa1\x35\x00\x00" "\x00\x00\x79\x35\x00\x00\x2f\x00\x00\x00\x04\x01\x00\x00\x00\x00\x00" "\x00\x6c\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x35\x00\x00\x1f\x00\x00" "\x00\x05\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\xba\x34\x00\x00\xa0\x00\x00\x00\x05\x01\x00\x00\x00\x00\x00\x00" "\x0c\x00\x01\x00\x00\x00\x00\x00\x00\x9c\x34\x00\x00\x1e\x00\x00\x00" "\x05\x01\x00\x00\x00\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x00\x00\x00" "\x67\x34\x00\x00\x35\x00\x00\x00\x06\x01\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\xc7\x33\x00\x00\xa0\x00\x00\x00\x06" "\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xb4" "\x33\x00\x00\x13\x00\x00\x00\x06\x01\x00\x00\x00\x00\x00\x00\x6c\x00" "\x00\x00\x00\x00\x00\x00\x00\x3b\x33\x00\x00\x79\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 1408); *(uint64_t*)0x20000d18 = 0x580; *(uint64_t*)0x20000d20 = 0x452be60; *(uint64_t*)0x20000d28 = 0x2001f800; memcpy( (void*)0x2001f800, "\x06\x00\x00\x00\x00\x00\x00\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x06\x00\x00\x00\x00\x00\x00\x00\x09\x00\x66\x69\x6c\x65\x2e" "\x63\x6f\x6c\x64\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x64\x00\x00\x00\x00\x00\x00\x00\x64\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xed\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55" "\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\xd0\x00\x00\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x32\x05\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x66\x69\x6c\x65\x33\x06\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x28\x23\x00\x00\x00\x00\x00\x00\x00" "\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x06" "\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00" "\x00\x00\x00\x00\x06\x00\x0b\x00\x08\x75\x73\x65\x72\x2e\x78\x61\x74" "\x74\x72\x31\x78\x61\x74\x74\x72\x31\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x0b\x00\x08\x75\x73\x65\x72\x2e\x78\x61\x74\x74\x72\x32\x78" "\x61\x74\x74\x72\x32\x03\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69" "\x6c\x65\x31\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xed\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88" "\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc" "\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x06\x00\x00\x00\x00\x00\x00" "\x00\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2f\x74\x6d" "\x70\x2f\x73\x79\x7a\x2d\x69\x6d\x61\x67\x65\x67\x65\x6e\x34\x36\x35" "\x33\x38\x39\x37\x32\x39\x2f\x66\x69\x6c\x65\x30\x2f\x66\x69\x6c\x65" "\x30\x03\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x31\x06" "\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x26\x00" "\x00\x00\x00\x00\x00\x00\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xff\xa1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55" "\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00" "\x00\x00\x88\x53\x85\x24\x06\x00\x00\x00\x00\x00\x00\x00\x1a\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65" "\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c" "\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61" "\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b" "\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a" "\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79" "\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73" "\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x02\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66" "\x69\x6c\x65\x30\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x1a\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xed\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55" "\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x03\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x07\x66\x69\x6c\x65\x31\x02\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x30\x03\x01\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x05\x00\x07\x66\x69\x6c\x65\x31\x02\x01\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x30\x02\x00" "\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x30\x06\x00\x00\x00" "\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x14\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85" "\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f" "\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00\x00\x00\x88" "\x53\x85\x24\x06\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x01\x66" "\x69\x6c\x65\x2e\x63\x6f\x6c\x64\x05\x01\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x05\x00\x01\x66\x69\x6c\x65\x33\x05\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x32\x04\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x31\x01\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x02\x66\x69\x6c\x65\x30\x04\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x31\x05\x01\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x32\x05\x01\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x33\x06\x01" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x01\x66\x69\x6c\x65\x2e\x63" "\x6f\x6c\x64\x01\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x02\x66" "\x69\x6c\x65\x30\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03" "\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x3a\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55" "\xbc\x64\x5f\x00\x00\x00\x00\x88\x53\x85\x24\x55\xbc\x64\x5f\x00\x00" "\x00\x00\x00\x00\x00\x00\x9c\xa9\xf3\x02\x8e\xda\x51\xc0\x50\x9a\x7b" "\x34\x4e\x99\x55\x4f\xf3\xef\xa9\xe4\x1f\x03\x28\xc9\xbd\x38\x49\xd0" "\xef\x09\x37\x10\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98" "\xb0\x61\xad\x00\x00\xd3\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x01\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14" "\xe1\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x0a\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00" "\x00\x00\x00\x00\x00\xe4\x3d\x00\x00\xb7\x01\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x2d\x3c\x00\x00" "\xb7\x01\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x0c\x06\x00\x00\x00" "\x00\x00\x00\x00\x1c\x3c\x00\x00\x11\x00\x00\x00\x05\x00\x00\x00\x00" "\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x65\x3a\x00\x00\xb7" "\x01\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\xc5\x39\x00\x00\xa0\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x0c\x06\x00\x00\x00\x00\x00\x00\x00\xb9\x39\x00\x00\x0c\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x54\xd2\xc2\xbf\x8d\x00\x00" "\x00\x00\x94\x39\x00\x00\x25\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00" "\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\xdd\x37\x00\x00\xb7\x01\x00" "\x00\x09\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00" "\x00\x26\x36\x00\x00\xb7\x01\x00\x00\xf7\xff\xff\xff\xff\xff\xff\xff" "\x84\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x34\x00\x00\xb7\x01\x00\x00" "\x00", 3520); *(uint64_t*)0x20000d30 = 0xdc0; *(uint64_t*)0x20000d38 = 0x452f3a0; *(uint64_t*)0x20000d40 = 0x20020600; memcpy((void*)0x20020600, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x40\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000d48 = 0x80; *(uint64_t*)0x20000d50 = 0x4533560; *(uint64_t*)0x20000d58 = 0x20020700; memcpy((void*)0x20020700, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd1\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000d60 = 0x60; *(uint64_t*)0x20000d68 = 0x4533720; *(uint64_t*)0x20000d70 = 0x20020800; *(uint64_t*)0x20000d78 = 0; *(uint64_t*)0x20000d80 = 0x4533840; *(uint64_t*)0x20000d88 = 0x20020900; *(uint64_t*)0x20000d90 = 0; *(uint64_t*)0x20000d98 = 0x45338e0; *(uint64_t*)0x20000da0 = 0; *(uint64_t*)0x20000da8 = 0; *(uint64_t*)0x20000db0 = 0x45339e0; *(uint64_t*)0x20000db8 = 0x20020c00; memcpy((void*)0x20020c00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc0\xd2\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde\x8d" "\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x7c\x33\xd9\x24\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20000dc0 = 0xe0; *(uint64_t*)0x20000dc8 = 0x4533b60; *(uint64_t*)0x20000dd0 = 0x20020d00; memcpy((void*)0x20020d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x64\x65\x66\x61\x75" "\x6c\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000dd8 = 0x60; *(uint64_t*)0x20000de0 = 0x4533c80; *(uint64_t*)0x20000de8 = 0x20020e00; memcpy((void*)0x20020e00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000df0 = 0x80; *(uint64_t*)0x20000df8 = 0x4533d20; *(uint64_t*)0x20000e00 = 0x20020f00; memcpy((void*)0x20020f00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00", 64); *(uint64_t*)0x20000e08 = 0x40; *(uint64_t*)0x20000e10 = 0x4533e40; *(uint64_t*)0x20000e18 = 0x20021000; *(uint64_t*)0x20000e20 = 0; *(uint64_t*)0x20000e28 = 0x4533ee0; *(uint64_t*)0x20000e30 = 0x20021100; memcpy((void*)0x20021100, "\x26\xc5\x5d\xbe\x3b\xe0\x3b\x09\xa5\x0a\x7c\x1d\xd0\x48\x56\xd9" "\x50\xe2\x46\x17\xb8\xc2\xd4\x32\xa0\x7e\xee\xc4\x52\x8c\x80\xc7" "\xeb\x07\xba\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad" "\x00\x40\xd3\x01\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1" "\x06\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\x01\x00" "\x00\x00\x00\x00\x00\x00\x73\x3f\x00\x00\x28\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xcc\x00\x00\xd0\x00\x00\x00\x00\x00\x43" "\x3f\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc" "\x00\x00\x50\x01\x00\x00\x00\x00\x13\x3f\x00\x00\x30\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\xd0\x01\x00\x00\x00" "\x00\xe3\x3e\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\xcc\x00\x00\x50\x02\x00\x00\x00\x00\xb3\x3e\x00\x00\x30\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x04\x00" "\x00\x00\x00\x83\x3e\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00", 256); *(uint64_t*)0x20000e38 = 0x100; *(uint64_t*)0x20000e40 = 0x4534000; *(uint64_t*)0x20000e48 = 0x20021200; memcpy( (void*)0x20021200, "\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43" "\xd9\x53\x83\x14\xe1\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83" "\x14\xe1\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00" "\x7f\x64\xee\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x7f\x64\xee" "\x8e\xdc\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x00\x00" "\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x7f\x64\xee\x8e\xdc\x2c" "\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x36" "\xb4\x40\xfe\xf3\xb7\x47\x21\x38\xef\x62\xf0\x06\xc8\x77\x0c\x8c\x92" "\xa5\xdf\xff\x37\x97\xf3\xaa\xa7\x11\x00\x77\x8f\xab\x80\xeb\x07\xba" "\xcf\xd1\xd8\x47\x24\xa5\x3c\x89\xbe\x98\xb0\x61\xad\x00\x80\xd3\x01" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x7f\x64\xee\x8e\xdc" "\x2c\x4f\xcb\xb2\xf4\x43\xd9\x53\x83\x14\xe1\x07\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\xe4\x3d" "\x00\x00\xb7\x01\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00" "\x00\x00\x00\x00\x00\x00\x2d\x3c\x00\x00\xb7\x01\x00\x00\x05\x00\x00" "\x00\x00\x00\x00\x00\x0c\x06\x00\x00\x00\x00\x00\x00\x00\x1c\x3c\x00" "\x00\x11\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00" "\x00\x00\x00\x00\x00\x65\x3a\x00\x00\xb7\x01\x00\x00\x06\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xc5\x39\x00\x00" "\xa0\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x0c\x06\x00\x00\x00" "\x00\x00\x00\x00\xb9\x39\x00\x00\x0c\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x54\xd2\xc2\xbf\x8d\x00\x00\x00\x00\x94\x39\x00\x00\x25" "\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00" "\x00\x00\x00\xdd\x37\x00\x00\xb7\x01\x00\x00\x09\x00\x00\x00\x00\x00" "\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x26\x36\x00\x00\xb7\x01" "\x00\x00\xf7\xff\xff\xff\xff\xff\xff\xff\x84\x00\x00\x00\x00\x00\x00" "\x00\x00\x6f\x34\x00\x00\xb7\x01\x00\x00\x00", 640); *(uint64_t*)0x20000e50 = 0x280; *(uint64_t*)0x20000e58 = 0x4537ee0; *(uint64_t*)0x20000e60 = 0x20021500; memcpy((void*)0x20021500, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x40\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000e68 = 0x80; *(uint64_t*)0x20000e70 = 0x453b560; *(uint64_t*)0x20000e78 = 0x20021600; *(uint64_t*)0x20000e80 = 0; *(uint64_t*)0x20000e88 = 0x453b720; *(uint64_t*)0x20000e90 = 0x20021700; memcpy((void*)0x20021700, "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000e98 = 0x40; *(uint64_t*)0x20000ea0 = 0x453b840; *(uint64_t*)0x20000ea8 = 0x20021800; memcpy((void*)0x20021800, "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000eb0 = 0x60; *(uint64_t*)0x20000eb8 = 0x453b8e0; *(uint64_t*)0x20000ec0 = 0x20021900; memcpy((void*)0x20021900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00" "\x00\x84\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x07\x00\x02\x64\x65\x66\x61\x75\x6c\x74\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00" "\x00\x00\x00\x00\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x55\xbc" "\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xff" "\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x20000ec8 = 0x140; *(uint64_t*)0x20000ed0 = 0x453b9e0; *(uint64_t*)0x20000ed8 = 0x20021b00; memcpy((void*)0x20021b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xc0\xd2\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x35\x20\x39\xc0\x2b\xec\x4b\x18\xac\x5a\xb1\x38\xf9\xde\x8d" "\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x55\xbc\x64\x5f\x00\x00\x00\x00\x7c\x33\xd9\x24\x55\xbc\x64" "\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20000ee0 = 0xe0; *(uint64_t*)0x20000ee8 = 0x453bb60; *(uint64_t*)0x20000ef0 = 0x20021c00; memcpy((void*)0x20021c00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x64\x65\x66\x61\x75" "\x6c\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000ef8 = 0x60; *(uint64_t*)0x20000f00 = 0x453bc80; *(uint64_t*)0x20000f08 = 0x20021d00; memcpy((void*)0x20021d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000f10 = 0x80; *(uint64_t*)0x20000f18 = 0x453bd20; *(uint64_t*)0x20000f20 = 0x20021e00; memcpy((void*)0x20021e00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00", 64); *(uint64_t*)0x20000f28 = 0x40; *(uint64_t*)0x20000f30 = 0x453be40; *(uint64_t*)0x20000f38 = 0; *(uint64_t*)0x20000f40 = 0; *(uint64_t*)0x20000f48 = 0x453bee0; *(uint64_t*)0x20000f50 = 0; *(uint64_t*)0x20000f58 = 0; *(uint64_t*)0x20000f60 = 0x453c000; *(uint64_t*)0x20000f68 = 0x20022200; *(uint64_t*)0x20000f70 = 0; *(uint64_t*)0x20000f78 = 0x453fe60; *(uint8_t*)0x20022400 = 0; syz_mount_image(0x20000000, 0x20000100, 0x8000000, 0x90, 0x20000200, 0, 0x20022400); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_sysctl(); setup_leak(); setup_usb(); for (procid = 0; procid < 8; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }