// https://syzkaller.appspot.com/bug?id=7f7ef738ef874395fd4ed352ab45d26cb6bcd0cf
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif

static unsigned long long procid;

static void sleep_ms(uint64_t ms)
{
  usleep(ms * 1000);
}

static uint64_t current_time_ms(void)
{
  struct timespec ts;
  if (clock_gettime(CLOCK_MONOTONIC, &ts))
    exit(1);
  return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}

static void use_temporary_dir(void)
{
  char tmpdir_template[] = "./syzkaller.XXXXXX";
  char* tmpdir = mkdtemp(tmpdir_template);
  if (!tmpdir)
    exit(1);
  if (chmod(tmpdir, 0777))
    exit(1);
  if (chdir(tmpdir))
    exit(1);
}

static bool write_file(const char* file, const char* what, ...)
{
  char buf[1024];
  va_list args;
  va_start(args, what);
  vsnprintf(buf, sizeof(buf), what, args);
  va_end(args);
  buf[sizeof(buf) - 1] = 0;
  int len = strlen(buf);
  int fd = open(file, O_WRONLY | O_CLOEXEC);
  if (fd == -1)
    return false;
  if (write(fd, buf, len) != len) {
    int err = errno;
    close(fd);
    errno = err;
    return false;
  }
  close(fd);
  return true;
}

//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:

//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty.  In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//%    claim that you wrote the original software. If you use this software
//%    in a product, an acknowledgment in the product documentation would be
//%    appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//%    misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler    madler@alumni.caltech.edu

//% BEGIN CODE DERIVED FROM puff.{c,h}

#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288

struct puff_state {
  unsigned char* out;
  unsigned long outlen;
  unsigned long outcnt;
  const unsigned char* in;
  unsigned long inlen;
  unsigned long incnt;
  int bitbuf;
  int bitcnt;
  jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
  long val = s->bitbuf;
  while (s->bitcnt < need) {
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    val |= (long)(s->in[s->incnt++]) << s->bitcnt;
    s->bitcnt += 8;
  }
  s->bitbuf = (int)(val >> need);
  s->bitcnt -= need;
  return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
  s->bitbuf = 0;
  s->bitcnt = 0;
  if (s->incnt + 4 > s->inlen)
    return 2;
  unsigned len = s->in[s->incnt++];
  len |= s->in[s->incnt++] << 8;
  if (s->in[s->incnt++] != (~len & 0xff) ||
      s->in[s->incnt++] != ((~len >> 8) & 0xff))
    return -2;
  if (s->incnt + len > s->inlen)
    return 2;
  if (s->outcnt + len > s->outlen)
    return 1;
  for (; len--; s->outcnt++, s->incnt++) {
    if (s->in[s->incnt])
      s->out[s->outcnt] = s->in[s->incnt];
  }
  return 0;
}
struct puff_huffman {
  short* count;
  short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
  int first = 0;
  int index = 0;
  int bitbuf = s->bitbuf;
  int left = s->bitcnt;
  int code = first = index = 0;
  int len = 1;
  short* next = h->count + 1;
  while (1) {
    while (left--) {
      code |= bitbuf & 1;
      bitbuf >>= 1;
      int count = *next++;
      if (code - count < first) {
        s->bitbuf = bitbuf;
        s->bitcnt = (s->bitcnt - len) & 7;
        return h->symbol[index + (code - first)];
      }
      index += count;
      first += count;
      first <<= 1;
      code <<= 1;
      len++;
    }
    left = (MAXBITS + 1) - len;
    if (left == 0)
      break;
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    bitbuf = s->in[s->incnt++];
    if (left > 8)
      left = 8;
  }
  return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
  int len;
  for (len = 0; len <= MAXBITS; len++)
    h->count[len] = 0;
  int symbol;
  for (symbol = 0; symbol < n; symbol++)
    (h->count[length[symbol]])++;
  if (h->count[0] == n)
    return 0;
  int left = 1;
  for (len = 1; len <= MAXBITS; len++) {
    left <<= 1;
    left -= h->count[len];
    if (left < 0)
      return left;
  }
  short offs[MAXBITS + 1];
  offs[1] = 0;
  for (len = 1; len < MAXBITS; len++)
    offs[len + 1] = offs[len] + h->count[len];
  for (symbol = 0; symbol < n; symbol++)
    if (length[symbol] != 0)
      h->symbol[offs[length[symbol]]++] = symbol;
  return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
                      const struct puff_huffman* distcode)
{
  static const short lens[29] = {3,  4,  5,  6,   7,   8,   9,   10,  11, 13,
                                 15, 17, 19, 23,  27,  31,  35,  43,  51, 59,
                                 67, 83, 99, 115, 131, 163, 195, 227, 258};
  static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
                                 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
  static const short dists[30] = {
      1,    2,    3,    4,    5,    7,    9,    13,    17,    25,
      33,   49,   65,   97,   129,  193,  257,  385,   513,   769,
      1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
  static const short dext[30] = {0, 0, 0,  0,  1,  1,  2,  2,  3,  3,
                                 4, 4, 5,  5,  6,  6,  7,  7,  8,  8,
                                 9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
  int symbol;
  do {
    symbol = puff_decode(s, lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 256) {
      if (s->outcnt == s->outlen)
        return 1;
      if (symbol)
        s->out[s->outcnt] = symbol;
      s->outcnt++;
    } else if (symbol > 256) {
      symbol -= 257;
      if (symbol >= 29)
        return -10;
      int len = lens[symbol] + puff_bits(s, lext[symbol]);
      symbol = puff_decode(s, distcode);
      if (symbol < 0)
        return symbol;
      unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
      if (dist > s->outcnt)
        return -11;
      if (s->outcnt + len > s->outlen)
        return 1;
      while (len--) {
        if (dist <= s->outcnt && s->out[s->outcnt - dist])
          s->out[s->outcnt] = s->out[s->outcnt - dist];
        s->outcnt++;
      }
    }
  } while (symbol != 256);
  return 0;
}
static int puff_fixed(struct puff_state* s)
{
  static int virgin = 1;
  static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
  static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  static struct puff_huffman lencode, distcode;
  if (virgin) {
    lencode.count = lencnt;
    lencode.symbol = lensym;
    distcode.count = distcnt;
    distcode.symbol = distsym;
    short lengths[FIXLCODES];
    int symbol;
    for (symbol = 0; symbol < 144; symbol++)
      lengths[symbol] = 8;
    for (; symbol < 256; symbol++)
      lengths[symbol] = 9;
    for (; symbol < 280; symbol++)
      lengths[symbol] = 7;
    for (; symbol < FIXLCODES; symbol++)
      lengths[symbol] = 8;
    puff_construct(&lencode, lengths, FIXLCODES);
    for (symbol = 0; symbol < MAXDCODES; symbol++)
      lengths[symbol] = 5;
    puff_construct(&distcode, lengths, MAXDCODES);
    virgin = 0;
  }
  return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
  static const short order[19] = {16, 17, 18, 0, 8,  7, 9,  6, 10, 5,
                                  11, 4,  12, 3, 13, 2, 14, 1, 15};
  int nlen = puff_bits(s, 5) + 257;
  int ndist = puff_bits(s, 5) + 1;
  int ncode = puff_bits(s, 4) + 4;
  if (nlen > MAXLCODES || ndist > MAXDCODES)
    return -3;
  short lengths[MAXCODES];
  int index;
  for (index = 0; index < ncode; index++)
    lengths[order[index]] = puff_bits(s, 3);
  for (; index < 19; index++)
    lengths[order[index]] = 0;
  short lencnt[MAXBITS + 1], lensym[MAXLCODES];
  struct puff_huffman lencode = {lencnt, lensym};
  int err = puff_construct(&lencode, lengths, 19);
  if (err != 0)
    return -4;
  index = 0;
  while (index < nlen + ndist) {
    int symbol;
    int len;
    symbol = puff_decode(s, &lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 16)
      lengths[index++] = symbol;
    else {
      len = 0;
      if (symbol == 16) {
        if (index == 0)
          return -5;
        len = lengths[index - 1];
        symbol = 3 + puff_bits(s, 2);
      } else if (symbol == 17)
        symbol = 3 + puff_bits(s, 3);
      else
        symbol = 11 + puff_bits(s, 7);
      if (index + symbol > nlen + ndist)
        return -6;
      while (symbol--)
        lengths[index++] = len;
    }
  }
  if (lengths[256] == 0)
    return -9;
  err = puff_construct(&lencode, lengths, nlen);
  if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
    return -7;
  short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  struct puff_huffman distcode = {distcnt, distsym};
  err = puff_construct(&distcode, lengths + nlen, ndist);
  if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
    return -8;
  return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
                const unsigned char* source, unsigned long sourcelen)
{
  struct puff_state s = {
      .out = dest,
      .outlen = *destlen,
      .outcnt = 0,
      .in = source,
      .inlen = sourcelen,
      .incnt = 0,
      .bitbuf = 0,
      .bitcnt = 0,
  };
  int err;
  if (setjmp(s.env) != 0)
    err = 2;
  else {
    int last;
    do {
      last = puff_bits(&s, 1);
      int type = puff_bits(&s, 2);
      err = type == 0 ? puff_stored(&s)
                      : (type == 1 ? puff_fixed(&s)
                                   : (type == 2 ? puff_dynamic(&s) : -1));
      if (err != 0)
        break;
    } while (!last);
  }
  *destlen = s.outcnt;
  return err;
}

//% END CODE DERIVED FROM puff.{c,h}

#define ZLIB_HEADER_WIDTH 2

static int puff_zlib_to_file(const unsigned char* source,
                             unsigned long sourcelen, int dest_fd)
{
  if (sourcelen < ZLIB_HEADER_WIDTH)
    return 0;
  source += ZLIB_HEADER_WIDTH;
  sourcelen -= ZLIB_HEADER_WIDTH;
  const unsigned long max_destlen = 132 << 20;
  void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
                   MAP_PRIVATE | MAP_ANON, -1, 0);
  if (ret == MAP_FAILED)
    return -1;
  unsigned char* dest = (unsigned char*)ret;
  unsigned long destlen = max_destlen;
  int err = puff(dest, &destlen, source, sourcelen);
  if (err) {
    munmap(dest, max_destlen);
    errno = -err;
    return -1;
  }
  if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
    munmap(dest, max_destlen);
    return -1;
  }
  return munmap(dest, max_destlen);
}

