// https://syzkaller.appspot.com/bug?id=fcf0b68b63113416159649a5145d26759b9865ba
// 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;
  const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW;

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

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

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

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

static void execute_one(void);

#define WAIT_FLAGS __WALL

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

void execute_one(void)
{
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x20006c00, "exfat\000", 6);
  memcpy((void*)0x20001b40, "./file0\000", 8);
  memcpy((void*)0x20001b80,
         "umask=00000000000000000000011,namecase=1,errors=continue,allow_utime="
         "00000000000000000000002,gid=",
         97);
  sprintf((char*)0x20001be1, "0x%016llx", (long long)0);
  memcpy((void*)0x20001bf3,
         ",discard,umask=00000000000000000005676,keep_last_dots,gid=", 58);
  sprintf((char*)0x20001c2d, "0x%016llx", (long long)0xee00);
  memcpy((void*)0x20001c3f,
         ",iocharset=cp865,dmask=00000000000000000000001,discard,uid=", 59);
  sprintf((char*)0x20001c7a, "0x%016llx", (long long)0xee00);
  memcpy((void*)0x20001c8c, "\x96\x90\x43\xc7\xff\x17\x74\xeb\xb8\x58\x2e\x00",
         12);
  memcpy(
      (void*)0x20000580,
      "\x78\x9c\xec\xdc\x0b\x98\xce\x55\xd7\x30\xf0\xbd\xf6\xde\x7f\xc6\x34\xe9"
      "\x6e\x92\xc3\xb0\xd7\x5e\x7f\xee\x34\xd8\x26\x49\x72\x48\xc8\x21\x49\x92"
      "\x24\xc9\x29\x21\x31\x49\x92\x90\x18\x72\x4a\x1a\x92\x90\x73\x92\xc3\x10"
      "\x92\xc3\x34\x26\x8d\xf3\xf9\x90\x73\xd2\xe4\x91\x26\x49\x42\x72\x0a\xfb"
      "\xbb\xf4\xf4\xbe\x9e\xf7\xe9\x79\xde\xbe\xf7\x7b\xfa\x3e\xdf\xf5\xcc\xfa"
      "\x5d\xd7\xbe\x66\xaf\xf9\xcf\x5a\xf7\xda\xb3\xe6\x9a\xfb\x7f\xdf\xd7\x35"
      "\xf3\x7d\x8f\x91\x75\x9a\xd5\xad\xd9\x84\x88\xc4\xbf\x04\xfe\xfa\x21\x45"
      "\x08\x11\x23\x84\x18\x2a\x84\xb8\x41\x08\x11\x08\x21\x2a\xc4\x57\x88\xbf"
      "\x72\x3d\x9f\x82\x94\x7f\xed\x41\xd8\x9f\xeb\xd1\xb4\x6b\xdd\x01\xbb\x96"
      "\x78\xfe\xb9\x1b\xcf\x3f\x77\xe3\xf9\xe7\x6e\x3c\xff\xdc\x8d\xe7\x9f\xbb"
      "\xf1\xfc\x73\x37\x9e\x7f\xee\xc6\xf3\x67\x2c\x37\xdb\x3e\xa7\xc8\x8d\xbc"
      "\x72\xef\xe2\xf7\xff\x73\x33\x7e\xfe\xff\x37\x92\x53\x76\xd2\xd7\x1b\xcb"
      "\xde\xdc\xf3\x7f\x90\xc2\xf3\xcf\xdd\x78\xfe\xb9\x1b\xcf\x3f\x77\xe3\xf9"
      "\xe7\x6e\x3c\xff\xdc\x8d\xe7\xff\xef\xaf\xc6\x7f\x73\x8d\xe7\x9f\xbb\xf1"
      "\xfc\x19\xcb\xcd\xae\xf5\xfb\xcf\xbc\xae\xed\xba\xd6\x3f\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\x72"
      "\x87\x73\xfe\x2a\x2d\x84\xf8\x8f\xfd\xb5\xee\x8b\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x7f\x1e\x9f\xf7\x5a\x77\xc0\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\xb1\xff\xfb\x40\x48\xa1\x84\x16\x81\xc8\x23\xf2\x8a\x18\x91\x4f\xc4\x8a"
      "\xeb\x44\x9c\xb8\x5e\xe4\x17\x37\x88\x88\xb8\x51\xc4\x8b\x9b\x44\x01\x71"
      "\xb3\x28\x28\x0a\x89\xc2\xa2\x88\x48\x10\x45\x45\x31\x61\x04\x0a\x2b\x48"
      "\x84\xa2\xb8\x28\x21\xa2\xe2\x16\x51\x52\xdc\x2a\x12\x45\x29\x51\x5a\x94"
      "\x11\x4e\x94\x15\x49\xe2\x36\x51\x4e\xdc\x2e\xca\x8b\x3b\x44\x05\x71\xa7"
      "\xa8\x28\xee\x12\x95\x44\x65\x51\x45\x54\x15\x77\x8b\x6a\xe2\x1e\x51\x5d"
      "\xd4\x10\x35\xc5\xbd\xa2\x96\xa8\x2d\xea\x88\xba\xe2\x3e\x51\x4f\xdc\x2f"
      "\xea\x8b\x07\x44\x03\xf1\xa0\x68\x28\x1e\x12\x8d\xc4\xc3\xa2\xb1\x78\x44"
      "\x34\x11\x8f\x8a\xa6\xe2\x31\xd1\x4c\x3c\x2e\x9a\x8b\x27\x44\x0b\xd1\x52"
      "\xb4\x12\xad\x45\x9b\xff\xa3\xfc\x97\x45\x1f\xf1\x8a\xe8\x2b\xfa\x89\x14"
      "\xd1\x5f\x0c\x10\xaf\x8a\x81\x62\x90\x18\x2c\x86\x88\xa1\xe2\x35\x31\x4c"
      "\xbc\x2e\x86\x8b\x37\x44\xaa\x18\x21\x46\x8a\x37\xc5\x28\xf1\x96\x18\x2d"
      "\xde\x16\x63\xc4\x58\x31\x4e\xbc\x23\xc6\x8b\x09\x62\xa2\x98\x24\x26\x8b"
      "\x29\x62\xaa\x78\x57\x4c\x13\xef\x89\xe9\xe2\x7d\x31\x43\xcc\x14\xb3\xc4"
      "\x6c\x91\x26\xe6\x88\xb9\xe2\x03\x31\x4f\xcc\x17\x0b\xc4\x87\x62\xa1\xf8"
      "\x48\x2c\x12\x8b\xc5\x12\xb1\x54\xa4\x8b\x8f\x45\x86\x58\x26\x32\xc5\x27"
      "\x62\xb9\xf8\x54\x64\x89\x15\x62\xa5\x58\x25\x56\x8b\x35\x62\xad\x58\x27"
      "\xd6\x8b\x0d\x62\xa3\xd8\x24\x36\x8b\x2d\x62\xab\xd8\x26\xb6\x8b\xcf\xc4"
      "\x0e\xb1\x53\xec\x12\xbb\xc5\x1e\xb1\x57\xec\x13\x9f\x8b\xfd\xe2\x0b\x71"
      "\x40\x7c\x29\xb2\xc5\x57\xff\xc3\xfc\xb3\x7f\x97\xdf\x13\x04\x08\x90\x20"
      "\x41\x83\x86\x3c\x90\x07\x62\x20\x06\x62\x21\x16\xe2\x20\x0e\xf2\x43\x7e"
      "\x88\x40\x04\xe2\x21\x1e\x0a\x40\x01\x28\x08\x05\xa1\x30\x14\x86\x04\x48"
      "\x80\x62\x50\x0c\x10\x10\x08\x08\x8a\x43\x71\x88\x42\x14\x4a\x42\x49\x48"
      "\x84\x44\x28\x0d\xa5\xc1\x81\x83\x24\x48\x82\x72\x70\x3b\x94\x87\xf2\x50"
      "\x01\x2a\x40\x45\xa8\x08\x95\xa0\x32\x54\x86\xaa\x50\x15\xaa\x41\x35\xa8"
      "\x0e\xd5\xa1\x26\xd4\x84\x5a\x50\x0b\xea\x40\x1d\xb8\x0f\xee\x83\xfb\xa1"
      "\x3e\xd4\x87\x06\xd0\x00\x1a\x42\x43\x68\x04\x8d\xa0\x31\x34\x86\x26\xd0"
      "\x04\x9a\x42\x53\x68\x06\xcd\xa0\x39\x34\x87\x16\xd0\x02\x5a\x41\x2b\x68"
      "\x03\x6d\xa0\x2d\xb4\x85\x76\xd0\x0e\x3a\x40\x07\xe8\x08\x1d\xa1\x13\x74"
      "\x82\x64\x48\x86\x2e\xd0\x05\xba\x42\x57\xe8\x06\xdd\xa0\x3b\x74\x87\x1e"
      "\xd0\x03\x7a\x42\x2f\xe8\x05\x2f\xc3\xcb\xf0\x0a\xbc\x02\xfd\xa0\x96\xec"
      "\x0f\x03\x60\x00\x0c\x84\x81\x30\x18\x86\xc0\x10\x78\x0d\x86\xc1\xeb\xf0"
      "\x3a\xbc\x01\xa9\x30\x02\x46\xc2\x9b\xf0\x26\xbc\x05\xa3\xe1\x0c\x8c\x81"
      "\xb1\x30\x0e\xc6\x41\x35\x39\x01\x26\xc2\x24\x20\x39\x05\xa6\xc2\x54\x98"
      "\x06\xd3\x60\x3a\x4c\x87\x19\x30\x13\x66\xc2\x6c\x48\x83\x39\x30\x17\xe6"
      "\xc2\x3c\x98\x0f\xf3\xe1\x43\x58\x08\x1f\xc1\x47\xb0\x18\x16\xc3\x52\x48"
      "\x87\x74\xc8\x80\x65\x90\x09\x99\xb0\x1c\xce\x42\x16\xac\x80\x95\xb0\x0a"
      "\x56\xc3\x1a\x58\x0d\xeb\x60\x3d\xac\x83\x8d\xb0\x09\x36\xc2\x16\xd8\x02"
      "\xdb\x60\x1b\x7c\x06\x9f\xc1\x4e\xd8\x09\xbb\x61\x37\xec\x85\xbd\xf0\x39"
      "\x7c\x0e\x5f\xc0\x17\x90\x0a\xd9\x90\x0d\x07\xe1\x20\x1c\x82\x43\x70\x18"
      "\x0e\x43\x0e\xe4\xc0\x11\x38\x02\x47\xe1\x28\x1c\x83\x63\x70\x1c\x8e\xc3"
      "\x09\x38\x09\xa7\xe0\x24\x9c\x86\xd3\x70\x06\xce\xc2\x39\x38\x07\x17\xe0"
      "\x02\x5c\x84\x17\x13\xbe\x6d\xba\xb7\xd4\x86\x54\x21\xaf\xd0\x52\xcb\x3c"
      "\x32\x8f\x8c\x91\x31\x32\x56\xc6\xca\x38\x19\x27\xf3\xcb\xfc\x32\x22\x23"
      "\x32\x5e\xc6\x4f\x51\x42\xc8\x82\xb2\xa0\x2c\x2c\x0b\xcb\x04\x99\x20\x8b"
      "\xc9\x62\x12\x25\x4a\x92\xa1\x2c\x2e\x8b\xc7\x08\x21\x64\x49\x59\x52\x26"
      "\xca\x44\x59\x5a\x96\x96\x4e\x3a\x99\x24\x93\x64\x39\x59\x4e\x96\x97\xe5"
      "\x65\x05\x79\xa7\xac\x28\xef\x92\x95\x64\x65\xd9\xde\x55\x95\x55\x65\x35"
      "\xd9\xc1\x55\x97\x35\x64\x4d\x59\x53\xd6\x92\xb5\x65\x1d\x59\x57\xd6\x95"
      "\xf5\x64\x3d\x59\x5f\xd6\x97\x0d\x64\x03\xd9\x50\x36\x94\x8d\xe4\xc3\xb2"
      "\xb1\xec\x0f\x83\xe1\x51\x79\x65\x32\xcd\xe4\x08\x68\x2e\x47\x42\x0b\xd9"
      "\x52\xb6\x92\xad\xe5\x5b\xf0\xa4\x6c\x2b\x47\x43\x3b\xd9\x5e\x76\x90\x4f"
      "\xcb\xb1\x30\x06\x3a\xc9\xb6\x2e\x59\x3e\x2b\xbb\xc8\x89\xd0\x55\x3e\x2f"
      "\x27\xc1\x0b\xb2\xbb\x9c\x02\x3d\xe4\x4b\xb2\xa7\xec\x25\x7b\xcb\x97\x65"
      "\x1f\xd9\xce\xf5\x95\xfd\xe4\x0c\xe8\x2f\x07\xc8\xd9\x30\x50\x0e\x92\x83"
      "\xe5\x10\x39\x0f\x6a\xcb\x2b\x13\xab\x23\xdf\x90\xa9\x72\x84\x1c\x29\xdf"
      "\x94\x4b\xe1\x2d\x39\x5a\xbe\x2d\xc7\xc8\xb1\x72\x9c\x7c\x47\x8e\x97\x13"
      "\xe4\x44\x39\x49\x4e\x96\x53\xe4\x54\xf9\xae\x9c\x26\xdf\x93\xd3\xe5\xfb"
      "\x72\x86\x9c\x29\x67\xc9\xd9\x32\x4d\xce\x91\x73\xe5\x07\x72\x9e\x9c\x2f"
      "\x17\xc8\x0f\xe5\x42\xf9\x91\x5c\x24\x17\xcb\x25\x72\xa9\x4c\x97\x1f\xcb"
      "\x0c\xb9\x4c\x66\xca\x4f\xe4\x72\xf9\xa9\xcc\x92\x2b\xe4\x4a\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\x9f\xc9\x1d\x72\xa7\xdc\x25\x77\xcb\x3d\x72\xaf\xdc\x27"
      "\x3f\x97\xfb\xe5\x17\xf2\x80\xfc\x52\x66\xcb\xaf\xe4\x41\xf9\x17\x79\x48"
      "\x7e\x2d\x0f\xcb\x6f\x64\x8e\xfc\x56\x1e\x91\xdf\xc9\xa3\xf2\x7b\x79\x4c"
      "\xfe\x20\x8f\xcb\x1f\xe5\x09\x79\x52\x9e\x92\x3f\xc9\xd3\xf2\x67\x79\x46"
      "\x9e\x95\xe7\xe4\x79\x79\x41\xfe\x22\x2f\xca\x4b\xf2\xb2\xf4\x52\x28\x50"
      "\x52\x29\xa5\x55\xa0\xf2\xa8\xbc\x2a\x46\xe5\x53\xb1\xea\x3a\x15\xa7\xae"
      "\x57\xf9\xd5\x0d\x2a\xa2\x6e\x54\xf1\xea\x26\x55\x40\xdd\xac\x0a\xaa\x42"
      "\xaa\xb0\x2a\xa2\x12\x54\x51\x55\x4c\x19\x85\xca\x2a\x52\xa1\x2a\xae\x4a"
      "\xa8\xa8\xba\x45\x95\x54\xb7\xaa\x44\x55\x4a\x95\x56\x65\x94\x53\x65\x55"
      "\x92\xba\x4d\x95\x53\xb7\xab\xf2\xea\x0e\x55\x41\xdd\xa9\x2a\xaa\xbb\x54"
      "\x25\x55\x59\x55\x51\x55\xd5\xdd\xaa\x9a\xba\x47\x55\x57\x35\x54\x4d\x75"
      "\xaf\xaa\xa5\x6a\xab\x3a\xaa\xae\xba\x4f\xd5\x53\xf7\xab\xfa\xea\x01\xd5"
      "\x40\x3d\xa8\x1a\xaa\x87\x54\x23\xf5\xb0\x6a\xac\x1e\x51\x4d\xd4\xa3\xaa"
      "\xa9\x7a\x4c\x35\x53\x8f\xab\xe6\xea\x09\xd5\x42\xb5\x54\xad\x54\x6b\xd5"
      "\x46\x3d\xa9\xda\xaa\xa7\x54\x3b\xd5\x5e\x75\x50\x4f\xab\x8e\xea\x19\xd5"
      "\x49\x75\x56\xc9\xea\x59\xd5\x45\x3d\xa7\xba\xaa\xe7\x55\x37\xf5\x82\xea"
      "\xae\x5e\x54\x3d\xd4\x4b\xaa\xa7\xea\xa5\x7a\xab\x4b\xea\xb2\xf2\xaa\xaf"
      "\xea\xa7\x52\x54\x7f\x35\x40\xbd\xaa\x06\xaa\x41\x6a\xb0\x1a\xa2\x86\xaa"
      "\xd7\xd4\x30\xf5\xba\x1a\xae\xde\x50\xa9\x6a\x84\x1a\xa9\xde\x54\xa3\xd4"
      "\x5b\x6a\xb4\x7a\x5b\x8d\x51\x63\xd5\x38\xf5\x8e\x1a\xaf\x26\xa8\x89\x6a"
      "\x92\x9a\xac\xa6\xa8\xa9\xea\x5d\x35\x4d\xbd\xa7\xa6\xab\xf7\xd5\x0c\x35"
      "\x53\xcd\x52\xb3\x55\x9a\x9a\xa3\x06\xff\x56\x69\xc1\xdf\xe5\xf7\xff\xed"
      "\x59\xf7\x6f\xf3\xdf\xfb\x07\xf9\xc3\x7f\x7d\xf4\x6d\x6a\xbb\xfa\x4c\xed"
      "\x50\x3b\xd5\x2e\xb5\x5b\xed\x51\x7b\xd5\x3e\xb5\x4f\xed\x57\xfb\xd5\x01"
      "\x75\x40\x65\xab\x6c\x75\x50\x1d\x54\x87\xd4\x21\x75\x58\x1d\x56\x39\x2a"
      "\x47\x1d\x51\x47\xd4\x51\x75\x54\x1d\x53\xc7\xd4\x71\x75\x5c\x9d\x50\x27"
      "\xd5\x79\xf5\x93\x3a\xad\x7e\x56\x67\xd4\x59\x75\x56\x9d\x57\x17\xd4\x05"
      "\x75\xf1\xb7\xef\x81\xd0\xa0\xa5\x56\x5a\xeb\x40\xe7\xd1\x79\x75\x8c\xce"
      "\xa7\x63\xf5\x75\x3a\x4e\x5f\xaf\xf3\xeb\x1b\x74\x44\xdf\xa8\xe3\xf5\x4d"
      "\xba\x80\xbe\x59\x17\xd4\x85\x74\x61\x5d\x44\x27\xe8\xa2\xba\x98\x36\x1a"
      "\xb5\xd5\xa4\x43\x5d\x5c\x97\xd0\x51\x7d\x8b\x2e\xa9\x6f\xd5\x89\xba\x94"
      "\x2e\xad\xcb\x68\xa7\xcb\xea\x24\x7d\xdb\xbf\x9c\xff\x47\xfd\xb5\xd1\x6d"
      "\x74\x5b\xdd\x56\xb7\xd3\xed\x74\x07\xdd\x41\x77\xd4\x1d\x75\x27\xdd\x49"
      "\x27\xeb\x64\xdd\x45\x77\xd1\x5d\x75\x57\xdd\x4d\x77\xd3\xdd\x75\x77\xdd"
      "\x43\xf7\xd0\x3d\x75\x4f\xdd\x5b\xf7\xd6\x7d\x74\x1f\xdd\x57\xf7\xd5\x29"
      "\x3a\x45\x0f\xd0\xaf\xea\x81\x7a\x90\x1e\xac\x87\xe8\xa1\xfa\x35\x3d\x4c"
      "\x0f\xd3\xc3\xf5\x70\x9d\xaa\x53\xf5\x48\x3d\x52\x8f\xd2\xa3\xf4\x68\x3d"
      "\x5a\x8f\xd1\x63\xf4\x38\x3d\x4e\x8f\xd7\xe3\xf5\x44\x3d\x51\x4f\xd6\x93"
      "\x5f\xfc\x6d\x9c\x7a\xba\x9e\xae\x67\xe8\x19\x7a\x96\x9e\xa5\xd3\x74\x9a"
      "\x9e\xab\xe7\xea\x79\x7a\x9e\x5e\xa0\x17\xe8\x85\x7a\xa1\x5e\xa4\x17\xe9"
      "\x25\x7a\x89\x4e\xd7\xe9\x3a\x43\x67\xe8\x4c\x9d\xa9\x97\x6b\xa1\xb3\xf4"
      "\x0a\xbd\x42\xaf\xd2\xab\xf4\x1a\xbd\x46\xaf\xd3\xeb\xf4\x06\xbd\x41\x6f"
      "\xd2\x9b\xf4\x16\xbd\x45\x67\xe9\xed\x7a\xbb\xde\xa1\x77\xe8\x5d\x7a\x97"
      "\xde\xa3\xf7\xe8\x7d\x7a\x9f\xde\xaf\xf7\xeb\x03\xfa\x80\xce\xd6\xd9\xfa"
      "\xa0\x3e\xa8\x0f\xe9\x43\xfa\xb0\x3e\xac\x73\x74\x8e\x3e\xa2\x8f\xe8\xa3"
      "\xfa\xa8\x3e\xa6\x8f\xf5\x3f\xae\x8f\xeb\x13\xfa\x84\x3e\xa5\x4f\xe9\xd3"
      "\xfa\xb4\x3e\xa3\xcf\xe8\x73\xfa\x9c\xbe\xa0\x2f\xe8\x8b\xfa\xa2\xbe\xac"
      "\x2f\x5f\xb9\xed\x0b\x64\x20\x03\x1d\xe8\x20\x4f\x90\x27\x88\x09\x62\x82"
      "\xd8\x20\x36\x88\x0b\xe2\x82\xfc\x41\xfe\x20\x12\x44\x82\xf8\x20\x3e\x28"
      "\x10\xdc\x1c\x14\x0c\x0a\x05\x85\x83\x22\x41\x42\x50\x34\x28\x16\x98\x00"
      "\x03\x1b\x50\x10\x06\xc5\x83\x12\x41\x34\xb8\x25\x28\x19\xdc\x1a\x24\x06"
      "\xa5\x82\xd2\x41\x99\xc0\x05\x65\x83\xa4\xe0\xb6\xa0\x5c\x70\x7b\x50\x3e"
      "\xb8\x23\xa8\x10\xdc\x19\x54\x0c\xee\x0a\x2a\x05\x95\x83\x2a\x41\xd5\xe0"
      "\xee\xa0\x5a\x70\x4f\x50\x3d\xa8\x11\xd4\x0c\xee\x0d\x6a\x05\xb5\x83\x3a"
      "\x41\xdd\xe0\xbe\xa0\x5e\x70\x7f\x50\x3f\x78\x20\x68\x10\x3c\x18\x34\x0c"
      "\x1e\x0a\x1a\x05\x0f\x07\x8d\x83\x47\x82\x26\xc1\xa3\x41\xd3\xe0\xb1\xa0"
      "\x59\xf0\x78\xd0\x3c\x78\x22\x68\x11\xb4\x0c\x5a\x05\xad\x83\x36\x7f\x6a"
      "\x7d\xef\xcf\x14\x7a\xca\xf5\x35\xfd\x4c\x8a\xe9\x6f\x06\x98\x57\xcd\x40"
      "\x33\xc8\x0c\x36\x43\xcc\x50\xf3\x9a\x19\x66\x5e\x37\xc3\xcd\x1b\x26\xd5"
      "\x8c\x30\x23\xcd\x9b\x66\x94\x79\xcb\x8c\x36\x6f\x9b\x31\x66\xac\x19\x67"
      "\xde\x31\xe3\xcd\x04\x33\xd1\x4c\x32\x93\xcd\x14\x33\xd5\xbc\x6b\xa6\x99"
      "\xf7\xcc\x74\xf3\xbe\x99\x61\x66\x9a\x59\x66\xb6\x49\x33\x73\xcc\x5c\xf3"
      "\x81\x99\x67\xe6\x9b\x05\xe6\x43\xb3\xd0\x7c\x64\x16\x99\xc5\x66\x89\x59"
      "\x6a\xd2\xcd\xc7\x26\xc3\x2c\x33\x99\xe6\x13\xb3\xdc\x7c\x6a\xb2\xcc\x0a"
      "\xb3\xd2\xac\x32\xab\xcd\x9a\xf3\x37\x0a\x61\xd6\x9b\x0d\x66\xa3\xd9\x64"
      "\x36\x9b\x2d\x66\xab\xd9\x66\xb6\x9b\xcf\xcc\x0e\xb3\xd3\xec\x32\xbb\xcd"
      "\x1e\xb3\xd7\xec\x33\x9f\x9b\xfd\xe6\x0b\x73\xc0\x7c\x69\xb2\xcd\x57\xe6"
      "\xa0\xf9\x8b\x39\x64\xbe\x36\x87\xcd\x37\x26\xc7\x7c\x6b\x8e\x98\xef\xcc"
      "\x51\xf3\xbd\x39\x66\x7e\x30\xc7\xcd\x8f\xe6\x84\x39\x69\x4e\x99\x9f\xcc"
      "\x69\xf3\xb3\x39\x63\xce\x9a\x73\xe6\xbc\xb9\x60\x7e\x31\x17\xcd\x25\x73"
      "\xd9\xf8\x2b\x37\xf7\x57\x9e\xde\x51\xa3\xc6\x3c\x98\x07\x63\x30\x06\x63"
      "\x31\x16\xe3\x30\x0e\xf3\x63\x7e\x8c\x60\x04\xe3\x31\x1e\x0b\x60\x01\x2c"
      "\x88\x05\xb1\x30\x16\xc6\x04\x4c\xc0\x62\x58\x0c\xaf\x20\x24\x2c\x8e\xc5"
      "\x31\x8a\x51\x2c\x89\x25\x31\x11\x13\xb1\x34\x96\x46\x87\x0e\x93\x30\x09"
      "\xcb\x61\x39\x2c\x8f\xe5\xb1\x02\x56\xc0\x8a\x58\x11\x2b\x61\x25\xac\x82"
      "\x55\xf0\x6e\xbc\x1b\xef\xc1\x7b\xb0\x06\xd6\xc0\x7b\xf1\x5e\xac\x8d\xb5"
      "\xb1\x2e\xd6\xc5\x7a\x58\x0f\xeb\x63\x7d\x6c\x80\x0d\xb0\x21\x36\xc4\x46"
      "\xd8\x08\x1b\x63\x63\x6c\x82\x4d\xb0\x29\x36\xc5\x66\xd8\x0c\x9b\x63\x73"
      "\x6c\x81\x2d\xb0\x15\xb6\xc2\x36\xd8\x06\xdb\x62\x5b\x6c\x87\xed\xb0\x03"
      "\x76\xc0\x8e\xd8\x11\x3b\x61\x27\x4c\xc6\x64\xec\x82\x5d\xb0\x2b\x76\xc5"
      "\x6e\xd8\x0d\xbb\x63\x77\xec\x81\x3d\xb0\x27\xf6\xc4\xde\xd8\x1b\xfb\x60"
      "\x1f\xec\x8b\x7d\x31\x05\x53\x70\x00\x0e\xc0\x81\x38\x10\x07\xe3\x60\x1c"
      "\x8a\x43\x71\x18\x0e\xc3\xe1\x38\x1c\x53\x31\x15\x47\xe2\x48\x1c\x85\xa3"
      "\x70\x34\x8e\xc6\x31\x38\x16\xc7\xe1\x3b\x38\x1e\x27\xe0\x44\x9c\x84\x93"
      "\x71\x0a\x4e\xc5\xa9\x38\x0d\xa7\xe1\x74\x9c\x8e\x33\x70\x06\xce\xc2\x59"
      "\x98\x86\x69\x38\x17\xe7\xe2\x3c\x9c\x87\x0b\x70\x01\x2e\xc4\x85\xb8\x08"
      "\x17\xe1\x12\x5c\x82\xe9\x98\x8e\x19\x98\x81\x99\x98\x89\xcb\x71\x39\x66"
      "\x61\x16\xae\xc4\x95\xb8\x1a\x57\xe3\x5a\x5c\x8b\xeb\x71\x3d\x6e\xc4\x8d"
      "\xb8\x19\x37\xe3\x56\xdc\x8a\xdb\x71\x3b\xee\xc0\x1d\xb8\x0b\x77\xe1\x1e"
      "\xdc\x83\xfb\x70\x1f\xee\xc7\xfd\x78\x00\x0f\x60\x36\x66\xe3\x41\x3c\x88"
      "\x87\xf0\x10\x1e\xc6\xc3\x98\x83\x39\x78\x04\x8f\xe0\x51\x3c\x8a\xc7\xf0"
      "\x18\x1e\xc7\xe3\x78\x02\x4f\xe0\x29\x3c\x85\xa7\xf1\x34\x9e\xc1\x33\x78"
      "\x0e\xcf\xe1\x05\xfc\x05\x2f\xe2\x25\xbc\x8c\x1e\x63\xac\x14\xb1\xf6\x3a"
      "\x1b\x67\xaf\xb7\xf9\xed\x0d\x36\xc6\xe6\xb3\x7f\x1b\x17\xb6\x45\x6c\x82"
      "\x2d\x6a\x8b\x59\x63\x0b\xda\x42\xff\x25\x46\x6b\x6d\xa2\x2d\x65\x4b\xdb"
      "\x32\xd6\xd9\xb2\x36\xc9\xde\xf6\xbb\xb8\x92\xad\x6c\xab\xd8\xaa\xf6\x6e"
      "\x5b\xcd\xde\x63\xab\xff\x2e\xae\x67\xef\xb7\xf5\xed\x03\xb6\x81\x7d\xd0"
      "\xd6\xb5\xf7\xfd\x16\xe7\xfd\x35\x6e\x68\x1f\xb2\x8d\xec\xe3\xb6\xb1\x7d"
      "\xc2\x36\xb1\x2d\x6d\x53\xdb\xda\x36\xb3\x8f\xdb\xe6\xf6\x09\xdb\xc2\xb6"
      "\xb4\xad\x6c\x6b\xdb\xd1\x3e\x63\x3b\xd9\xce\x36\xd9\x3e\x6b\xbb\xd8\xe7"
      "\x7e\x17\x67\xd8\x65\x76\xbd\xdd\x60\x37\xda\x4d\x76\xbf\xfd\xc2\x9e\xb3"
      "\xe7\xed\x51\xfb\xbd\xbd\x60\x7f\xb1\x7d\x6d\x3f\x3b\xd4\xbe\x66\x87\xd9"
      "\xd7\xed\x70\xfb\x86\x4d\xb5\x23\x7e\x17\x8f\xb3\xef\xd8\xf1\x76\x82\x9d"
      "\x68\x27\xd9\xc9\x76\xca\xef\xe2\x59\x76\xb6\x4d\xb3\x73\xec\x5c\xfb\x81"
      "\x9d\x67\xe7\xff\x2e\x4e\xb7\x1f\xdb\x85\x36\xd3\x2e\xb2\x8b\xed\x12\xbb"
      "\xf4\xd7\xf8\x4a\x4f\x99\xf6\x13\xbb\xdc\x7e\x6a\xb3\xec\x0a\xbb\xd2\xae"
      "\xb2\xab\xed\x1a\xbb\xd6\xae\xfb\xcf\x5e\x57\xd9\x2d\x76\xab\xdd\x66\xf7"
      "\xd9\xcf\xed\x0e\xbb\xd3\xee\xb2\xbb\xed\x1e\xbb\xf7\xd7\xf8\xca\x39\x0e"
      "\xd8\x2f\x6d\xb6\xfd\xca\x1e\xb1\xdf\xd9\x43\xf6\x6b\x7b\xd8\x1e\xb3\x39"
      "\xf6\xdb\x5f\xe3\x2b\xe7\x3b\x66\x7f\xb0\xc7\xed\x8f\xf6\x84\x3d\x69\x4f"
      "\xd9\x9f\xec\x69\xfb\xb3\x3d\x63\xcf\xfe\x7a\xfe\x2b\x67\xff\xc9\x5e\xb2"
      "\x97\xad\xb7\x82\x80\x24\x29\xd2\x14\x50\x1e\xca\x4b\x31\x94\x8f\x62\xe9"
      "\x3a\x8a\xa3\xeb\x29\x3f\xdd\x40\x11\xba\x91\xe2\xe9\x26\x2a\x40\x37\x53"
      "\x41\x2a\x44\x85\xa9\x08\x25\x50\x51\x2a\x46\x86\x90\x2c\x11\x85\x54\x9c"
      "\x4a\x50\x94\x6e\xa1\x92\x74\x2b\x25\x52\x29\x2a\x4d\x65\xc8\x51\x59\x4a"
      "\xa2\xdb\xa8\x1c\xdd\x4e\xe5\xe9\x0e\xaa\x40\x77\x52\x45\xba\x8b\x2a\x51"
      "\x65\xaa\x42\x55\xe9\x6e\xaa\x46\xf7\x50\x75\xaa\x41\x35\xe9\x5e\xaa\x45"
      "\xb5\xa9\x0e\xd5\xa5\xfb\xa8\x1e\xdd\x4f\xf5\xe9\x01\x6a\x40\x0f\x52\x43"
      "\x7a\x88\x1a\xd1\xc3\xd4\x98\x1e\xa1\x26\xf4\x28\x35\xa5\xc7\xa8\x19\x3d"
      "\x4e\xcd\xe9\x09\x6a\x41\x2d\xa9\x15\xb5\xa6\x36\xf4\x24\xb5\xa5\xa7\xa8"
      "\x1d\xb5\xa7\x0e\xf4\x34\x75\xa4\x67\xa8\x13\x75\xa6\x64\x7a\x96\xba\xd0"
      "\x73\xd4\x95\x9e\xa7\x6e\xf4\x02\x75\xa7\x17\xa9\x07\xbd\x44\x3d\xa9\x17"
      "\xf5\xa6\x97\xa9\x0f\xbd\x42\x7d\xa9\x1f\xa5\x50\x7f\x1a\x40\xaf\xd2\x40"
      "\x1a\x44\x83\x69\x08\x0d\xa5\xd7\x68\x18\xbd\x4e\xc3\xe9\x0d\x4a\xa5\x11"
      "\x34\x92\xde\xa4\x51\xf4\x16\x8d\xa6\xb7\x69\x0c\x8d\xa5\x71\xf4\x0e\x8d"
      "\xa7\x09\x34\x91\x26\xd1\x64\x9a\x42\x53\xe9\x5d\x3a\x9b\xde\xb9\xf0\x95"
      "\x9b\x83\x19\x34\x93\x66\xd1\x6c\x4a\xa3\x39\x34\x97\x3e\xa0\x79\x34\x9f"
      "\x16\xd0\x87\xb4\x90\x3e\xa2\x45\xb4\x98\x96\xd0\x52\x4a\xa7\x8f\x29\x83"
      "\x96\x51\x26\x7d\x42\xcb\xe9\x53\xca\xa2\x15\xb4\x92\x56\xd1\x6a\x5a\x43"
      "\x6b\x69\x1d\xad\xa7\x0d\xb4\x91\x36\xd1\x66\xda\x42\x5b\x69\x1b\x6d\xa7"
      "\xcf\x68\x07\xed\xa4\x5d\xb4\x9b\xf6\xd0\x5e\xda\x47\x9f\xd3\x7e\xfa\x82"
      "\x0e\xd0\x97\x94\x4d\x5f\xd1\x41\xfa\x0b\x1d\xa2\xaf\xe9\x30\x7d\x43\x39"
      "\xf4\x2d\x1d\xa1\xef\xe8\x28\x7d\x4f\xc7\xe8\x07\x3a\x4e\x3f\xd2\x09\x3a"
      "\x49\xa7\xe8\x27\x3a\x4d\x3f\xd3\x19\x3a\x4b\xe7\xe8\x3c\x5d\xa0\x5f\xe8"
      "\x22\x5d\xa2\xcb\xe4\x49\x84\x10\xca\x50\x85\x3a\x0c\xc2\x3c\x61\xde\x30"
      "\x26\xcc\x17\xc6\x86\xd7\x85\x71\xe1\xf5\x61\xfe\xf0\x86\x30\x12\xde\x18"
      "\xc6\x87\x37\x85\x05\xc2\x9b\xc3\x82\x61\xa1\xb0\x70\x58\x24\x4c\x08\x8b"
      "\x86\xc5\x42\x13\x62\x68\x43\x0a\xc3\xb0\x78\x58\x22\x8c\x86\xb7\x84\x25"
      "\xc3\x5b\xc3\xc4\xb0\x54\x58\x3a\x2c\x13\xba\xb0\x6c\x98\x14\xde\x16\x96"
      "\x0b\x6f\x0f\xcb\x87\x77\x84\x15\xc2\x3b\xc3\x8a\xe1\x5d\x61\xa5\xb0\x72"
      "\xf8\xf8\x83\x55\xc3\xbb\xc3\x6a\xe1\x3d\x61\xf5\xb0\x46\x58\x33\xbc\x37"
      "\xac\x15\xd6\x0e\xeb\x84\x75\xc3\xfb\xc2\x7a\xe1\xfd\x61\xfd\xf0\x81\xb0"
      "\x41\xf8\x60\x58\x3e\x7c\x28\x6c\x14\x3e\x1c\x36\x0e\x1f\x09\x9b\x84\x8f"
      "\x86\x4d\xc3\xc7\xc2\x66\xe1\xe3\x61\xf3\xf0\x89\xb0\x45\xd8\x32\x6c\x15"
      "\xb6\x0e\xdb\x84\x4f\x86\x6d\xc3\xa7\xc2\x76\x61\xfb\xb0\x43\xf8\x74\xd8"
      "\x31\x7c\x26\xec\x14\x76\x0e\x93\xc3\x67\xc3\x2e\xe1\x73\x7f\x78\x3d\x25"
      "\xec\x1f\x0e\x08\x5f\x0d\x5f\x0d\xbd\x7f\x40\x2d\x89\x2e\x8d\xa6\x47\x3f"
      "\x8e\x66\x44\x97\x45\x33\xa3\x9f\x44\x97\x47\x3f\x8d\x66\x45\x57\x44\x57"
      "\x46\x57\x45\x57\x47\xd7\x44\xd7\x46\xd7\x45\xd7\x47\x37\x44\x37\x46\x37"
      "\x45\x37\x47\xb7\x44\xb7\x46\xb7\x45\xbd\xaf\x9b\x57\x38\x70\xd2\x29\xa7"
      "\x5d\xe0\xf2\xb8\xbc\x2e\xc6\xe5\x73\xb1\xee\x3a\x17\xe7\xae\x77\xf9\xdd"
      "\x0d\x2e\xe2\x6e\x74\xf1\xee\x26\x57\xc0\xdd\xec\x0a\xba\x42\xae\xb0\x2b"
      "\xe2\x12\x5c\x51\x57\xcc\x19\x87\xce\x3a\x72\xa1\x2b\xee\x4a\xb8\xa8\xbb"
      "\xc5\x95\x74\xb7\xba\x44\x57\xca\x95\x76\x65\x9c\x73\x65\x5d\x92\x6b\xed"
      "\xda\xb8\x36\xae\xad\x7b\xca\xb5\x73\xed\x5d\x07\xf7\xb4\x7b\xda\x3d\xe3"
      "\x9e\x71\x9d\x5d\x67\xf7\xac\xeb\xe2\x9e\x73\x5d\xdd\xf3\xae\x9b\x7b\xc1"
      "\x75\x77\x2f\xba\x17\xdd\x4b\xae\xa7\xeb\xe5\x7a\xbb\x97\x5d\x1f\xf7\x8a"
      "\xeb\xeb\xfa\xb9\x14\x97\xe2\x06\xb8\x01\x6e\xa0\x1b\xe8\x06\xbb\xc1\x6e"
      "\xa8\x1b\xea\x86\xb9\x61\x6e\xb8\x1b\xee\x52\x5d\xaa\x1b\xe9\x46\xba\x51"
      "\x6e\x94\x1b\xed\x46\xbb\x31\x6e\x8c\x1b\xe7\xc6\xb9\xf1\x6e\xbc\x9b\xe8"
      "\x26\xba\xc9\x6e\xb2\x9b\xea\xa6\xba\x69\x6e\x9a\x9b\xee\xa6\xbb\x19\x6e"
      "\x86\x9b\xe5\x66\xb9\x34\x97\xe6\xe6\xba\xb9\x6e\x9e\x9b\xe7\x16\xb8\x05"
      "\x6e\x61\xe2\x42\xb7\xc8\x2d\x72\x4b\xdc\x12\x97\xee\xd2\x5d\x86\xcb\x70"
      "\x99\x2e\xd3\x2d\x77\xcb\x5d\x96\xcb\x72\x2b\xdd\x4a\xb7\xda\xad\x76\x6b"
      "\xdd\x5a\xb7\xde\xad\x77\x1b\xdd\x46\xb7\xd9\x6d\x76\x5b\xdd\x56\xb7\xdd"
      "\x6d\x77\x3b\xdc\x0e\xb7\xcb\xed\x72\x7b\xdc\x1e\xb7\xcf\xed\x73\xfb\xdd"
      "\x7e\x77\xc0\x1d\x70\xd9\x2e\xdb\x1d\x74\x07\xdd\x21\x77\xc8\x1d\x76\xdf"
      "\xb8\x1c\xf7\xad\x3b\xe2\xbe\x73\x47\xdd\xf7\xee\x98\xfb\xc1\x1d\x77\x3f"
      "\xba\x13\xee\xa4\x3b\xe5\x7e\x72\xa7\xdd\xcf\xee\x8c\x3b\xeb\xce\xb9\xf3"
      "\xee\x82\xfb\xc5\x5d\x74\x97\xdc\x65\xe7\xdd\xd4\xc8\xbb\x91\x69\x91\xf7"
      "\x22\xd3\x23\xef\x47\x66\x44\x66\x46\x66\x45\x66\x47\xd2\x22\x73\x22\x73"
      "\x23\x1f\x44\xe6\x45\xe6\x47\x16\x44\x3e\x8c\x2c\x8c\x7c\x14\x59\x14\x59"
      "\x1c\x59\x12\x59\x1a\x49\x8f\x7c\x1c\xc9\x88\x2c\x8b\x64\x46\x3e\x89\x2c"
      "\x8f\x7c\x1a\xc9\x8a\xac\x88\xac\x8c\xac\x8a\xac\x8e\xac\x89\x78\x5f\x74"
      "\x47\xe8\x8b\xfb\x12\x3e\xea\x6f\xf1\x25\xfd\xad\x3e\xd1\x97\xf2\xa5\x7d"
      "\x19\xef\x7c\x59\x9f\xe4\x6f\xf3\xe5\xfc\xed\xbe\xbc\xbf\xc3\x57\xf0\x77"
      "\xfa\x8a\xfe\x2e\x5f\xc9\x57\xf6\x55\xfc\x13\xbe\x85\x6f\xe9\x5b\xf9\xd6"
      "\xbe\x8d\x7f\xd2\xb7\xf5\x4f\xf9\x76\xbe\xbd\xef\xe0\x9f\xf6\x1d\xfd\x33"
      "\xbe\x93\xef\xec\x93\xfd\xb3\xbe\x8b\x7f\xce\x77\xf5\xcf\xfb\x6e\xfe\x05"
      "\xdf\xdd\xbf\xe8\x7b\xf8\x97\x7c\x4f\xdf\xcb\xf7\xf6\x2f\xfb\x3e\xfe\x15"
      "\xdf\xd7\xf7\xf3\x29\xbe\xbf\x1f\xe0\x5f\xf5\x03\xfd\x20\x3f\xd8\x0f\xf1"
      "\x43\xfd\x6b\x7e\x98\x7f\xdd\x0f\xf7\x6f\xf8\x54\x3f\xc2\x8f\xf4\x6f\xfa"
      "\x51\xfe\x2d\x3f\xda\xbf\xed\xc7\xf8\xb1\x7e\x9c\x7f\xc7\x8f\xf7\x13\xfc"
      "\x44\x3f\xc9\x4f\xf6\x53\xfc\x54\xff\xae\x9f\xe6\xdf\xf3\xd3\xfd\xfb\x7e"
      "\x86\x9f\xe9\x67\xf9\xd9\x3e\xcd\xcf\xf1\x73\xfd\x07\x7e\x9e\x9f\xef\x17"
      "\xf8\x0f\xfd\x42\xff\x91\x5f\xe4\x17\xfb\x25\x7e\xa9\x4f\xf7\x1f\xfb\x0c"
      "\xbf\xcc\x67\xfa\x4f\xfc\x72\xff\xa9\xcf\xf2\x2b\xfc\x4a\xbf\xca\xaf\xf6"
      "\x6b\xfc\x5a\xbf\xce\xaf\xf7\x1b\xfc\x46\xbf\xc9\x6f\xf6\x5b\xfc\x56\xbf"
      "\xcd\x6f\xf7\x9f\xf9\x1d\x7e\xa7\xdf\xe5\x77\xfb\x3d\x7e\xaf\xdf\xe7\x3f"
      "\xf7\xfb\xfd\x17\xfe\x80\xff\xd2\x67\xfb\xaf\xfc\x41\xff\x17\x7f\xc8\x7f"
      "\xed\x0f\xfb\x6f\x7c\x8e\xff\xd6\x1f\xf1\xdf\xf9\xa3\xfe\x7b\x7f\xcc\xff"
      "\xe0\x8f\xfb\x1f\xfd\x09\x7f\xd2\x9f\xf2\x3f\xf9\xd3\xfe\x67\x7f\xc6\x9f"
      "\xf5\xe7\xfc\x79\x7f\xc1\xff\xe2\x2f\xfa\x4b\xfe\x32\xff\xcd\x1a\x63\x8c"
      "\x31\xc6\xd8\xff\x16\xf5\x07\xd7\xfb\xff\x83\xcf\xc9\xdf\xd6\x15\x03\x84"
      "\x10\xd7\xef\x2c\x92\xf3\xf7\x35\x37\x17\xfc\xeb\x7e\x90\x4c\xe8\x18\x11"
      "\x42\x3c\xdb\xaf\xc7\xa3\xff\xb1\x6a\xd5\x4a\x49\x49\xf9\xeb\xe5\x1a\xff"
      "\x99\x14\xb9\x9a\x9f\xe7\x6f\xe2\x15\xa2\x83\x78\x46\x24\x8b\xf6\xa2\xdc"
      "\x3f\xec\x6f\x90\xec\x75\x81\xfe\x79\x7d\x91\xa5\x44\x10\xbd\x53\x88\xd8"
      "\xab\x95\x7f\x15\x2b\xfe\xbe\xfe\xed\xff\xa4\xfe\x93\x4f\x8f\xcb\xa8\x18"
      "\x9e\x8b\xff\x6f\xea\x2f\x16\x22\xb1\xc4\xd5\x9c\x7c\xe2\x6a\x7c\xb5\x7e"
      "\xf9\x7f\x52\xbf\x50\xdb\x3f\xe8\x3f\xdf\xd7\x53\x85\x68\xf7\x37\x39\x71"
      "\xe2\x6a\x7c\xb5\x7e\x92\x78\x4a\x3c\x27\x92\xff\xcb\x57\x32\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x7f\x35\x48\x56\xe9\xf6\x47\xaf\x9f\x4b\x2c\x16\x22"
      "\x41\x5f\xcd\xc9\x2b\xae\xc6\x7f\xf4\xfa\x9c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\xd7\xde\x0b\xbd\x7a\x77\x7e\x32\x39\xb9\x7d\x37\xde\xfc\x0b\x9b"
      "\xea\xff\x7f\xb4\xc1\x1b\xde\xfc\x69\x9b\x6b\xfd\x9b\x89\x31\xc6\x18\x63"
      "\x8c\x31\xf6\x67\xbb\x7a\xd3\x7f\xad\x3b\x61\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\x72\xaf\xff\x17\xff"
      "\x4e\xec\x5a\x9f\x91\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\xbb"
      "\xd6\xfe\x57\x00\x00\x00\xff\xff\x15\xd9\x34\x9a",
      5376);
  syz_mount_image(
      /*fs=*/0x20006c00, /*dir=*/0x20001b40,
      /*flags=MS_I_VERSION|MS_SYNCHRONOUS|MS_NOSUID|MS_NOEXEC|MS_NODIRATIME|0x200000c4*/
      0x208008de, /*opts=*/0x20001b80, /*chdir=*/0x80, /*size=*/0x1500,
      /*img=*/0x20000580);
  memcpy((void*)0x20000280, "cgroup.controllers\000", 19);
  syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000280ul,
          /*flags=*/0x275a, /*mode=*/0);
}
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);
  const char* reason;
  (void)reason;
  use_temporary_dir();
  loop();
  return 0;
}