static int setup_loop_device(unsigned char* data, unsigned long size,
                             const char* loopname, int* loopfd_p)
{
  int err = 0, loopfd = -1;
  int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
  if (memfd == -1) {
    err = errno;
    goto error;
  }
  if (puff_zlib_to_file(data, size, memfd)) {
    err = errno;
    goto error_close_memfd;
  }
  loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    err = errno;
    goto error_close_memfd;
  }
  if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
    if (errno != EBUSY) {
      err = errno;
      goto error_close_loop;
    }
    ioctl(loopfd, LOOP_CLR_FD, 0);
    usleep(1000);
    if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
      err = errno;
      goto error_close_loop;
    }
  }
  close(memfd);
  *loopfd_p = loopfd;
  return 0;

error_close_loop:
  close(loopfd);
error_close_memfd:
  close(memfd);
error:
  errno = err;
  return -1;
}

static void reset_loop_device(const char* loopname)
{
  int loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    return;
  }
  if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
  }
  close(loopfd);
}

static long syz_mount_image(volatile long fsarg, volatile long dir,
                            volatile long flags, volatile long optsarg,
                            volatile long change_dir,
                            volatile unsigned long size, volatile long image)
{
  unsigned char* data = (unsigned char*)image;
  int res = -1, err = 0, need_loop_device = !!size;
  char* mount_opts = (char*)optsarg;
  char* target = (char*)dir;
  char* fs = (char*)fsarg;
  char* source = NULL;
  char loopname[64];
  if (need_loop_device) {
    int loopfd;
    memset(loopname, 0, sizeof(loopname));
    snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
    if (setup_loop_device(data, size, loopname, &loopfd) == -1)
      return -1;
    close(loopfd);
    source = loopname;
  }
  mkdir(target, 0777);
  char opts[256];
  memset(opts, 0, sizeof(opts));
  if (strlen(mount_opts) > (sizeof(opts) - 32)) {
  }
  strncpy(opts, mount_opts, sizeof(opts) - 32);
  if (strcmp(fs, "iso9660") == 0) {
    flags |= MS_RDONLY;
  } else if (strncmp(fs, "ext", 3) == 0) {
    bool has_remount_ro = false;
    char* remount_ro_start = strstr(opts, "errors=remount-ro");
    if (remount_ro_start != NULL) {
      char after = *(remount_ro_start + strlen("errors=remount-ro"));
      char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
      has_remount_ro = ((before == '\0' || before == ',') &&
                        (after == '\0' || after == ','));
    }
    if (strstr(opts, "errors=panic") || !has_remount_ro)
      strcat(opts, ",errors=continue");
  } else if (strcmp(fs, "xfs") == 0) {
    strcat(opts, ",nouuid");
  }
  res = mount(source, target, fs, flags, opts);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  res = open(target, O_RDONLY | O_DIRECTORY);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  if (change_dir) {
    res = chdir(target);
    if (res == -1) {
      err = errno;
    }
  }

error_clear_loop:
  if (need_loop_device)
    reset_loop_device(loopname);
  errno = err;
  return res;
}

#define FS_IOC_SETFLAGS _IOW('f', 2, long)
static void remove_dir(const char* dir)
{
  int iter = 0;
  DIR* dp = 0;
retry:
  const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW;
  while (umount2(dir, umount_flags) == 0) {
  }
  dp = opendir(dir);
  if (dp == NULL) {
    if (errno == EMFILE) {
      exit(1);
    }
    exit(1);
  }
  struct dirent* ep = 0;
  while ((ep = readdir(dp))) {
    if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0)
      continue;
    char filename[FILENAME_MAX];
    snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name);
    while (umount2(filename, umount_flags) == 0) {
    }
    struct stat st;
    if (lstat(filename, &st))
      exit(1);
    if (S_ISDIR(st.st_mode)) {
      remove_dir(filename);
      continue;
    }
    int i;
    for (i = 0;; i++) {
      if (unlink(filename) == 0)
        break;
      if (errno == EPERM) {
        int fd = open(filename, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno != EBUSY || i > 100)
        exit(1);
      if (umount2(filename, umount_flags))
        exit(1);
    }
  }
  closedir(dp);
  for (int i = 0;; i++) {
    if (rmdir(dir) == 0)
      break;
    if (i < 100) {
      if (errno == EPERM) {
        int fd = open(dir, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno == EBUSY) {
        if (umount2(dir, umount_flags))
          exit(1);
        continue;
      }
      if (errno == ENOTEMPTY) {
        if (iter < 100) {
          iter++;
          goto retry;
        }
      }
    }
    exit(1);
  }
}

static void kill_and_wait(int pid, int* status)
{
  kill(-pid, SIGKILL);
  kill(pid, SIGKILL);
  for (int i = 0; i < 100; i++) {
    if (waitpid(-1, status, WNOHANG | __WALL) == pid)
      return;
    usleep(1000);
  }
  DIR* dir = opendir("/sys/fs/fuse/connections");
  if (dir) {
    for (;;) {
      struct dirent* ent = readdir(dir);
      if (!ent)
        break;
      if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
        continue;
      char abort[300];
      snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
               ent->d_name);
      int fd = open(abort, O_WRONLY);
      if (fd == -1) {
        continue;
      }
      if (write(fd, abort, 1) < 0) {
      }
      close(fd);
    }
    closedir(dir);
  } else {
  }
  while (waitpid(-1, status, __WALL) != pid) {
  }
}

static void reset_loop()
{
  char buf[64];
  snprintf(buf, sizeof(buf), "/dev/loop%llu", procid);
  int loopfd = open(buf, O_RDWR);
  if (loopfd != -1) {
    ioctl(loopfd, LOOP_CLR_FD, 0);
    close(loopfd);
  }
}

static void setup_test()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setpgrp();
  write_file("/proc/self/oom_score_adj", "1000");
  if (symlink("/dev/binderfs", "./binderfs")) {
  }
}

static void execute_one(void);

#define WAIT_FLAGS __WALL

static void loop(void)
{
  int iter = 0;
  for (;; iter++) {
    char cwdbuf[32];
    sprintf(cwdbuf, "./%d", iter);
    if (mkdir(cwdbuf, 0777))
      exit(1);
    reset_loop();
    int pid = fork();
    if (pid < 0)
      exit(1);
    if (pid == 0) {
      if (chdir(cwdbuf))
        exit(1);
      setup_test();
      execute_one();
      exit(0);
    }
    int status = 0;
    uint64_t start = current_time_ms();
    for (;;) {
      if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
        break;
      sleep_ms(1);
      if (current_time_ms() - start < 5000)
        continue;
      kill_and_wait(pid, &status);
      break;
    }
    remove_dir(cwdbuf);
  }
}

void execute_one(void)
{
  memcpy((void*)0x200000c0, "exfat\000", 6);
  memcpy((void*)0x20001540, "./file1\000", 8);
  memcpy((void*)0x20000100, "errors=remount-ro", 17);
  *(uint8_t*)0x20000111 = 0x2c;
  memcpy((void*)0x20000112, "discard", 7);
  *(uint8_t*)0x20000119 = 0x2c;
  memcpy((void*)0x2000011a, "errors=continue", 15);
  *(uint8_t*)0x20000129 = 0x2c;
  memcpy((void*)0x2000012a, "uid", 3);
  *(uint8_t*)0x2000012d = 0x3d;
  sprintf((char*)0x2000012e, "0x%016llx", (long long)0);
  *(uint8_t*)0x20000140 = 0x2c;
  memcpy((void*)0x20000141, "dmask", 5);
  *(uint8_t*)0x20000146 = 0x3d;
  sprintf((char*)0x20000147, "%023llo", (long long)0);
  *(uint8_t*)0x2000015e = 0x2c;
  memcpy((void*)0x2000015f, "iocharset", 9);
  *(uint8_t*)0x20000168 = 0x3d;
  memcpy((void*)0x20000169, "cp865", 5);
  *(uint8_t*)0x2000016e = 0x2c;
  memcpy((void*)0x2000016f, "gid", 3);
  *(uint8_t*)0x20000172 = 0x3d;
  sprintf((char*)0x20000173, "0x%016llx", (long long)0);
  *(uint8_t*)0x20000185 = 0x2c;
  memcpy((void*)0x20000186, "allow_utime", 11);
  *(uint8_t*)0x20000191 = 0x3d;
  sprintf((char*)0x20000192, "%023llo", (long long)7);
  *(uint8_t*)0x200001a9 = 0x2c;
  memcpy((void*)0x200001aa, "dmask", 5);
  *(uint8_t*)0x200001af = 0x3d;
  sprintf((char*)0x200001b0, "%023llo", (long long)5);
  *(uint8_t*)0x200001c7 = 0x2c;
  *(uint8_t*)0x200001c8 = 0;
  memcpy(
      (void*)0x20002a80,
      "\x78\x9c\xec\xdc\x7b\x98\x8e\x55\xdb\x30\xf0\x75\xae\xb5\x2e\xc6\x34\xe9"
      "\x6e\x92\xcd\xb0\xce\x75\x5e\xdc\x69\xb0\x4c\x92\x64\x93\x90\x4d\x92\x24"
      "\x49\x92\x5d\x42\xd2\x24\x49\x42\x62\xc8\x2e\x69\x48\x42\xb6\x93\x64\x33"
      "\x84\x64\x33\x8d\x49\x63\xbf\xdf\x64\x9f\x34\x79\xa4\x49\x92\x90\x90\x64"
      "\x7d\xc7\xf4\x3c\xdf\xeb\x79\xde\x9e\xf7\xed\x7d\xbe\xe7\xf9\x3e\xc7\xf7"
      "\xcc\xf9\x3b\x8e\x75\xdc\xeb\x9c\xeb\x3a\xcf\x7b\xad\x39\xe7\x98\xfb\xba"
      "\xae\x3f\xee\xef\x7a\x8f\x69\xd0\xaa\x61\xdd\x16\x44\x24\xfe\x29\xf0\xe7"
      "\x97\x14\x21\x44\x8c\x10\x62\x84\x10\xe2\x3a\x21\x44\x20\x84\xa8\x12\x5f"
      "\x25\x3e\xef\x78\x21\x05\x29\xff\xdc\x9b\xb0\x7f\xad\x87\xd3\xaf\xf6\x0a"
      "\xd8\xd5\xc4\xfd\xcf\xdf\xb8\xff\xf9\x1b\xf7\x3f\x7f\xe3\xfe\xe7\x6f\xdc"
      "\xff\xfc\x8d\xfb\x9f\xbf\x71\xff\xf3\x37\xee\x3f\x63\xf9\xd9\xce\x79\x25"
      "\xae\xe7\x91\x7f\x07\x3f\xff\xcf\xcf\xf8\xf3\xff\xdf\x48\x6e\xc5\xa9\x5f"
      "\x6d\xae\x78\x63\x9f\x7f\x20\x85\xfb\x9f\xbf\x71\xff\xf3\x37\xee\xff\xbf"
      "\x2b\xf8\x1f\x9d\xc5\xfd\xcf\xdf\xb8\xff\xf9\x1b\xf7\xff\xdf\x5f\x9d\xff"
      "\xe6\x18\xf7\x3f\x7f\xe3\xfe\x33\x96\x9f\x5d\xed\xe7\xcf\x3c\xae\xee\xb8"
      "\xda\x7f\x7f\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\xf2\x87\x0b\xfe\x0a\x2d\x84\xc8\x7b\x0d\xae\xf6\xa2"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xf6\x2f\xe5\x0b\x5e\xed\x15\x30\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\xec\xff\x3e\x10\x52\x28\xa1\x45\x20\x0a\x88"
      "\x82\x22\x46\x14\x12\xb1\xe2\x1a\x11\x27\xae\x15\x85\xc5\x75\x22\x22\xae"
      "\x17\xf1\xe2\x06\x51\x44\xdc\x28\x8a\x8a\x62\xa2\xb8\x28\x21\x12\x44\x49"
      "\x51\x4a\x18\x81\xc2\x0a\x12\xa1\x28\x2d\xca\x88\xa8\xb8\x49\x94\x15\x37"
      "\x8b\x44\x51\x4e\x94\x17\x15\x84\x13\x15\x45\x92\xb8\x45\x54\x12\xb7\x8a"
      "\xca\xe2\x36\x51\x45\xdc\x2e\xaa\x8a\x3b\x44\x35\x51\x5d\xd4\x10\x35\xc5"
      "\x9d\xa2\x96\xb8\x4b\xd4\x16\x75\x44\x5d\x71\xb7\xa8\x27\xea\x8b\x06\xa2"
      "\xa1\xb8\x47\x34\x12\xf7\x8a\xc6\xe2\x3e\xd1\x44\xdc\x2f\x9a\x8a\x07\x44"
      "\x33\xf1\xa0\x68\x2e\x1e\x12\x2d\xc4\xc3\xa2\xa5\x78\x44\xb4\x12\x8f\x8a"
      "\xd6\xe2\x31\xd1\x46\xb4\x15\xed\x44\x7b\xd1\xe1\xff\x28\xff\x25\xd1\x5f"
      "\xbc\x2c\x06\x88\x81\x22\x45\x0c\x12\x83\xc5\x2b\x62\x88\x18\x2a\x86\x89"
      "\xe1\x62\x84\x78\x55\x8c\x14\xaf\x89\x51\xe2\x75\x91\x2a\x46\x8b\x31\xe2"
      "\x0d\x31\x56\xbc\x29\xc6\x89\xb7\xc4\x78\x31\x41\x4c\x14\x6f\x8b\x49\x62"
      "\xb2\x98\x22\xa6\x8a\x69\x62\xba\x48\x13\xef\x88\x19\xe2\x5d\x31\x53\xbc"
      "\x27\x66\x89\xd9\x62\x8e\x98\x2b\xd2\xc5\x3c\x31\x5f\xbc\x2f\x16\x88\x85"
      "\x62\x91\xf8\x40\x2c\x16\x1f\x8a\x25\x62\xa9\x58\x26\x96\x8b\x0c\xf1\x91"
      "\xc8\x14\x2b\x44\x96\xf8\x58\xac\x14\x9f\x88\x6c\xb1\x4a\xac\x16\x6b\xc4"
      "\x5a\xb1\x4e\xac\x17\x1b\xc4\x46\xb1\x49\x6c\x16\x5b\xc4\x56\xb1\x4d\x6c"
      "\x17\x3b\xc4\x4e\xf1\xa9\xd8\x25\x76\x8b\x3d\x62\xaf\xd8\x27\xf6\x8b\x03"
      "\xe2\x33\x71\x50\x7c\x2e\x0e\x89\x2f\x44\x8e\xf8\xf2\x1f\xcc\x3f\xff\x9f"
      "\xf2\xfb\x80\x00\x01\x12\x24\x68\xd0\x50\x00\x0a\x40\x0c\xc4\x40\x2c\xc4"
      "\x42\x1c\xc4\x41\x61\x28\x0c\x11\x88\x40\x3c\xc4\x43\x11\x28\x02\x45\xa1"
      "\x28\x14\x87\xe2\x90\x00\x09\x50\x0a\x4a\x01\x02\x02\x01\x41\x69\x28\x0d"
      "\x51\x88\x42\x59\x28\x0b\x89\x90\x08\xe5\xa1\x3c\x38\x70\x90\x04\x49\x50"
      "\x09\x6e\x85\xca\x50\x19\xaa\x40\x15\xa8\x0a\x55\xa1\x1a\x54\x87\xea\x50"
      "\x13\x6a\x42\x2d\xa8\x05\xb5\xa1\x36\xd4\x85\xba\x50\x0f\xea\x41\x03\x68"
      "\x00\xf7\xc0\x3d\x70\x2f\x34\x86\xc6\xd0\x04\x9a\x40\x53\x68\x0a\xcd\xa0"
      "\x19\x34\x87\xe6\xd0\x02\x5a\x40\x4b\x68\x09\xad\xa0\x15\xb4\x86\xd6\xd0"
      "\x06\xda\x40\x3b\x68\x07\x1d\xa0\x03\x74\x84\x8e\xd0\x09\x3a\x41\x17\xe8"
      "\x02\x5d\xa1\x2b\x74\x83\x6e\x90\x0c\xc9\xd0\x1d\xba\x43\x0f\xe8\x01\x3d"
      "\xa1\x27\xf4\x82\x5e\xd0\x1b\x7a\x43\x1f\xe8\x0b\x7d\xe1\x25\x78\x09\x5e"
      "\x86\x97\x61\x20\xd4\x93\x83\x60\x30\x0c\x86\x21\x30\x04\x86\xc1\x70\x18"
      "\x0e\xaf\xc2\x48\x78\x0d\x5e\x83\xd7\x21\x15\x46\xc3\x18\x78\x03\xde\x80"
      "\x37\x61\x1c\x9c\x83\xf1\x30\x01\x26\xc2\x44\xa8\x25\x27\xc3\x14\x98\x0a"
      "\x24\xa7\x43\x1a\xa4\xc1\x0c\x98\x01\x33\x61\x26\xcc\x82\xd9\x30\x1b\xe6"
      "\x42\x3a\xcc\x83\xf9\x30\x1f\x16\xc0\x42\x58\x08\x1f\xc0\x62\xf8\x10\x3e"
      "\x84\xa5\xb0\x14\x96\x43\x06\x64\x40\x26\xac\x80\x2c\xc8\x82\x95\x70\x1e"
      "\xb2\x61\x15\xac\x86\x35\xb0\x16\xd6\xc1\x5a\xd8\x00\x1b\x61\x03\x6c\x86"
      "\x2d\xb0\x19\xb6\xc1\x36\xd8\x01\x3b\xe0\x53\xf8\x14\x76\xc3\x6e\xd8\x0b"
      "\x7b\x61\x3f\xec\x87\xcf\xe0\x33\xf8\x1c\x3e\x87\x54\xc8\x81\x1c\x38\x0c"
      "\x87\xe1\x08\x1c\x81\xa3\x70\x14\x72\x21\x17\x8e\xc1\x31\x38\x0e\xc7\xe1"
      "\x04\x9c\x80\x93\x70\x12\x4e\xc1\x69\x38\x03\xa7\xe1\x2c\x9c\x85\x73\x70"
      "\x1e\x2e\xc0\x05\xb8\x08\x17\xe1\x12\xbc\x90\xf0\x4d\xcb\xfd\xe5\x36\xa5"
      "\x0a\x99\x47\x4b\x2d\x0b\xc8\x02\x32\x46\xc6\xc8\x58\x19\x2b\xe3\x64\x9c"
      "\x2c\x2c\x0b\xcb\x88\x8c\xc8\x78\x19\x2f\x8b\xc8\x22\xb2\xa8\x2c\x2a\x8b"
      "\xcb\xe2\x32\x41\x26\xc8\x52\xb2\x94\x44\x89\x92\x64\x28\x4b\xcb\xd2\x32"
      "\x2a\xa3\xb2\xac\x2c\x2b\x13\x65\xa2\x2c\x2f\xcb\x4b\x27\x9d\x4c\x92\x49"
      "\xb2\x92\xac\x24\x2b\xcb\xca\xb2\x8a\xbc\x5d\x56\x95\x77\xc8\x6a\xb2\xba"
      "\xec\xec\x6a\xca\x9a\xb2\x96\xec\xe2\x6a\xcb\x3a\xb2\xae\xac\x2b\xeb\xc9"
      "\xfa\xb2\x81\x6c\x28\x1b\xca\x46\xb2\x91\x6c\x2c\x1b\xcb\x26\xb2\x89\x6c"
      "\x2a\x9b\xca\x66\xf2\x41\xd9\x5c\x0e\x82\x61\xf0\xb0\xcc\xeb\x4c\x2b\x39"
      "\x1a\x5a\xcb\x31\xd0\x46\xb6\x95\xed\x64\x7b\xf9\x26\x3c\x2e\x3b\xca\x71"
      "\xd0\x49\x76\x96\x5d\xe4\x93\x72\x02\x8c\x87\x6e\xb2\xa3\x4b\x96\xcf\xc8"
      "\xee\x72\x0a\xf4\x90\xcf\xc9\xa9\xf0\xbc\xec\x25\xa7\x43\x6f\xf9\xa2\xec"
      "\x23\xfb\xca\x7e\xf2\x25\xd9\x5f\x76\x72\x03\xe4\x40\x39\x0b\x06\xc9\xc1"
      "\x72\x2e\x0c\x91\x43\xe5\x30\x39\x5c\x2e\x80\xfa\x32\xaf\x63\x0d\xe4\xeb"
      "\x32\x55\x8e\x96\x63\xe4\x1b\x72\x39\xbc\x29\xc7\xc9\xb7\xe4\x78\x39\x41"
      "\x4e\x94\x6f\xcb\x49\x72\xb2\x9c\x22\xa7\xca\x69\x72\xba\x4c\x93\xef\xc8"
      "\x19\xf2\x5d\x39\x53\xbe\x27\x67\xc9\xd9\x72\x8e\x9c\x2b\xd3\xe5\x3c\x39"
      "\x5f\xbe\x2f\x17\xc8\x85\x72\x91\xfc\x40\x2e\x96\x1f\xca\x25\x72\xa9\x5c"
      "\x26\x97\xcb\x0c\xf9\x91\xcc\x94\x2b\x64\x96\xfc\x58\xae\x94\x9f\xc8\x6c"
      "\xb9\x4a\xae\x96\x6b\xe4\x5a\xb9\x4e\xae\x97\x1b\xe4\x46\xb9\x49\x6e\x96"
      "\x5b\xe4\x56\xb9\x4d\x6e\x97\x3b\xe4\x4e\xf9\xa9\xdc\x25\x77\xcb\x3d\x72"
      "\xaf\xdc\x27\xf7\xcb\x03\xf2\x33\x79\x50\x7e\x2e\x0f\xc9\x2f\x64\x8e\xfc"
      "\x52\x1e\x96\x7f\x92\x47\xe4\x57\xf2\xa8\xfc\x5a\xe6\xca\x6f\xe4\x31\xf9"
      "\xad\x3c\x2e\xbf\x93\x27\xe4\xf7\xf2\xa4\xfc\x41\x9e\x92\xa7\xe5\x19\xf9"
      "\xa3\x3c\x2b\x7f\x92\xe7\xe4\x79\x79\x41\xfe\x2c\x2f\xca\x5f\xe4\x25\xf9"
      "\xab\xbc\x2c\xbd\x14\x0a\x94\x54\x4a\x69\x15\xa8\x02\xaa\xa0\x8a\x51\x85"
      "\x54\xac\xba\x46\xc5\xa9\x6b\x55\x61\x75\x9d\x8a\xa8\xeb\x55\xbc\xba\x41"
      "\x15\x51\x37\xaa\xa2\xaa\x98\x2a\xae\x4a\xa8\x04\x55\x52\x95\x52\x46\xa1"
      "\xb2\x8a\x54\xa8\x4a\xab\x32\x2a\xaa\x6e\x52\x65\xd5\xcd\x2a\x51\x95\x53"
      "\xe5\x55\x05\xe5\x54\x45\x95\xa4\x6e\x51\x95\xd4\xad\xaa\xb2\xba\x4d\x55"
      "\x51\xb7\xab\xaa\xea\x0e\x55\x4d\x55\x57\x35\x54\x4d\x75\xa7\xaa\xa5\xee"
      "\x52\xb5\x55\x1d\x55\x57\xdd\xad\xea\xa9\xfa\xaa\x81\x6a\xa8\xee\x51\x8d"
      "\xd4\xbd\xaa\xb1\xba\x4f\x35\x51\xf7\xab\xa6\xea\x01\xd5\x4c\x3d\xa8\x9a"
      "\xab\x87\x54\x0b\xf5\xb0\x6a\xa9\x1e\x51\xad\xd4\xa3\xaa\xb5\x7a\x4c\xb5"
      "\x51\x6d\x55\x3b\xd5\x5e\x75\x50\x8f\xab\x8e\xea\x09\xd5\x49\x75\x56\x5d"
      "\xd4\x93\xaa\xab\x7a\x4a\x75\x53\x4f\xab\x64\xf5\x8c\xea\xae\x9e\x55\x3d"
      "\xd4\x73\xaa\xa7\x7a\x5e\xf5\x52\x2f\xa8\xde\xea\x45\xd5\x47\xf5\x55\xfd"
      "\xd4\xaf\xea\xb2\xf2\x6a\x80\x1a\xa8\x52\xd4\x20\x35\x58\xbd\xa2\x86\xa8"
      "\xa1\x6a\x98\x1a\xae\x46\xa8\x57\xd5\x48\xf5\x9a\x1a\xa5\x5e\x57\xa9\x6a"
      "\xb4\x1a\xa3\xde\x50\x63\xd5\x9b\x6a\x9c\x7a\x4b\x8d\x57\x13\xd4\x44\xf5"
      "\xb6\x9a\xa4\x26\xab\x29\x6a\xaa\x9a\xa6\xa6\xab\x34\xf5\x8e\x9a\xa1\xde"
      "\x55\x33\xd5\x7b\x6a\x96\x9a\xad\xe6\xa8\xb9\x2a\x5d\xcd\x53\xc3\xfe\x52"
      "\x69\xd1\xff\x20\xff\xdd\xbf\x93\x3f\xea\xb7\x77\xdf\xa1\x76\xaa\x4f\xd5"
      "\x2e\xb5\x5b\xed\x51\x7b\xd5\x3e\xb5\x5f\x1d\x50\x07\xd4\x41\x75\x50\x1d"
      "\x52\x87\x54\x8e\xca\x51\x87\xd5\x61\x75\x44\x1d\x51\x47\xd5\x51\x95\xab"
      "\x72\xd5\x31\x75\x4c\x1d\x57\xc7\xd5\x09\x75\x42\x9d\x54\x27\xd5\x29\x75"
      "\x5a\xfd\xac\x7e\x54\x67\xd5\x4f\xea\x9c\x3a\xaf\xce\xab\x9f\xd5\x45\x75"
      "\x51\x5d\xfa\xcb\xef\x40\x68\xd0\x52\x2b\xad\x75\xa0\x0b\xe8\x82\x3a\x46"
      "\x17\xd2\xb1\xfa\x1a\x1d\xa7\xaf\xd5\x85\xf5\x75\x3a\xa2\xaf\xd7\xf1\xfa"
      "\x06\x5d\x44\xdf\xa8\x8b\xea\x62\xba\xb8\x2e\xa1\x13\x74\x49\x5d\x4a\x1b"
      "\x8d\xda\x6a\xd2\xa1\x2e\xad\xcb\xe8\xa8\xbe\x49\x97\xd5\x37\xeb\x44\x5d"
      "\x4e\x97\xd7\x15\xb4\xd3\x15\x75\x92\xbe\xe5\x9f\xce\xff\xa3\xf5\x75\xd0"
      "\x1d\x74\x47\xdd\x51\x77\xd2\x9d\x74\x17\xdd\x45\x77\xd5\x5d\x75\x37\xdd"
      "\x4d\x27\xeb\x64\xdd\x5d\x77\xd7\x3d\x74\x0f\xdd\x53\xf7\xd4\xbd\x74\x2f"
      "\xdd\x5b\xf7\xd6\x7d\x74\x1f\xdd\x4f\xf7\xd3\xfd\x75\x7f\x3d\x40\x0f\xd0"
      "\x29\x3a\x45\x0f\xd6\xaf\xe8\x21\x7a\xa8\x1e\xa6\x87\xeb\x11\xfa\x55\x3d"
      "\x52\x8f\xd4\xa3\xf4\x28\x9d\xaa\x53\xf5\x18\x3d\x46\x8f\xd5\x63\xf5\x38"
      "\x3d\x4e\x8f\xd7\xe3\xf5\x44\x3d\x51\x4f\xd2\x93\xf4\x14\x3d\x45\x4f\xd3"
      "\xd3\x74\x9a\x4e\xd3\x33\xf4\x0c\x3d\x53\xcf\xd4\xb3\xf4\x2c\x3d\x47\xcf"
      "\xd1\xe9\x3a\x5d\xcf\xd7\xf3\xf5\x02\xbd\x40\x2f\xd2\x8b\xf4\x62\xbd\x58"
      "\x2f\xd1\x4b\xf4\x32\xbd\x4c\x67\xe8\x0c\x9d\xa9\x33\x75\x96\xce\xd2\x2b"
      "\xf5\x4a\x9d\xad\x57\xe9\x55\x7a\x8d\x5e\xa3\xd7\xe9\x75\x7a\x83\xde\xa0"
      "\x37\xe9\x4d\x7a\x8b\xde\xa2\xb7\xe9\x6d\x3a\x5b\xef\xd4\x3b\xf5\x2e\xbd"
      "\x4b\xef\xd1\x7b\xf4\x3e\xbd\x4f\x1f\xd0\x07\xf4\x41\x7d\x50\x1f\xd2\x87"
      "\x74\x8e\xce\xd1\x87\xf5\x61\x7d\x44\x1f\xd1\x47\xf5\x51\x9d\xab\x73\xf5"
      "\x31\x7d\x4c\x1f\xd7\xc7\xf5\x09\x7d\x42\x9f\xd4\x27\xf5\x29\x7d\x4a\x9f"
      "\xd1\x67\xf4\x59\x7d\x56\x9f\xd3\xe7\xf4\x05\x7d\x41\x5f\xd4\x17\xf5\x25"
      "\x7d\x49\x5f\xd6\x97\xf3\x2e\xfb\x02\x19\xc8\x40\x07\x3a\x28\x10\x14\x08"
      "\x62\x82\x98\x20\x36\x88\x0d\xe2\x82\xb8\xa0\x70\x50\x38\x88\x04\x91\x20"
      "\x3e\x88\x0f\x8a\x04\x37\x06\x45\x83\x62\x41\xf1\xa0\x44\x90\x10\x94\x0c"
      "\x4a\x05\x26\xc0\xc0\x06\x14\x84\x41\xe9\xa0\x4c\x10\x0d\x6e\x0a\xca\x06"
      "\x37\x07\x89\x41\xb9\xa0\x7c\x50\x21\x70\x41\xc5\x20\x29\xb8\x25\xa8\x14"
      "\xdc\x1a\x54\x0e\x6e\x0b\xaa\x04\xb7\x07\x55\x83\x3b\x82\x6a\x41\xf5\xa0"
      "\x46\x50\x33\xb8\x33\xa8\x15\xdc\x15\xd4\x0e\xea\x04\x75\x83\xbb\x83\x7a"
      "\x41\xfd\xa0\x41\xd0\x30\xb8\x27\x68\x14\xdc\x1b\x34\x0e\xee\x0b\x9a\x04"
      "\xf7\x07\x4d\x83\x07\x82\x66\xc1\x83\x41\xf3\xe0\xa1\xa0\x45\xf0\x70\xd0"
      "\x32\x78\x24\x68\x15\x3c\x1a\xb4\x0e\x1e\x0b\xda\x04\x6d\x83\x76\x81\xbf"
      "\xec\xfd\xbf\xb2\xbe\xf7\xe7\x8a\x3d\xe1\x06\x98\x81\x26\xc5\x0c\x32\x83"
      "\xcd\x2b\x66\x88\x19\x6a\x86\x99\xe1\x66\x84\x79\xd5\x8c\x34\xaf\x99\x51"
      "\xe6\x75\x93\x6a\x46\x9b\x31\xe6\x0d\x33\xd6\xbc\x69\xc6\x99\xb7\xcc\x78"
      "\x33\xc1\x4c\x34\x6f\x9b\x49\x66\xb2\x99\x62\xa6\x9a\x69\x66\xba\x49\x33"
      "\xef\x98\x19\xe6\x5d\x33\xd3\xbc\x67\x66\x99\xd9\x66\x8e\x99\x6b\xd2\xcd"
      "\x3c\x33\xdf\xbc\x6f\x16\x98\x85\x66\x91\xf9\xc0\x2c\x36\x1f\x9a\x25\x66"
      "\xa9\x59\x66\x96\x9b\x0c\xf3\x91\xc9\x34\x2b\x4c\x96\xf9\xd8\xac\x34\x9f"
      "\x98\x6c\xb3\xca\xac\x36\x6b\xcc\x5a\xb3\xce\xac\x37\x1b\xcc\x46\xb3\xc9"
      "\x6c\x36\x5b\xcc\x56\xb3\xcd\x6c\x37\x3b\xcc\x4e\xf3\xa9\xd9\x65\x76\x9b"
      "\x3d\x66\xaf\xd9\x67\xf6\x9b\x03\xe6\x33\x73\xd0\x7c\x6e\x0e\x99\x2f\x4c"
      "\x8e\xf9\xd2\x1c\x36\x7f\x32\x47\xcc\x57\xe6\xa8\xf9\xda\xe4\x9a\x6f\xcc"
      "\x31\xf3\xad\x39\x6e\xbe\x33\x27\xcc\xf7\xe6\xa4\xf9\xc1\x9c\x32\xa7\xcd"
      "\x19\xf3\xa3\x39\x6b\x7e\x32\xe7\xcc\x79\x73\xc1\xfc\x6c\x2e\x9a\x5f\xcc"
      "\x25\xf3\xab\xb9\x6c\x7c\xde\xc5\x7d\xde\xc7\x3b\x6a\xd4\x58\x00\x0b\x60"
      "\x0c\xc6\x60\x2c\xc6\x62\x1c\xc6\x61\x61\x2c\x8c\x11\x8c\x60\x3c\xc6\x63"
      "\x11\x2c\x82\x45\xb1\x28\x16\xc7\xe2\x98\x80\x09\x58\x0a\x4b\x61\x1e\x42"
      "\xc2\xd2\x58\x1a\xa3\x18\xc5\xb2\x58\x16\x13\x31\x11\xcb\x63\x79\x74\xe8"
      "\x30\x09\x93\xb0\x12\x56\xc2\xca\x58\x19\xab\x60\x15\xac\x8a\x55\xb1\x1a"
      "\x56\xc3\x1a\x58\x03\xef\xc4\x3b\xf1\x2e\xbc\x0b\xeb\x60\x1d\xbc\x1b\xef"
      "\xc6\xfa\x58\x1f\x1b\x62\x43\x6c\x84\x8d\xb0\x31\x36\xc6\x26\xd8\x04\x9b"
      "\x62\x53\x6c\x86\xcd\xb0\x39\x36\xc7\x16\xd8\x02\x5b\x62\x4b\x6c\x85\xad"
      "\xb0\x35\xb6\xc6\x36\xd8\x06\xdb\x61\x3b\xec\x80\x1d\xb0\x23\x76\xc4\x4e"
      "\xd8\x09\xbb\x60\x17\xec\x8a\x5d\xb1\x1b\x76\xc3\x64\x4c\xc6\xee\xd8\x1d"
      "\x7b\x60\x0f\xec\x89\x3d\xb1\x17\xf6\xc2\xde\xd8\x1b\xfb\x60\x1f\xec\x87"
      "\xfd\xb0\x3f\xf6\xc7\x01\x38\x00\x53\x30\x05\x07\xe3\x60\x1c\x82\x43\x70"
      "\x18\x0e\xc3\x11\x38\x02\x47\xe2\x48\x1c\x85\xa3\x30\x15\x53\x71\x0c\x8e"
      "\xc1\xb1\x38\x16\xc7\xe1\x38\x1c\x8f\x13\x70\x22\xbe\x8d\x93\x70\x32\x4e"
      "\xc1\xa9\x38\x0d\xa7\x63\x1a\xa6\xe1\x0c\x9c\x81\x33\x71\x26\xce\xc2\x59"
      "\x38\x07\xe7\x60\x3a\xa6\xe3\x7c\x9c\x8f\x0b\x70\x01\x2e\xc2\x45\xb8\x18"
      "\x17\xe3\x12\x5c\x82\xcb\x70\x19\x66\x60\x06\x66\x62\x26\x66\x61\x16\xae"
      "\xc4\x95\x98\x8d\xd9\xb8\x1a\x57\xe3\x5a\x5c\x8b\xeb\x71\x3d\x6e\xc4\x8d"
      "\xb8\x19\x37\xe3\x56\xdc\x8a\xdb\x71\x3b\xee\xc4\x9d\xb8\x0b\x77\xe1\x1e"
      "\xdc\x83\xfb\x70\x1f\x1e\xc0\x03\x78\x10\x0f\xe2\x21\x3c\x84\x39\x98\x83"
      "\x87\xf1\x30\x1e\xc1\x23\x78\x14\x8f\x62\x2e\xe6\xe2\x31\x3c\x86\xc7\xf1"
      "\x38\x9e\xc0\x13\x78\x12\x4f\xe2\x29\x3c\x85\x67\xf0\x0c\x9e\xc5\xb3\x78"
      "\x0e\xcf\xe1\x05\xbc\x80\x17\xf1\x17\xbc\x84\xbf\xe2\x65\xf4\x18\x63\xa5"
      "\x88\xb5\xd7\xd8\x38\x7b\xad\x2d\x6c\xaf\xb3\x31\xb6\x90\xfd\xeb\xb8\xb8"
      "\x2d\x61\x13\x6c\x49\x5b\xca\x1a\x5b\xd4\x16\xfb\x9b\x18\xad\xb5\x89\xb6"
      "\x9c\x2d\x6f\x2b\x58\x67\x2b\xda\x24\x7b\xcb\xef\xe2\x6a\xb6\xba\xad\x61"
      "\x6b\xda\x3b\x6d\x2d\x7b\x97\xad\xfd\xbb\xb8\x91\xbd\xd7\x36\xb6\xf7\xd9"
      "\x26\xf6\x7e\xdb\xd0\xde\xf3\x37\x71\x53\xfb\x80\x6d\x66\x1f\xb5\xcd\xed"
      "\x63\xb6\x85\x6d\x6b\x5b\xda\xf6\xb6\x95\x7d\xd4\xb6\xb6\x8f\xd9\x36\xb6"
      "\xad\x6d\x67\xdb\xdb\xae\xf6\x29\xdb\xcd\x3e\x6d\x93\xed\x33\xb6\xbb\x7d"
      "\xf6\x77\x71\xa6\x5d\x61\x37\xda\x4d\x76\xb3\xdd\x62\x0f\xda\xcf\xed\x05"
      "\xfb\xb3\x3d\x6e\xbf\xb3\x17\xed\x2f\x76\x80\x1d\x68\x47\xd8\x57\xed\x48"
      "\xfb\x9a\x1d\x65\x5f\xb7\xa9\x76\xf4\xef\xe2\x89\xf6\x6d\x3b\xc9\x4e\xb6"
      "\x53\xec\x54\x3b\xcd\x4e\xff\x5d\x3c\xc7\xce\xb5\xe9\x76\x9e\x9d\x6f\xdf"
      "\xb7\x0b\xec\xc2\xdf\xc5\x19\xf6\x23\xbb\xd8\x66\xd9\x25\x76\xa9\x5d\x66"
      "\x97\xff\x16\xe7\xad\x29\xcb\x7e\x6c\x57\xda\x4f\x6c\xb6\x5d\x65\x57\xdb"
      "\x35\x76\xad\x5d\x67\xd7\xdb\x0d\xff\xb1\xd6\x35\x76\x9b\xdd\x6e\x77\xd8"
      "\x03\xf6\x33\xbb\xcb\xee\xb6\x7b\xec\x5e\xbb\xcf\xee\xff\x2d\xce\xdb\xc7"
      "\x21\xfb\x85\xcd\xb1\x5f\xda\x63\xf6\x5b\x7b\xc4\x7e\x65\x8f\xda\x13\x36"
      "\xd7\x7e\xf3\x5b\x9c\xb7\xbf\x13\xf6\x7b\x7b\xd2\xfe\x60\x4f\xd9\xd3\xf6"
      "\x8c\xfd\xd1\x9e\xb5\x3f\xd9\x73\xf6\xfc\x6f\xfb\xcf\xdb\xfb\x8f\xf6\x57"
      "\x7b\xd9\x7a\x2b\x08\x48\x92\x22\x4d\x01\x15\xa0\x82\x14\x43\x85\x28\x96"
      "\xae\xa1\x38\xba\x96\x0a\xd3\x75\x14\xa1\xeb\x29\x9e\x6e\xa0\x22\x74\x23"
      "\x15\xa5\x62\x54\x9c\x4a\x50\x02\x95\xa4\x52\x64\x08\xc9\x12\x51\x48\xa5"
      "\xa9\x0c\x45\xe9\x26\x2a\x4b\x37\x53\x22\x95\xa3\xf2\x54\x81\x1c\x55\xa4"
      "\x24\xba\x85\x2a\xd1\xad\x54\x99\x6e\xa3\x2a\x74\x3b\x55\xa5\x3b\xa8\x1a"
      "\x55\xa7\x1a\x54\x93\xee\xa4\x5a\x74\x17\xd5\xa6\x3a\x54\x97\xee\xa6\x7a"
      "\x54\x9f\x1a\x50\x43\xba\x87\x1a\xd1\xbd\xd4\x98\xee\xa3\x26\x74\x3f\x35"
      "\xa5\x07\xa8\x19\x3d\x48\xcd\xe9\x21\x6a\x41\x0f\x53\x4b\x7a\x84\x5a\xd1"
      "\xa3\xd4\x9a\x1e\xa3\x36\xd4\x96\xda\x51\x7b\xea\x40\x8f\x53\x47\x7a\x82"
      "\x3a\x51\x67\xea\x42\x4f\x52\x57\x7a\x8a\xba\xd1\xd3\x94\x4c\xcf\x50\x77"
      "\x7a\x96\x7a\xd0\x73\xd4\x93\x9e\xa7\x5e\xf4\x02\xf5\xa6\x17\xa9\x0f\xf5"
      "\xa5\x7e\xf4\x12\xf5\xa7\x97\x69\x00\x0d\xa4\x14\x1a\x44\x83\xe9\x15\x1a"
      "\x42\x43\x69\x18\x0d\xa7\x11\xf4\x2a\x8d\xa4\xd7\x68\x14\xbd\x4e\xa9\x34"
      "\x9a\xc6\xd0\x1b\x34\x96\xde\xa4\x71\xf4\x16\x8d\xa7\x09\x34\x91\xde\xa6"
      "\x49\x34\x99\xa6\xd0\x54\x9a\x46\xd3\x29\x8d\xde\xa1\x19\xf4\x2e\xcd\xa4"
      "\xf7\x68\x16\xcd\xa6\x39\x34\x97\xd2\x69\x1e\xcd\xa7\xf7\x69\x01\x2d\xa4"
      "\x45\xf4\x01\x2d\xa6\x0f\x69\x09\x2d\xa5\x65\xb4\x9c\x32\xe8\x23\xca\xa4"
      "\x15\x94\x45\x1f\xd3\x4a\xfa\x84\xb2\x69\x15\xad\xa6\x35\xb4\x96\xd6\xd1"
      "\x7a\xda\x40\x1b\x69\x13\x6d\xa6\x2d\xb4\x95\xb6\xd1\x76\xda\x41\x3b\xe9"
      "\x53\xda\x45\xbb\x69\x0f\xed\xa5\x7d\xb4\x9f\x0e\xd0\x67\x74\x90\x3e\xa7"
      "\x43\xf4\x05\xe5\xd0\x97\x74\x98\xfe\x44\x47\xe8\x2b\x3a\x4a\x5f\x53\x2e"
      "\x7d\x43\xc7\xe8\x5b\x3a\x4e\xdf\xd1\x09\xfa\x9e\x4e\xd2\x0f\x74\x8a\x4e"
      "\xd3\x19\xfa\x91\xce\xd2\x4f\x74\x8e\xce\xd3\x05\xfa\x99\x2e\xd2\x2f\x74"
      "\x89\x7e\xa5\xcb\xe4\x49\x84\x10\xca\x50\x85\x3a\x0c\xc2\x02\x61\xc1\x30"
      "\x26\x2c\x14\xc6\x86\xd7\x84\x71\xe1\xb5\x61\xe1\xf0\xba\x30\x12\x5e\x1f"
      "\xc6\x87\x37\x84\x45\xc2\x1b\xc3\xa2\x61\xb1\xb0\x78\x58\x22\x4c\x08\x4b"
      "\x86\xa5\x42\x13\x62\x68\x43\x0a\xc3\xb0\x74\x58\x26\x8c\x86\x37\x85\x65"
      "\xc3\x9b\xc3\xc4\xb0\x5c\x58\x3e\xac\x10\xba\xb0\x62\x98\x14\xde\x12\x56"
      "\x0a\x6f\x0d\x2b\x87\xb7\x85\x55\xc2\xdb\xc3\xaa\xe1\x1d\x61\xb5\xb0\x7a"
      "\xf8\xe8\xfd\x35\xc3\x3b\xc3\x5a\xe1\x5d\x61\xed\xb0\x4e\x58\x37\xbc\x3b"
      "\xac\x17\xd6\x0f\x1b\x84\x0d\xc3\x7b\xc2\x46\xe1\xbd\x61\xe3\xf0\xbe\xb0"
      "\x49\x78\x7f\x58\x39\x7c\x20\x6c\x16\x3e\x18\x36\x0f\x1f\x0a\x5b\x84\x0f"
      "\x87\x2d\xc3\x47\xc2\x56\xe1\xa3\x61\xeb\xf0\xb1\xb0\x4d\xd8\x36\x6c\x17"
      "\xb6\x0f\x3b\x84\x8f\x87\x1d\xc3\x27\xc2\x4e\x61\xe7\xb0\x4b\xf8\x64\xd8"
      "\x35\x7c\x2a\xec\x16\x3e\x1d\x26\x87\xcf\x84\xdd\xc3\x67\xff\xf0\x78\x4a"
      "\x38\x28\x1c\x1c\xbe\x12\xbe\x12\x7a\x7f\x9f\x5a\x16\x5d\x1e\xcd\x88\x7e"
      "\x14\xcd\x8c\xae\x88\x66\x45\x3f\x8e\xae\x8c\x7e\x12\xcd\x8e\xae\x8a\xae"
      "\x8e\xae\x89\xae\x8d\xae\x8b\xae\x8f\x6e\x88\x6e\x8c\x6e\x8a\x6e\x8e\x6e"
      "\x89\x6e\x8d\x6e\x8b\x6e\x8f\xee\x88\x7a\xdf\xb0\xa0\x70\xe0\xa4\x53\x4e"
      "\xbb\xc0\x15\x70\x05\x5d\x8c\x2b\xe4\x62\xdd\x35\x2e\xce\x5d\xeb\x0a\xbb"
      "\xeb\x5c\xc4\x5d\xef\xe2\xdd\x0d\xae\x88\xbb\xd1\x15\x75\xc5\x5c\x71\x57"
      "\xc2\x25\xb8\x92\xae\x94\x33\x0e\x9d\x75\xe4\x42\x57\xda\x95\x71\x51\x77"
      "\x93\x2b\xeb\x6e\x76\x89\xae\x9c\x2b\xef\x2a\x38\xe7\x2a\xba\x24\xd7\xde"
      "\x75\x70\x1d\x5c\x47\xf7\x84\xeb\xe4\x3a\xbb\x2e\xee\x49\xf7\xa4\x7b\xca"
      "\x3d\xe5\x9e\x76\x4f\xbb\x67\x5c\x77\xf7\xac\xeb\xe1\x9e\x73\x3d\xdd\xf3"
      "\xae\x97\x7b\xc1\xbd\xe0\x5e\x74\x7d\x5c\x5f\xd7\xcf\xbd\xe4\xfa\xbb\x97"
      "\xdd\x00\x37\xd0\xa5\xb8\x14\x37\xd8\x0d\x76\x43\xdc\x10\x37\xcc\x0d\x73"
      "\x23\xdc\x08\x37\xd2\x8d\x74\xa3\xdc\x28\x97\xea\x52\xdd\x18\x37\xc6\x8d"
      "\x75\x63\xdd\x38\x37\xce\x8d\x77\xe3\xdd\x44\x37\xd1\x4d\x72\x93\xdc\x14"
      "\x37\xc5\x4d\x73\xd3\x5c\x9a\x4b\x73\x33\xdc\x0c\x37\xd3\xcd\x74\xb3\xdc"
      "\x2c\x37\xc7\xcd\x71\xe9\x2e\xdd\xcd\x77\xf3\xdd\x02\xb7\xc0\x2d\x72\x8b"
      "\xdc\xe2\xc4\xc5\x6e\x89\x5b\xe2\x96\xb9\x65\x2e\xc3\x65\xb8\x4c\x97\xe9"
      "\xb2\x5c\x96\x5b\xe9\x56\xba\x6c\x97\xed\x56\xbb\xd5\x6e\xad\x5b\xeb\xd6"
      "\xbb\xf5\x6e\xa3\xdb\xe8\x36\xbb\xcd\x6e\xab\xdb\xea\xb6\xbb\xed\x6e\xa7"
      "\xdb\xe9\x76\xb9\x5d\x6e\x8f\xdb\xe3\xf6\xb9\x7d\xee\x80\x3b\xe0\x0e\xba"
      "\x83\xee\x90\x3b\xe4\x72\x5c\x8e\x3b\xec\x0e\xbb\x23\xee\x88\x3b\xea\xbe"
      "\x76\xb9\xee\x1b\x77\xcc\x7d\xeb\x8e\xbb\xef\xdc\x09\xf7\xbd\x3b\xe9\x7e"
      "\x70\xa7\xdc\x69\x77\xc6\xfd\xe8\xce\xba\x9f\xdc\x39\x77\xde\x5d\x70\x3f"
      "\xbb\x8b\xee\x17\x77\xc9\xfd\xea\x2e\x3b\xef\xd2\x22\xef\x44\x66\x44\xde"
      "\x8d\xcc\x8c\xbc\x17\x99\x15\x99\x1d\x99\x13\x99\x1b\x49\x8f\xcc\x8b\xcc"
      "\x8f\xbc\x1f\x59\x10\x59\x18\x59\x14\xf9\x20\xb2\x38\xf2\x61\x64\x49\x64"
      "\x69\x64\x59\x64\x79\x24\x23\xf2\x51\x24\x33\xb2\x22\x92\x15\xf9\x38\xb2"
      "\x32\xf2\x49\x24\x3b\xb2\x2a\xb2\x3a\xb2\x26\xb2\x36\xb2\x2e\xe2\x7d\xc9"
      "\x5d\xa1\x2f\xed\xcb\xf8\xa8\xbf\xc9\x97\xf5\x37\xfb\x44\x5f\xce\x97\xf7"
      "\x15\xbc\xf3\x15\x7d\x92\xbf\xc5\x57\xf2\xb7\xfa\xca\xfe\x36\x5f\xc5\xdf"
      "\xee\xab\xfa\x3b\x7c\x35\x5f\xdd\xd7\xf0\x8f\xf9\x36\xbe\xad\x6f\xe7\xdb"
      "\xfb\x0e\xfe\x71\xdf\xd1\x3f\xe1\x3b\xf9\xce\xbe\x8b\x7f\xd2\x77\xf5\x4f"
      "\xf9\x6e\xfe\x69\x9f\xec\x9f\xf1\xdd\xfd\xb3\xbe\x87\x7f\xce\xf7\xf4\xcf"
      "\xfb\x5e\xfe\x05\xdf\xdb\xbf\xe8\xfb\xf8\xbe\xbe\x9f\x7f\xc9\xf7\xf7\x2f"
      "\xfb\x01\x7e\xa0\x4f\xf1\x83\xfc\x60\xff\x8a\x1f\xe2\x87\xfa\x61\x7e\xb8"
      "\x1f\xe1\x5f\xf5\x23\xfd\x6b\x7e\x94\x7f\xdd\xa7\xfa\xd1\x7e\x8c\x7f\xc3"
      "\x8f\xf5\x6f\xfa\x71\xfe\x2d\x3f\xde\x4f\xf0\x13\xfd\xdb\x7e\x92\x9f\xec"
      "\xa7\xf8\xa9\x7e\x9a\x9f\xee\xd3\xfc\x3b\x7e\x86\x7f\xd7\xcf\xf4\xef\xf9"
      "\x59\x7e\xb6\x9f\xe3\xe7\xfa\x74\x3f\xcf\xcf\xf7\xef\xfb\x05\x7e\xa1\x5f"
      "\xe4\x3f\xf0\x8b\xfd\x87\x7e\x89\x5f\xea\x97\xf9\xe5\x3e\xc3\x7f\xe4\x33"
      "\xfd\x0a\x9f\xe5\x3f\xf6\x2b\xfd\x27\x3e\xdb\xaf\xf2\xab\xfd\x1a\xbf\xd6"
      "\xaf\xf3\xeb\xfd\x06\xbf\xd1\x6f\xf2\x9b\xfd\x16\xbf\xd5\x6f\xf3\xdb\xfd"
      "\x0e\xbf\xd3\x7f\xea\x77\xf9\xdd\x7e\x8f\xdf\xeb\xf7\xf9\xfd\xfe\x80\xff"
      "\xcc\x1f\xf4\x9f\xfb\x43\xfe\x0b\x9f\xe3\xbf\xf4\x87\xfd\x9f\xfc\x11\xff"
      "\x95\x3f\xea\xbf\xf6\xb9\xfe\x1b\x7f\xcc\x7f\xeb\x8f\xfb\xef\xfc\x09\xff"
      "\xbd\x3f\xe9\x7f\xf0\xa7\xfc\x69\x7f\xc6\xff\xe8\xcf\xfa\x9f\xfc\x39\x7f"
      "\xde\x5f\xf0\x3f\xfb\x8b\xfe\x17\x7f\xc9\xff\x9a\x77\x23\xe0\xaf\xf6\x93"
      "\x74\xc6\x18\x63\x8c\xb1\xff\x1f\xa8\x3f\x38\x3e\xe8\xef\xfc\x4c\xfe\x65"
      "\xe4\x19\x2c\x84\xb8\x76\x77\x89\xdc\xff\x5c\x73\x6b\xd1\x3f\xcf\x87\xca"
      "\x84\xae\x11\x21\xc4\x33\x03\x7b\x3f\xfc\xbf\x47\xbd\x7a\x29\x29\x29\x7f"
      "\x39\x37\x5b\x89\xa0\xcc\x52\x21\x44\xe4\x4a\x7e\x01\x71\x25\x5e\x25\xba"
      "\x88\xa7\x44\xb2\xe8\x2c\x2a\xfd\xdd\xf5\x0d\x95\x7d\x2f\xd2\x1f\xd4\x8f"
      "\xde\x2e\x44\xec\x5f\xe5\xc4\x88\x2b\xf1\x95\xfa\xb7\xfe\x17\xf5\x1f\x7f"
      "\x72\x62\x66\xd5\xf0\x42\xfc\x7f\x53\x7f\xa9\x10\x89\x65\xae\xe4\x14\x12"
      "\x57\xe2\x2b\xf5\x2b\xff\x17\xf5\x8b\x75\xfc\x83\xf5\x17\xfa\x2a\x4d\x88"
      "\x4e\x7f\x95\x13\x27\xae\xc4\x57\xea\x27\x89\x27\xc4\xb3\x22\xf9\x6f\xce"
      "\x64\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xfe\x6c\xa8\xac\xd1\xf3\x8f\xee\x9f"
      "\xf3\xee\xcf\x13\xf4\x95\x9c\x82\xe2\x4a\xfc\x47\xf7\xe7\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\xbb\xfa\x9e\xef\xdb\xef\xe9\xc7\x93\x93\x3b\xf7\xe4"
      "\x09\x4f\x78\xc2\x93\xff\x98\x5c\xed\xff\x4c\x8c\x31\xc6\x18\x63\x8c\xb1"
      "\x7f\xb5\x2b\x17\xfd\x57\x7b\x25\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x58\xfe\xf5\xff\xe2\xeb\xc4\xae"
      "\xf6\x1e\x19\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\xb1\xab\xed\x7f"
      "\x05\x00\x00\xff\xff\xd0\xa0\x3b\x6f",
      5373);
  syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20001540,
                  /*flags=MS_NOEXEC|MS_NODEV|0x20000000*/ 0x2000000c,
                  /*opts=*/0x20000100, /*chdir=*/1, /*size=*/0x14fd,
                  /*img=*/0x20002a80);
  memcpy((void*)0x20000040, "./bus\000", 6);
  syscall(__NR_creat, /*file=*/0x20000040ul, /*mode=*/0ul);
  memcpy((void*)0x20000380, "/dev/loop", 9);
  *(uint8_t*)0x20000389 = 0x30;
  *(uint8_t*)0x2000038a = 0;
  memcpy((void*)0x20000140, "./bus\000", 6);
  syscall(__NR_mount, /*src=*/0x20000380ul, /*dst=*/0x20000140ul, /*type=*/0ul,
          /*flags=MS_BIND*/ 0x1000ul, /*data=*/0ul);
}
int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul,
          /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  use_temporary_dir();
  loop();
  return 0;
}